1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- .tips {
- display: flex;
- align-items: center;
- margin: 12px 13px;
- background: #ffebdd;
- border-radius: 10px;
- padding: 7px 19px;
- font-size: 14px;
- color: #f67146;
- line-height: 20px;
- .icon {
- font-size: 24px;
- margin-right: 6px;
- }
- }
- .cellGroup {
- margin: 0 13px;
- border-radius: 10px;
- overflow: hidden;
- :global {
- .van-cell {
- font-size: 16px;
- padding: 18px 12px;
- }
- .van-cell__value {
- color: #333;
- }
- .van-radio-group {
- justify-content: flex-end;
- }
- }
- .radioSection {
- position: relative;
- min-width: 32px;
- justify-content: center;
- }
- .radioItem {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- opacity: 0;
- }
- .radioSection + .radioSection {
- margin-left: 12px;
- }
- }
- .dialogTitle {
- i {
- display: inline-block;
- width: 4px;
- height: 14px;
- background: #ff8057;
- border-radius: 2px;
- margin-right: 6px;
- }
- padding-left: 25px;
- text-align: left;
- font-size: 18px;
- font-weight: 500;
- color: #333333;
- line-height: 25px;
- padding-bottom: 12px;
- }
|