cs
litian
2024-09-25 6800be033ffcd618d8b0b819fed8235a19d6b136
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* packageDomain/pages/publickBookForm/index.wxss */
page {
  background: #F2F3F8;
}
 
.container {
  width: 100vw;
  height: 100%;
}
 
.content {
  height: calc(100vh - env(safe-area-inset-bottom));
  box-sizing: border-box;
  flex-grow: 1;
  overflow-y: auto;
}
 
.tips {
  line-height: 24px;
  font-size: 28rpx;
  padding: 5px;
  background: rgba(255, 108, 0, 0.1);
  color: #ff6c00;
  /* text-align: center; */
  margin: 0 auto 20rpx auto;
}
 
.page-body {
  font-size: 28rpx;
}
 
.baseInfoBox {
  background: #fff;
  margin-top: 20rpx;
  border-radius: 10rpx;
  padding: 30rpx;
}
 
.baseInfoBox .from-item {
  margin-bottom: 20rpx;
}
 
.baseInfoBox .from-item .label {
  /* height: 68rpx; */
  line-height: 68rpx;
}
 
.t-input__tips,
.from-item .label .icon {
  color: #f56c6c !important;
  margin-right: 5rpx;
}
 
.empty {
  /* padding: 0 10rpx; */
}
 
.t-input {
  padding: 0 !important;
}
 
.t-input__content,
.t-textarea {
  border: 2rpx solid #D9D9D9 !important;
  padding: 10rpx !important;
}
 
.from-item .item-content {
  width: 100%;
}
 
.t-input__placeholder,
.t-textarea__placeholder {
  font-size: 28rpx !important
}
 
.t-input__wrap .t-input__content,
.t-input__control {
  font-size: 28rpx !important;
}
 
.submit {
  background: #ff6c00;
  color: #fff;
  border-radius: 50rpx;
}