comment.wxss
627 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* pages/my/comment/comment.wxss */
.content {
width: 100%;
padding: 32rpx;
box-sizing: border-box;
}
.content_input textarea {
width: 100%;
/* padding: 30rpx; */
color: #1a1a1a;
font-size: 26rpx;
height: 100%;
min-height: 370rpx;
position: relative;
box-sizing: border-box;
}
.currentWordNumber {
position: absolute;
bottom: 30rpx;
right: 0;
color: #999;
}
.btn {
width: 686rpx;
display: flex;
align-items: center;
justify-content: center;
font-size: 32rpx;
color: #fff;
position: absolute;
bottom: 32rpx;
background: #000;
border-radius: 40rpx;
line-height: 80rpx;
}