40 lines
842 B
Plaintext
40 lines
842 B
Plaintext
/**app.wxss**/
|
|
.container {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 200rpx 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
|
|
/**自定义CheckBox**/
|
|
wx-checkbox .wx-checkbox-input.wx-checkbox-input-checked {
|
|
color: #fff !important;
|
|
background-color: #3F72FF;
|
|
border: 2rpx solid #3F72FF
|
|
}
|
|
|
|
wx-checkbox .wx-checkbox-input {
|
|
/*margin-right: 10rpx;*/
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
outline: 0;
|
|
text-indent: 0;
|
|
border-radius: 50%;
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
background-color: transparent;
|
|
position: relative;
|
|
border: 1rpx solid rgb(85, 85, 85);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/*钩大小*/
|
|
wx-checkbox .wx-checkbox-input.wx-checkbox-input-checked:before {
|
|
font-size: 36rpx;
|
|
}
|
|
|
|
/***End***/ |