index.scss 3.67 KB
Newer Older
zhanghaozhe committed
1
// form
FE committed
2 3
// .popup-form {
//   text-align: center;
FE committed
4

5 6 7 8
.popup-packet__button--bundle {
  margin-top: 5px;
}

FE committed
9 10 11 12 13 14 15 16
// }

[data-skip="default"] {
  .popup-form__item {
    height: 36px;
  }

  .popup-form__button--num {
zhanghaozhe committed
17
    border: 1px solid #99d6ff;
FE committed
18 19 20
    border-right-style: none;
    border-radius: 6px 0 0 6px;
  }
21

FE committed
22 23 24 25 26 27 28 29 30 31
  .popup-form__button--code {
    border-radius: 6px;
  }

  .popup-form__button--bundle {
    width: 161px;
    height: 30px;
    border-radius: 15px;
    font-size: 13px;
  }
32

FE committed
33
  .popup-form__ipt {
zhanghaozhe committed
34
    border: 1px solid #99d6ff;
FE committed
35 36 37 38 39 40 41
    border-radius: 6px;

    &[data-type="tel"] {
      border-left-style: none;
      border-radius: 0 6px 6px 0;
    }
  }
FE committed
42 43
}

FE committed
44
[data-skip="year"] {
FE committed
45 46 47 48 49 50 51 52
  .popup-form__title {
    margin: 10px 0 0;
    font-size: 18px;
    color: #111;
    text-align: center;
    line-height: 1;
  }

FE committed
53 54 55 56 57 58
  .popup-form__item {
    width: 269px;
    height: 40px;
  }

  .popup-form__button--num {
zhanghaozhe committed
59
    border: 1px solid #cdcdcd;
FE committed
60 61 62 63 64 65 66 67 68 69 70
    border-right-style: none;
    border-radius: 3px 0 0 3px;
  }

  .popup-form__button--code {
    border-radius: 3px;
  }

  .popup-form__button--bundle {
    width: 270px;
    height: 44px;
FE committed
71
    margin-bottom: 14px;
FE committed
72 73 74 75 76
    border-radius: 5px;
    font-size: 16px;
  }

  .popup-form__ipt {
zhanghaozhe committed
77
    border: 1px solid #cdcdcd;
FE committed
78 79 80 81 82 83 84
    border-radius: 3px;

    &[data-type="tel"] {
      border-left-style: none;
      border-radius: 0 3px 3px 0;
    }
  }
FE committed
85 86
}

FE committed
87 88
.captcha-container {
  width: 269px;
FE committed
89
  height: 40px;
FE committed
90 91 92 93 94
  margin: 0 auto 15px;
}

.popup-form {
  box-sizing: border-box;
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119

  #captcha {
    margin: 0 auto;
    width: 269px;
    height: 40px;

    #nc {
      height: 100%;
    }

    ._nc {
      .stage1 {
        height: 100%;

        .slider {
          height: 100%;

          .label {
            height: 40px;
            line-height: 40px;
          }

          .button {
            width: 40px;
            height: 40px;
zhanghaozhe committed
120
            .icon {
121 122 123
              left: 5px;
            }
          }
zhanghaozhe committed
124
          .bg-green {
125 126 127 128 129 130 131
            height: 40px;
            line-height: 40px;
          }
        }
      }
    }
  }
FE committed
132 133 134 135 136 137
}

.popup-form__item {
  display: flex;
  align-items: center;
  justify-content: center;
FE committed
138
  margin: 0 auto 15px;
139

FE committed
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
  .popup-form__ipt {
    flex: 1;
  }

  .popup-form__ipt--left {
    width: 130px;
  }

  .popup-form__button--code {
    margin-left: 10px;
  }
}

.popup-form__button--num {
  display: block;
  position: relative;
  height: 36px;
  padding: 0 8px;
  box-sizing: border-box;
  font-size: 14px;
  color: #333;
  line-height: 36px;

  &::after {
    display: block;
zhanghaozhe committed
165
    content: "";
FE committed
166 167 168 169 170 171 172
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 14px;
    margin: auto 0;
zhanghaozhe committed
173
    background-color: #aaaaaa;
FE committed
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
  }

  .iconfont {
    font-size: 12px;
    color: #333;
  }
}

.popup-form__ipt {
  height: 36px;
  padding: 0 8px;
  box-sizing: border-box;
  font-size: 12px;
  color: #999;
  line-height: 36px;
  outline: none;

  &[data-type="tel"] {
    border-left-style: none;
  }
}

.popup-form__tip {
  margin: 0;
  font-size: 12px;
zhanghaozhe committed
199
  color: #ff3131;
FE committed
200 201 202

  .iconfont {
    font-size: 15px;
zhanghaozhe committed
203
    color: #ff3131;
FE committed
204 205 206 207 208 209 210
  }
}

.popup-form__button--code {
  width: 110px;
  height: 36px;
  padding: 0;
zhanghaozhe committed
211
  border: 1px solid #e5e5e5;
212
  box-sizing: border-box;
FE committed
213 214 215 216 217 218
  font-size: 13px;
  color: #999;
  text-align: center;
  line-height: 36px;
  background-color: transparent;

zhanghaozhe committed
219 220 221
  &[data-status="do"] {
    border-color: #0099ff;
    color: #0099ff;
FE committed
222
  }
FE committed
223 224 225 226 227 228 229
}

.popup-form__button--bundle {
  display: block;
  padding: 0;
  margin: 0 auto;
  border-style: none;
zhanghaozhe committed
230 231
  color: #2b2b2b;
  background-color: #f9db4a;
FE committed
232 233 234 235
  cursor: pointer;

  &[data-status="done"] {
    color: #fff;
zhanghaozhe committed
236
    background-color: #ababab;
FE committed
237 238
  }

zhanghaozhe committed
239
  &[data-status="do"] {
FE committed
240
    color: #fff;
zhanghaozhe committed
241
    background-color: #0099ff;
FE committed
242
  }
zhanghaozhe committed
243
}