You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
1.9 KiB
101 lines
1.9 KiB
.notice-verify {
|
|
width: 100%;
|
|
height: 100vh;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
background: rgba(0,0,0,0.3);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 1000;
|
|
}
|
|
.notice-verify .content {
|
|
width: 610rpx;
|
|
height: auto;
|
|
border-radius: 16rpx;
|
|
background: #fff;
|
|
box-sizing: border-box;
|
|
padding: 0 30rpx;
|
|
/* margin-top: -350rpx; */
|
|
}
|
|
.notice-verify .content .close {
|
|
width: 100%;
|
|
height: 62rpx;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
}
|
|
.notice-verify .content .close image {
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
object-fit:cover;
|
|
position: relative;
|
|
left: 7px;
|
|
top: 2px;
|
|
}
|
|
.notice-verify .content .title {
|
|
font-size: 40rpx;
|
|
color: #333;
|
|
line-height: 57rpx;
|
|
height: 57rpx;
|
|
width:100%;
|
|
text-align:center;
|
|
margin-bottom: 26rpx;
|
|
}
|
|
.notice-verify .content .textarea {
|
|
width: 100%;
|
|
height: 345rpx;
|
|
border-radius: 16rpx;
|
|
background: #f7f7f7;
|
|
box-sizing: border-box;
|
|
padding: 27rpx 17rpx 0;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
.notice-verify .content .textarea textarea {
|
|
width: 100%;
|
|
height: 100%;
|
|
font-size: 32rpx;
|
|
line-height: 44rpx;
|
|
color: #666;
|
|
}
|
|
.notice-verify .content .textarea .textarea-placeholder {
|
|
font-size: 28rpx;
|
|
color: #999;
|
|
line-height: 40rpx;
|
|
}
|
|
.notice-verify .content .note {
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
height:58rpx;
|
|
line-height: 58rpx;
|
|
}
|
|
.notice-verify .content .footer {
|
|
width: 100%;
|
|
height: 107rpx;
|
|
box-sizing: border-box;
|
|
padding: 15rpx 0;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
border-top: 1rpx solid #eaeaea;
|
|
}
|
|
.notice-verify .content .unpass {
|
|
height: 100%;
|
|
line-height: 77rpx;
|
|
font-size: 36rpx;
|
|
flex: 1;
|
|
color: #999;
|
|
text-align: center;
|
|
}
|
|
.notice-verify .content .unpass + .pass {
|
|
border-left: 1rpx solid #eaeaea;
|
|
}
|
|
.notice-verify .content .pass {
|
|
height: 100%;
|
|
line-height: 77rpx;
|
|
font-size: 36rpx;
|
|
flex: 1;
|
|
color: #04BCA0;
|
|
text-align: center;
|
|
}
|