answer.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /* pages/exam/paper/paper.wxss */
  2. .exam-page {
  3. background: white;
  4. }
  5. .exam-count-down {
  6. font-size: 15px;
  7. line-height: 35px;
  8. }
  9. .view-wrap {
  10. position: fixed;
  11. width: 100%;
  12. background: #fff6f6;
  13. text-align: center;
  14. height: 35px;
  15. z-index: 999;
  16. }
  17. .view-wrap-hidden {
  18. height: 35px;
  19. }
  20. .exam-name-title {
  21. text-align: center;
  22. margin-top: 10px;
  23. font-size: 17px;
  24. }
  25. .exam-panel-title {
  26. margin-top: 30px;
  27. }
  28. .exam-radio-item-label {
  29. float: left;
  30. margin-left: 10px;
  31. line-height: 35px;
  32. }
  33. .exam-item-left {
  34. float: left;
  35. }
  36. .exam-input-contain {
  37. margin: 10px 2px !important;
  38. border-width: 1px;
  39. border-color: #dddee1;
  40. border-style: solid;
  41. width: 95%;
  42. height: 40px;
  43. }
  44. .exam-input-contain-label {
  45. float: left;
  46. padding: 0px 15px;
  47. line-height: 40px;
  48. }
  49. .exam-input-contain-content {
  50. float: left;
  51. height: 40px;
  52. }
  53. .exam-textarea-contain {
  54. margin: 10px 2px !important;
  55. border-width: 1px;
  56. border-color: #dddee1;
  57. border-style: solid;
  58. width: 100%;
  59. }
  60. .exam-timeout-title{
  61. font-size: 16px;
  62. color: red;
  63. margin-top: 10px;
  64. margin-bottom: 20px;
  65. }
  66. .exam-clear {
  67. clear: both;
  68. margin-left: 20rpx;
  69. }
  70. .exam-extend-item {
  71. padding: 4px;
  72. }
  73. .question-answer-error {
  74. background-color: #fef0f0;
  75. border-color: #fde2e2;
  76. color: #f56c6c;
  77. }
  78. .question-answer-right {
  79. background-color: #f0f9eb;
  80. border-color: #e1f3d8;
  81. color: #67c23a;
  82. }