2023-03-06 17:57:39 +08:00

41 lines
695 B
Plaintext

.notice{
position: relative;
width: 92vw;
background-color: #FAFAFA;
margin: 0 auto;
border-radius: 10rpx;
line-height: 80rpx;
height: 80rpx;
color: #ED7B2F;
font-size: 20rpx;
padding-left: 20rpx;
}
.notice::after{
border-radius: 5rpx;
position: absolute;
width: 0px;
height: 0px;
border-width: 16rpx;
border-style: solid;
border-color: transparent transparent #FAFAFA transparent;
content: ' ';
left: 50rpx;
top: -30rpx;
}
.sign_box{
width: 92vw;
margin: 0 auto;
}
.sign_title{
font-size: 30rpx;
}
.sign_note{
margin: 20rpx 0;
font-size: 28rpx;
color: #666666;
}
.sign_img{
display: flex;
justify-content: center;
align-items: center;
}