123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- .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: 75px;
- .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;
- i {
- margin-right: 6px;
- display: inline-block;
- width: 20px;
- height: 20px;
- background: url('../images/icon-book.png') no-repeat center;
- background-size: contain;
- }
- }
- }
- }
- .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;
- }
|