mistakes.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. background: #A3E0F3;
  46. padding: 20rpx 70rpx;
  47. font-size: 36rpx;
  48. font-weight: 600;
  49. border-radius: 30rpx 30rpx 0 0;
  50. }
  51. .select {
  52. background: #fff;
  53. }
  54. .answer-content {
  55. margin-bottom: 20rpx;
  56. }
  57. .answer-content .questions {
  58. width: 100%;
  59. height: 405rpx;
  60. border-radius: 20rpx;
  61. }
  62. .answer {
  63. position: relative;
  64. display: flex;
  65. justify-content: space-evenly;
  66. margin:-8rpx 20rpx 0 20rpx;
  67. border-radius: 10rpx;
  68. }
  69. .unfold {
  70. background: #fff;
  71. }
  72. .analysis {
  73. }
  74. .analysis .analysis-img {
  75. width: 103rpx;
  76. height: 60rpx;
  77. }
  78. .analysis .analysis-img-top {
  79. position: absolute;
  80. bottom: 0;
  81. left: 50%;
  82. transform: translate(-50%, 0);
  83. width: 99rpx;
  84. height: 22rpx;
  85. }