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
| .items {
| position: relative;
| padding: 0 10px;
| background-color: white;
| }
|
| .hr-view {
| height: 2rpx;
| margin: 0 0rpx;
| background-color: #f1f1f1;
| }
|
| .item-title {
| white-space: nowrap;
| display: inline-block;
| font-size: 1rem;
| width: 32vw;
| margin-top: 8px;
| }
|
| .required {
| color: red;
| text-align: center;
| vertical-align: middle;
| }
|
| .not-required {
| color: transparent;
| }
|
| .top-card {
| /* width: 100vw; */
| position: relative;
| display: flex;
| flex-direction: row;
| /* justify-content: space-between; */
| background-color: white;
| padding: 10px 0px;
| /* margin: 0 8px; */
| font-size: 30rpx;
| flex-wrap: nowrap;
| }
|
| .top-card .tag {
| flex-shrink: 0;
| width: 32vw;
| white-space: nowrap;
| /* background-color: seagreen; */
| }
|
| .top-card .value {
| flex-grow: 1;
| }
|
| .top-card .value view {
| /* white-space: nowrap; */
| display: -webkit-box;
| -webkit-line-clamp: 1;
| -webkit-box-orient: vertical;
| overflow-x: hidden;
| text-overflow: ellipsis;
| /* background-color: bisque; */
| }
|
| .picker-text {
| /* color: var(--fyui-primary-color); */
| color: var(--fyui-text-color_1);
| }
|
|