You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
297 lines
5.7 KiB
297 lines
5.7 KiB
@charset "UTF-8"; |
|
/** |
|
* 这里是uni-app内置的常用样式变量 |
|
* |
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 |
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App |
|
* |
|
*/ |
|
/** |
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 |
|
* |
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 |
|
*/ |
|
/* 颜色变量 */ |
|
/* 行为相关颜色 */ |
|
/* 文字基本颜色 */ |
|
/* 背景颜色 */ |
|
/* 边框颜色 */ |
|
/* 尺寸变量 */ |
|
/* 文字尺寸 */ |
|
/* 图片尺寸 */ |
|
/* Border Radius */ |
|
/* 水平间距 */ |
|
/* 垂直间距 */ |
|
/* 透明度 */ |
|
/* 文章场景相关 */ |
|
.top { |
|
position: relative; |
|
top: 0; |
|
left: 0; |
|
} |
|
.pure_top { |
|
width: 100%; |
|
height: 220rpx; |
|
position: absolute; |
|
z-index: 0; |
|
overflow: hidden; |
|
} |
|
.pure_top::after { |
|
content: ""; |
|
width: 100%; |
|
height: 220rpx; |
|
position: absolute; |
|
left: 0; |
|
top: 0; |
|
z-index: -1; |
|
border-radius: 0 0 100% 100%; |
|
background: linear-gradient(180deg, #57B5FF 0%, #616DFD 100%); |
|
} |
|
.month_color { |
|
border-radius: 48rpx; |
|
background-color: #317AFF; |
|
color: #fff; |
|
} |
|
.month_color2 { |
|
color: #B5B5B5; |
|
} |
|
.calendar { |
|
z-index: 1; |
|
position: relative; |
|
left: 74rpx; |
|
top: 20rpx; |
|
width: 80%; |
|
height: 120rpx; |
|
border-radius: 10rpx; |
|
box-shadow: 0px 0px 20px 1px #C1D7FF; |
|
background: #fff; |
|
} |
|
.calendar view { |
|
height: 60rpx; |
|
} |
|
.calendar .date_year { |
|
box-sizing: border-box; |
|
display: flex; |
|
background-color: #fff; |
|
padding: 10rpx 0 0 10rpx; |
|
} |
|
.calendar .monthbox { |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
flex-direction: row; |
|
} |
|
.calendar .monthbox .month_class { |
|
width: 48rpx; |
|
height: 48rpx; |
|
text-align: center; |
|
} |
|
button { |
|
width: 140rpx; |
|
height: 70rpx; |
|
color: #fff; |
|
border-radius: 34rpx; |
|
line-height: 70rpx; |
|
font-size: 30rpx; |
|
background-color: #327AFE; |
|
} |
|
.taskbox { |
|
width: 90%; |
|
margin: 40rpx auto; |
|
border-radius: 20rpx; |
|
background-color: #fff; |
|
padding: 20rpx; |
|
position: relative; |
|
left: 0; |
|
z-index: 10; |
|
} |
|
.taskbox .itembox .top { |
|
margin-top: 30rpx; |
|
height: 60rpx; |
|
display: flex; |
|
} |
|
.taskbox .itembox .top .left { |
|
display: flex; |
|
flex: 1; |
|
} |
|
.taskbox .itembox .top .left ._img { |
|
width: 50rpx; |
|
height: 50rpx; |
|
} |
|
.taskbox .itembox .top .left text { |
|
margin-right: 10rpx; |
|
} |
|
.taskbox .itembox .top .right { |
|
color: #909090; |
|
display: flex; |
|
} |
|
.taskbox .itembox .top .right .progress { |
|
margin-top: 6rpx; |
|
margin-right: 10rpx; |
|
height: 34rpx; |
|
flex: 1; |
|
background: #E4E7EC; |
|
} |
|
.taskbox .itembox .top .right .progress .color { |
|
height: 100%; |
|
background-color: #14B389; |
|
} |
|
.charts-box { |
|
height: 250rpx; |
|
position: relative; |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
} |
|
.charts-box ._img { |
|
width: 100%; |
|
height: 100%; |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
z-index: -1; |
|
} |
|
.charts-box .tagbox { |
|
color: #FFFFFF; |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
margin: 10rpx 0; |
|
font-size: 32rpx; |
|
} |
|
.charts-box .tagbox .tag { |
|
width: 20rpx; |
|
height: 20rpx; |
|
border-radius: 20rpx; |
|
} |
|
.logo { |
|
height: 200rpx; |
|
width: 200rpx; |
|
margin-top: 200rpx; |
|
margin-left: auto; |
|
margin-right: auto; |
|
margin-bottom: 50rpx; |
|
} |
|
.text-area { |
|
display: flex; |
|
justify-content: center; |
|
} |
|
.title { |
|
font-size: 36rpx; |
|
color: #8f8f94; |
|
} |
|
.login-box { |
|
display: flex; |
|
background: #8f8f94; |
|
width: 100%; |
|
height: 120rpx; |
|
position: fixed; |
|
bottom: 0; |
|
left: 0; |
|
} |
|
.login-box .login-text { |
|
color: #fff; |
|
width: 60%; |
|
display: flex; |
|
font-size: 36rpx; |
|
padding-left: 40rpx; |
|
align-items: center; |
|
} |
|
.login-box .login-button { |
|
flex: 1; |
|
text-align: center; |
|
margin-top: 20rpx; |
|
} |
|
.listbox { |
|
width: 90%; |
|
margin: -10rpx auto 0 auto; |
|
} |
|
.listbox .item { |
|
background-color: #fff; |
|
margin: 20rpx 0; |
|
padding: 20rpx; |
|
} |
|
.listbox .item .namebox { |
|
display: flex; |
|
margin-bottom: 10rpx; |
|
} |
|
.listbox .item .namebox .name { |
|
font-weight: 600; |
|
font-size: 36rpx; |
|
width: 70%; |
|
height: 60rpx; |
|
line-height: 60rpx; |
|
} |
|
.listbox .item .namebox .tag { |
|
text-align: center; |
|
width: 180rpx; |
|
height: 60rpx; |
|
line-height: 60rpx; |
|
color: #FF6F51; |
|
border: 1px solid #FF6F51; |
|
background: rgba(255, 111, 81, 0.24); |
|
border-radius: 40rpx 40rpx 40rpx 40rpx; |
|
} |
|
.listbox .item .namebox .tag2 { |
|
text-align: center; |
|
width: 180rpx; |
|
height: 60rpx; |
|
line-height: 60rpx; |
|
color: #14B488; |
|
border: 1px solid rgba(30, 232, 177, 0.8); |
|
background: rgba(30, 232, 177, 0.24); |
|
border-radius: 40rpx 40rpx 40rpx 40rpx; |
|
} |
|
.typebox { |
|
display: flex; |
|
margin: 14rpx 0; |
|
} |
|
.typebox .type { |
|
width: 50%; |
|
font-size: 32rpx; |
|
font-weight: 600; |
|
padding-left: 10rpx; |
|
} |
|
.typebox .result { |
|
width: 50%; |
|
text-align: right; |
|
color: #FF6F51; |
|
} |
|
.staffbox { |
|
display: flex; |
|
margin: 6rpx 0; |
|
font-size: 30rpx; |
|
} |
|
.staffbox .staff { |
|
display: flex; |
|
color: rgba(16, 15, 25, 0.48); |
|
} |
|
.staffbox .staff .zhu { |
|
color: #100F19; |
|
} |
|
.staffbox .staff view { |
|
margin-right: 20rpx; |
|
} |
|
.staffbox .staff ._img { |
|
width: 40rpx; |
|
height: 40rpx; |
|
min-width: 40rpx; |
|
min-height: 40rpx; |
|
} |
|
.staffbox .jiancha { |
|
color: #FFBA19; |
|
margin-right: 10rpx; |
|
} |
|
.implement { |
|
margin-bottom: 10rpx; |
|
} |
|
.implement .button { |
|
width: 100%; |
|
height: 100%; |
|
padding-top: 20rpx; |
|
} |
|
.implement ._img { |
|
width: 100rpx; |
|
height: 100rpx; |
|
} |
|
|
|
|