|
@@ -124,3 +124,150 @@ header .filterSec {
|
|
|
position: absolute;
|
|
|
top: 0;
|
|
|
left: 0;
|
|
|
+ content: "";
|
|
|
+ width: 10px;
|
|
|
+ height: 10px;
|
|
|
+ border-top: 2px solid #28BEFC;
|
|
|
+ border-left: 2px solid #28BEFC;
|
|
|
+}
|
|
|
+.panel::after {
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ right: 0;
|
|
|
+ content: "";
|
|
|
+ width: 10px;
|
|
|
+ height: 10px;
|
|
|
+ border-top: 2px solid #28BEFC;
|
|
|
+ border-right: 2px solid #28BEFC;
|
|
|
+}
|
|
|
+.panel .panel-footer {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ bottom: 0;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+.panel .panel-footer::before {
|
|
|
+ position: absolute;
|
|
|
+ bottom: 0;
|
|
|
+ left: 0;
|
|
|
+ content: "";
|
|
|
+ width: 10px;
|
|
|
+ height: 10px;
|
|
|
+ border-bottom: 2px solid #28BEFC;
|
|
|
+ border-left: 2px solid #28BEFC;
|
|
|
+}
|
|
|
+.panel .panel-footer::after {
|
|
|
+ position: absolute;
|
|
|
+ bottom: 0;
|
|
|
+ right: 0;
|
|
|
+ content: "";
|
|
|
+ width: 10px;
|
|
|
+ height: 10px;
|
|
|
+ border-bottom: 2px solid #28BEFC;
|
|
|
+ border-right: 2px solid #28BEFC;
|
|
|
+}
|
|
|
+.panel h2 {
|
|
|
+ height: 0.6rem;
|
|
|
+ line-height: 0.6rem;
|
|
|
+ text-align: center;
|
|
|
+ color: #0096FF;
|
|
|
+ font-size: 0.25rem;
|
|
|
+ font-weight: 400;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.panel h2 .line {
|
|
|
+ height: 1px;
|
|
|
+ background: rgba(25, 140, 186, 0.5);
|
|
|
+ position: relative;
|
|
|
+ width: 100%;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+.panel h2 .line:before {
|
|
|
+ content: '';
|
|
|
+ top: 0.07rem;
|
|
|
+ left: -0.37rem;
|
|
|
+ width: 0.375rem;
|
|
|
+ height: 1px;
|
|
|
+ border-bottom: 1px solid rgba(25, 140, 186, 0.5);
|
|
|
+ display: inline-block;
|
|
|
+ transform: rotate(335deg);
|
|
|
+ position: absolute;
|
|
|
+}
|
|
|
+.panel h2 .line:after {
|
|
|
+ content: '';
|
|
|
+ top: 0.07rem;
|
|
|
+ right: -0.35rem;
|
|
|
+ width: 0.375rem;
|
|
|
+ height: 1px;
|
|
|
+ border-bottom: 1px solid rgba(25, 140, 186, 0.5);
|
|
|
+ display: inline-block;
|
|
|
+ transform: rotate(25deg);
|
|
|
+ position: absolute;
|
|
|
+}
|
|
|
+.panel h2 img {
|
|
|
+ height: 0.125rem;
|
|
|
+ vertical-align: middle;
|
|
|
+}
|
|
|
+.panel h2 span {
|
|
|
+ margin: 0 0.1875rem;
|
|
|
+}
|
|
|
+.panel .chart {
|
|
|
+ height: calc(100% - 0.6rem);
|
|
|
+}
|
|
|
+.tab-line {
|
|
|
+ height: 0.6rem;
|
|
|
+ margin: 0.25rem 0;
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
+.tab-line a {
|
|
|
+ font-size: 0.175rem;
|
|
|
+ color: #0090F5;
|
|
|
+ padding: 0.125rem 0.45rem;
|
|
|
+ display: block;
|
|
|
+ float: left;
|
|
|
+ border: 1px solid #0096ff;
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+.tab-line a.active {
|
|
|
+ background: #0096FF;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+@media screen and (max-width: 1024px) {
|
|
|
+ html {
|
|
|
+ font-size: 42px !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media screen and (min-width: 1920) {
|
|
|
+ html {
|
|
|
+ font-size: 80px !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+.line.panel {
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+.line.panel .chart {
|
|
|
+ height: 50%;
|
|
|
+}
|
|
|
+.hotAnalysis.panel .chart,
|
|
|
+.data_fluctuation.panel .chart {
|
|
|
+ height: 62%;
|
|
|
+ margin-top: 0.5rem;
|
|
|
+}
|
|
|
+/* 搜索区域样式 */
|
|
|
+.filterSec {
|
|
|
+ position: absolute;
|
|
|
+ bottom: -0.0625rem;
|
|
|
+ right: 0;
|
|
|
+ font-size: 0.175rem;
|
|
|
+}
|
|
|
+.filterSec select,
|
|
|
+.filterSec input {
|
|
|
+ border: 1px solid #64A7D4;
|
|
|
+ width: 2.1rem;
|
|
|
+ height: 0.35rem;
|
|
|
+ color: #fff;
|
|
|
+ line-height: 0.35rem;
|
|
|
+ background: rgba(0, 0, 0, 0);
|
|
|
+ margin-right: 0.4rem;
|
|
|
+ font-size: 0.175rem;
|
|
|
+}
|