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

.orderDetail {
  .orderDetailTopTitle {
    width: 100%;
    height: 182px;
    //background: linear-gradient(360deg, #585858 0%, #2d2d2d 100%);
    box-shadow: 0 2px 20px 0 rgba(227, 227, 227, 0.5);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

    .orderDetailTopTitleContent {
      .icon_text {
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .title {
        font-size: 18px;
        color: #fff;
      }

      .subTitleWrap {
        color: #fff;
        position: relative;
        left: 100px;
        margin-top: 20px;

        .subTitleIcon {
          width: 19px;
          height: 19px;
          display: inline-block;
        }

        .subTitle {
          font-size: 18px;
          color: #fff;
        }
      }
    }
  }

  .orderDetailContent {
    background-color: #f6f6f6;

    .addressInfo {
      background: #fff;
      border-radius: 8px;
      margin: 0 12px 12px;
      padding: 17px 14px;
      display: grid;
      grid-template-columns: 14px 1fr 30px;
      gap: 7px;
      position: relative;
      //top: -26px;

      .lPart {
        .icon {
          width: 14px;
          height: 14px;
        }
      }

      .cPart {
        font-size: 14px;
      }

      .rPart {
        .icon {
          width: 6px;
          height: 10px;
          margin-top: 18px;
        }
      }
    }

    .orderDetailGoodsWrap {
      background: #fff;
      border-radius: 8px;
      margin: 0 12px 12px;
      padding: 17px 14px 0;

      .orderDetailGoodsItem {
        margin-bottom: 12px;

        .mainInfo {
          grid-template-columns: 126px 1fr;
        }
      }

      .orderBtn {
        display: block;
        min-width: 72px;
        height: 28px;
        font-size: 12px;
        line-height: 28px;
        border: 1px solid #34c0bc;
        color: #fff;
        text-align: center;
        border-radius: 20px;
        margin-left: 79%;
        background-color: #34c0bc;
      }
      .maxWidth {
        width: 140px;
        margin-left: 59%;
      }

      .priceInfo {
        margin-top: 13px;
        border-top: 1px solid #dcdcdc;
        padding: 18px 0 13px;

        .priceInfoFloor {
          display: flex;
          justify-content: space-between;
          color: #999;
          margin-bottom: 6px;
        }

        .top {
          font-size: 14px;
          font-weight: 400;
          color: #000;
        }
      }
    }

    .express {
      background: #fff;
      border-radius: 8px;
      margin: 0 12px 12px;
      padding: 13px 14px;
      display: flex;
      justify-content: space-between;

      .label {
        font-size: 14px;
        color: #000;
      }

      .name {
        color: #999;
      }
    }

    .orderInfo {
      background: #fff;
      border-radius: 8px;
      margin: 0 12px 12px;
      padding: 13px 14px;

      .context_copy {
        display: flex;
        align-items: center;

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

      .orderInfoItem {
        font-size: 12px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        //grid-template-columns: 70px auto;
        .label {
          font-size: 12px;
          color: #999;
        }
        &.container-img-top {
          align-items: flex-start;
        }
      }
    }

    .btnGroupFooter {
      padding: 13px 14px;
    }
  }
}
