123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- .standard {
- --van-dialog-message-font-size: 16px !important;
- }
- .tips {
- display: flex;
- align-items: center;
- margin: 12px 13px;
- background: #ffebdd;
- border-radius: 10px;
- padding: 7px 12px;
- font-size: 13px;
- color: #f67146;
- line-height: 20px;
- .icon {
- font-size: 20px;
- 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;
- }
|