exam_detail_img.css 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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 .fixed {
  64. position: fixed;
  65. top: 0;
  66. width: 100%;
  67. background-color: #fff;
  68. border-bottom: 0;
  69. padding-bottom: 10px;
  70. }
  71. @media screen and (max-width: 768px) {
  72. .body .edi-body .fixed {
  73. top: 80px;
  74. }
  75. }
  76. .body .edi-body .edi-user {
  77. margin-top: 10px;
  78. padding: 10px;
  79. display: flex;
  80. justify-content: space-between;
  81. align-items: center;
  82. }
  83. @media screen and (max-width: 768px) {
  84. .body .edi-body .edi-user {
  85. padding: 10px 0px;
  86. }
  87. }
  88. .body .edi-body .edi-user .left {
  89. display: flex;
  90. justify-content: flex-start;
  91. align-items: center;
  92. }
  93. .body .edi-body .edi-user .left img {
  94. width: 50px;
  95. height: 50px;
  96. margin: 0 10px;
  97. }
  98. @media screen and (max-width: 768px) {
  99. .body .edi-body .edi-user .left img {
  100. width: 30px;
  101. height: 30px;
  102. margin-left: 0px;
  103. margin-right: 5px;
  104. }
  105. }
  106. .body .edi-body .edi-user .left div p {
  107. text-align: start;
  108. margin: 5px 0;
  109. }
  110. @media screen and (max-width: 768px) {
  111. .body .edi-body .edi-user .left div p {
  112. margin: 0;
  113. }
  114. }
  115. .body .edi-body .edi-user .left div > p:last-child {
  116. font-size: 12px;
  117. color: #999;
  118. }
  119. .body .edi-body .edi-user .right i {
  120. background-color: #2382ff;
  121. font-size: 25px;
  122. width: 45px;
  123. height: 45px;
  124. border-radius: 50%;
  125. color: #fff;
  126. text-align: center;
  127. line-height: 45px;
  128. margin-left: 10px;
  129. }
  130. @media screen and (max-width: 768px) {
  131. .body .edi-body .edi-user .right i {
  132. font-size: 5px;
  133. margin-left: 0;
  134. }
  135. }
  136. .body .edi-body #title {
  137. font-weight: bold;
  138. }
  139. .body .edi-body p {
  140. width: 100%;
  141. text-align: center;
  142. }
  143. .body .edi-body p img {
  144. width: 100%;
  145. }
  146. .body .edi-body .edi-line {
  147. color: #f03;
  148. display: flex;
  149. font-size: 16px;
  150. justify-content: center;
  151. align-items: center;
  152. }
  153. .body .edi-body .edi-line::after {
  154. content: '';
  155. display: inline-block;
  156. border-bottom: 1px solid #e6e6e6;
  157. width: 30%;
  158. margin-left: 10px;
  159. }
  160. .body .edi-body .edi-line::before {
  161. content: '';
  162. display: inline-block;
  163. border-bottom: 1px solid #e6e6e6;
  164. width: 30%;
  165. margin-right: 10px;
  166. }
  167. .body .edi-body .edi-open {
  168. width: 100%;
  169. text-align: center;
  170. background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 100%);
  171. position: absolute;
  172. bottom: 0px;
  173. padding-top: 50px;
  174. }
  175. .body .edi-body .edi-open span {
  176. display: inline-block;
  177. border-radius: 30px;
  178. background-color: #eef5ff;
  179. padding: 6px 20px;
  180. color: #2382ff;
  181. }
  182. .body .edi-body .edi-open span i {
  183. margin-left: 5px;
  184. }
  185. .body .edi-body-height {
  186. height: auto;
  187. }
  188. .body .edi-footer {
  189. margin-top: 50px;
  190. text-align: center;
  191. color: #777;
  192. }
  193. .body .edi-footer .choose {
  194. width: 300px;
  195. margin: auto;
  196. display: flex;
  197. justify-content: space-around;
  198. align-items: center;
  199. }
  200. .body .edi-footer .choose .img {
  201. width: 66px;
  202. color: #000;
  203. }
  204. .body .edi-footer .choose .img img {
  205. width: 100%;
  206. }
  207. .body .edi-footer .choose .img span {
  208. color: #777;
  209. margin-left: 5px;
  210. }
  211. .body .interactive .pull-left label {
  212. vertical-align: middle;
  213. font-size: 14px;
  214. color: #777;
  215. font-weight: normal;
  216. }
  217. .body .interactive h5 {
  218. border-bottom: 1px solid #e6e6e6;
  219. padding: 10px 0px;
  220. margin: 5px 0px;
  221. }
  222. .body .interactive .pull-right .active {
  223. color: #000;
  224. }
  225. .body .interactive .pull-right span {
  226. color: #777;
  227. }
  228. .body .interactive .alert {
  229. clear: both;
  230. }
  231. .body .prog {
  232. background-color: #eef5ff;
  233. border-radius: 5px;
  234. padding: 20px;
  235. position: relative;
  236. }
  237. @media screen and (max-width: 768px) {
  238. .body .prog {
  239. padding: 20px 5px;
  240. }
  241. }
  242. .body .prog .title {
  243. color: #2382ff;
  244. position: absolute;
  245. top: 10px;
  246. }
  247. .body .prog .flex {
  248. height: 50px;
  249. box-sizing: border-box;
  250. display: flex;
  251. justify-content: space-between;
  252. align-items: center;
  253. }
  254. .body .prog .flex .pro {
  255. width: 100%;
  256. max-width: 50%;
  257. min-width: 200px;
  258. box-sizing: border-box;
  259. height: 5px;
  260. border-radius: 5px;
  261. background-color: #fff;
  262. margin-right: 20px;
  263. position: relative;
  264. }
  265. .body .prog .flex .pro .pro-title {
  266. position: absolute;
  267. right: 0px;
  268. top: -20px;
  269. color: #999;
  270. }
  271. .body .prog .flex .pro .pro-content {
  272. width: 0%;
  273. height: 100%;
  274. background-color: #2382ff;
  275. }
  276. .body .prog .flex .pro .icon {
  277. position: absolute;
  278. width: 30px;
  279. height: 30px;
  280. box-sizing: border-box;
  281. background-color: #fff;
  282. text-align: center;
  283. line-height: 27px;
  284. border-radius: 50%;
  285. top: -12px;
  286. border: 2px solid #7aaef3;
  287. }
  288. .body .prog .flex .pro .pro-show {
  289. width: 100px;
  290. position: absolute;
  291. top: 20px;
  292. color: #2382ff;
  293. }
  294. .body .prog .flex .button {
  295. width: 80px;
  296. line-height: 40px;
  297. text-align: center;
  298. color: #fff;
  299. background-color: #7aaef3;
  300. border-radius: 10px;
  301. box-sizing: border-box;
  302. }