【调度系统】广东民航医疗快线调度系统源代码
wzp
2024-12-05 8a09f655eace34e9c90bbfc711eedb7a69e4e068
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
/*全局样式开始*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
*:focus, *:active {
    outline: none;
    -moz-outline: none;
    outline-style: none;
    -moz-outline-style: none;
    -webkit-outline: none;
    -webkit-outline-style: none;
}
body {
    height: 100%;
    width: 100%;
    font-size: 12px;
    line-height: 1;
    font-family: "Microsoft YaHei", \u5FAE\u8F6F\u96C5\u9ED1, "MicrosoftJhengHei", \u534E\u6587\u7EC6\u9ED1, STHeiti, MingLiu;
    background: #eaeaea;
    color: #333333;
}
img {
    border: 0;
    max-width: 100%;
}
.clear {
    clear: both;
    height: 0;
    display: block;
}
a {
    outline: none;
    text-decoration: none;
    color: #333333;
    cursor:pointer;
}
.h10 {
    height: 10px;
}
 
 
/*表单样式开始*/
#form, #reg {
    width: 94%;
    margin: 15px auto 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#form label {
    display: block;
    height: 40px;
    line-height: 40px;
    color: #666666;
    font-size: 16px;
}
#form input, #form select, #form textarea {
    display: block;
    padding: 0 10px;
    line-height: 40px;
    font-size: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px #bdb8b8 solid;
}
.input {
    height: 40px;
    width: 100%;
}
.input1 {
    height: 160px;
    width: 100%;
}
.code {
    width: 60%;
    float: left;
    height: 40px;
}
.city {
    width: 49%;
    height: 40px;
}
.btnCode {
    width: 38%;
    float: right;
    display: block;
    height: 40px;
    font-size: 16px;
    border: none;
    background-color: #ff8a00;
    display: block;
    color: #fff;
    text-align: center;
}
.submit {
    width: 100%;
    margin: 20px auto 0;
    border: none;
    border-radius: 6px;
    background-color: #ff8a00;
    display: block;
    color: #fff;
    text-align: center;
    font-size: 24px;
    letter-spacing: 4px;
    height: 50px;
    line-height: 50px;
}
.already {
    display: block;
    height: 40px;
    line-height: 40px;
    color: #8f8f8f;
    font-size: 16px;
    width:94%;
    margin:0 auto;
}
.already label {
    color: #3191dd;
}
.already label.wm {
    color: #8f8f8f;
}
/*表单样式结束*/