sgj
2026-02-27 78ffc470889fcf38434521b3087bb2e21e5a9fce
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
/*
 * This file is part of Dorado 7.x (http://dorado7.bsdn.org).
 * 
 * Copyright (c) 2002-2012 BSTEK Corp. All rights reserved.
 * 
 * This file is dual-licensed under the AGPLv3 (http://www.gnu.org/licenses/agpl-3.0.html) 
 * and BSDN commercial (http://www.bsdn.org/licenses) licenses.
 * 
 * If you are unsure which license is appropriate for your use, please contact the sales department
 * at http://www.bstek.com/contact.
 */
*:focus {
  outline: none;
}
.d-rendering *,
.d-rendering *:before,
.d-rendering *:after {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
html,
body {
  height: 100%;
}
body,
input,
textarea,
button {
  font-size: 10.5pt;
  font-family: "Microsoft YaHei", Arial, sans-serif;
  color: #333333;
  background-color: #ffffff;
}
.d-ie input::-ms-clear {
  display: none;
}
.d-shadow-drop {
  -webkit-box-shadow: 8px 8px 15px 0 rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 8px 8px 15px 0 rgba(0, 0, 0, 0.8);
  box-shadow: 8px 8px 15px 0 rgba(0, 0, 0, 0.8);
}
.d-shadow-sides {
  -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.8);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.8);
}
.d-shadow-frame {
  -webkit-box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.8);
}
.d-modal-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  opacity: 0.1;
  filter: alpha(opacity=10);
  background: #000000;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -ms-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: background-color, border-color, color, -webkit-box-shadow, -webkit-transform;
  -moz-transition-property: background-color, border-color, color, -moz-box-shadow, -moz-transform;
  -ms-transition-property: background-color, border-color, color, -ms-box-shadow, -ms-transform;
  -o-transition-property: background-color, border-color, color, -o-box-shadow, -o-transform;
  transition-property: background-color, border-color, color, box-shadow, transform;
}
.d-modal-mask-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  background: #ffffff;
}
.d-animate-zoom-proxy {
  position: absolute;
  left: -99999px;
  top: -99999px;
  opacity: 0.5;
  filter: alpha(opacity=50);
  box-sizing: border-box;
  background-color: #ffffff;
}
@-webkit-keyframes loading-icon {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes loading-icon {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes loading-icon {
  0% {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes loading-icon {
  0% {
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading-icon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}