mistakes.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /* pages/mistakes/mistakes.wxss */
  2. .recommend {
  3. width: 100%;
  4. padding: 0 15rpx;
  5. box-sizing: border-box;
  6. }
  7. .answer-number {
  8. width: 100%;
  9. margin: 20rpx 0;
  10. border-radius: 25rpx;
  11. padding: 32rpx 24rpx;
  12. box-sizing: border-box;
  13. background: #fff;
  14. display: flex;
  15. justify-content: space-around;
  16. }
  17. .answer-number view {
  18. display: flex;
  19. flex-direction: column;
  20. justify-content: center;
  21. align-items: center;
  22. font-size: 32rpx;
  23. color: #444;
  24. }
  25. .gross text:nth-child(2) {
  26. color: #10A1F0;
  27. font-size: 36rpx;
  28. font-weight: 600;
  29. }
  30. .error text:nth-child(2) {
  31. color: #EA3433;
  32. font-size: 36rpx;
  33. font-weight: 600;
  34. }
  35. .correct text:nth-child(2) {
  36. color: #444;
  37. font-size: 36rpx;
  38. font-weight: 600;
  39. }
  40. .course-head {
  41. display: flex;
  42. justify-content: center;
  43. }
  44. .subject {
  45. padding: 20rpx 70rpx;
  46. font-size: 36rpx;
  47. font-weight: 600;
  48. border-radius: 30rpx 30rpx 0 0;
  49. color: #767676;
  50. }
  51. .select {
  52. background: #fff;
  53. color: #000;
  54. }
  55. .answer-content {
  56. position: relative;
  57. padding-bottom: 20rpx;
  58. }
  59. .answer-content .questions {
  60. position: absolute;
  61. left: 0;
  62. top: 0;
  63. z-index: 1;
  64. width: 100%;
  65. height: 405rpx;
  66. border-radius: 20rpx;
  67. }
  68. .answer {
  69. position: relative;
  70. margin:0 20rpx;
  71. border-radius: 10rpx;
  72. }
  73. .analysis-box {
  74. position: absolute;
  75. left: 2%;
  76. top: 398rpx;
  77. }
  78. .answer-txt {
  79. position: absolute;
  80. left: 20%;
  81. top: 416rpx;
  82. z-index: 2;
  83. font-size: 28rpx;
  84. color: #858585;
  85. }
  86. .analysis {
  87. }
  88. .unfold {
  89. background: #fff;
  90. }
  91. .analysis .analysis-img {
  92. position: absolute;
  93. right: 0;
  94. top: 404rpx;
  95. width: 103rpx;
  96. height: 60rpx;
  97. }
  98. .analysis .analysis-img-top {
  99. position: absolute;
  100. bottom: -402rpx;
  101. left: 50%;
  102. transform: translate(-50%, 0);
  103. width: 99rpx;
  104. height: 22rpx;
  105. }
  106. .noerr {
  107. color: #ccc;
  108. margin-top: 30rpx;
  109. text-align: center;
  110. }
  111. .mistakes-dialog {
  112. position: fixed;
  113. left: 0;
  114. top: 0;
  115. width: 100%;
  116. height: 100%;
  117. background: rgba(0, 0, 0, .4);
  118. z-index:100;
  119. }
  120. .mistakes-dialog-scroll {
  121. position: absolute;
  122. left: 5%;
  123. top: 478rpx;
  124. height: 50%;
  125. }
  126. .error-questions {
  127. width: 96%;
  128. height: 405rpx;
  129. border-radius: 20rpx;
  130. position: absolute;
  131. left: 2%;
  132. top: 80rpx;
  133. z-index: 2;
  134. }
  135. .error-analysis {
  136. border-radius: 0 0 20rpx 20rpx;
  137. }
  138. .close {
  139. width: 88rpx;
  140. height: 88rpx;
  141. position: absolute;
  142. bottom: 8rpx;
  143. left: 50%;
  144. transform: translate(-44rpx)
  145. }