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-11-08 16:50:26 +08:00
|
|
|
|
.headerbgimg.data-v-57280228 {
|
|
|
|
|
|
position: absolute;
|
2025-11-25 14:21:22 +08:00
|
|
|
|
width: 400rpx;
|
|
|
|
|
|
height: 360rpx;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
top: 0;
|
|
|
|
|
|
right: -15%;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
}
|
2025-11-08 16:50:26 +08:00
|
|
|
|
.content-box.data-v-57280228 {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
}
|
2025-11-25 14:21:22 +08:00
|
|
|
|
.chart-wrap.data-v-57280228 {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
width: 250rpx;
|
|
|
|
|
|
height: 250rpx;
|
|
|
|
|
|
margin-top: -30rpx;
|
|
|
|
|
|
margin-left: -5px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
}
|
|
|
|
|
|
.chart-wrap .center.data-v-57280228 {
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
width: 280rpx;
|
|
|
|
|
|
height: 210rpx;
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 64rpx;
|
|
|
|
|
|
}
|
2025-11-08 16:50:26 +08:00
|
|
|
|
.box.data-v-57280228 {
|
2025-11-25 14:21:22 +08:00
|
|
|
|
width: calc(100% - 100rpx);
|
2025-11-08 16:50:26 +08:00
|
|
|
|
background: #3CB383;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
padding: 30rpx 20rpx;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
overflow: hidden;
|
2025-11-25 14:21:22 +08:00
|
|
|
|
margin: 15px 15px 0;
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
flex-wrap: wrap;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
}
|
2025-11-08 16:50:26 +08:00
|
|
|
|
.box .info.data-v-57280228 {
|
|
|
|
|
|
color: #fff;
|
2025-11-25 14:21:22 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
.box .info .name.data-v-57280228 {
|
2025-11-25 14:21:22 +08:00
|
|
|
|
width: 80%;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
display: flex;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
font-size: 32rpx;
|
2025-11-25 14:21:22 +08:00
|
|
|
|
float: left;
|
|
|
|
|
|
align-items: center;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
.box .info .name text.data-v-57280228 {
|
|
|
|
|
|
margin-right: 30rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
.box .info .name image.data-v-57280228 {
|
2025-11-25 14:21:22 +08:00
|
|
|
|
width: 35px;
|
|
|
|
|
|
height: 35px;
|
|
|
|
|
|
margin-right: 15px;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
}
|
2025-11-25 14:21:22 +08:00
|
|
|
|
.box .info .edit.data-v-57280228 {
|
|
|
|
|
|
width: 20%;
|
|
|
|
|
|
text-align: right;
|
|
|
|
|
|
float: left;
|
|
|
|
|
|
}
|
|
|
|
|
|
.box .info .edit image.data-v-57280228 {
|
|
|
|
|
|
width: 22px;
|
|
|
|
|
|
height: 22px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.box .age.data-v-57280228 {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
margin-top: 15px;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
}
|
2025-11-25 14:21:22 +08:00
|
|
|
|
.box .age .age-item.data-v-57280228 {
|
|
|
|
|
|
width: 33.3%;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
text-align: center;
|
2025-11-25 14:21:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
.box .age .age-item text.data-v-57280228 {
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
}
|
|
|
|
|
|
.box .age .age-item2.data-v-57280228 {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
.box .age .age-item2.data-v-57280228::after {
|
|
|
|
|
|
content: "";
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
top: 10px;
|
|
|
|
|
|
bottom: 10px;
|
|
|
|
|
|
width: 1px;
|
|
|
|
|
|
background-color: #9CDCBF;
|
|
|
|
|
|
}
|
|
|
|
|
|
.box .age .age-item2.data-v-57280228::before {
|
|
|
|
|
|
content: "";
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
top: 10px;
|
|
|
|
|
|
bottom: 10px;
|
|
|
|
|
|
width: 1px;
|
|
|
|
|
|
background-color: #9CDCBF;
|
|
|
|
|
|
}
|
|
|
|
|
|
.jishiqi.data-v-57280228 {
|
|
|
|
|
|
width: calc(100% - 50px);
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
padding: 10px 10px 15px;
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
margin: 15px;
|
|
|
|
|
|
height: auto;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
box-shadow: 0px 1px 5px 2px #dfe2e1fc;
|
|
|
|
|
|
}
|
|
|
|
|
|
.jishiqi .top.data-v-57280228 {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.jishiqi .date.data-v-57280228 {
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
|
|
|
|
|
.jishiqi .detail.data-v-57280228 {
|
2025-12-04 15:02:07 +08:00
|
|
|
|
color: #3CB383;
|
2025-11-25 14:21:22 +08:00
|
|
|
|
width: auto;
|
2025-12-04 15:02:07 +08:00
|
|
|
|
padding: 3px 10px;
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
border: 1px solid #3CB383;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
.jishiqi .detail image.data-v-57280228 {
|
|
|
|
|
|
width: 44rpx;
|
|
|
|
|
|
height: 44rpx;
|
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.jishiqi .left.data-v-57280228 {
|
|
|
|
|
|
margin-top: -10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.jishiqi .right.data-v-57280228 {
|
|
|
|
|
|
margin-top: 0;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
.box1 .header.data-v-57280228 {
|
|
|
|
|
|
width: 100rpx;
|
|
|
|
|
|
height: 100rpx;
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
line-height: 100rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
.box1 .header image.data-v-57280228 {
|
|
|
|
|
|
width: 80rpx;
|
|
|
|
|
|
height: 80rpx;
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
margin-top: 10rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
.box1 .info2.data-v-57280228 {
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tools.data-v-57280228 {
|
2025-11-25 14:21:22 +08:00
|
|
|
|
margin: 0 30rpx 0;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
display: flex;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
width: calc(100% - 60rpx);
|
2025-03-25 10:17:30 +08:00
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
}
|
2025-11-08 16:50:26 +08:00
|
|
|
|
.tools .tools-item.data-v-57280228 {
|
|
|
|
|
|
width: 42%;
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
position: relative;
|
2025-11-25 14:21:22 +08:00
|
|
|
|
padding: 10rpx 20rpx;
|
|
|
|
|
|
height: 240rpx;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
border-radius: 20rpx;
|
|
|
|
|
|
margin-bottom: 30rpx;
|
2025-11-25 14:21:22 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
justify-content: space-around;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
box-shadow: 0px 1px 5px 2px #dfe2e1fc;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tools .tools-item .title.data-v-57280228 {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
font-size: 28rpx;
|
2025-03-25 10:17:30 +08:00
|
|
|
|
}
|
2025-11-08 16:50:26 +08:00
|
|
|
|
.tools .tools-item .title image.data-v-57280228 {
|
2025-11-25 14:21:22 +08:00
|
|
|
|
width: 50rpx;
|
|
|
|
|
|
height: 50rpx;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
margin-right: 5px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tools .tools-item .kcal.data-v-57280228 {
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tools .tools-item .kcal text.data-v-57280228 {
|
|
|
|
|
|
font-size: 56rpx;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
margin-right: 20rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tools .tools-item .tools-btn.data-v-57280228 {
|
2025-11-25 14:21:22 +08:00
|
|
|
|
border: 1px solid #9CDCBF;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
text-align: center;
|
|
|
|
|
|
border-radius: 20rpx;
|
|
|
|
|
|
width: 60%;
|
|
|
|
|
|
margin-left: 20%;
|
|
|
|
|
|
color: #3CB383;
|
|
|
|
|
|
padding: 3px 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tools .tools-item .add.data-v-57280228 {
|
2025-11-25 14:21:22 +08:00
|
|
|
|
width: 48rpx;
|
|
|
|
|
|
height: 48rpx;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 20rpx;
|
2025-11-08 17:31:03 +08:00
|
|
|
|
right: 20rpx;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
z-index: 999;
|
|
|
|
|
|
}
|
2025-11-25 14:21:22 +08:00
|
|
|
|
.tools .tools-item .add image.data-v-57280228 {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
}
|
2025-11-08 16:50:26 +08:00
|
|
|
|
.tools .tools-item .bgimg.data-v-57280228 {
|
|
|
|
|
|
width: 180rpx;
|
|
|
|
|
|
height: 180rpx;
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 20rpx;
|
|
|
|
|
|
right: -50rpx;
|
2025-11-25 14:21:22 +08:00
|
|
|
|
opacity: 0.6;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
.serachBox.data-v-57280228 {
|
|
|
|
|
|
width: calc(100% - 60rpx);
|
|
|
|
|
|
}
|
|
|
|
|
|
.serachBox .title.data-v-57280228 {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
|
|
|
|
|
.serachBox .searchInput.data-v-57280228 {
|
|
|
|
|
|
width: calc(100% - 60rpx);
|
2025-11-25 14:21:22 +08:00
|
|
|
|
background-color: #fff;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
padding: 30rpx;
|
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
|
border-radius: 20rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
.serachBox .search-wrap.data-v-57280228 {
|
|
|
|
|
|
height: 80rpx;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
border: 1px solid #3CB383;
|
|
|
|
|
|
border-radius: 30rpx;
|
|
|
|
|
|
padding: 0 20rpx;
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
}
|
|
|
|
|
|
.serachBox .search-wrap image.data-v-57280228 {
|
2025-11-25 14:21:22 +08:00
|
|
|
|
width: 50rpx;
|
|
|
|
|
|
height: 50rpx;
|
2025-11-08 16:50:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
.f_banner.data-v-57280228 {
|
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
|
height: 450rpx;
|
2025-11-25 14:21:22 +08:00
|
|
|
|
margin: 30rpx auto;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
}
|
2025-11-08 16:50:26 +08:00
|
|
|
|
.f_banner.data-v-57280228 swiper {
|
|
|
|
|
|
height: 450rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
.f_banner image.data-v-57280228 {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
background-size: 100%;
|
|
|
|
|
|
position: relative;
|
2023-09-08 15:17:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
|