2023-05-16 14:06:05 +08:00

77 lines
1.5 KiB
Plaintext

.required{
color: #e34d59;
}
.t-cell__note{
font-size: 25rpx !important;
letter-spacing: 2rpx;
}
.textarea-cell{
position: relative;
padding: 32rpx;
display: flex;
flex-direction: column;
}
.textarea-cell-top{
display: flex;
justify-content: space-between;
font-size: 32rpx;
font-weight: 400;
}
.textarea-cell-note{
color: var(--td-cell-note-color, var(--td-font-gray-3, rgba(0, 0, 0, 0.4)));
display: flex;
align-items: center;
}
.textarea-cell-content{
background-color: #FAFAFA;
width: 95%;
height: 310rpx;
display: flex;
margin: 30rpx auto 0 auto;
}
.textarea-cell::after {
position: absolute;
box-sizing: border-box;
content: ' ';
pointer-events: none;
right: 0;
left: 32rpx;
bottom: 0;
border-bottom: 1px solid var(--td-cell-border-color, var(--td-gray-color-3, #e7e7e7));
transform: scaleY(0.5);
left: 32rpx;
}
.textarea-cell-name{
font-size: 16px;
color: #000000E6;
}
.error_box{
position: relative;
display: flex;
background-color: #FEF1F1;
width: calc(95vw - 64rpx);
height: 100rpx;
margin: 30rpx auto 0 auto;
align-items: center;
padding-left: 32rpx;
border-radius: 10rpx;
}
.error_box::after{
border-radius: 5rpx;
position: absolute;
width: 0px;
height: 0px;
border-width: 16rpx;
border-style: solid;
border-color: transparent transparent #FEF1F1 transparent;
content: ' ';
left: 50rpx;
top: -30rpx;
}
.error_msg{
position: relative;
margin-left: 10rpx;
color: #FF0000;
letter-spacing: 3rpx;
font-weight: 600;
}