| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .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: 0 13px;
- 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;
- }
- }
|