index.scss 3.23 KB
Newer Older
xuzhenghua committed
1 2 3 4 5 6 7 8 9
.detail-box {
  .btns-box {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 44px;
    background-color: $bg_fff;
    display: flex;
    justify-content: space-between;
zhanghaozhe committed
10
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
xuzhenghua committed
11
    z-index: 3;
xuzhenghua committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

    .consult {
      display: inline-block;
      height: 100%;
      background-color: $bg_fff;
      text-align: center;
      padding-top: 3px;

      .iconerji {
        display: block;
        height: 20px;
        line-height: 20px;
        font-size: 20px;
        color: $active;
      }

      span {
        display: block;
        font-size: 12px;
        color: $color_555;
      }
    }

    .consult-s {
      width: 95px;
    }

    .consult-m {
      width: 50%;
    }

    .consult-l {
      width: 100%;
      height: 100%;
      line-height: 44px;
      text-align: center;
      font-size: 18px;
      color: $white;
      background: linear-gradient(90deg, $bg_active 0%, $bg_007FD0 100%);

      i {
        font-size: 25px;
        margin-right: 10px;
        vertical-align: middle;
      }

      span {
        vertical-align: middle;
      }
    }

    .btn {
      height: 100%;
      color: $white;
      font-size: 16px;
      border: none;
      padding: 8px 0;
xuzhenghua committed
69
      text-align: center;
xuzhenghua committed
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
    }

    .btn-s {
      width: 140px;

      span {
        display: block;
      }

      span:nth-child(1) {
        font-size: 14px;
      }

      span:nth-child(2) {
        font-size: 12px;
      }
    }
zhanghaozhe committed
87

88 89 90 91
    .sign-up-now {
      width: 50%;
      color: #fff;
      font-size: 16px;
zhanghaozhe committed
92
      background: linear-gradient(270deg, rgba(255, 64, 0, 1) 0%, rgba(253, 119, 0, 1) 100%);
93
    }
zhanghaozhe committed
94

95 96 97 98 99
    .learn-now {
      background-color: #0099FF;
      font-size: 16px;
      color: #FFF;
    }
xuzhenghua committed
100

zhanghaozhe committed
101 102 103 104 105 106
    .get-course {
      width: 280px;
      height: 44px;
      background: linear-gradient(90deg, rgba(253, 119, 0, 1) 0%, rgba(255, 64, 0, 1) 100%);
    }

xuzhenghua committed
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
    .btn-m {
      width: 50%;
    }

    .btn-l {
      width: 280px;
    }

    .bg-FCCD05 {
      background: linear-gradient(90deg, $bg_FCCD05 0%, $bg_FF9500 100%);
    }

    .bg-FD7700 {
      background: linear-gradient(90deg, $bg_FD7700 0%, $bg_FF4000 100%);
    }

    .bg-09f {
      background: linear-gradient(90deg, $bg_0198FE 0%, $bg_077FD0 100%);
    }

    .bg-F4AAA7 {
      background-color: $bg-F4AAA7;
    }

    .bg-E02E24 {
      background-color: $bg_E02E24;
    }

  }
xuzhenghua committed
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
}


.cancel-bargain {
  width: 300px;
  height: 139px;
  background-color: $bg_fff;
  margin: 194px auto 20px auto;
  border-radius: 5px;
  padding: 15px 0 0 0;
  text-align: center;
  position: relative;

  .top-img {
    height: 30px;
    line-height: 30px;

    i {
      color: #f3ac3c;
      font-size: 30px;
    }
  }

  .tip-mess {
    font-size: 14px;
    color: $color_666;
    margin-top: 3px;
    padding: 0 15px;
  }

  .btns {
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 0;
    border-top: 1px solid $sp_ddd;

    button {
      width: 150px;
      height: 100%;
      background-color: $bg_fff;
      font-size: 16px;
      border: none;
    }

    :nth-child(1) {
      color: $color_333;
      border-right: 1px solid $sp_ddd;
      border-radius: 0 0 0 5px;
    }

    :nth-child(2) {
      color: $active;
      border-radius: 0 0 5px 0;
    }
  }


xuzhenghua committed
194
}