mistakes.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. margin-bottom: 20rpx;
  57. }
  58. .answer-content .questions {
  59. width: 100%;
  60. height: 405rpx;
  61. border-radius: 20rpx;
  62. }
  63. .answer {
  64. position: relative;
  65. display: flex;
  66. justify-content: space-evenly;
  67. margin:0 20rpx;
  68. border-radius: 10rpx;
  69. }
  70. .answer-txt {
  71. font-size: 28rpx;
  72. color: #858585;
  73. }
  74. .analysis {
  75. position: absolute;
  76. right: 0;
  77. top: -10rpx;
  78. }
  79. .unfold {
  80. background: #fff;
  81. }
  82. .analysis .analysis-img {
  83. width: 103rpx;
  84. height: 60rpx;
  85. }
  86. .analysis .analysis-img-top {
  87. position: absolute;
  88. bottom: 0;
  89. left: 50%;
  90. transform: translate(-50%, 0);
  91. width: 99rpx;
  92. height: 22rpx;
  93. }
  94. .noerr {
  95. color: #ccc;
  96. margin-top: 30rpx;
  97. text-align: center;
  98. }