123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- .select {
- padding: 0 12px;
- height: 24px;
- }
- .tag-list {
- margin-top: 12px;
- :global {
- .van-tag {
- margin-right: 6px;
- margin-bottom: 6px;
- }
- }
- }
- .radio-group,
- .checkbox-group {
- display: flex;
- margin-top: 14px;
- .radio:first-child {
- :global {
- .van-radio__label {
- margin-left: 0;
- }
- }
- }
- .checkbox:first-child {
- :global {
- .van-checked__label {
- margin-left: 0;
- }
- }
- }
- }
- .radio {
- :global {
- .van-radio__icon {
- display: none;
- }
- .van-tag--large {
- width: 94px;
- height: 30px;
- font-size: 16px;
- text-align: center;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .van-tag {
- box-sizing: border-box;
- }
- .van-tag--default {
- color: var(--van-tag-text-default-color);
- }
- .van-tag--primary {
- background-color: var(--tag-bg-color);
- }
- }
- }
- .checkbox-group {
- padding-bottom: 12px;
- }
- .checkbox {
- :global {
- .van-checkbox__icon {
- display: none;
- }
- .van-tag--large {
- width: 94px;
- height: 30px;
- font-size: 16px;
- text-align: center;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .van-tag {
- box-sizing: border-box;
- }
- .van-tag--default {
- color: var(--van-tag-text-default-color);
- }
- .van-tag--primary {
- background-color: var(--tag-bg-color);
- }
- }
- }
|