2025-03-21 18:05:54 +08:00
|
|
|
/**自定义CheckBox**/
|
2025-03-26 18:15:07 +08:00
|
|
|
@import "/static/style/icon.wxss";
|
2025-04-29 17:38:52 +08:00
|
|
|
@import "/static/style/common.wxss";
|
2025-03-24 18:05:54 +08:00
|
|
|
|
|
|
|
.page-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2025-05-06 14:04:00 +08:00
|
|
|
padding: 30rpx;
|
2025-03-21 18:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
::-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-24 18:05:54 +08:00
|
|
|
background-color: transparent;
|
2025-03-21 09:02:29 +08:00
|
|
|
}
|
|
|
|
|
2025-03-21 18:05:54 +08:00
|
|
|
/* 标题 */
|
|
|
|
.navbar-title {
|
2025-03-26 18:15:07 +08:00
|
|
|
font-size: 22px;
|
2025-03-24 18:05:54 +08:00
|
|
|
font-weight: bold;
|
2025-03-21 09:02:29 +08:00
|
|
|
}
|
|
|
|
|
2025-03-21 18:05:54 +08:00
|
|
|
/***End***/
|
2025-05-06 14:04:00 +08:00
|
|
|
.custom-checkbox {
|
|
|
|
font-size: 14px;
|
|
|
|
margin-left: 14px;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.custom-wx-checkbox .wx-checkbox-input.wx-checkbox-input-checked {
|
|
|
|
color: #fff !important;
|
|
|
|
background-color: var(--primary-color);
|
|
|
|
border: 1px solid var(--primary-color);
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.custom-wx-checkbox .wx-checkbox-input {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
outline: 0;
|
|
|
|
text-indent: 0;
|
|
|
|
width: 32rpx;
|
|
|
|
height: 32rpx;
|
|
|
|
border-radius: 50%;
|
|
|
|
background-color: transparent;
|
|
|
|
position: relative;
|
|
|
|
border: 1rpx solid var(--primary-color);
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2025-03-21 18:05:54 +08:00
|
|
|
|
2025-05-06 14:04:00 +08:00
|
|
|
/*钩大小*/
|
|
|
|
.custom-wx-checkbox .wx-checkbox-input.wx-checkbox-input-checked:before {
|
|
|
|
font-size: 32rpx;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
2025-03-21 18:05:54 +08:00
|
|
|
|
|
|
|
|
|
|
|
.mt-10 {
|
|
|
|
margin-top: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mt-20 {
|
|
|
|
margin-top: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mr-10 {
|
|
|
|
margin-right: 10rpx;
|
|
|
|
}
|
|
|
|
|
2025-04-27 18:07:06 +08:00
|
|
|
.ml-5 {
|
|
|
|
margin-left: 5rpx;
|
|
|
|
}
|
|
|
|
|
2025-04-28 18:06:24 +08:00
|
|
|
.star::after {
|
|
|
|
content: "*";
|
2025-04-29 17:38:52 +08:00
|
|
|
color: var(--red-color);
|
2025-04-29 14:19:09 +08:00
|
|
|
margin-left: 6rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gray-star::after {
|
|
|
|
content: '*';
|
2025-04-30 16:08:49 +08:00
|
|
|
color: var(--text-gray-hint-color);
|
2025-04-29 14:19:09 +08:00
|
|
|
margin-left: 6rpx;
|
2025-04-28 18:06:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-footer {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0rpx;
|
|
|
|
left: 0rpx;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
background-color: white;
|
|
|
|
padding-bottom: 40rpx;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2025-05-06 14:04:00 +08:00
|
|
|
.bottom-fixed-footer {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0rpx;
|
|
|
|
left: 0rpx;
|
|
|
|
background-color: var(--white-color);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: var(--page-padding) var(--page-padding) 50rpx;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-btn-green {
|
|
|
|
background-color: var(--btn-green-color);
|
|
|
|
color: white;
|
|
|
|
font-size: 16px;
|
2025-05-08 16:01:06 +08:00
|
|
|
height: 80rpx;
|
|
|
|
line-height: 80rpx;
|
2025-05-06 14:04:00 +08:00
|
|
|
border-radius: 5px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2025-03-21 18:05:54 +08:00
|
|
|
.ml-10 {
|
|
|
|
margin-left: 10rpx;
|
|
|
|
}
|
|
|
|
|
2025-03-24 18:05:54 +08:00
|
|
|
.ml-20 {
|
|
|
|
margin-left: 20rpx;
|
|
|
|
}
|
|
|
|
|
2025-03-21 18:05:54 +08:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2025-03-24 18:05:54 +08:00
|
|
|
.mg-20 {
|
|
|
|
margin: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mg-40 {
|
|
|
|
margin: 40rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pd-20 {
|
|
|
|
padding: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pd-40 {
|
|
|
|
padding: 40rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.border-left {
|
|
|
|
border-top-left-radius: 5rpx;
|
|
|
|
border-bottom-left-radius: 5rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.border-right {
|
|
|
|
border-top-right-radius: 5rpx;
|
|
|
|
border-bottom-right-radius: 5rpx;
|
|
|
|
}
|
|
|
|
|
2025-03-21 18:05:54 +08:00
|
|
|
.divider-v {
|
2025-05-06 17:55:29 +08:00
|
|
|
width: 95%;
|
|
|
|
height: 1rpx;
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--divider-color);
|
2025-03-21 18:05:54 +08:00
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
2025-03-28 18:36:17 +08:00
|
|
|
.divider-h {
|
|
|
|
width: 1px;
|
|
|
|
height: 10px;
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--divider-color);
|
2025-03-28 18:36:17 +08:00
|
|
|
padding: 0px 1px;
|
|
|
|
margin-left: 10px;
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
2025-05-08 08:57:38 +08:00
|
|
|
.divider-h-white {
|
|
|
|
width: 1rpx;
|
|
|
|
height: 20rpx;
|
|
|
|
background-color: var(--primary-color-active);
|
|
|
|
padding: 0rpx 1rpx;
|
|
|
|
align-self: center;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
}
|
|
|
|
|
2025-03-21 18:05:54 +08:00
|
|
|
.divider-v-100 {
|
|
|
|
height: 1rpx;
|
2025-04-29 17:38:52 +08:00
|
|
|
background-color: var(--divider-color);
|
2025-03-21 18:05:54 +08:00
|
|
|
width: 100%;
|
2025-03-26 18:15:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.single-line {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2025-05-08 16:01:06 +08:00
|
|
|
.single-line-front {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2025-05-08 17:42:26 +08:00
|
|
|
direction: rtl;
|
|
|
|
text-align: left;
|
2025-05-08 16:01:06 +08:00
|
|
|
}
|
|
|
|
|
2025-03-26 18:15:07 +08:00
|
|
|
.multiple-3-ellipsis {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: 3;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.multiple-2-ellipsis {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
2025-05-08 08:57:38 +08:00
|
|
|
-webkit-line-clamp: 2;
|
2025-03-26 18:15:07 +08:00
|
|
|
overflow: hidden;
|
2025-04-25 17:37:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.size-16 {
|
|
|
|
height: 16rpx;
|
|
|
|
height: 16rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.size-32 {
|
|
|
|
width: 32rpx;
|
|
|
|
height: 32rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.size-48 {
|
|
|
|
width: 48rpx;
|
|
|
|
height: 48rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.size-48-128 {
|
|
|
|
width: 128rpx;
|
|
|
|
height: 48rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.size-64 {
|
|
|
|
width: 64rpx;
|
|
|
|
height: 64rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.size-128 {
|
|
|
|
width: 128rpx;
|
|
|
|
height: 128rpx;
|
2025-05-09 14:27:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-arrow-solid::after {
|
|
|
|
content: '';
|
|
|
|
background-image: url('data:image/svg+xml;charset=utf-8;base64,PHN2ZyB0PSIxNzQ1ODA2NDUxMTAzIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjE0MDQ5IiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiPjxwYXRoIGQ9Ik0xMDA0Ljk5MTg5NCAyNDIuOTkzNDRjLTEyLjY1ODA2MS0xMi42Njg1NjgtMjcuNjYyODAyLTE4Ljk5NzU5OS00NS4wMDAyMTItMTguOTk3NTk5SDY0LjAwNDgxNmMtMTcuMzQ0NDE1IDAtMzIuMzM4NjQ5IDYuMzI5MDMtNDUuMDA3MjE3IDE4Ljk5NzU5OUM2LjMyOTAzIDI1NS42NzYwMTggMCAyNzAuNjcwMjUxIDAgMjg4LjAwNDE1OWMwIDE3LjMzMDQwNSA2LjMyOTAzIDMyLjMyNDYzOSAxOC45OTc1OTkgNDQuOTk2NzFsNDQ3Ljk5NTE4NCA0NDcuOTk1MTg0YzEyLjY4MjU3OCAxMi42Njg1NjggMjcuNjc2ODEyIDE5LjAxMTYwOSA0NS4wMDcyMTcgMTkuMDExNjA5czMyLjMzODY0OS02LjM0MzA0IDQ0Ljk5NjcxLTE5LjAxMTYwOUwxMDA0Ljk5MTg5NCAzMzIuOTk3MzY2YzEyLjY1NDU1OC0xMi42Njg1NjggMTkuMDA4MTA2LTI3LjY2MjgwMiAxOS4wMDgxMDYtNDQuOTk2NzA5IDAtMTcuMzMwNDA1LTYuMzUzNTQ4LTMyLjMyNDYzOS0xOS4wMDgxMDYtNDUuMDA3MjE3eiIgcC1pZD0iMTQwNTAiIGZpbGw9IiNkYmRiZGIiPjwvcGF0aD48L3N2Zz4=');
|
|
|
|
display: block;
|
|
|
|
background-size: cover;
|
|
|
|
width: 20rpx;
|
|
|
|
height: 20rpx;
|
|
|
|
margin-left: 10rpx;
|
2025-03-21 18:05:54 +08:00
|
|
|
}
|