2023-09-08 15:17:21 +08:00
|
|
|
|
@charset "UTF-8";
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 这里是uni-app内置的常用样式变量
|
|
|
|
|
|
*
|
|
|
|
|
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
|
|
|
|
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
|
|
|
|
|
*
|
|
|
|
|
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
|
|
|
|
|
*/
|
|
|
|
|
|
/* 颜色变量 */
|
|
|
|
|
|
/* 行为相关颜色 */
|
|
|
|
|
|
/* 文字基本颜色 */
|
|
|
|
|
|
/* 背景颜色 */
|
|
|
|
|
|
/* 边框颜色 */
|
|
|
|
|
|
/* 尺寸变量 */
|
|
|
|
|
|
/* 文字尺寸 */
|
|
|
|
|
|
/* 图片尺寸 */
|
|
|
|
|
|
/* Border Radius */
|
|
|
|
|
|
/* 水平间距 */
|
|
|
|
|
|
/* 垂直间距 */
|
|
|
|
|
|
/* 透明度 */
|
|
|
|
|
|
/* 文章场景相关 */
|
2025-03-25 10:17:30 +08:00
|
|
|
|
.tab_list.data-v-c58b4fba {
|
|
|
|
|
|
display: flex;
|
2025-04-03 16:29:29 +08:00
|
|
|
|
top: 50px;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
z-index: 99;
|
|
|
|
|
|
height: 45px;
|
|
|
|
|
|
background: #FFF;
|
2025-03-25 10:17:30 +08:00
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tab_list .scroll-menu.data-v-c58b4fba {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tab_list .scroll-menu .tabbar.data-v-c58b4fba {
|
|
|
|
|
|
padding: 10px;
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tab_list .scroll-menu .tabbar view.data-v-c58b4fba {
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tab_list .active.data-v-c58b4fba {
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
padding: 5px 8px;
|
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
background-color: #ff4c4f;
|
|
|
|
|
|
}
|
2025-04-03 16:29:29 +08:00
|
|
|
|
.menu.data-v-c58b4fba {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
margin-top: 101px;
|
|
|
|
|
|
height: calc(100vh - 101px) !important;
|
|
|
|
|
|
}
|
2025-07-28 16:57:16 +08:00
|
|
|
|
.menu .left.data-v-c58b4fba {
|
2025-04-03 16:29:29 +08:00
|
|
|
|
top: 101px !important;
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
background-color: #f7f7f7;
|
2025-07-28 16:57:16 +08:00
|
|
|
|
height: calc(100vh - 100px);
|
2025-03-25 10:17:30 +08:00
|
|
|
|
}
|
2025-07-28 16:57:16 +08:00
|
|
|
|
.menu .right.data-v-c58b4fba {
|
2025-04-03 16:29:29 +08:00
|
|
|
|
top: 0px !important;
|
2025-07-28 16:57:16 +08:00
|
|
|
|
height: calc(100vh - 100px);
|
2025-03-25 10:17:30 +08:00
|
|
|
|
}
|
2025-07-28 16:57:16 +08:00
|
|
|
|
.menu .right .list.data-v-c58b4fba {
|
2025-03-25 10:17:30 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
}
|
2025-07-28 16:57:16 +08:00
|
|
|
|
.menu .right .item.data-v-c58b4fba {
|
2025-03-25 10:17:30 +08:00
|
|
|
|
width: 29%;
|
|
|
|
|
|
border: 1px solid #dfdfdf;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2025-03-25 10:17:30 +08:00
|
|
|
|
box-sizing: border-box;
|
2025-04-03 16:29:29 +08:00
|
|
|
|
justify-content: space-between;
|
2025-03-25 10:17:30 +08:00
|
|
|
|
height: 30px;
|
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
margin: 0 2% 10px;
|
2025-04-03 16:29:29 +08:00
|
|
|
|
padding: 0 5px;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
}
|
2025-07-28 16:57:16 +08:00
|
|
|
|
.menu .right .item text.data-v-c58b4fba {
|
2023-09-08 15:17:21 +08:00
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
|
|
}
|
2025-07-28 16:57:16 +08:00
|
|
|
|
.menu .right .icon-xuanzhong.data-v-c58b4fba {
|
2025-11-08 16:50:26 +08:00
|
|
|
|
color: #3CB383;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
}
|
2025-07-28 16:57:16 +08:00
|
|
|
|
.menu .right .active0.data-v-c58b4fba {
|
2025-11-08 16:50:26 +08:00
|
|
|
|
border: 1px solid #3CB383;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
.activeList.data-v-c58b4fba {
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
bottom: 0px;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
z-index: 999;
|
|
|
|
|
|
background: #fff;
|
2025-03-25 10:17:30 +08:00
|
|
|
|
padding: 10px 0;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
border-radius: 10px 10px 0 0;
|
|
|
|
|
|
box-shadow: 0px 1px 5px 2px #dfe2e1fc;
|
|
|
|
|
|
}
|
|
|
|
|
|
.activeList .list.data-v-c58b4fba {
|
|
|
|
|
|
height: 340rpx;
|
|
|
|
|
|
overflow: scroll;
|
|
|
|
|
|
padding-bottom: 55px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.activeList .list .item.data-v-c58b4fba {
|
2025-11-08 16:50:26 +08:00
|
|
|
|
border: 1px solid #3CB383;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
display: flex;
|
2025-04-03 16:29:29 +08:00
|
|
|
|
justify-content: space-between;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
height: 28px;
|
2025-03-25 10:17:30 +08:00
|
|
|
|
box-sizing: border-box;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
align-items: center;
|
2025-03-25 10:17:30 +08:00
|
|
|
|
margin: 0 2% 10px;
|
2025-04-03 16:29:29 +08:00
|
|
|
|
float: left;
|
2025-07-28 16:57:16 +08:00
|
|
|
|
padding: 0 10px;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
.activeList .list .item icon.data-v-c58b4fba {
|
2025-11-08 16:50:26 +08:00
|
|
|
|
color: #3CB383;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
font-size: 16px;
|
2025-07-28 16:57:16 +08:00
|
|
|
|
margin-left: 10rpx;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
.activeList .groupbtn.data-v-c58b4fba {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: 0px;
|
|
|
|
|
|
right: 0px;
|
|
|
|
|
|
bottom: 0px;
|
|
|
|
|
|
padding: 10px;
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
border-top: 1px solid #f7f7f7;
|
|
|
|
|
|
}
|
|
|
|
|
|
.activeList .groupbtn view.data-v-c58b4fba {
|
|
|
|
|
|
width: 40%;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
border: 1px solid #dfdfdf;
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
height: 31px;
|
|
|
|
|
|
line-height: 31px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.activeList .groupbtn .subbtn.data-v-c58b4fba {
|
|
|
|
|
|
color: #fff;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
border-color: #3CB383;
|
|
|
|
|
|
background-color: #3CB383;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
}
|
2025-04-03 16:29:29 +08:00
|
|
|
|
.maxheight .left.data-v-c58b4fba {
|
2025-07-28 16:57:16 +08:00
|
|
|
|
height: calc(100vh - 680rpx);
|
|
|
|
|
|
}
|
|
|
|
|
|
.maxheight .right.data-v-c58b4fba {
|
|
|
|
|
|
height: calc(100vh - 680rpx);
|
2023-09-08 15:17:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
|