@import './order-goodsItem.scss';

.order-container {
  height: 100%;
  overflow: hidden;
  background: #f5f5f5;

  .qj-tabs {
    background: #fff;
    .default-item {
      font-size: 12px;
    }
    .actived-item {
      color: #000000;
      border-color: #000000;
    }
  }

  .orderList {
    .tabTitle {
      --title-font-size: 15px;
    }

    .orderListItemWrap {
      //overflow-y: auto;
      //margin-bottom: 20px;
      .nodata_img {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        .img {
          width: 200px;
          height: 200px;
          margin-top: 20px;
        }
      }

      .nodata-btn {
        margin-top: 20px;
        width: 150px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        background-color: #34c0bc;
        color: #ffffff;
        border-radius: 30px;
        font-size: 18px;
      }

      .orderListItem {
        margin-left: 12px;
        margin-right: 12px;
        background: #fff;
        padding: 15px 15px 10px 15px;

        .topInfo {
          display: flex;
          height: 20px;
          line-height: 20px;
          justify-content: space-between;
          margin-bottom: 12px;
          align-items: center;

          .orderNo {
            font-size: 14px;
            display: flex;
            align-items: center;

            .copy {
              color: #fff;
              padding: 0 4px;
              margin-left: 5px;
              background-color: #34c0bc;
              border-color: #34c0bc;
              border-radius: 2px;
              font-size: 12px;
            }
          }

          .status {
            font-size: 14px;
            font-weight: bold;
            color: #ff1643;
          }
        }

        .goodsItemWrap {
          padding-bottom: 6px;
          border-bottom: 1px solid #f0f0f0;
          margin-bottom: 10px;
        }

        .allInfo {
          display: flex;
          justify-content: space-between;
          margin-bottom: 14px;

          .totalNum {
            font-size: 12px;
            color: #999;
          }

          .totalPrice {
            font-size: 14px;
            color: #000;
            line-height: 20px;
          }
        }
      }
    }
  }
}
