examResult.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. .container {
  2. position: relative;
  3. }
  4. .exam-bg {
  5. position: absolute;
  6. left: 0;
  7. top: 0;
  8. }
  9. .page-bg {
  10. position: absolute;
  11. left: 50%;
  12. top: 70rpx;
  13. transform: translate(-50%);
  14. }
  15. .top {
  16. position: absolute;
  17. left: 50%;
  18. top: 30rpx;
  19. transform: translate(-50%);
  20. width: 161rpx;
  21. height: 161rpx;
  22. background: #FFFFFF;
  23. border-radius: 50%;
  24. display: flex;
  25. justify-content: center;
  26. align-items: center;
  27. }
  28. .logo {
  29. width: 124rpx;
  30. height: 124rpx;
  31. background: linear-gradient(0deg, #FF4330 0%, #FF7B60 100%);
  32. border-radius: 50%;
  33. border: 8rpx solid #FFCDC6;
  34. border-radius: 50%;
  35. display: flex;
  36. align-items: center;
  37. flex-direction: column;
  38. justify-content: center;
  39. }
  40. .score {
  41. line-height: 50rpx;
  42. font-size: 50rpx;
  43. font-weight: 500;
  44. color: #FFFFFF;
  45. }
  46. .unit {
  47. font-size: 21rpx;
  48. font-weight: 500;
  49. color: #FFFFFF;
  50. }
  51. .content {
  52. position: absolute;
  53. width: 580rpx;
  54. left: 50%;
  55. top: 150rpx;
  56. transform: translate(-50%);
  57. }
  58. .title {
  59. padding-left: 15rpx;
  60. }
  61. .card-container {
  62. height: 70vh;
  63. overflow: hidden;
  64. overflow-y: scroll;
  65. }
  66. .card-container::-webkit-scrollbar {
  67. display: none;
  68. width: 0;
  69. height: 0;
  70. color: transparent;
  71. }
  72. .card {
  73. margin-bottom: 20rpx;
  74. background: rgba(255, 173, 156, 0.1);
  75. border-radius: 7rpx;
  76. padding: 20rpx 40rpx 30rpx 15rpx;
  77. display: flex;
  78. }
  79. .no {
  80. line-height: 34rpx;
  81. width: 34rpx;
  82. height: 34rpx;
  83. border: 1rpx solid #999999;
  84. border-radius: 50%;
  85. display: flex;
  86. justify-content: center;
  87. align-items: centere;
  88. font-size: 21rpx;
  89. font-weight: 500;
  90. color: #666666;
  91. }
  92. .card-content {
  93. flex: 1;
  94. margin-left: 15rpx;
  95. display: flex;
  96. flex-direction: column;
  97. }
  98. .question {
  99. font-size: 25rpx;
  100. font-weight: 400;
  101. color: #333333;
  102. }
  103. .answer {
  104. margin-top: 20rpx;
  105. display: flex;
  106. }
  107. .answer-key {
  108. margin-right: 10rpx;
  109. font-size: 21rpx;
  110. font-weight: 400;
  111. color: #333333;
  112. }
  113. .answer-ok {
  114. font-size: 21rpx;
  115. font-weight: 400;
  116. color: #00B627;
  117. }
  118. .answer-my {
  119. font-size: 21rpx;
  120. font-weight: 400;
  121. color: #EB3F33;
  122. }