12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- @import "/static/font.wxss";
- @import "/static/common.wxss";
- page {
- /* 主题色 */
- --themeColor: #FAE529;
- /* 副题色 */
- --subtitleColor: #AFDBF6;
- }
- checkbox .wx-checkbox-input{
- border-radius:50%;
- width:20px;height:20px;
- }
- checkbox .wx-checkbox-input.wx-checkbox-input-checked{
- border-color:var(--subtitleColor) !important;
- background:var(--subtitleColor) !important;
- }
- checkbox .wx-checkbox-input.wx-checkbox-input-checked::before{
- border-radius:50%;
- width:20px;
- height:20px;
- line-height:20px;
- text-align:center;
- font-size:15px;
- color:#fff;
- background:transparent;
- transform:translate(-50%, -50%) scale(1);
- -webkit-transform:translate(-50%, -50%) scale(1);
- }
- radio .wx-radio-input{
- border-radius:50%;
- width:20px;
- height:20px;
- }
- radio .wx-radio-input.wx-radio-input-checked{
- border-color:var(--subtitleColor) !important;
- background:var(--subtitleColor) !important;
- }
- radio .wx-radio-input.wx-radio-input-checked::before{
- border-radius:50%;
- width:20px;
- height:20px;
- line-height:20px;
- text-align:center;
- font-size:15px;
- color:#fff;
- background:transparent;
- transform:translate(-50%, -50%) scale(1);
- -webkit-transform:translate(-50%, -50%) scale(1);
- }
|