index.module.less 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. .unitDetail {
  2. min-height: 100vh;
  3. overflow: hidden;
  4. background: url('../images/bg.png') no-repeat top center;
  5. background-size: contain;
  6. position: relative;
  7. background-color: #ABE8FF;
  8. }
  9. .unitSwipe {
  10. margin-top: 75px;
  11. .questionTitle {
  12. display: flex;
  13. align-items: center;
  14. justify-content: space-between;
  15. font-size: 14px;
  16. font-weight: bold;
  17. color: #333;
  18. padding-bottom: 12px;
  19. .questionNum {
  20. span {
  21. color: #FF5A56;
  22. }
  23. }
  24. .questionType {
  25. display: flex;
  26. align-items: center;
  27. i {
  28. margin-right: 6px;
  29. display: inline-block;
  30. width: 20px;
  31. height: 20px;
  32. background: url('../images/icon-book.png') no-repeat center;
  33. background-size: contain;
  34. }
  35. }
  36. }
  37. }
  38. .wapList {
  39. width: 44px;
  40. height: 49px;
  41. flex-shrink: 0;
  42. margin-left: 18px;
  43. }
  44. .btnSection {
  45. background-color: #fff;
  46. padding-top: 20px;
  47. --van-button-default-height: 49px;
  48. .prevBtn,
  49. .nextBtn,
  50. .activePrevBtn {
  51. width: 124px !important;
  52. border: none;
  53. color: #fff;
  54. }
  55. .prevBtn {
  56. background: url('../images/prev_btn_bg.png') no-repeat center;
  57. background-size: contain;
  58. }
  59. .activePrevBtn {
  60. background: url('../images/next_btn_bg.png') no-repeat center;
  61. background-size: contain;
  62. }
  63. .nextBtn {
  64. background: url('../images/next_btn_bg.png') no-repeat center;
  65. background-size: contain;
  66. }
  67. :global {
  68. .van-button--disabled {
  69. color: #587C98;
  70. &:before {
  71. opacity: 0.2 !important;
  72. }
  73. }
  74. }
  75. }
  76. .right {
  77. color: #14C295;
  78. }
  79. .error {
  80. color: #FF5A56;
  81. }