index.scss 1.03 KB
Newer Older
xuzhenghua committed
1 2 3 4 5 6 7 8
.detail-box {
  .popup-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .6);
FE committed
9
    z-index: 15;
xuzhenghua committed
10 11 12 13 14 15 16

    .content {
      width: 300px;
      position: relative;
      background-color: $white;
      padding-top: 20px;
      border-radius: 3px;
xuzhenghua committed
17 18
    }

xuzhenghua committed
19 20 21 22 23 24
    .close {
      color: #fff;
      font-size: 22px;
      position: relative;
      left: 50%;
      margin-left: -11px;
xuzhenghua committed
25 26
    }

xuzhenghua committed
27 28 29 30 31 32 33
    .btn {
      position: absolute;
      bottom: 24px;
      left: 83px;
      width: 135px;
      height: 30px;
      border-radius: 3px;
xuzhenghua committed
34
      font-size: 16px;
xuzhenghua committed
35 36 37 38 39 40 41
      color: $white;
      text-align: center;
      line-height: 30px;
    }

    .btn-18B4ED {
      background-color: $bg_18B4ED;
xuzhenghua committed
42 43
    }

xuzhenghua committed
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
    .audition-box {
      height: 144px;
      text-align: center;
      margin: 212px auto 22px auto;

      .audition-header {
        font-size: 16px;
        color: $color_333;
      }

      .audition-dec {
        font-size: 14px;
        color: $color_666;
        margin-top: 10px;
      }
xuzhenghua committed
59 60
    }
  }
xuzhenghua committed
61 62

}