12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- .unitDetail {
- min-height: 100vh;
- overflow: hidden;
- background: url('../images/bg.png') no-repeat top center;
- background-size: contain;
- position: relative;
- background-color: #ABE8FF;
- }
- .unitSwipe {
- margin-top: 90px;
- .questionTitle {
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 14px;
- font-weight: bold;
- color: #333;
- padding-bottom: 12px;
- .questionNum {
- span {
- color: #FF5A56;
- }
- }
- .questionType {
- display: flex;
- align-items: center;
- font-weight: 600;
- color: #FF5A56;
- font-size: 14px;
- }
- }
- }
- .wapList {
- width: 44px;
- height: 49px;
- flex-shrink: 0;
- margin-left: 18px;
- }
- .btnSection {
- background-color: #fff;
- padding-top: 20px;
- --van-button-default-height: 49px;
- .prevBtn,
- .nextBtn,
- .activePrevBtn {
- width: 124px !important;
- border: none;
- color: #fff;
- }
- .prevBtn {
- background: url('../images/prev_btn_bg.png') no-repeat center;
- background-size: contain;
- }
- .activePrevBtn {
- background: url('../images/next_btn_bg.png') no-repeat center;
- background-size: contain;
- }
- .nextBtn {
- background: url('../images/next_btn_bg.png') no-repeat center;
- background-size: contain;
- }
- :global {
- .van-button--disabled {
- color: #587C98;
- &:before {
- opacity: 0.2 !important;
- }
- }
- }
- }
- .right {
- color: #14C295;
- }
- .error {
- color: #FF5A56;
- }
- .minutes {
- color: #1cacf1;
- }
|