tom
2023-12-06 9e968679ed2e6937aeb7b50a6c450d5d19251f42
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
.div_employee_on {
    position: relative;
    box-sizing:border-box;
    margin: 10px;
    border:#0090FF 1px solid;
    border-radius: 8px;
    height: 80px;
    background: #E0F0FF;
}
 
.div_employee_off {
    position: relative;
    margin: 10px;
    border-radius: 8px;
    height: 80px;
    background: #FFFFFF;
}
 
.img_employee_headimg {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 64px;
    height: 64px;
    border-radius: 8px;
}
 
.div_employee_name {
    position: absolute;
    top: 8px;
    left: 80px;
    font-size: 14px;
    color: #0090FF;
    line-height: 32px;
}
 
.div_employee_code {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 12px;
    color: #808080;
    line-height: 32px;
    text-align: right;
}
 
.div_employee_level {
    position: absolute;
    top: 40px;
    right: 8px;
    font-size: 12px;
    color: #808080;
    line-height: 32px;
    text-align: right;
}
 
.div_employee_title {
    position: absolute;
    top: 40px;
    left: 80px;
    font-size: 12px;
    color: #A0A0A0;
    line-height: 32px;
}
 
.div_account_area {
    position: relative;
    width: 240px;
    margin: 0 auto;
    padding:10px;
    border-radius: 4px;
}
 
.div_account_row {
    position: relative;
    height: 40px;
}
 
.div_account_label {
    position: relative;
    color: #A0A0A0;
    font-size: 12px;
    line-height: 16px;
}
 
.div_account_text {
    position: relative;
    color: #A0A0A0;
    font-size: 12px;
    line-height: 16px;
    margin-bottom:12px;
}
 
.img_account_headimg {
    display:block;
    margin:8px auto;
    width:98px;
    height:98px;
    border:#FFFFFF 2px solid;
    border-radius:50px;
}
 
.input_account_info {
    display: block;
    position: relative;
    width: 90%;
    height: 24px;
    border:none;
    border-radius: 4px;
    background: #FFFFFF;
    padding: 1px;
    color: #606060;
    font-size: 14px;
    line-height: 24px;
    -webkit-appearance: none;
    outline: none;
    resize: none;
}
 
#file_picture {
    position:relative;
    height:20px;
    opacity:0;
}
 
.div_ios_loading {
    position: relative;
    margin: 10px auto;
    width: 31px;
    height: 31px;
    background: url(../icon/loading_alpha.gif) no-repeat center;
    background-size: 100%;
}
 
.div_ios_home {
    position:relative;
    margin: 10px;
    height: 31px;
    color: #808080;
    font-size: 14px;
    text-align: center;
}
 
.div_ios_guide {
    margin: 12px;
    color: #0090FF;
    font-size: 14px;
    text-align: center;
}
 
.img_ios_guide {
    display: block;
    position: relative;
    margin: 8px auto;
    width: 300px;
}