@import '../basic/textLine.scss';

.goodsList {
  .top-info {
    &-search {
      box-sizing: border-box;
      margin: 0 15px 17px;
      height: 34px;
      background-color: #f4f4f4;
      border-radius: 20px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;

      .icon {
        width: 14px;
        height: 14px;
        margin-right: 5px;
      }
    }

    .sortWrap {
      height: 43px;
      line-height: 43px;
      display: grid;
      cursor: pointer;
      grid-template-columns: repeat(5, 1fr);
      justify-items: center;

      .sortItem {
        text-align: center;
        display: flex;

        &.active {
          color: #ff0934;
        }

        .orderIcons {
          display: flex;
          flex-direction: column !important;
          justify-content: center;
          align-items: center;
          margin-left: 5px;
          margin-bottom: 8px;
        }
      }
    }
  }

  .goodDetail {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .detailContent {
    margin: 5px 10px 12px;
  }

  .decoration {
    text-decoration: line-through;
    font-size: 12px;
  }

  .textBox {
    display: flex;
    // padding: 0 10px;
  }

  .boxNone {
    display: none;
  }

  .middle_margin {
    margin-bottom: 5px;
    font-size: 12px;
  }

  // .btm {
  //   height: 0;
  // }
  // .listWrap,
  // #listWrap {
  //   height: auto !important;
  // }
  .listWrap {
    background-color: #f6f6f6;

    //padding: 10px;
    .list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      // gap: 10px;
      padding: 10px;

      .listItem {
        overflow: hidden;
        background-color: #fff;
        // padding-bottom: 12px;
        height: fit-content;

        .img {
          display: block;
          width: 100%;
          height: 170px;
          // margin-bottom: 5px;
        }

        .name {
          font-size: 14px;
          // padding: 10px;
          margin-bottom: 5px;
          // margin-bottom: 5px;
          @include titleLine(1);
        }

        .price {
          display: block;
          color: #ff0934;
          font-size: 12px;
        }
      }
    }
  }
}
