mistakes.wxss 1003 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. }