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
42
43
44
45
46
47
48
49
50
51
| /* pages/personalCenter/feedBackSubmit/index.wxss */
| page {
| box-sizing: border-box;
| padding: 0 24rpx;
| }
|
| .page-body {
| padding: 20rpx;
| font-size: 28rpx;
| }
|
| .from-item {
| margin-bottom: 20rpx;
| }
|
| .from-item .label {
| width: 240rpx;
| height: 68rpx;
| line-height: 68rpx;
| }
|
|
| .t-input__content,
| .t-textarea {
| border: 2rpx solid #D9D9D9 !important;
| padding: 10rpx !important;
| }
|
| .t-textarea {
| min-height: 300rpx;
| }
|
| .t-input {
| padding: 0 !important;
| }
|
| .t-input__tips,
| .from-item .label .icon {
| color: #f56c6c !important;
| margin-right: 5rpx;
| }
|
| .t-input__placeholder,
| .t-textarea__placeholder {
| font-size: 28rpx !important;
| }
|
| .submit {
| background: #ff6c00;
| color: #fff;
| }
|
|