123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- .tips {
- display: flex;
- 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;
- }
- }
- .informationBottom {
- :global {
- .van-sticky {
- position: absolute;
- }
- }
- }
- .cellGroup {
- margin: 12px 13px 0;
- border-radius: 10px;
- overflow: hidden;
- .classType {
- flex: 0 auto;
- }
- :global {
- .van-cell {
- font-size: 16px;
- padding: 18px 12px;
- }
- .van-cell__value {
- color: #333;
- }
- .van-radio-group,
- .van-checkbox-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;
- }
- }
|