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

46 lines
918 B
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: 500rpx;
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: 30rpx;
}