45 lines
1.0 KiB
Plaintext
45 lines
1.0 KiB
Plaintext
.order-sender-mask {
|
|
position: fixed; top: 0; left: 0; right: 0; bottom: 0;
|
|
background: rgba(0,0,0,0.5);
|
|
z-index: 2000;
|
|
}
|
|
.order-sender {
|
|
position: fixed; bottom: 0; left: 0; right: 0;
|
|
height: 360rpx;
|
|
background: #fff;
|
|
border-radius: 24rpx 24rpx 0 0;
|
|
z-index: 2001;
|
|
transform: translateY(100%);
|
|
transition: 0.25s;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.order-sender.show { transform: translateY(0); }
|
|
|
|
.header {
|
|
display: flex; justify-content: space-between;
|
|
padding: 24rpx 30rpx;
|
|
border-bottom: 1rpx solid #f0f0f0;
|
|
}
|
|
.title { font-size: 32rpx; font-weight: 600; }
|
|
.close { font-size: 44rpx; color: #999; padding: 0 12rpx; }
|
|
|
|
.content {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding-bottom: 40rpx;
|
|
}
|
|
.icon { font-size: 80rpx; margin-bottom: 20rpx; }
|
|
.notice {
|
|
font-size: 34rpx;
|
|
font-weight: 600;
|
|
color: #333;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
.sub {
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
} |