exam_detail.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. }