camp.scss 8.24 KB
Newer Older
wangshuo committed
1 2
.camp-test-container {
  height: 100vh;
zhanghaozhe committed
3
  width: 100vw;
zhanghaozhe committed
4
  background-color: #f7f8f9;
xuzhenghua committed
5
  overflow-y: auto;
wangshuo committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33

  .icon {
    display: inline-block;
  }
  .layout-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .layout-flex-between {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .layout-flex-around {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  .fixed_container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
zhanghaozhe committed
34
    background-color: #f7f8f9;
wangshuo committed
35 36 37 38 39
  }
  .camp-test-header {
    width: 100%;
    height: 44px;
    padding: 0 16px;
zhanghaozhe committed
40
    background-color: #ffffff;
wangshuo committed
41 42 43
    .camp-test-time {
      span {
        color: #111111;
zhanghaozhe committed
44
        font-size: 14px;
wangshuo committed
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
      }
    }
    .icon-close {
      font-size: 20px;
      color: #333333;
    }
    .icon-clock {
      margin-right: 10px;
      width: 18px;
      height: 18px;
      background: url("../image/clock.png") no-repeat;
      background-size: 100% 100%;
    }
    .icon-order {
      width: 19px;
      height: 19px;
      background: url("../image/order.png") no-repeat;
      background-size: 100% 100%;
    }
    .no_height {
      height: 0;
    }
  }
  .camp-test-title {
    width: 100%;
    height: 44px;
    padding: 0 16px;
zhanghaozhe committed
72 73
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
wangshuo committed
74 75 76 77 78 79 80 81
    margin-top: 10px;

    .qtitle {
      font-size: 14px;
      color: #111111;
    }
    .qnumber {
      font-size: 14px;
zhanghaozhe committed
82
      color: #0099ff;
wangshuo committed
83 84 85
    }
  }
  .test-item-container {
zhanghaozhe committed
86
    background-color: #f7f8f9;
wangshuo committed
87 88 89 90
    font-size: 14px;
    color: #333333;
    padding-bottom: 60px;
    padding-top: 96px;
zhanghaozhe committed
91

wangshuo committed
92 93 94 95 96
    .ques {
      min-height: 50px;
      color: #222;
      text-align: left;
      padding: 18px 16px;
zhanghaozhe committed
97
      background-color: #fff;
wangshuo committed
98 99
    }
    ul {
zhanghaozhe committed
100
      background-color: #fff;
wangshuo committed
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
    }
    ul > li {
      color: #333;
      min-height: 50px;
      text-align: left;
      padding: 12px 16px;
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: stretch;

      .letter {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 24px;
        line-height: 24px;
        border: 1px solid #999999;
        border-radius: 50%;
        font-size: 16px;
        color: #333;
        flex: 0 0 auto;
zhanghaozhe committed
124
        margin-right: 12px;
wangshuo committed
125 126 127 128 129 130 131 132 133 134 135
      }
      .des {
        /* height: 100%; */
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        min-height: 20px;
      }
    }
    ul > li.option_checked {
zhanghaozhe committed
136
      background-color: #f7f8f9;
wangshuo committed
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
      color: #0099ff;
      min-height: 50px;
      text-align: left;
      padding: 12px 16px;
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: stretch;

      .letter {
        border: 1px solid #0099ff;
        color: #0099ff;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 24px;
        line-height: 24px;
        border-radius: 50%;
        text-align: center;
        font-size: 16px;
        flex: 0 0 auto;
zhanghaozhe committed
159
        margin-right: 12px;
wangshuo committed
160 161 162
      }
    }
    ul > li.user_check {
zhanghaozhe committed
163
      background-color: #fff;
wangshuo committed
164 165 166 167 168 169 170 171 172 173 174 175 176 177
      .letter {
        border: 1px solid #ff5a5a;
        background-color: #ff5a5a;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 24px;
        line-height: 24px;
        border-radius: 50%;
        text-align: center;
        font-size: 16px;
        flex: 0 0 auto;
zhanghaozhe committed
178
        margin-right: 12px;
wangshuo committed
179 180 181
      }
    }
    ul > li.right_check {
zhanghaozhe committed
182
      background-color: #fff;
wangshuo committed
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
      color: #000;
      min-height: 50px;
      text-align: left;
      padding: 12px 16px;
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: flex-start;

      .letter {
        border: 1px solid #29c8a0;
        background-color: #29c8a0;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 24px;
        line-height: 24px;
        border-radius: 50%;
        text-align: center;
        font-size: 16px;
        flex: 0 0 auto;
zhanghaozhe committed
206
        margin-right: 12px;
wangshuo committed
207 208 209 210 211 212 213 214 215 216
      }
    }
  }
  .change_question_container {
    position: fixed;
    width: 100%;
    height: 60px;
    left: 0;
    right: 0;
    bottom: 0;
zhanghaozhe committed
217 218
    background-color: #fff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.06);
wangshuo committed
219 220 221 222 223 224
    .change_button {
      width: 130px;
      height: 34px;
      display: flex;
      justify-content: center;
      align-items: center;
zhanghaozhe committed
225 226
      border: 1px solid #0099ff;
      color: #0099ff;
wangshuo committed
227
      border-radius: 17px;
zhanghaozhe committed
228
      font-size: 16px;
wangshuo committed
229 230 231 232 233 234 235 236 237 238 239 240 241
    }
    .first_question {
      border: 1px solid #999999;
      color: #999999;
    }
  }
  .test-card-container {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 44px;
zhanghaozhe committed
242
    background-color: #fff;
wangshuo committed
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
    padding: 20px 16px 0;
    font-size: 14px;
    color: #000;
    p {
      margin-bottom: 25px;
    }
    .test-item {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-content: center;
      flex-wrap: wrap;
    }
    .test-item li {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      color: #666666;
      font-size: 16px;
      border: 1px solid #666666;
      margin-right: 35px;
      margin-bottom: 30px;
      &:nth-child(5n + 0) {
        margin-right: 0;
      }
    }
    li.answered {
zhanghaozhe committed
270 271 272
      border: 1px solid #0099ff;
      color: #fff;
      background-color: #0099ff;
wangshuo committed
273 274 275 276 277 278 279 280
    }
    .bottom_commit {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60px;
      padding: 8px 16px;
zhanghaozhe committed
281
      border-top: 1px solid #e5e5e5;
wangshuo committed
282 283 284 285

      .commit_answer {
        width: 100%;
        height: 44px;
zhanghaozhe committed
286 287
        background-color: #0099ff;
        color: #fff;
wangshuo committed
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
        font-size: 16px;
        border-radius: 4px;
      }
    }
  }

  .test-resolve-card-container {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    background-color: #fff;
  }
}

.camp-report-bottom {
  position: fixed;
  width: 100%;
  height: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 16px;
zhanghaozhe committed
313
  border-top: 1px solid #e5e5e5;
wangshuo committed
314 315 316
  .bottom_commit {
    width: 100%;
    height: 100%;
zhanghaozhe committed
317
    background-color: #0099ff;
wangshuo committed
318 319 320 321 322 323 324
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
  }
}

.report-body {
zhanghaozhe committed
325
  border-top: 1px solid #dddddd;
wangshuo committed
326 327 328 329 330 331 332 333 334 335 336 337 338
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.right_rate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 145px;
  height: 145px;
zhanghaozhe committed
339
  border: 1px solid #cccccc;
wangshuo committed
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
  border-radius: 50%;
  margin: 30px 0 18px 0;
  font-size: 12px;
  color: #999999;
  .rate {
    margin-top: 20px;
  }
  .percentage {
    color: #333;
    font-size: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    position: relative;
    span:nth-child(2) {
      font-size: 16px;
      color: #666666;
      position: absolute;
      bottom: 16px;
      right: -18px;
    }
  }
}

.use_total_time {
  font-size: 16px;
  color: #333;
  margin-bottom: 26px;
}

.right_wrong_li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0 16px;
wangshuo committed
377
  width: 100%;
wangshuo committed
378 379 380 381 382 383 384 385 386 387 388 389 390
  li {
    width: 40px;
    height: 40px;
    border: 1px solid #666666;
    font-size: 16px;
    color: #666666;
    border-radius: 50%;
    margin-right: 35px;
    margin-bottom: 30px;
    &:nth-child(5n + 0) {
      margin-right: 0;
    }
  }
zhanghaozhe committed
391 392
  li.right {
    background-color: #29c8a0;
wangshuo committed
393
    color: #fff;
zhanghaozhe committed
394
    border: 1px solid #29c8a0;
wangshuo committed
395
  }
zhanghaozhe committed
396 397
  li.wrong {
    background-color: #fe5a59;
wangshuo committed
398
    color: #fff;
zhanghaozhe committed
399
    border: 1px solid #fe5a59;
wangshuo committed
400 401 402 403 404 405 406 407 408
  }
  li.noSelect {
    background-color: #fff;
    color: #666;
    border: 1px solid #666666;
  }
}

.test-resolve {
zhanghaozhe committed
409
  background-color: #fff;
wangshuo committed
410 411 412 413 414 415 416 417 418 419 420 421 422
  margin-top: 8px;
  padding: 16px;
  font-size: 15px;
  color: #333333;
  .isRight {
    font-size: 12px;
    color: #666666;
    margin-bottom: 8px;
  }
  p {
    color: #999999;
    margin-bottom: 4px;
  }
zhanghaozhe committed
423
}