subject.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /* pages/subject/subject.wxss */
  2. .top{
  3. padding: 12px;
  4. background-color: #D8EFFF;
  5. color: #0091FF;
  6. }
  7. .top view{
  8. color: #0091FF;
  9. /* font-size: 13px; */
  10. /* display: inline-block; */
  11. float: right;
  12. margin-right: 10px;
  13. }
  14. .top text{
  15. position: relative;
  16. /* width:60px; */
  17. height:28px;
  18. padding: 0 10px;
  19. border-radius:8px;
  20. background-color: #0091FF;
  21. color: #fff;
  22. text-align: center;
  23. line-height: 28px;
  24. float: right;
  25. font-size: 12px;
  26. top: -3px;
  27. }
  28. .count{
  29. top:13px;
  30. position: absolute;
  31. /* top: 55px; */
  32. right: 15px;
  33. color: #358BFF;
  34. text-align: right;
  35. }
  36. .content{
  37. padding: 0 12px;
  38. transition: all .3s linear;
  39. max-height: 75vh;
  40. overflow-y: auto;
  41. width: 100%;
  42. }
  43. .num{
  44. margin: 12px 0;
  45. color: #000;
  46. font-weight: 600;
  47. line-height: 50rpx;
  48. display: flex;
  49. }
  50. .num image{
  51. width: 38px;
  52. position: relative;
  53. top: 2px;
  54. }
  55. .ques{
  56. margin-bottom: 120rpx;
  57. }
  58. .ans .option view{
  59. margin-bottom: 24px;
  60. border: 1px solid #D8D8D8;
  61. padding: 10px;
  62. border-radius: 4px;
  63. }
  64. .ans .option .correct{
  65. border-color: #36D488;
  66. color: #36D488;
  67. }
  68. .ans .option .error{
  69. border-color: #FF6868;
  70. color: #FF6868;
  71. }
  72. .ans radio,.ans checkbox{
  73. width: 100%;
  74. }
  75. .btn{
  76. position: fixed;
  77. width: 100%;
  78. left: 0;
  79. z-index: 9;
  80. bottom: 80rpx;
  81. display: flex;
  82. flex-wrap: wrap;
  83. justify-content: space-between;
  84. padding: 0 50px;
  85. background-color: #fff;
  86. }
  87. .btn text{
  88. width:45%;
  89. height:40px;
  90. border: 1px solid #0091FF;
  91. color: #0091FF;
  92. /* background:rgba(212,230,255,1); */
  93. border-radius:31px;
  94. display: inline-block;
  95. text-align: center;
  96. line-height: 40px;
  97. /* margin: 0 20px; */
  98. font-weight: 500;
  99. }
  100. .btn .hide{
  101. /* background-color: #eee; */
  102. border-color: #eee;
  103. color: #eee;
  104. }
  105. .btn view{
  106. width: 100%;
  107. background-color: #DAEFFF;
  108. color: #0091FF;
  109. height: 84rpx;
  110. border-radius: 44rpx;
  111. text-align: center;
  112. line-height: 84rpx;
  113. font-size: 30rpx;
  114. margin-top: 20rpx;
  115. }
  116. .analysis{
  117. background-color: #FCF4DD;
  118. padding: 10px;
  119. border-radius: 4px;
  120. margin-top: 10px;
  121. font-size: 13px;
  122. line-height: 23px;
  123. }
  124. .ans_bg{
  125. position: fixed;
  126. width: 100%;
  127. height: 100vh;
  128. top: 0;
  129. left: 0;
  130. background-color: rgba(0,0,0,.5);
  131. z-index: 9999;
  132. }
  133. .ans_card{
  134. width: 93%;
  135. background-color: #fff;
  136. border-radius: 8px;
  137. padding: 10px;
  138. margin: auto;
  139. position: absolute;
  140. bottom: 20px;
  141. left: 0;
  142. right: 0;
  143. overflow: auto;
  144. max-height: 90%;
  145. display: flex;
  146. justify-content: flex-start;
  147. flex-wrap: wrap;
  148. }
  149. .ans_card view{
  150. padding: 10px 0;
  151. margin-bottom: 10px;
  152. border-bottom: 1px solid #d9d9d9;
  153. font-weight: 600;
  154. width: 100%;
  155. }
  156. .ans_card text{
  157. display: inline-block;
  158. width: 55rpx;
  159. height: 55rpx;
  160. border-radius: 50%;
  161. border: 1px solid #d9d9d9;
  162. text-align: center;
  163. line-height: 55rpx;
  164. margin:8rpx;
  165. }
  166. .ans_card .act{
  167. background-color: #0091FF;
  168. border-color: #0091FF;
  169. color: #fff;
  170. }
  171. .ans_card .right{
  172. background-color: #22CC62;
  173. border-color: #22CC62;
  174. color: #fff;
  175. }
  176. .close{
  177. width: 20px;
  178. float: right;
  179. }
  180. .ans_card .error{
  181. background-color: #FF6868;
  182. border-color: #FF6868;
  183. color: #fff;
  184. }