index.scss 1.98 KB
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';


$contentWidth:670px;

.page {
  padding-bottom: $pageBottom;

  .bgc {}

  .bg {}

  .main {

    .top {
      position: absolute;
      width: 750px;

      &-bg {
        position: absolute;
        width: 750px;
        height: 300px;
      }

      .search {
        position: relative;
        width: $contentWidth;
        height: 100px;
        background: #FFFFFF;
        box-shadow: 0 6px 18px 0 rgba(0, 0, 0, 0.10);
        border-radius: 8px;
        margin: 222px auto 0;
        display: flex;
        justify-content: space-between;
        align-items: center;

        &-ipt-wrap {
          @extend .bb;
          padding: 0 30px;
          width: 568px;
          flex: 1;

          .ipt {
            font-size: 28px;
            color: #999999;
          }
        }

        &-line {
          width: 2px;
          height: 40px;
          background-color: #d8d8d8;
        }

        &-scan {
          @extend .fcc;
          width: 100px;

          .icon {
            width: 40px;
            height: 40px;
          }
        }
      }
    }

    .top-space {
      height: 362px;
    }

    .content {
      position: relative;
      width: $contentWidth;
      margin: 0 auto;

      // banner
      .banner {
        width: $contentWidth;
        height: 250px;
        background-color: wheat;
        margin: 0 auto;
      }

      // 产品
      .product {
        width: $contentWidth;
        margin: 0 auto;
        margin-top: 62px;

        // 产品标题
        &-title {
          font-size: 36px;
          color: #333333;

        }

        // 产品列表
        &-list {
          margin-top: 20px;
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;

          .item {
            width: 322px;
            height: 440px;
            background: #F8F8F8;
            border-radius: 4px;
            margin-bottom: 20px;
          }
        }
      }
    }
  }
}