This commit is contained in:
2024-02-19 13:14:35 +08:00
parent 454b7273cf
commit 27a8dedc87
2 changed files with 169 additions and 100 deletions

View File

@@ -175,6 +175,7 @@ uni-button:after {
line-height: 80rpx;
font-size: 28rpx;
color: #323232;
font-weight: bold;
text-align:justify;
text-align-last: justify;
text-justify: inter-ideograph;/*兼容ie*/
@@ -348,9 +349,9 @@ uni-button:after {
background-color: #fff
}
.btn-disabled, .submit-button[disabled] {
background-color: #c9c9c9;
border: 1px solid #c9c9c9;
color: #fff;
background-color: #c9c9c9 !important;
border: 1px solid #c9c9c9 !important;
color: #fff !important;
}
.more_btns_wraper {
position: fixed;
@@ -398,32 +399,28 @@ uni-button:after {
}
/** 弹窗 */
.popshow {
transform: translateY(0);
}
.pophide {
transform: translateY(100%);
}
.msg_wrapper {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
text-align: center;
z-index: 201;
display: flex;
justify-content: center;
align-items: center;
}
.msg_wrapper_1 {
text-align: left;
}
.msg_box {
width: 90%;
padding: 20rpx;
width: 100%;
padding: 60rpx 28rpx;
background-color: #fff;
border-radius: 4px;
border: 1px solid #ebeef5;
box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
backface-visibility: hidden;
box-shadow: 0 -8px 16px 0 rgba(28,31,33,.1);
border-top-left-radius: 20rpx;
border-top-right-radius: 20rpx;
z-index: 301;
transition: all .3s;
}
.msg_box {
width: 100%;
}
.msg_mask {
position: fixed;
top: 0;
@@ -432,33 +429,29 @@ uni-button:after {
height: 100%;
opacity: .7;
background: #000;
z-index: 200;
z-index: 300;
}
.msg_btns {
width: 100%;
max-width: 300px;
margin: 40rpx auto 0;
display: flex;
justify-content: center;
align-items: center;
}
.msg_btn {
width: 45%;
border-radius: 10rpx;
margin: 0;
font-size: 34rpx;
line-height: 78rpx;
color: #fff;
text-align: center;
background-color: #ff6a00;
border: 1rpx solid #ff6a00;
border-radius: 44rpx;
box-shadow: 0 8rpx 18rpx 0 rgba(0,0,0,.2);
}
.msg_btn_cancle {
background-color: #fff;
border: 1rpx solid #ff6a00;
font-size: 34rpx;
line-height: 78rpx;
border-radius: 44rpx;
color: #000;
margin-right: 20rpx;
box-shadow: 0 8rpx 18rpx 0 rgba(0,0,0,.2);
}
.msg_btn:disabled {
background-color: #c9c9c9;