exam_detail.css 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. .new3 .body {
  2. padding: 0 5px;
  3. margin-top: 90px;
  4. }
  5. .new3 .body h4 {
  6. font-weight: 500;
  7. }
  8. .new3 .body .title {
  9. color: #777;
  10. margin: 5px 0;
  11. }
  12. .new3 .body .list .list-flex {
  13. margin: 10px 0;
  14. display: flex;
  15. justify-content: flex-start;
  16. align-items: center;
  17. }
  18. .new3 .body .list .list-flex .list-item {
  19. border-radius: 5px;
  20. flex: 1;
  21. padding: 10px;
  22. margin-right: 20px;
  23. box-shadow: 0 0 5px #d6d6d6;
  24. }
  25. .new3 .body .list .list-flex .list-item:hover {
  26. cursor: pointer;
  27. }
  28. @media screen and (max-width: 768px) {
  29. .new3 .body .list .list-flex .list-item {
  30. margin-right: 5px;
  31. }
  32. }
  33. .new3 .body .list .list-flex .list-item h4 {
  34. font-weight: 600;
  35. }
  36. .new3 .body .list .list-flex .list-item .p {
  37. display: flex;
  38. justify-content: space-between;
  39. align-items: center;
  40. }
  41. .new3 .body .list .list-flex .list-item .p .blue {
  42. color: #2382ff;
  43. }
  44. .new3 .body .list .list-flex .list-item .p a:hover {
  45. color: #777;
  46. }
  47. .new3 .body .list .list-flex > .list-item:last-child {
  48. margin: 0 0 0 20px;
  49. }
  50. @media screen and (max-width: 768px) {
  51. .new3 .body .list .list-flex > .list-item:last-child {
  52. margin: 0 0 0 5px;
  53. }
  54. }
  55. .alert-msg {
  56. margin: 10px 0;
  57. padding: 10px;
  58. background-color: #eee;
  59. border-radius: 5px;
  60. vertical-align: middle;
  61. text-align: center;
  62. }
  63. #toast .toast-content img {
  64. padding: 1px;
  65. }
  66. .new3 .body .exam-code {
  67. margin: 30px 0;
  68. }
  69. .new3 .body .exam-code::before {
  70. content: "更多参考答案,请下载大联考app;或者微信扫描,打开“大联考APP”小程序进行查看。";
  71. text-align: center;
  72. display: block;
  73. color: #777;
  74. padding-bottom: 10px;
  75. }
  76. .new3 .body .exam-code ul {
  77. margin: 0;
  78. padding: 0;
  79. display: flex;
  80. justify-content: center;
  81. align-items: center;
  82. list-style: none;
  83. }
  84. .new3 .body .exam-code ul li ul {
  85. display: block;
  86. max-width: 200px;
  87. max-height: 200px;
  88. min-width: 100px;
  89. min-height: 100px;
  90. box-sizing: border-box;
  91. padding: 20px;
  92. }
  93. .new3 .body .exam-code ul li ul li {
  94. text-align: center;
  95. }
  96. .new3 .body .exam-code ul li ul li img {
  97. width: 100%;
  98. }