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


$contentWidth:670px;

.page {
  padding-bottom: $pageBottom;

  .bgc {}

  .bg {}

  .main {

    .top {
      position: relative;
      width: 750px;
      z-index: 11;

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

      .space1 {
        height: 222px;
      }

      .search {
        position: relative;
        width: $contentWidth;
        height: 100px;
        background: #FFFFFF;
        @extend .shadow;
        // margin: 222px auto 0;
        margin: 0 auto 0;
        display: flex;
        justify-content: space-between;
        align-items: center;

        &-ipt-wrap {
          @extend .bb;
          padding-left: 30px;
          width: 320px;

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

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

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

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

          .icon-search{
            width: 36px;
            height: 36px;
            opacity: .6;
          }

          .icon2 {
            width: 60px;
            height: 60px;
            margin-left: 4px;
          }

          .t1{
            font-size: 22px;
            margin: 0 12px 0;
            color: #333333;
            text-align: center;
          }
        }

        &-scan2 {
          flex-wrap: wrap;
          flex: 1;
        }

      }
    }

    .top-space {
      // height: 362px;
      height: 80px;
    }

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

      // banner
      .banner {
        width: $contentWidth;
        height: 250px;
        margin: 0 auto;

        .swiper {
          width: $contentWidth;
          height: 250px;

          .swiper-image {
            width: $contentWidth;
            height: 250px;
          }
        }
      }

      // 产品
      .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;
            padding-bottom: 12px;

            .image {
              width: 322px;
              height: 322px;
            }

            .desc {
              @extend .bb;
              width: 322px;
              padding: 4px 20px;
              font-size: 24px;
              // line-height: 32px;
              color: #333333;
              @include ellipsis(3);
            }


          }
        }
      }
    }
  }
}