category.less 3.8 KB
page {
  height: 100%;
}

.container {
  width: 100%;
  // background-color: #F9F9F9;

  .category_menu {
    display: flex;
    margin-right: 20rpx;
    padding-bottom: 32rpx;
    box-sizing: border-box;


    .left_menu {
      width: 25%;
      height: 100%;
      background-color: #F9F9F9;
      position: absolute;
      top: 0;
      left: 0;


      .menu_item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;


        .fu_item {
          width: 100%;
          padding: 28rpx 0rpx;
          text-align: center;
          box-sizing: border-box;
          font-size: 24rpx;
          color: #8C9198;
        }

        .active {
          position: relative;
          font-size: 28rpx;
          color: #06121E;
          font-weight: 600;
          background-color: #fff;

          &::after {
            content: '';
            position: absolute;
            top: 28rpx;
            left: 0;
            width: 8rpx;
            height: 36rpx;
            background-color: #E8370F;
            border-radius: 4rpx;

          }

          // background: linear-gradient(to right, #FF7252, #E8370F);
          // color: #Fff;
          // width: 90%;
          // border-radius: 30rpx;
        }

        .menu_item_child {
          width: 200rpx;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;

          .child_ {
            margin: 10rpx 0;
            font-size: 28rpx;
            line-height: 52rpx;
            text-align: center;
            border: 1rpx solid #ccc;
          }

          .menu_item:first-child {
            margin-top: 10rpx;
          }


        }
      }



    }

    .right_menu {
      position: absolute;
      top: 0;
      right: 0;
      width: 74%;
      height: 100%;
      padding: 28rpx 0;
      box-sizing: border-box;


      .goods_group {
        width: 100%;

        .goods_title {
          width: 100%;
          margin-top: 30rpx;
          padding: 20rpx 0;
          box-sizing: border-box;
          display: flex;
          align-items: center;
          justify-content: center;

          .text_title {
            color: #06121E;
            font-size: 28rpx;
            font-weight: 600;
            margin: 0 26rpx;
          }

          .color_bg {
            width: 50rpx;
            height: 2rpx;
            background-color: #FD6C83;
          }

          &:first-child {
            margin: 0;

          }

        }

        /* 分类 3级*/
        .category {
          margin-top: 30rpx;
          width: 100%;

          .los_cate {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            padding-right: 20rpx;
            box-sizing: border-box;


            .category_list {
              display: flex;
              // flex: 0 0 auto;
              flex-direction: column;
              align-items: center;
              justify-content: center;
              width: 33.33%;


              .imgae {
                width: 156rpx;
                height: 156rpx;
              }

              .view_text {
                display: inline-block;
                color: #5B5E63;
                font-size: 24rpx;
                padding: 20rpx 0;
                box-sizing: border-box;
              }

              &:nth-child(3n + 3) {
                margin-right: 0;
              }
            }


          }

          .bts {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20rpx 0;
            box-sizing: border-box;
            color: #8C9198;
            font-size: 28rpx;
          }


        }

        ::-webkit-scrollbar {
          width: 0;
          height: 0;
          color: transparent;
        }

      }
    }
  }


}