exam_detail_img.css 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. .body {
  2. margin-top: 90px;
  3. }
  4. .body h4 {
  5. font-weight: 600;
  6. }
  7. .body .edi-a {
  8. display: block;
  9. background-color: #f5f5f5;
  10. padding: 10px;
  11. margin: 5px 0px;
  12. border-radius: 5px;
  13. color: #777;
  14. position: relative;
  15. }
  16. .body .edi-a span {
  17. display: block !important;
  18. overflow: hidden;
  19. white-space: nowrap;
  20. text-overflow: ellipsis;
  21. width: calc(100% - 16px);
  22. }
  23. .body .edi-a i {
  24. color: #ccc;
  25. position: absolute;
  26. right: 10px;
  27. top: 12px;
  28. }
  29. .body .edi-p1 {
  30. font-size: 12px;
  31. color: #777;
  32. line-height: 50px;
  33. margin: 0;
  34. }
  35. .body .edi-p2 {
  36. color: #999;
  37. padding-bottom: 25px;
  38. border-bottom: 8px solid #f5f5f5;
  39. }
  40. .body .edi-p2 > span:first-child {
  41. display: inline-block;
  42. padding: 5px 5px 0px 5px;
  43. border-radius: 15px 15px 5px 5px;
  44. background-color: #f5f5f5;
  45. }
  46. .body .edi-p2 .edi-p-span {
  47. padding: 5px 0px 0px;
  48. }
  49. .body .edi-p2 .edi-p-span span {
  50. margin-right: 20px;
  51. font-size: 12px;
  52. }
  53. .body .edi-p2 .edi-p-span img {
  54. width: 20px;
  55. height: 20px;
  56. }
  57. .body .edi-body {
  58. position: relative;
  59. padding-bottom: 50px;
  60. height: 800px;
  61. overflow: hidden;
  62. }
  63. .body .edi-body .edi-user {
  64. margin-top: 10px;
  65. padding: 10px;
  66. display: flex;
  67. justify-content: space-between;
  68. align-items: center;
  69. }
  70. @media screen and (max-width: 768px) {
  71. .body .edi-body .edi-user {
  72. padding: 10px 0px;
  73. }
  74. }
  75. .body .edi-body .edi-user .left {
  76. display: flex;
  77. justify-content: flex-start;
  78. align-items: center;
  79. }
  80. .body .edi-body .edi-user .left img {
  81. width: 50px;
  82. height: 50px;
  83. margin: 0 10px;
  84. }
  85. @media screen and (max-width: 768px) {
  86. .body .edi-body .edi-user .left img {
  87. width: 30px;
  88. height: 30px;
  89. margin-left: 0px;
  90. margin-right: 5px;
  91. }
  92. }
  93. .body .edi-body .edi-user .left div p {
  94. text-align: start;
  95. margin: 5px 0;
  96. }
  97. @media screen and (max-width: 768px) {
  98. .body .edi-body .edi-user .left div p {
  99. margin: 0;
  100. }
  101. }
  102. .body .edi-body .edi-user .left div > p:last-child {
  103. font-size: 12px;
  104. color: #999;
  105. }
  106. .body .edi-body .edi-user .right i {
  107. background-color: #2382ff;
  108. font-size: 25px;
  109. width: 45px;
  110. height: 45px;
  111. border-radius: 50%;
  112. color: #fff;
  113. text-align: center;
  114. line-height: 45px;
  115. margin-left: 10px;
  116. }
  117. @media screen and (max-width: 768px) {
  118. .body .edi-body .edi-user .right i {
  119. font-size: 5px;
  120. margin-left: 0;
  121. }
  122. }
  123. .body .edi-body #title {
  124. font-weight: bold;
  125. }
  126. .body .edi-body p {
  127. width: 100%;
  128. text-align: center;
  129. }
  130. .body .edi-body p img {
  131. width: 100%;
  132. }
  133. .body .edi-body #edi-answer {
  134. color: #f03;
  135. }
  136. .body .edi-body .edi-open {
  137. width: 100%;
  138. text-align: center;
  139. background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 100%);
  140. position: absolute;
  141. bottom: 0px;
  142. padding-top: 50px;
  143. }
  144. .body .edi-body .edi-open span {
  145. display: inline-block;
  146. border-radius: 30px;
  147. background-color: #eef5ff;
  148. padding: 6px 20px;
  149. color: #2382ff;
  150. }
  151. .body .edi-body .edi-open span i {
  152. margin-left: 5px;
  153. }
  154. .body .edi-body-height {
  155. height: auto;
  156. }
  157. .body .edi-footer {
  158. margin-top: 50px;
  159. text-align: center;
  160. color: #777;
  161. }
  162. .body .edi-footer .choose {
  163. width: 300px;
  164. margin: auto;
  165. display: flex;
  166. justify-content: space-around;
  167. align-items: center;
  168. }
  169. .body .edi-footer .choose .img {
  170. width: 66px;
  171. color: #000;
  172. }
  173. .body .edi-footer .choose .img img {
  174. width: 100%;
  175. }
  176. .body .edi-footer .choose .img span {
  177. color: #777;
  178. margin-left: 5px;
  179. }
  180. .body .interactive .pull-left label {
  181. vertical-align: middle;
  182. font-size: 14px;
  183. color: #777;
  184. font-weight: normal;
  185. }
  186. .body .interactive h5 {
  187. border-bottom: 1px solid #e6e6e6;
  188. padding: 10px 0px;
  189. margin: 5px 0px;
  190. }
  191. .body .interactive .pull-right .active {
  192. color: #000;
  193. }
  194. .body .interactive .pull-right span {
  195. color: #777;
  196. }
  197. .body .interactive .alert {
  198. clear: both;
  199. }
  200. .body .prog {
  201. background-color: #eef5ff;
  202. border-radius: 5px;
  203. padding: 20px;
  204. position: relative;
  205. }
  206. @media screen and (max-width: 768px) {
  207. .body .prog {
  208. padding: 20px 5px;
  209. }
  210. }
  211. .body .prog .title {
  212. color: #2382ff;
  213. position: absolute;
  214. top: 10px;
  215. }
  216. .body .prog .flex {
  217. height: 50px;
  218. box-sizing: border-box;
  219. display: flex;
  220. justify-content: space-between;
  221. align-items: center;
  222. }
  223. .body .prog .flex .pro {
  224. width: 100%;
  225. max-width: 50%;
  226. min-width: 200px;
  227. box-sizing: border-box;
  228. height: 5px;
  229. border-radius: 5px;
  230. background-color: #fff;
  231. margin-right: 20px;
  232. position: relative;
  233. }
  234. .body .prog .flex .pro .pro-title {
  235. position: absolute;
  236. right: 0px;
  237. top: -20px;
  238. color: #999;
  239. }
  240. .body .prog .flex .pro .pro-content {
  241. width: 0%;
  242. height: 100%;
  243. background-color: #2382ff;
  244. }
  245. .body .prog .flex .pro .icon {
  246. position: absolute;
  247. width: 30px;
  248. height: 30px;
  249. box-sizing: border-box;
  250. background-color: #fff;
  251. text-align: center;
  252. line-height: 27px;
  253. border-radius: 50%;
  254. top: -12px;
  255. border: 2px solid #7aaef3;
  256. }
  257. .body .prog .flex .pro .pro-show {
  258. width: 100px;
  259. position: absolute;
  260. top: 20px;
  261. color: #2382ff;
  262. }
  263. .body .prog .flex .button {
  264. width: 80px;
  265. line-height: 40px;
  266. text-align: center;
  267. color: #fff;
  268. background-color: #7aaef3;
  269. border-radius: 10px;
  270. box-sizing: border-box;
  271. }