2025-03-21 18:05:54 +08:00
|
|
|
/**自定义CheckBox**/
|
|
|
|
page {
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 自定义导航栏容器 */
|
|
|
|
.custom-navbar {
|
2025-03-21 09:02:29 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2025-03-21 18:05:54 +08:00
|
|
|
padding-left: 16px;
|
|
|
|
padding-right: 16px;
|
|
|
|
background-color: #ffffff;
|
|
|
|
box-shadow: 0 2rpx 4rpx rgba(0, 0, 0, 0.05);
|
2025-03-21 09:02:29 +08:00
|
|
|
}
|
|
|
|
|
2025-03-21 18:05:54 +08:00
|
|
|
/* 标题 */
|
|
|
|
.navbar-title {
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #000000;
|
|
|
|
}
|
2025-03-21 09:02:29 +08:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2025-03-21 18:05:54 +08:00
|
|
|
/***End***/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.mt-10 {
|
|
|
|
margin-top: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mt-20 {
|
|
|
|
margin-top: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mr-10 {
|
|
|
|
margin-right: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ml-10 {
|
|
|
|
margin-left: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mb-10 {
|
|
|
|
margin-bottom: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mb-20 {
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mt-40 {
|
|
|
|
margin-top: 40rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mr-40 {
|
|
|
|
margin-right: 40rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ml-40 {
|
|
|
|
margin-left: 40rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mb-40 {
|
|
|
|
margin-bottom: 40rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mg {
|
|
|
|
margin: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pd {
|
|
|
|
padding: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.divider-v {
|
|
|
|
margin-top: 5rpx;
|
|
|
|
width: 90%;
|
|
|
|
height: 3rpx;
|
|
|
|
background-color: #F0F0F0;
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.divider-v-100 {
|
|
|
|
height: 1rpx;
|
|
|
|
background-color: #F0F0F0;
|
|
|
|
width: 100%;
|
|
|
|
}
|