index.module.less 911 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .unitSubject {
  2. padding: 15px;
  3. margin: 0 13px;
  4. background-color: #fff;
  5. overflow: hidden;
  6. border-radius: 10px;
  7. & + .unitSubject {
  8. margin-top: 12px;
  9. }
  10. }
  11. .unitAnswers {
  12. // padding-bottom: 30px;
  13. .unitAnswer {
  14. margin-top: 15px;
  15. background: #f6f6f6;
  16. border-radius: 8px;
  17. padding: 15px 12px;
  18. display: flex;
  19. align-items: center;
  20. justify-content: space-between;
  21. font-size: 16px;
  22. font-weight: 500;
  23. color: #333333;
  24. .option {
  25. margin-right: 10px;
  26. }
  27. .value {
  28. word-break: break-all;
  29. :global {
  30. .van-image {
  31. height: 38px;
  32. }
  33. }
  34. }
  35. .valueAudio {
  36. width: 170px;
  37. }
  38. }
  39. .active {
  40. background-color: #ffebdd;
  41. color: #f67146;
  42. }
  43. .answerContent {
  44. display: flex;
  45. align-items: center;
  46. }
  47. .answerChoice {
  48. font-size: 16px;
  49. font-weight: 500;
  50. line-height: 26px;
  51. }
  52. }