seckill-order-comp.scss 2.52 KB
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';

.comp-item {
  width: 650px;
  min-height: 496px;
  border-radius: 10px;
  background-color: #ffffff;
  padding-bottom: 244px;

  .remove {
    position: absolute;
    right: 16px;
    top: 16px;
    font-size: 40px;
    color: #333333;
  }

  .succ {
    position: absolute;
    left: 0;
    right: 0;
    top: 24px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    color: #3680EB;
  }

  .cspace {
    height: 120px;
  }

  .cont {
    // text-align: center;
    width: 572px;
    margin: 0 auto;

    .product {
      @extend .bb;
      display: flex;
      // justify-content: space-between;

      .prize {
        .image {
          width: 180px;
          height: 180px;
        }
      }

      .con {
        @extend .bb;
        padding: 0 0 0 32px;
        display: flex;
        align-content: space-between;
        justify-content: flex-start;
        flex-wrap: wrap;

        .tt {
          font-size: 24px;
          width: 100%;
        }

        .t1 {
          font-size: 30px;
        }

        .t2 {
          // margin-top: 16px;
          display: flex;
          align-items: center;

          .t2-1 {
            font-size: 30px;
          }

          .t2-2 {
            font-size: 20px;
            color: #888888;
            margin-left: 20px;
          }
        }

        .t3 {
          font-size: 36px;
        }
      }
    }

    // 表单
    .table {
      width: 572px;
      margin: 32px auto 0;
      border: solid 1PX #c7c7c7;
      @extend .bb;
      padding: 24px 28px;
      border-radius: 8px;
      min-height: 380px;

      .tips {
        font-size: 18px;
        color: #888888;
      }

      .form {
        margin: 48px 0 0;
        color: #444444;
        font-size: 26px;

        &-item {
          display: flex;
          align-items: center;
          margin: 10px 0;
          height: 48px;

          .label {
            width: 140px;
          }

          .val {
            flex: 1;
          }

          .ipt {
            border-bottom: solid 1PX #444444;
          }
        }
      }

      .empty-tips {
        color: #444444;
        text-align: center;
        margin-top: 80px;
        font-size: 32px;
        line-height: 60px;
      }
    }
  }

  .btn-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 74px;
    margin: 0 auto;
    display: flex;
    justify-content: center;

    .btn {
      @include cb();
      margin: 0 16px;
    }

    .btn2 {
      @include cb2();
    }
  }



}