【调度系统】广东民航医疗快线调度系统源代码
wzp
2025-05-06 18c7a44d2e9db3f4a5322389c3ee94468cce4de1
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
        .chart {
            margin-left: 2px;
            margin-bottom: 10px;
        }
        .label {
            font-size: 10px;
            font-family: "Times New Roman";
        }
        .chart-title {
            margin-left:0px;
            margin-bottom:5px;
            margin-top:10px;
            font-size:14px;
            font-weight: bold;
        }
        .chart rect {
            stroke-width:0;
            stroke: white;
        }
        
        .bar.creator { fill: #2E527E; }
        .bar.recipient { fill: #5A7CA5; }
        .bar.mentioned { fill: #A7BFD6; }
        
        .bar.creator.unknown { fill: #7E7E7E; }
        .bar.recipient.unknown  { fill: #A5A5A5; }
        .bar.mentioned.unknown { fill: #D6D6D6; }
        
        .bar:hover { fill: #820C00; }
        .bar.creator.unknown:hover { fill: #8E8E8E; }
        .bar.recipient.unknown:hover { fill: #B5B5B5; }
        .bar.mentioned.unknown:hover { fill: #E6E6E6; }
        
        .buttons {
            display: inline-block;
            margin-left: 20px;
            margin-bottom: 10px;
        }
        button {
            margin: 2px 0; 
            padding: 5px;
            background-color:#2c5171;
            border:none;
            color:#fff !important;    
            
            -webkit-box-shadow: 2px 2px 1px #ccc;
            -moz-box-shadow: 2px 2px 1px #ccc;
            -o-box-shadow: 2px 2px 1px #ccc;
            box-shadow: 2px 2px 1px #ccc;
            
            font: normal 100% "coustard", serif;
            
            border-right: white 1px solid;
        }
        
        .buttons button:first-child {
            -webkit-border-radius: 7px 0 0 7px
            -moz-border-radius: 7px 0 0 7px;
            -o-border-radius: 7px 0 0 7px;
            border-radius: 7px 0 0 7px;
        }
        
        .buttons button:last-child {
            -webkit-border-radius: 0 7px 7px 0;
            -moz-border-radius: 0 7px 7px 0;
            -o-border-radius: 0 7px 7px 0;
            border-radius: 0 7px 7px 0;
            border-right: none;
        }
        
        button.highlight {
            background-color: #820C00;
            
            -webkit-box-shadow: inset 2px 2px 1px #777;
            -moz-box-shadow: inset 2px 2px 1px #777;
            -o-box-shadow: inset 2px 2px 1px #777;
            box-shadow: inset 2px 2px 1px #777;
            padding: 6px 4px 4px 6px;
        }
        button:hover {
            background-color:#4c7191;
        }
        button.highlight:hover {
            background-color:#820C00;
        }
        
        button#hide_unknown {
            display: inline-block;
            margin-left: 20px;
        }
        button#show_unknown {
            display: inline-block;
            margin-right: 20px;
        }
        
        .axis path,
        .axis line {
            fill: none;
            stroke: black;
            shape-rendering: crispEdges;
        }
        .axis text {
            font-family: sans-serif;
            font-size: 11px;
        }
        .guideline { 
            stroke: #444;
            stroke-width: 0.1;
        }