广州矛调粤政易端
xusd
7 days ago d27794814b69d18aeb8ee96a46cae91d5613570c
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
/* 企业列表样式,用于选择企业页面 */
.company-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 0;
    margin-top: 0;
    gap: 8px;
    /* 单个企业卡片项样式 */
    .company-item {
        background-color: #ffffff;
        width: 319px;
        height: 101px;
        background: #ffffff;
        border-radius: 2px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        padding: 12px;
        // margin: 0px 12px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 4px;
        
        /* 企业卡片内容区域样式 */
        .item-content {
            font-size: 14px;
            color: rgba(23, 26, 29, 0.6);
            line-height: 20px;
        }
    
        /* 企业名称样式 */
        .company-title {
            font-size: 15px;
            font-weight: 400;
            color: #171a1d;
            line-height: 23px;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            // margin-bottom: 8px;
        }
        
        /* 企业信息区域样式 */
        .company-info {
            width: 100%;
            
            div {
                font-size: 14px;
                line-height: 22px;
                margin-bottom: 4px;
                width: 100%;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                
                &:last-child {
                    margin-bottom: 0;
                }
                
                /* 标签样式,如"统一社会信用代码:"*/
                span.label {
                    color: rgba(23, 26, 29, 0.6);
                    margin-right: 4px;
                }
                
                /* 值样式,显示实际信息 */
                span.value {
                    color: rgba(23, 26, 29, 0.85);
                }
            }
        }
    }
}
 
/* 选择列表样式,用于从搜索结果中选择企业 */
.select-list {
    margin-top: 52px;
    padding: 0 16px;
    background: #ffffff;
 
    /* 列表项样式 */
    .list-item {
        padding: 16px 0;
        border-bottom: 1px solid #f2f3f5;
 
        &:last-child {
            border-bottom: none;
        }
 
        /* 企业名称样式 */
        .company-name {
            font-size: 16px;
            font-weight: 500;
            color: #171a1d;
            line-height: 24px;
            margin-bottom: 8px;
        }
 
        /* 企业信息样式 */
        .company-info {
            font-size: 14px;
            color: rgba(23,26,29,0.6);
            line-height: 20px;
            margin-bottom: 4px;
 
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
}
 
/* 主容器样式,位于导航栏下方 */
.main-container {
    position: absolute;
    top: 44px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
 
/* 无选择状态样式,显示"暂无数据"的空状态 */
.select-none {
    width: 100%;
    // padding-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
 
    /* 空状态图标样式 */
    .select-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: calc(100vh - 120px);
    
        &::before {
            content: "";
            width: 260px;
            height: 260px;
            background: url('../../../assets/img/select_null.png') center/cover no-repeat;
        }
    }
    
    /* 空状态文本样式 */
    .select-icon-text {
        text-align: center;
        margin-top: -150px;
        // width: 68px;
        height: 25px;
        // background: rgba(23,26,29,0.40);
        font-size: 15px;
        font-family: PingFang SC, PingFang SC-400;
        font-weight: 400;
        text-align: CENTER;
        color: rgba(23,26,29,0.40);
        line-height: 25px;
    }
}
 
/* 搜索容器样式 */
.search-container {
    width: 100%;
    height: 52px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    box-sizing: border-box;
}
 
/* 搜索框上下文样式 */
.search-context {
    width: 351px;
    height: 36px;
    background: #f2f3f5;
    border-radius: 5px;
    display: flex;
    align-items: center;
    
    /* 搜索图标样式 */
    .search-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 6px;
        width: 24px;
    }
    
    /* 钉钉输入框样式覆盖 */
    .dtm-input-item{
        margin-left: 6px;
        flex: 1;
        background: #f2f3f5;
        .dtm-input-item-input{
            background-color: #f2f3f5;
            border: none;
            outline: none;
        }
        .dtm-input-item-desktop-input{
            padding: 0px;
            background: #f2f3f5;
            border: none;
            outline: none;
            label{
                .dtm-input-item-input{
                    background-color: #f2f3f5;
                    border: none;
                    outline: none;
                }
            }
        }
    }
}
 
/* 高亮文本样式,用于搜索结果中匹配的关键词 */
.highlight-text {
    color: #1a6fb8;
    font-weight: 500;
}
 
/* 搜索按钮样式 */
.search-button {
    display: flex;
    align-items: center;
    padding: 0 8px;
    /* 搜索按钮分隔线 */
    .search-split{
        opacity: 0.3;
    }
    /* 搜索按钮文本 */
    .search-text{
        height: 24px;
        font-size: 16px;
        font-family: PingFang SC, PingFang SC-400;
        font-weight: 400;
        text-align: LEFT;
        color: #1a6fb8;
        line-height: 24px;
    }
    p{
        margin-left: 8px;
    }
}
 
/* 表单项标签样式,用于包含识别按钮的标签 */
.form-item-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
 
    /* 营业执照识别按钮样式 */
    .license-recognition-btn {
        background: none;
        color: #1a6fb8;
        border: none;
        height: 32px;
        padding: 0;
        font-size: 14px;
        white-space: nowrap;
        line-height: 32px;
        display: flex;
        align-items: center;
        min-width: 100px;
        
        /* 身份证图标样式 */
        .id-card-icon {
            font-size: 16px;
            margin-right: 4px;
            flex-shrink: 0;
        }
        
        /* 按钮文本样式 */
        .dtm-button-text {
            display: flex;
            align-items: center;
            height: 100%;
            padding: 0;
            margin: 0;
            font-size: 14px;
            font-family: PingFang SC, PingFang SC-400;
            font-weight: 400;
            text-align: left;
            color: #1a6fb8;
            line-height: 32px;
            flex: 1;
        }
        
        /* 按钮激活状态样式 */
        &:active {
            opacity: 0.8;
        }
    }
}