.m-product-advertise {
  height: 286px;
  padding: 15px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;

  .pro-wrap {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
  }

  .product-item {
    box-sizing: border-box;
    border-radius: 6px;
    width: 120px;
    margin-right: 8px;
    background-color: #fff;
  
    .pro-container {
      border-radius: 6px;
      border: 0;

      .product-img {
        height: 120px;
        width: 120px;
        border-radius: 6px 6px 0 0;
      }
      
      .product-content-wrap {
        padding: 12px;
        padding-top: 4px;
      }
    }
  }

  .see-all {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-left: 30px;
    margin-right: 39px;
    .box {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 32px;
      height: 24px;
      background-color: #fff;
    }
    .text {
      margin-top: 8px;
      font-size: 11px;
      color: #fff;
      width: 42px;
      text-align: center;
    }
  }
}

