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.
143 lines
2.4 KiB
143 lines
2.4 KiB
/* pages/handover/handover.wxss */
|
|
.back {
|
|
margin-top: 15rpx;
|
|
}
|
|
|
|
.top {
|
|
background-color: #fff;
|
|
padding: 10rpx 10rpx;
|
|
font-size: 22rpx;
|
|
border-radius: 5rpx;
|
|
}
|
|
|
|
.from-con {
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
}
|
|
|
|
.from-con input {
|
|
width: 250rpx;
|
|
border-radius: 5rpx;
|
|
border: 1rpx #666 solid;
|
|
padding: 3rpx 10rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.canvas {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: #6bc9ca;
|
|
}
|
|
|
|
.place {
|
|
color: #c4bfbf;
|
|
}
|
|
|
|
.f5 {
|
|
width: 200rpx !important;
|
|
font-size: 28rpx;
|
|
background-color: #eee;
|
|
border: 1rpx #ddd solid;
|
|
height: 60rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
left: 40rpx;
|
|
}
|
|
|
|
|
|
.allordernum {
|
|
margin-top: 20rpx;
|
|
/* border: 1rpx #999 solid; */
|
|
background-color: #f1f1f1;
|
|
border: 1rpx #eee solid;
|
|
border-radius: 5rpx;
|
|
width: 100%;
|
|
height: 350rpx;
|
|
padding: 20rpx 0;
|
|
}
|
|
|
|
.allordernum view view {
|
|
padding: 20rpx;
|
|
background-color: #eee;
|
|
width: 88%;
|
|
margin: 0 auto;
|
|
margin-bottom: 15rpx;
|
|
border-radius: 5rpx;
|
|
}
|
|
|
|
|
|
.tr {
|
|
display: flex;
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.tr .td {
|
|
/* border-right:#ddd solid 1rpx ;
|
|
border-top: #ddd solid 1rpx; */
|
|
border: 1rpx #ddd solid;
|
|
padding: 10rpx 0;
|
|
font-size: 22rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-wrap: nowrap;
|
|
white-space: nowrap;
|
|
min-width: 200rpx;
|
|
}
|
|
|
|
.top1 view {
|
|
background-color: #6bc9ca;
|
|
color: #fff;
|
|
}
|
|
|
|
.td1 {
|
|
min-width: 100rpx !important;
|
|
}
|
|
|
|
|
|
.zan-dialog__mask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 10;
|
|
background: rgba(0, 0, 0, 0.05);
|
|
/* 设置阴影半透明背景如: background: rgba(0, 0, 0, 0.4); */
|
|
display: none;
|
|
}
|
|
|
|
.zan-dialog__container {
|
|
position: fixed;
|
|
bottom: 200rpx;
|
|
width: 280rpx;
|
|
/* 弹窗布局宽 */
|
|
height: 280rpx;
|
|
/* 弹窗布局高,与下面弹出距离transform有关 */
|
|
margin-left: 220rpx;
|
|
background: #f8f8f8;
|
|
transform: translateY(300%);
|
|
/* 弹框弹出距离,与弹框布局高度有关,如300%表示弹起距离为3倍弹窗高度 */
|
|
transition: all 0.4s ease;
|
|
z-index: 12;
|
|
border-radius: 10rpx;
|
|
box-shadow: 0px 3px 3px 2px gainsboro;
|
|
/* 弹框的悬浮阴影效果,如不需要可注释该行 */
|
|
}
|
|
|
|
.zan-dialog--show .zan-dialog__container {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.zan-dialog--show .zan-dialog__mask {
|
|
display: block;
|
|
}
|
|
|
|
/*隐藏*/
|
|
.pop_hidden {
|
|
display: none;
|
|
} |