Files
2021-04-08 11:46:50 +08:00

79 lines
1.3 KiB
Plaintext

/* customMessage.wxss */
.goeasy-custom-message {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10000;
background: #fff;
}
.custom-message-box {
padding: 0 40rpx;
}
.goeasy-custom-message-title {
text-align: center;
font-weight: 600;
font-size: 40rpx;
line-height: 200rpx;
color: #000000;
}
.content {
display: flex;
justify-content: center;
}
.order-item {
display: flex;
align-items: center;
height: 80rpx;
margin-top: 40rpx;
}
.order-input {
height: 80rpx;
margin-top: 40rpx;
}
.input {
width: 500rpx;
height: 80rpx;
padding: 10rpx;
border-radius: 10rpx;
box-sizing: border-box;
font-size: 28rpx;
background: #EFEFEF;
}
.action-btn {
display: flex;
justify-content: space-around;
margin-top: 80rpx;
}
.send-btn {
width: 240rpx;
height: 80rpx;
background: #618DFF;
line-height: 80rpx;
text-align: center;
border-radius: 10rpx;
color: #FFFFFF;
font-size: 32rpx;
}
.cancel-btn {
width: 240rpx;
height: 80rpx;
background: #FFFFFF;
line-height: 80rpx;
text-align: center;
border-radius: 10rpx;
color: #666666;
font-size: 32rpx;
border: 1px solid rgba(0, 0, 0, 0.1)
}