|
|
|
/**
|
|
|
|
* 这里是uni-app内置的常用样式变量
|
|
|
|
*
|
|
|
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
|
|
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
|
|
|
*
|
|
|
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
|
|
|
*/
|
|
|
|
/* 颜色变量 */
|
|
|
|
/* 行为相关颜色 */
|
|
|
|
/* 文字基本颜色 */
|
|
|
|
/* 背景颜色 */
|
|
|
|
/* 边框颜色 */
|
|
|
|
/* 尺寸变量 */
|
|
|
|
/* 文字尺寸 */
|
|
|
|
/* 图片尺寸 */
|
|
|
|
/* Border Radius */
|
|
|
|
/* 水平间距 */
|
|
|
|
/* 垂直间距 */
|
|
|
|
/* 透明度 */
|
|
|
|
/* 文章场景相关 */
|
|
|
|
.tanchuangbg {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: fixed;
|
|
|
|
z-index: 99;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
background-color: #00000050;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
transition: all 1s;
|
|
|
|
}
|
|
|
|
.tanchuangbg .makinp {
|
|
|
|
width: 590rpx;
|
|
|
|
border: 1rpx solid #00000020;
|
|
|
|
color: #020B18;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin-bottom: 10rpx;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-size: 28rpx;
|
|
|
|
padding: 10rpx 20rpx;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox {
|
|
|
|
width: 670rpx;
|
|
|
|
background-color: #ffffff;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-radius: 10rpx;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
padding: 30rpx;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .inputscan {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-around;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .inputscan > input {
|
|
|
|
width: 440rpx;
|
|
|
|
height: 64rpx;
|
|
|
|
border: 1rpx solid #092C4D30;
|
|
|
|
border-radius: 8rpx;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-size: 28rpx;
|
|
|
|
padding: 0rpx 20rpx;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .inputscan .scanbt {
|
|
|
|
width: 128rpx;
|
|
|
|
height: 64rpx;
|
|
|
|
background: #D3832A;
|
|
|
|
border-radius: 8rpx;
|
|
|
|
opacity: 1;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 30rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .scvbw {
|
|
|
|
width: 100%;
|
|
|
|
height: 450rpx;
|
|
|
|
margin-top: 30rpx;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .scvbw .scboxitem {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .scvbw .scboxitem .items {
|
|
|
|
width: 590rpx;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
box-shadow: 0rpx 2rpx 10rpx 0rpx #e2e2e3;
|
|
|
|
margin-top: 10rpx;
|
|
|
|
padding: 20rpx;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .scvbw .scboxitem .items > .lisbite {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .scvbw .scboxitem .items > .lisbite > .itembox {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: space-between;
|
|
|
|
font-size: 28rpx;
|
|
|
|
color: #020B18;
|
|
|
|
border: 1rpx solid #D3832A;
|
|
|
|
padding: 10rpx 20rpx;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
color: #D3832A;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .scvbw .scboxitem .items > .lisbite > .itembox > view {
|
|
|
|
word-wrap: break-word;
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .scvbw .scboxitem .items > .type1s {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .scvbw .scboxitem .items > .type1s > view {
|
|
|
|
font-size: 28rpx;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .scvbw .scboxitem .items > .type1s > view:nth-child(1) {
|
|
|
|
width: -webkit-fit-content;
|
|
|
|
width: fit-content;
|
|
|
|
white-space: nowrap;
|
|
|
|
flex: none;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .scvbw .scboxitem .items > .type1s > view > view:nth-of-type(1) {
|
|
|
|
color: #90A0AF;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .scvbw .scboxitem .items > .type1s > view > view:nth-of-type(2) {
|
|
|
|
color: #092C4D;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .scvbw .scboxitem .items .rksu {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .scvbw .scboxitem .items .rksu > view {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-start;
|
|
|
|
font-size: 28rpx;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .scvbw .scboxitem .items .rksu > view > view:nth-of-type(1) {
|
|
|
|
color: #90A0AF;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .scvbw .scboxitem .items .rksu > view > input {
|
|
|
|
width: 200rpx;
|
|
|
|
padding: 0 15rpx;
|
|
|
|
border: 1rpx solid #00000020;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .btx {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-around;
|
|
|
|
margin-top: 50rpx;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .btx > view {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 260rpx;
|
|
|
|
height: 76rpx;
|
|
|
|
border-radius: 7rpx;
|
|
|
|
font-size: 28rpx;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .btx > .cancel {
|
|
|
|
background-color: #F5F5F6;
|
|
|
|
color: #5A6875;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
}
|
|
|
|
.tanchuangbg .inputbox .btx > .confirm {
|
|
|
|
background-color: #D3832A;
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
.butys {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
justify-content: space-around;
|
|
|
|
}
|
|
|
|
.butys > .conf {
|
|
|
|
width: 320rpx;
|
|
|
|
height: 100rpx;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 32rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #FFFFFF;
|
|
|
|
background-color: #D3832A;
|
|
|
|
}
|
|
|
|
.butys > .qut {
|
|
|
|
width: 320rpx;
|
|
|
|
height: 100rpx;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 32rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #5A6875;
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
}
|
|
|
|
.scvorder {
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
height: var(--height);
|
|
|
|
}
|
|
|
|
.scvorder .itembox {
|
|
|
|
width: 686rpx;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
padding: 0 20rpx;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #ffffff;
|
|
|
|
margin: auto;
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
}
|
|
|
|
.scvorder .itembox .topon1:nth-last-child(1) {
|
|
|
|
border-bottom: 4rpx solid #EEEEEE00 !important;
|
|
|
|
}
|
|
|
|
.scvorder .itembox > .viewnum {
|
|
|
|
height: 100rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-around;
|
|
|
|
}
|
|
|
|
.scvorder .itembox > .viewnum > view {
|
|
|
|
font-size: 28rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #020B18;
|
|
|
|
}
|
|
|
|
.scvorder .itembox > .topon1 {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 20rpx 10rpx;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-bottom: 4rpx solid #EEEEEE;
|
|
|
|
}
|
|
|
|
.scvorder .itembox > .topon1:nth-last-child(1) {
|
|
|
|
border-bottom: 4rpx solid #EEEEEE00 !important;
|
|
|
|
}
|
|
|
|
.scvorder .itembox > .topon1 > view:nth-of-type(1) {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.scvorder .itembox > .topon1 > view:nth-of-type(1) > image {
|
|
|
|
width: 48rpx;
|
|
|
|
height: 48rpx;
|
|
|
|
margin-right: 30rpx;
|
|
|
|
}
|
|
|
|
.scvorder .itembox > .topon1 > view:nth-of-type(1) > view {
|
|
|
|
width: 50rpx;
|
|
|
|
height: 50rpx;
|
|
|
|
background: #178AF220;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 28rpx;
|
|
|
|
font-weight: 500;
|
|
|
|
color: #178AF2;
|
|
|
|
}
|
|
|
|
.scvorder .itembox > .topon1 > view:nth-of-type(2) {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.scvorder .itembox > .topon1 > view:nth-of-type(2) > view {
|
|
|
|
width: 136rpx;
|
|
|
|
height: 64rpx;
|
|
|
|
border-radius: 8rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 28rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #90A0AF;
|
|
|
|
background-color: #F5F5F6;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
}
|
|
|
|
.scvorder .itembox > .topon1 > view:nth-of-type(2) > view:nth-last-child(1) {
|
|
|
|
margin-right: 0rpx;
|
|
|
|
}
|
|
|
|
.scvorder .itembox > .topon1 > view:nth-of-type(2) .xzc {
|
|
|
|
background-color: #178AF2 !important;
|
|
|
|
color: #ffffff !important;
|
|
|
|
}
|
|
|
|
.scvorder .itembox > .topon1 > view:nth-of-type(2) .xze {
|
|
|
|
background-color: #F8544B !important;
|
|
|
|
color: #ffffff !important;
|
|
|
|
}
|
|
|
|
.scvorder .itembox > .topon1 > view:nth-of-type(2) > image {
|
|
|
|
width: 32rpx;
|
|
|
|
height: 32rpx;
|
|
|
|
}
|
|
|
|
.scvorder .itembox > .topon2 {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-start;
|
|
|
|
padding: 20rpx 10rpx;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-bottom: 4rpx solid #EEEEEE;
|
|
|
|
}
|
|
|
|
.scvorder .itembox > .topon2 > image {
|
|
|
|
width: 32rpx;
|
|
|
|
height: 32rpx;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
}
|
|
|
|
.scvorder .itembox > .topon2 > view {
|
|
|
|
font-size: 28rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #020B18;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
.item2 {
|
|
|
|
width: 686rpx;
|
|
|
|
margin: auto;
|
|
|
|
padding: 0 24rpx;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
border-radius: 30rpx;
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 30rpx;
|
|
|
|
}
|
|
|
|
.item2 .qtimgzt {
|
|
|
|
width: 96rpx;
|
|
|
|
height: 96rpx;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
.item2 .tpbx {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 10rpx 24rpx;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-bottom: 4rpx solid #EEEEEE;
|
|
|
|
}
|
|
|
|
.item2 .tpbx > image {
|
|
|
|
flex: none;
|
|
|
|
width: 32rpx;
|
|
|
|
height: 32rpx;
|
|
|
|
margin-right: 15rpx;
|
|
|
|
}
|
|
|
|
.item2 .tpbx > view {
|
|
|
|
font-size: 28rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #020B18;
|
|
|
|
}
|
|
|
|
.item2 .tpbx > view .numb {
|
|
|
|
font-size: 28rpx;
|
|
|
|
color: #178AF2;
|
|
|
|
}
|
|
|
|
.item2 > .viewnum {
|
|
|
|
height: 100rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-around;
|
|
|
|
}
|
|
|
|
.item2 > .viewnum > view {
|
|
|
|
font-size: 28rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #020B18;
|
|
|
|
}
|
|
|
|
.tbchec {
|
|
|
|
width: 686rpx;
|
|
|
|
height: 80rpx;
|
|
|
|
padding: 16rpx 36rpx;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: auto;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-start;
|
|
|
|
position: relative;
|
|
|
|
background-color: #ffffff;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
}
|
|
|
|
.tbchec .xz {
|
|
|
|
color: #D3832A !important;
|
|
|
|
}
|
|
|
|
.tbchec > view {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 28rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #90A0AF;
|
|
|
|
}
|
|
|
|
.tbchec > view > image {
|
|
|
|
width: 48rpx;
|
|
|
|
height: 48rpx;
|
|
|
|
margin-right: 16rpx;
|
|
|
|
}
|
|
|
|
.viewbx {
|
|
|
|
width: 686rpx;
|
|
|
|
background: #FFFFFF;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
position: relative;
|
|
|
|
padding: 10rpx 20rpx;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: auto;
|
|
|
|
margin-top: 40rpx;
|
|
|
|
}
|
|
|
|
.viewbx .numvie {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 28rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #020B18;
|
|
|
|
padding: 30rpx 0;
|
|
|
|
}
|
|
|
|
.viewbx .numvie > view:nth-of-type(1) {
|
|
|
|
width: 200rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.viewbx .vwtybx1 {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
padding: 20rpx 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.viewbx .vwtybx1 > view {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
}
|
|
|
|
.viewbx .vwtybx1 > view:nth-last-child(1) {
|
|
|
|
margin-bottom: 0rpx;
|
|
|
|
}
|
|
|
|
.viewbx .vwtybx1 > view > view:nth-of-type(1) {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: 200rpx;
|
|
|
|
font-size: 28rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #020B18;
|
|
|
|
}
|
|
|
|
.viewbx .vwtybx1 > view > view:nth-of-type(1) > image {
|
|
|
|
width: 48rpx;
|
|
|
|
height: 48rpx;
|
|
|
|
margin-right: 15rpx;
|
|
|
|
}
|
|
|
|
.viewbx .vwtybx1 > view > view:nth-of-type(2) {
|
|
|
|
font-size: 28rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #020B18;
|
|
|
|
}
|
|
|
|
.viewbx .vwtybx1 > view > view:nth-of-type(2) > input {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
.scanButton {
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
bottom: 20rpx;
|
|
|
|
text-align: center;
|
|
|
|
border: 1rpx solid #D3832A;
|
|
|
|
color: #D3832A;
|
|
|
|
padding: 15rpx 0;
|
|
|
|
border-radius: 10rpx;
|
|
|
|
}
|