index.scss 1.07 KB
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
xuzhenghua committed
2 3 4 5 6 7 8 9
.detail-box {
  .popup-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .6);
FE committed
10
    z-index: 15;
xuzhenghua committed
11 12 13 14 15 16 17

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

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

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

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

xuzhenghua committed
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
    .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
60 61
    }
  }
xuzhenghua committed
62 63

}