基于中科视拓的seetaface6封装的免费人脸识别项目后端接口
shentao
2025-09-22 4e24fd913e7b048436aa7e5001cf875baac81ff5
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
html {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
 
body {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
 
.flexrow {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}
 
.layui-fluid {
    width: calc(100% - 30px);
    height: calc(100% - 20px);
}
 
#container {
    height: calc(100% - 60px);
}
#formcontainer {
    padding: 24px;
    padding-bottom: 60px;
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100% - 60px);
}
 
#opcontainer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    list-style: none;
    position: fixed;
    height: 40px;
    bottom: 0px;
    padding-top: 5px;
    border-top: 1px solid #dcdcdc;
    background-color: #fff;
    z-index: 9999;
}
 
label.required:after {
    /* 给红色的必填项打红色星号(文字后)如果打前面用before*/
    content: ' *';
    color: red;
}
 
/*valid*/
input.error {
    border: 1px solid red;
}
 
label.error {
    font-weight: bold;
    color: red;
}
 
.list-container {
    padding: 10px;
    background-color: white;
    margin-top: 15px;
    height: calc(100% - 35px);
    width: 100%;
}
 
.list-left-container{
    padding: 10px;
    background-color: white;
    margin-top: 15px;
    margin-right: 5px;
    height: calc(100% - 35px);
}
 
.list-right-container{
    padding: 10px;
    background-color: white;
    margin-top: 15px;
    height: calc(100% - 35px);
    width: calc(100% - 250px);
}
 
.list-search-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}
 
.list-search-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 10px;
}
 
.list-search-item span {
    font-size: 13px;
    width: 100px;
}
 
.list-search-item input {
    height: 30px;
}
 
.layui-btn-container {
    display: flex;
    flex-direction: row;
}
 
.xm-option{
    max-width: 400px !important;
}