98 lines
1.8 KiB
SCSS
98 lines
1.8 KiB
SCSS
/* components/confirm/confirm.wxss */
|
|
.message-box {
|
|
width: 558rpx;
|
|
background: #ffffff;
|
|
border-radius: 24rpx;
|
|
box-sizing: border-box;
|
|
// padding: 68rpx 76rpx;
|
|
padding-top: 63rpx;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
.cancel-icon {
|
|
position: absolute;
|
|
right: 10rpx;
|
|
top: 0;
|
|
padding: 21rpx;
|
|
width: 31rpx;
|
|
height: 31rpx;
|
|
}
|
|
|
|
.type-icon {
|
|
width: 121rpx;
|
|
height: 156rpx;
|
|
margin-bottom: 15rpx;
|
|
}
|
|
|
|
.title {
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: bold;
|
|
color: #000000;
|
|
opacity: 0.61;
|
|
// line-height: 30rpx;
|
|
margin-bottom: 36rpx;
|
|
}
|
|
|
|
.message {
|
|
font-size: 24rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 400;
|
|
color: #838383;
|
|
line-height: 36rpx;
|
|
padding: 0 52rpx 54rpx 52rpx;
|
|
}
|
|
|
|
.btns {
|
|
display: flex;
|
|
width: 100%;
|
|
border-top: 1px solid #E9E9E9;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
height: 98rpx;
|
|
|
|
&::after {
|
|
content: '';
|
|
border-left: 1px solid #000;
|
|
position: absolute;
|
|
}
|
|
}
|
|
|
|
.confirm-btn {
|
|
// width: 100%;
|
|
height: 98rpx;
|
|
line-height: 98rpx;
|
|
// border-radius: 38rpx;
|
|
// text-align: center;
|
|
// background: #3A61B1;
|
|
width: 100%;
|
|
font-size: 26rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
color: #3A61B1;
|
|
// margin-top: 32rpx;
|
|
}
|
|
|
|
.cancel-btn {
|
|
// font-size: 26rpx;
|
|
// font-family: PingFang SC;
|
|
// font-weight: 500;
|
|
// color: #C3C3C3;
|
|
// padding: 15rpx;
|
|
border-right: 1px solid #E9E9E9;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 98rpx;
|
|
line-height: 98rpx;
|
|
font-size: 24rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
color: #838383;
|
|
}
|
|
} |