zhongping-miniprogram/miniprogram/components/message/message.scss

62 lines
1.1 KiB
SCSS

/* components/message/message.wxss */
.message-box{
width: 558rpx;
background: #ffffff;
border-radius: 24rpx;
box-sizing: border-box;
padding: 68rpx 76rpx;
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: 34rpx;
font-family: PingFang SC;
font-weight: bold;
color: #000000;
}
.message{
font-size: 24rpx;
font-family: PingFang SC;
font-weight: 500;
color: #838383;
margin-top: 20rpx;
}
.confim-btn{
width: 100%;
height: 76rpx;
line-height: 76rpx;
border-radius: 38rpx;
text-align: center;
background: #3A61B1;
font-size: 26rpx;
font-family: PingFang SC;
font-weight: 500;
color: #FFFFFF;
margin-top: 32rpx;
}
.cancel-btn{
font-size: 26rpx;
font-family: PingFang SC;
font-weight: 500;
color: #C3C3C3;
padding: 15rpx;
}
}