riku
2026-01-20 91f7d372fa318e859efd20d71eafbd34274902c4
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
.self-patrol-promise {
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding: 8rpx 8rpx;
  background-color: #c44e00;
}
.promise_btn {
  font-weight: 600;
  white-space: nowrap;
}
.promise-text {
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow-x: hidden;
  text-overflow: ellipsis;
  width: 80%;
  height: 20px;
  line-height: 20px;
}
.promise-text::after {
  content: "签署自巡查承诺,可将自巡查有效期延长为当年有效!";
  position: absolute;
  top: 0;
  left: 0%;
  white-space: nowrap;
  animation: scrollText 10s linear 0s infinite normal;
}
 
@keyframes scrollText {
  0% {
    transform: translateX(100%); /* 开始位置 */
  }
  100% {
    transform: translateX(-100%); /* 结束位置,根据需要调整 */
  }
}
 
.self-patrol-promise-done {
  color: white;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  padding: 8rpx 8rpx;
  background-color: #51be82;
}
.promise-done-text {
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow-x: hidden;
  text-overflow: ellipsis;
  width: 100%;
  height: 20px;
  line-height: 20px;
}
 
.self-patrol-static {
  margin: 16rpx 32rpx;
  padding: 4rpx;
  background-color: white;
  border-radius: 8px;
}
 
.self-patrol-progress {
  color: red;
}
 
.head_row{
  display: flex;
  /* padding: 0 30px; */
  margin-top: 24rpx;
  justify-content: space-between;
  align-items: baseline;
}
 
.head_row_item{
  text-align: center;
  /* width: 20vw; */
  flex: 1;
  /* background-color: red; */
}
 
.head_row_item_tag{
  font-size: 12px;
  font-weight: 559;
}
 
.head_right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  /* background-color: brown; */
  margin-bottom: 8px;
  /* vertical-align: middle; */
}
 
.head_tag{
  font-size: 12px;
  color: var(--fyui-text-color_2);
}
 
.head_btn{
  background-color: var(--fyui-primary-color);
  padding: 4px 6px;
  border-radius: 4px;
  color: white;
  white-space: nowrap;
}
 
.head_btn:active{
  background-color: var(--fyui-primary-color-2);
}
 
.head_tag>text {
  font-size: 40px;
  font-weight: 600;
}
 
.head_1 {
  font-size: 40rpx;
}
 
.grid-item {
  font-size: 24rpx;
}