mistakes.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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: 100rpx;
  58. }
  59. .answer-content .questions {
  60. width: 100%;
  61. border-radius: 20rpx;
  62. }
  63. .answer {
  64. position: relative;
  65. margin: -10rpx 20rpx;
  66. border-radius: 10rpx;
  67. }
  68. .analysis-box {
  69. margin-left: 2%;
  70. }
  71. .answer-txt {
  72. position: absolute;
  73. left: 20%;
  74. top: 20rpx;
  75. z-index: 2;
  76. font-size: 28rpx;
  77. color: #858585;
  78. }
  79. .unfold {
  80. background: #fff;
  81. }
  82. .analysis .analysis-img {
  83. position: absolute;
  84. right: 0;
  85. top: 0;
  86. width: 103rpx;
  87. height: 60rpx;
  88. }
  89. .analysis .analysis-img-top {
  90. position: absolute;
  91. bottom: 10rpx;
  92. left: 50%;
  93. transform: translate(-50%, 0);
  94. width: 99rpx;
  95. height: 22rpx;
  96. }
  97. .noerr {
  98. color: #ccc;
  99. margin-top: 30rpx;
  100. text-align: center;
  101. }
  102. .mistakes-dialog {
  103. position: fixed;
  104. left: 0;
  105. top: 0;
  106. width: 100%;
  107. height: 100%;
  108. background: rgba(0, 0, 0, .4);
  109. z-index:100;
  110. }
  111. .mistakes-dialog-scroll {
  112. position: absolute;
  113. left: 5%;
  114. top: 478rpx;
  115. height: 50%;
  116. }
  117. .error-questions {
  118. width: 96%;
  119. height: 405rpx;
  120. border-radius: 20rpx;
  121. position: absolute;
  122. left: 2%;
  123. top: 80rpx;
  124. z-index: 2;
  125. }
  126. .error-analysis {
  127. border-radius: 0 0 20rpx 20rpx;
  128. }
  129. .close {
  130. width: 88rpx;
  131. height: 88rpx;
  132. position: absolute;
  133. bottom: 8rpx;
  134. left: 50%;
  135. transform: translate(-44rpx)
  136. }