1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- .timer {
- overflow: hidden;
- padding: 0 14px;
- }
- .tips {
- margin: 12px 0;
- padding: 15px 12px;
- background: #ffffff;
- border-radius: 10px;
- .tipsTitle {
- font-size: 18px;
- font-weight: 600;
- color: #333;
- line-height: 25px;
- }
- .tipsTime {
- padding-top: 4px;
- font-size: 14px;
- color: #ff9e5a;
- line-height: 22px;
- span {
- font-weight: 600;
- }
- }
- }
- .timerContainer {
- background: #ffffff;
- border-radius: 10px;
- padding: 0 5px 9px;
- :global {
- .van-col {
- margin-bottom: 5px;
- }
- }
- }
- .tag {
- height: 28px;
- background: #eff6f5;
- border-radius: 4px;
- font-size: 14px;
- font-weight: 600;
- color: #2dc7aa;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .active {
- background: #2dc7aa;
- color: #ffffff;
- }
- .select {
- color: #ffffff !important;
- background: #ffb752;
- }
|