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.
558 lines
12 KiB
558 lines
12 KiB
/** |
|
* 这里是uni-app内置的常用样式变量 |
|
* |
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 |
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App |
|
* |
|
*/ |
|
/** |
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 |
|
* |
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 |
|
*/ |
|
/* 颜色变量 */ |
|
/* 行为相关颜色 */ |
|
/* 文字基本颜色 */ |
|
/* 背景颜色 */ |
|
/* 边框颜色 */ |
|
/* 尺寸变量 */ |
|
/* 文字尺寸 */ |
|
/* 图片尺寸 */ |
|
/* Border Radius */ |
|
/* 水平间距 */ |
|
/* 垂直间距 */ |
|
/* 透明度 */ |
|
/* 文章场景相关 */ |
|
.bgtps { |
|
width: 100vw; |
|
height: 100vh; |
|
position: fixed; |
|
left: 0; |
|
top: 0; |
|
background-color: #00000050; |
|
z-index: 999; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
} |
|
.bgtps > .anjian { |
|
width: 640rpx; |
|
background: #FFFFFF; |
|
border-radius: 8rpx; |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
box-sizing: border-box; |
|
padding: 25rpx 20rpx; |
|
} |
|
.bgtps > .anjian > .titqr { |
|
font-size: 32rpx; |
|
font-weight: 400; |
|
color: #092C4D; |
|
margin-bottom: 30rpx; |
|
} |
|
.bgtps > .anjian > .contenbx { |
|
width: 580rpx; |
|
display: flex; |
|
align-items: center; |
|
flex-direction: column; |
|
margin-bottom: 20rpx; |
|
} |
|
.bgtps > .anjian > .contenbx .titypo { |
|
font-size: 30rpx; |
|
width: 100%; |
|
display: flex; |
|
align-items: center; |
|
justify-content: flex-start; |
|
margin-bottom: 40rpx; |
|
} |
|
.bgtps > .anjian > .contenbx > .topbs1 { |
|
width: 100%; |
|
display: flex; |
|
align-items: center; |
|
justify-content: flex-start; |
|
margin-bottom: 30rpx; |
|
} |
|
.bgtps > .anjian > .contenbx > .topbs1:nth-last-child(1) { |
|
margin-bottom: 0; |
|
} |
|
.bgtps > .anjian > .contenbx > .topbs1 > view:nth-of-type(1) { |
|
width: 140rpx; |
|
font-size: 30rpx; |
|
} |
|
.bgtps > .anjian > .contenbx > .topbs1 > view:nth-of-type(2) { |
|
display: flex; |
|
align-items: center; |
|
flex: 1; |
|
} |
|
.bgtps > .anjian > .contenbx > .topbs1 > view:nth-of-type(2) > view:nth-of-type(1) { |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
margin-right: 20rpx; |
|
} |
|
.bgtps > .anjian > .contenbx > .topbs1 > view:nth-of-type(2) > view:nth-of-type(1) > image { |
|
width: 72rpx; |
|
height: 72rpx; |
|
} |
|
.bgtps > .anjian > .contenbx > .topbs1 > view:nth-of-type(2) > view:nth-of-type(1) > view { |
|
font-size: 24rpx; |
|
font-weight: 400; |
|
color: #90A0AF; |
|
} |
|
.bgtps > .anjian > .contenbx > .topbs1 > view:nth-of-type(2) > view:nth-of-type(2) { |
|
flex: 1; |
|
font-size: 28rpx; |
|
font-weight: 400; |
|
color: #020B18; |
|
} |
|
.bgtps > .anjian .btbox { |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
margin-top: 20rpx; |
|
} |
|
.bgtps > .anjian .btbox > view { |
|
width: 260rpx; |
|
height: 88rpx; |
|
border-radius: 8rpx; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
box-sizing: border-box; |
|
font-size: 32rpx; |
|
} |
|
.bgtps > .anjian .btbox > view:nth-of-type(1) { |
|
background-color: #F5F5F6; |
|
color: #5A6875; |
|
} |
|
.bgtps > .anjian .btbox > view:nth-of-type(2) { |
|
background-color: #D3832A; |
|
color: #FFFFFF; |
|
margin-left: 20rpx; |
|
} |
|
.bgtps > .trary { |
|
width: 640rpx; |
|
background: #FFFFFF; |
|
border-radius: 8rpx; |
|
padding: 25rpx 20rpx; |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
box-sizing: border-box; |
|
} |
|
.bgtps > .trary > .titqr { |
|
font-size: 32rpx; |
|
font-weight: 400; |
|
color: #092C4D; |
|
margin-bottom: 30rpx; |
|
} |
|
.bgtps > .trary .contenbox { |
|
width: 580rpx; |
|
display: flex; |
|
align-items: center; |
|
flex-direction: column; |
|
margin-bottom: 20rpx; |
|
} |
|
.bgtps > .trary .contenbox > .topbs1 { |
|
width: 100%; |
|
display: flex; |
|
align-items: center; |
|
margin-bottom: 30rpx; |
|
} |
|
.bgtps > .trary .contenbox > .topbs1:nth-last-child(1) { |
|
margin-bottom: 0; |
|
} |
|
.bgtps > .trary .contenbox > .topbs1 > view:nth-of-type(1) { |
|
width: 140rpx; |
|
font-size: 30rpx; |
|
} |
|
.bgtps > .trary .contenbox > .topbs1 > view:nth-of-type(2) { |
|
display: flex; |
|
align-items: center; |
|
flex: 1; |
|
} |
|
.bgtps > .trary .contenbox > .topbs1 > view:nth-of-type(2) > view:nth-of-type(1) { |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
margin-right: 20rpx; |
|
} |
|
.bgtps > .trary .contenbox > .topbs1 > view:nth-of-type(2) > view:nth-of-type(1) > image { |
|
width: 72rpx; |
|
height: 72rpx; |
|
} |
|
.bgtps > .trary .contenbox > .topbs1 > view:nth-of-type(2) > view:nth-of-type(1) > view { |
|
font-size: 24rpx; |
|
font-weight: 400; |
|
color: #90A0AF; |
|
} |
|
.bgtps > .trary .contenbox > .topbs1 > view:nth-of-type(2) > view:nth-of-type(2) { |
|
flex: 1; |
|
font-size: 28rpx; |
|
font-weight: 400; |
|
color: #020B18; |
|
} |
|
.bgtps > .trary .btbox { |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
margin-top: 20rpx; |
|
} |
|
.bgtps > .trary .btbox > view { |
|
width: 260rpx; |
|
height: 88rpx; |
|
border-radius: 8rpx; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
box-sizing: border-box; |
|
font-size: 32rpx; |
|
} |
|
.bgtps > .trary .btbox > view:nth-of-type(1) { |
|
background-color: #F5F5F6; |
|
color: #5A6875; |
|
} |
|
.bgtps > .trary .btbox > view:nth-of-type(2) { |
|
background-color: #D3832A; |
|
color: #FFFFFF; |
|
margin-left: 20rpx; |
|
} |
|
.tuopanview { |
|
position: relative; |
|
display: flex; |
|
flex-direction: column; |
|
width: 686rpx; |
|
background: #FFFFFF; |
|
border-radius: 8rpx; |
|
margin: auto; |
|
margin-top: 30rpx; |
|
padding: 30rpx 24rpx; |
|
box-sizing: border-box; |
|
} |
|
.tuopanview > view { |
|
font-size: 28rpx; |
|
font-weight: 400; |
|
color: #020B18; |
|
} |
|
.tuopanview > view:nth-of-type(1) { |
|
margin-bottom: 30rpx; |
|
} |
|
.butbox { |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
margin-top: 15rpx; |
|
font-size: 32rpx; |
|
} |
|
.butbox > view:nth-of-type(1) { |
|
width: 320rpx; |
|
height: 100rpx; |
|
background: #FFFFFF; |
|
border-radius: 20rpx; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
color: #5A6875; |
|
font-size: 32rpx; |
|
font-weight: 400; |
|
} |
|
.butbox > view:nth-of-type(2) { |
|
width: 320rpx; |
|
height: 100rpx; |
|
background: #D3832A; |
|
border-radius: 20rpx; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
color: #FFFFFF; |
|
font-size: 32rpx; |
|
font-weight: 400; |
|
color: #FFFFFF; |
|
margin-left: 20rpx; |
|
} |
|
.sclcs { |
|
width: 686rpx; |
|
height: 35vh; |
|
margin: auto; |
|
margin-top: 20rpx; |
|
} |
|
.sclcs .visc { |
|
width: 100%; |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
} |
|
.sclcs .visc .item1 { |
|
width: 686rpx; |
|
padding: 0 24rpx; |
|
box-sizing: border-box; |
|
background-color: #FFFFFF; |
|
border-radius: 30rpx; |
|
position: relative; |
|
margin-bottom: 30rpx; |
|
} |
|
.sclcs .visc .item1:nth-last-child(1) { |
|
margin-bottom: 0; |
|
} |
|
.sclcs .visc .item1 .removeicons { |
|
position: absolute; |
|
right: 0; |
|
} |
|
.sclcs .visc .item1 .qtimgzt { |
|
width: 96rpx; |
|
height: 96rpx; |
|
position: absolute; |
|
right: 0; |
|
top: 0; |
|
} |
|
.sclcs .visc .item1 > view { |
|
width: 100%; |
|
display: flex; |
|
align-items: center; |
|
padding: 18rpx 24rpx; |
|
box-sizing: border-box; |
|
border-bottom: 4rpx solid #EEEEEE; |
|
} |
|
.sclcs .visc .item1 > view:nth-last-child(1) { |
|
border-bottom: 0rpx solid #EEEEEE00 !important; |
|
} |
|
.sclcs .visc .item1 > view > image { |
|
width: 64rpx; |
|
height: 64rpx; |
|
margin-right: 15rpx; |
|
} |
|
.sclcs .visc .item1 > view > view { |
|
font-size: 28rpx; |
|
font-weight: 400; |
|
color: #020B18; |
|
word-wrap: break-word; |
|
word-break: break-all; |
|
} |
|
.sclcs .visc .item1 > view > view .numb { |
|
font-size: 28rpx; |
|
color: #178AF2; |
|
} |
|
.sclcs .visc .item2 { |
|
width: 686rpx; |
|
padding: 0 24rpx; |
|
box-sizing: border-box; |
|
background-color: #FFFFFF; |
|
border-radius: 30rpx; |
|
position: relative; |
|
margin-bottom: 30rpx; |
|
} |
|
.sclcs .visc .item2 > .tpbx { |
|
display: flex; |
|
align-items: center; |
|
padding: 18rpx 24rpx; |
|
box-sizing: border-box; |
|
border-bottom: 4rpx solid #EEEEEE; |
|
} |
|
.sclcs .visc .item2 > .tpbx > image { |
|
width: 64rpx; |
|
height: 64rpx; |
|
margin-right: 15rpx; |
|
} |
|
.sclcs .visc .item2 > .tpbx > view { |
|
font-size: 28rpx; |
|
font-weight: 400; |
|
color: #020B18; |
|
} |
|
.sclcs .visc .item2 > .tpbx > view .numb { |
|
font-size: 28rpx; |
|
color: #178AF2; |
|
} |
|
.sclcs .visc .item2 > .viewnum { |
|
height: 100rpx; |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-around; |
|
} |
|
.sclcs .visc .item2 > .viewnum > view { |
|
font-size: 28rpx; |
|
font-weight: 400; |
|
color: #020B18; |
|
} |
|
.tabchecklist { |
|
width: 684rpx; |
|
height: 100rpx; |
|
margin: auto; |
|
margin-top: 30rpx; |
|
margin-bottom: 20rpx; |
|
box-sizing: border-box; |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-around; |
|
} |
|
.tabchecklist .xz > view:nth-of-type(1) { |
|
color: #D3832A !important; |
|
} |
|
.tabchecklist .xz > view:nth-of-type(2) { |
|
background-color: #D3832A !important; |
|
} |
|
.tabchecklist > view { |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
} |
|
.tabchecklist > view > view:nth-of-type(1) { |
|
font-size: 32rpx; |
|
font-weight: 400; |
|
margin-bottom: 20rpx; |
|
color: #020B18; |
|
transition: all 0.2s; |
|
} |
|
.tabchecklist > view > view:nth-of-type(2) { |
|
width: 96rpx; |
|
height: 8rpx; |
|
background-color: #D3832A00; |
|
border-radius: 4rpx; |
|
transition: all 0.2s; |
|
} |
|
.topviewbox { |
|
width: 686rpx; |
|
background: #FFFFFF; |
|
border-radius: 20rpx 20rpx 20rpx 20rpx; |
|
opacity: 1; |
|
box-sizing: border-box; |
|
position: relative; |
|
margin: auto; |
|
margin-top: 20rpx; |
|
} |
|
.topviewbox > .oebox { |
|
padding: 20rpx 25rpx; |
|
box-sizing: border-box; |
|
border-bottom: 4rpx solid #EEEEEE; |
|
display: flex; |
|
align-items: center; |
|
justify-content: flex-start; |
|
} |
|
.topviewbox > .oebox > view { |
|
font-size: 32rpx; |
|
font-weight: 400; |
|
color: #020B18; |
|
} |
|
.topviewbox > .oebox > image { |
|
width: 64rpx; |
|
height: 64rpx; |
|
margin-right: 14rpx; |
|
} |
|
.topviewbox .numbox { |
|
width: 100%; |
|
padding: 20rpx; |
|
box-sizing: border-box; |
|
} |
|
.topviewbox .numbox > view { |
|
width: 640rpx; |
|
height: 160rpx; |
|
background: #F5F7FB; |
|
border-radius: 8rpx 8rpx 8rpx 8rpx; |
|
opacity: 1; |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-around; |
|
} |
|
.topviewbox .numbox > view > view { |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
} |
|
.topviewbox .numbox > view > view:nth-of-type(1) > view:nth-of-type(2) { |
|
color: #FF9545 !important; |
|
} |
|
.topviewbox .numbox > view > view:nth-of-type(2) > view:nth-of-type(2) { |
|
color: #178AF2 !important; |
|
} |
|
.topviewbox .numbox > view > view > view:nth-of-type(1) { |
|
font-size: 28rpx; |
|
font-weight: 400; |
|
color: #020B18; |
|
margin-bottom: 18rpx; |
|
} |
|
.topviewbox .numbox > view > view > view:nth-of-type(2) { |
|
font-size: 36rpx; |
|
font-weight: 400; |
|
} |
|
.topviewbox > .contview { |
|
display: flex; |
|
flex-direction: column; |
|
width: 100%; |
|
padding: 20rpx; |
|
box-sizing: border-box; |
|
} |
|
.topviewbox > .contview > view { |
|
display: flex; |
|
align-items: center; |
|
justify-content: flex-start; |
|
margin-bottom: 20rpx; |
|
} |
|
.topviewbox > .contview > view:nth-last-child(1) { |
|
margin-bottom: 0; |
|
} |
|
.topviewbox > .contview > view > view:nth-of-type(1) { |
|
display: flex; |
|
align-items: center; |
|
justify-content: flex-start; |
|
margin-right: 30rpx; |
|
margin-left: 50rpx; |
|
width: 120rpx; |
|
color: #020B18; |
|
font-size: 28rpx; |
|
font-weight: 400; |
|
} |
|
.topviewbox > .contview > view > view:nth-of-type(1) > view { |
|
font-size: 28rpx; |
|
font-weight: 400; |
|
color: #020B18; |
|
} |
|
.topviewbox > .contview > view > view:nth-of-type(2) { |
|
font-size: 28rpx; |
|
font-weight: 400; |
|
color: #020B18; |
|
} |
|
.topviewbox > .contview > view > view:nth-of-type(2) > input { |
|
flex: 1; |
|
} |
|
.topviewbox > .contview > view .btm { |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-between; |
|
} |
|
.topviewbox > .contview > view .btm > view { |
|
width: 120rpx; |
|
height: 60rpx; |
|
background: #D3832A; |
|
border-radius: 8rpx; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
color: #FFFFFF; |
|
font-size: 32rpx; |
|
font-weight: 400; |
|
color: #FFFFFF; |
|
margin-left: 20rpx; |
|
} |
|
.bgimg { |
|
position: absolute; |
|
left: 0; |
|
top: 0; |
|
width: 100%; |
|
} |
|
.scanqcview { |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
position: relative; |
|
margin-top: 10rpx; |
|
} |
|
.scanqcview > image { |
|
width: 72rpx; |
|
height: 72rpx; |
|
margin-right: 16rpx; |
|
} |
|
.scanqcview > view { |
|
font-size: 32rpx; |
|
font-weight: 400; |
|
color: #FFFFFF; |
|
} |