懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 html, body {
2     width: 100%;
3     height: 100%;
4     margin: 0;
5     padding: 0;
6     overflow-x: hidden;
7 }
8
9 .main {
10     width: 100%;
11     overflow: hidden;
12 }
13
14 .table-view {
15     height: 100%;
16     float: left;
17     margin: 20px;
18     width: 40%;
19 }
20
21 .table-view .table-container {
22     width: 100%;
23     margin-bottom: 50px;
24     overflow: scroll;
25 }
26
27 .table-view th {
28     padding: 5px 10px;
29     background-color: #F7F7F7;
30 }
31
32 .table-view td {
33     width: 50px;
34     text-align: center;
35     padding:0;
36 }
37
38 .table-container input {
39     width: 40px;
40     padding: 5px;
41     border: none;
42     outline: none;
43 }
44
45 .table-view caption {
46     font-size: 18px;
47     text-align: left;
48 }
49
50 .charts-view {
51     /*margin-left: 49%!important;*/
52     width: 50%;
53     margin-left: 49%;
54     height: 400px;
55 }
56
57 .charts-container {
58     border-left: 1px solid #c3c3c3;
59 }
60
61 .charts-format fieldset {
62     padding-left: 20px;
63     margin-bottom: 50px;
64 }
65
66 .charts-format legend {
67     padding-left: 10px;
68     padding-right: 10px;
69 }
70
71 .format-item-container {
72     padding: 20px;
73 }
74
75 .format-item-container label {
76     display: block;
77     margin: 10px 0;
78 }
79
80 .charts-format .data-item {
81     border: 1px solid black;
82     outline: none;
83     padding: 2px 3px;
84 }
85
86 /* 图表类型 */
87
88 .charts-type {
89     margin-top: 50px;
90     height: 300px;
91 }
92
93 .scroll-view {
94     border: 1px solid #c3c3c3;
95     border-left: none;
96     border-right: none;
97     overflow: hidden;
98 }
99
100 .scroll-container {
101     margin: 20px;
102     width: 100%;
103     overflow: hidden;
104 }
105
106 .scroll-bed {
107     width: 10000px;
108     _margin-top: 20px;
109     -webkit-transition: margin-left .5s ease;
110     -moz-transition: margin-left .5s ease;
111     transition: margin-left .5s ease;
112 }
113
114 .view-box {
115     display: inline-block;
116     *display: inline;
117     *zoom: 1;
118     margin-right: 20px;
119     border: 2px solid white;
120     line-height: 0;
121     overflow: hidden;
122     cursor: pointer;
123 }
124
125 .view-box img {
126     border: 1px solid #cecece;
127 }
128
129 .view-box.selected {
130     border-color: #7274A7;
131 }
132
133 .button-container {
134     margin-bottom: 20px;
135     text-align: center;
136 }
137
138 .button-container a {
139     display: inline-block;
140     width: 100px;
141     height: 25px;
142     line-height: 25px;
143     border: 1px solid #c2ccd1;
144     margin-right: 30px;
145     text-decoration: none;
146     color: black;
147     -webkit-border-radius: 2px;
148     -moz-border-radius: 2px;
149     border-radius: 2px;
150 }
151
152 .button-container a:HOVER {
153     background: #fcfcfc;
154 }
155
156 .button-container a:ACTIVE {
157     border-top-color: #c2ccd1;
158     box-shadow:inset 0 5px 4px -4px rgba(49, 49, 64, 0.1);
159 }
160
161 .edui-charts-not-data {
162     height: 100px;
163     line-height: 100px;
164     text-align: center;
165 }