index.module.less 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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: 90px;
  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. font-weight: 600;
  28. color: #FF5A56;
  29. font-size: 14px;
  30. }
  31. }
  32. }
  33. .wapList {
  34. width: 44px;
  35. height: 49px;
  36. flex-shrink: 0;
  37. margin-left: 18px;
  38. }
  39. .btnSection {
  40. background-color: #fff;
  41. padding-top: 20px;
  42. --van-button-default-height: 49px;
  43. .prevBtn,
  44. .nextBtn,
  45. .activePrevBtn {
  46. width: 124px !important;
  47. border: none;
  48. color: #fff;
  49. }
  50. .prevBtn {
  51. background: url('../images/prev_btn_bg.png') no-repeat center;
  52. background-size: contain;
  53. }
  54. .activePrevBtn {
  55. background: url('../images/next_btn_bg.png') no-repeat center;
  56. background-size: contain;
  57. }
  58. .nextBtn {
  59. background: url('../images/next_btn_bg.png') no-repeat center;
  60. background-size: contain;
  61. }
  62. :global {
  63. .van-button--disabled {
  64. color: #587C98;
  65. &:before {
  66. opacity: 0.2 !important;
  67. }
  68. }
  69. }
  70. }
  71. .right {
  72. color: #14C295;
  73. }
  74. .error {
  75. color: #FF5A56;
  76. }
  77. .minutes {
  78. color: #1cacf1;
  79. }
  80. .unitDetailTablet {
  81. .prevBtn,
  82. .nextBtn,
  83. .activePrevBtn {
  84. width: 40% !important;
  85. --van-button-default-height: 56px;
  86. }
  87. .prevBtn {
  88. background: url('../images/prev_btn_bg-tablet.png') no-repeat center;
  89. background-size: contain;
  90. }
  91. .activePrevBtn {
  92. background: url('../images/next_btn_bg-tablet.png') no-repeat center;
  93. background-size: contain;
  94. }
  95. .nextBtn {
  96. background: url('../images/next_btn_bg-tablet.png') no-repeat center;
  97. background-size: contain;
  98. }
  99. .wapList {
  100. width: 51px;
  101. height: 56px;
  102. }
  103. }