49 lines
762 B
Plaintext
49 lines
762 B
Plaintext
|
/* pages/sign2/sign2.wxss */
|
||
|
.container {
|
||
|
width: 690rpx;
|
||
|
padding: 30rpx;
|
||
|
}
|
||
|
|
||
|
.wrapper {
|
||
|
margin-bottom: 30rpx;
|
||
|
background-color: white;
|
||
|
}
|
||
|
|
||
|
.wrapper_desc{
|
||
|
position: relative;
|
||
|
padding: 24rpx 32rpx;
|
||
|
font-size: 28rpx;
|
||
|
color: #000000;
|
||
|
overflow: hidden;
|
||
|
white-space: nowrap;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
|
||
|
.wrapper_desc::after {
|
||
|
position: absolute;
|
||
|
box-sizing: border-box;
|
||
|
content: ' ';
|
||
|
pointer-events: none;
|
||
|
right: 0;
|
||
|
left: 0;
|
||
|
bottom: 0;
|
||
|
border-bottom: 1px solid #e6e6e6;
|
||
|
transform: scaleY(0.5);
|
||
|
left: 32rpx;
|
||
|
}
|
||
|
|
||
|
.t-upload {
|
||
|
padding: 24rpx 32rpx;
|
||
|
}
|
||
|
|
||
|
.button-example {
|
||
|
margin-top: 30rpx;
|
||
|
}
|
||
|
|
||
|
.t-textarea {
|
||
|
margin-bottom: 30rpx;
|
||
|
}
|
||
|
|
||
|
.t-textarea__placeholder {
|
||
|
font-size: 28rpx;
|
||
|
}
|