|
@@ -25,11 +25,14 @@
|
|
|
min-width: 1024px;
|
|
|
max-width: 1920px;
|
|
|
padding: .287rem .287rem 0;
|
|
|
- display: flex
|
|
|
+ display: flex;
|
|
|
+ height: 100%;
|
|
|
+ min-height: 700px;
|
|
|
}
|
|
|
|
|
|
.mainbox .column {
|
|
|
- flex: 3
|
|
|
+ flex: 3;
|
|
|
+ height: 100%;
|
|
|
}
|
|
|
|
|
|
.mainbox .column:nth-child(2) {
|
|
@@ -73,7 +76,8 @@
|
|
|
}
|
|
|
|
|
|
.no {
|
|
|
- height: 4.05rem;
|
|
|
+ height: calc(40% - 0.574rem);
|
|
|
+ /* height: 4.05rem; */
|
|
|
overflow: hidden;
|
|
|
background-image: url(../images/no-bg.png)
|
|
|
}
|
|
@@ -116,7 +120,8 @@
|
|
|
|
|
|
.map {
|
|
|
position: relative;
|
|
|
- height: 7.55rem;
|
|
|
+ /* height: 7.55rem; */
|
|
|
+ height: 60%;
|
|
|
margin-bottom: .287rem;
|
|
|
background-size: 90% 90%;
|
|
|
background-position: bottom center;
|
|
@@ -182,27 +187,36 @@
|
|
|
}
|
|
|
|
|
|
.panel.pie-bar {
|
|
|
- height: 7.55rem;
|
|
|
+ /* height: 7.55rem; */
|
|
|
+ height: 60%;
|
|
|
background-image: url(../images/pie-bar-bg.png)
|
|
|
}
|
|
|
|
|
|
.panel.line {
|
|
|
- height: 4.05rem;
|
|
|
+ /* height: 4.05rem; */
|
|
|
+ height: calc(40% - 0.574rem);
|
|
|
background-image: url(../images/line-bg.png)
|
|
|
}
|
|
|
|
|
|
.panel.right-top {
|
|
|
- height: 5.425rem;
|
|
|
+ height: 43%;
|
|
|
+ /* height: 5.425rem; */
|
|
|
background-image: url(../images/right-top-bg.png)
|
|
|
}
|
|
|
|
|
|
.panel.right-top .chart {
|
|
|
- height: 3.4rem
|
|
|
+ /* height: 3.4rem; */
|
|
|
+ height: calc(100% - 1.85rem)
|
|
|
+ }
|
|
|
+
|
|
|
+ .pie-bar-container {
|
|
|
+ height: calc(100% - 0.7rem)
|
|
|
}
|
|
|
|
|
|
.pie-bar-bottom,
|
|
|
.pie-bar-top {
|
|
|
- height: 3.438rem;
|
|
|
+ /* height: 3.438rem; */
|
|
|
+ height: 50%;
|
|
|
width: 100%;
|
|
|
position: relative
|
|
|
}
|
|
@@ -216,7 +230,8 @@
|
|
|
}
|
|
|
|
|
|
.line .chart {
|
|
|
- height: 90%
|
|
|
+ /* height: 90% */
|
|
|
+ height: calc(100% - 0.7rem)
|
|
|
}
|
|
|
|
|
|
.title-btn {
|
|
@@ -228,7 +243,7 @@
|
|
|
border-radius: 10px;
|
|
|
text-align: center;
|
|
|
font-size: .25rem;
|
|
|
- margin: .125rem auto
|
|
|
+ margin: .1rem auto 0.2rem
|
|
|
}
|
|
|
|
|
|
.total-squares {
|
|
@@ -253,7 +268,8 @@
|
|
|
}
|
|
|
|
|
|
.huan {
|
|
|
- height: 6.175rem;
|
|
|
+ /* height: 6.175rem; */
|
|
|
+ height: calc(57% - 0.574rem);
|
|
|
background-image: url(../images/right-bottom-bg.png);
|
|
|
/* min-width:380px; */
|
|
|
}
|
|
@@ -275,13 +291,17 @@
|
|
|
text-align: center;
|
|
|
border: 1px solid rgba(0, 212, 233, .4);
|
|
|
display: inline-block;
|
|
|
- padding: 0.125rem 0;
|
|
|
}
|
|
|
|
|
|
.huan li {
|
|
|
+ display: flex;
|
|
|
+ float: left;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
margin-right: .35rem;
|
|
|
margin-bottom: 0.125rem;
|
|
|
- margin-top: 0.1rem
|
|
|
+ margin-top: 0.1rem;
|
|
|
+ height: calc(50% - 0.225rem);
|
|
|
}
|
|
|
|
|
|
.num-huan {
|
|
@@ -295,7 +315,8 @@
|
|
|
display: inline-block;
|
|
|
white-space: nowrap;
|
|
|
overflow: hidden;
|
|
|
- text-overflow: ellipsis
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ text-align: left;
|
|
|
}
|
|
|
|
|
|
.no table {
|
|
@@ -305,29 +326,107 @@
|
|
|
.no table th,
|
|
|
.no table td {
|
|
|
border-bottom: 1px solid rgba(0, 212, 233, .1);
|
|
|
+ display: inline-block;
|
|
|
+ white-space: nowrap;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ }
|
|
|
+
|
|
|
+ .no table th:hover,
|
|
|
+ .no table td:hover {
|
|
|
+ overflow: auto;
|
|
|
+ text-overflow: clip;
|
|
|
}
|
|
|
|
|
|
.no tr td:first-child,
|
|
|
.no tr th:first-child {
|
|
|
- width: 1rem
|
|
|
+ width: 8%
|
|
|
}
|
|
|
|
|
|
.no tr td:nth-child(2),
|
|
|
.no tr th:nth-child(2) {
|
|
|
- width: 2.3rem
|
|
|
+ width: 25%
|
|
|
}
|
|
|
|
|
|
.no tr td:nth-child(3),
|
|
|
.no tr th:nth-child(3) {
|
|
|
- width: 1rem
|
|
|
+ width: 15%;
|
|
|
}
|
|
|
|
|
|
.no tr td:nth-child(4),
|
|
|
.no tr th:nth-child(4) {
|
|
|
- width: 5rem
|
|
|
+ width: 32%;
|
|
|
}
|
|
|
|
|
|
.no tr td:nth-child(5),
|
|
|
.no tr th:nth-child(5) {
|
|
|
- width: 1.5rem
|
|
|
+ width: 20%
|
|
|
+ }
|
|
|
+
|
|
|
+ .huan tr td:first-child,
|
|
|
+ .huan tr th:first-child {
|
|
|
+ width: 10%
|
|
|
+ }
|
|
|
+
|
|
|
+ .huan tr td:nth-child(2),
|
|
|
+ .huan tr th:nth-child(2) {
|
|
|
+ width: 30%
|
|
|
+ }
|
|
|
+
|
|
|
+ .huan tr td:nth-child(3),
|
|
|
+ .huan tr th:nth-child(3) {
|
|
|
+ width: 20%
|
|
|
+ }
|
|
|
+
|
|
|
+ .huan tr td:nth-child(4),
|
|
|
+ .huan tr th:nth-child(4) {
|
|
|
+ width: 40%
|
|
|
+ }
|
|
|
+ /* 溢出滚动样式 */
|
|
|
+
|
|
|
+ .scroll::-webkit-scrollbar {
|
|
|
+ height: 7px !important;
|
|
|
+ width: 7px !important;
|
|
|
+ }
|
|
|
+ /*定义了滚动条滑块的样式*/
|
|
|
+
|
|
|
+ .scroll::-webkit-scrollbar-thumb {
|
|
|
+ border-radius: 5px;
|
|
|
+ border-style: dashed;
|
|
|
+ background-color: rgba(40, 190, 252, .6);
|
|
|
+ border-color: #e2242400;
|
|
|
+ border-width: 1.5px;
|
|
|
+ background-clip: padding-box;
|
|
|
+ }
|
|
|
+ /*定义了轨道的样式*/
|
|
|
+
|
|
|
+ td::-webkit-scrollbar-track {
|
|
|
+ /*滚动条里面轨道*/
|
|
|
+ -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0);
|
|
|
+ border-radius: 5px;
|
|
|
+ background: rgba(0, 0, 0, 0.2);
|
|
|
+ }
|
|
|
+ /* 溢出滚动样式 */
|
|
|
+
|
|
|
+ td::-webkit-scrollbar {
|
|
|
+ height: 5px !important;
|
|
|
+ width: 5px !important;
|
|
|
+ }
|
|
|
+ /*定义了滚动条滑块的样式*/
|
|
|
+
|
|
|
+ td::-webkit-scrollbar-thumb {
|
|
|
+ border-radius: 5px;
|
|
|
+ border-style: dashed;
|
|
|
+ background-color: rgba(40, 190, 252, .6);
|
|
|
+ border-color: #e2242400;
|
|
|
+ border-width: 1.5px;
|
|
|
+ background-clip: padding-box;
|
|
|
+ }
|
|
|
+ /*定义了轨道的样式*/
|
|
|
+
|
|
|
+ td::-webkit-scrollbar-track {
|
|
|
+ /*滚动条里面轨道*/
|
|
|
+ -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0);
|
|
|
+ border-radius: 5px;
|
|
|
+ background: rgba(0, 0, 0, 0.2);
|
|
|
}
|