﻿/*
 * *Created by PoLeung
 * *Email 30930572@qq.com
 * *Create date 2020-08-15
 * *Copyright LockDataV
 * *Data visualization project based on Echarts.js.
 */

@charset "utf-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

*, body {
    padding: 0px;
    margin: 0px;
    color: #222;
    font-family: "微软雅黑";
}

body {
    color: #666;
    font-size: 16px;
    background: #000d4a url('../images/mainbg.jpg') center top;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

li {
    list-style-type: none;
}

i {
    margin: 0px;
    padding: 0px;
    text-indent: 0px;
}

img {
    border: none;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: #fff;
}

a.active, a:focus {
    outline: none !important;
    text-decoration: none;
}

ol, ul, p, h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0
}

a:hover {
    color: #06c;
    text-decoration: none !important
}

.clearfix:after, .clearfix:before {
    display: table;
    content: " "
}

.clearfix:after {
    clear: both
}

/*数字字体*/
@font-face {
    font-family: 'tapeworm';
    src: url('../fonts/tapeworm.eot');
    src: url('../fonts/tapeworm.eot?#iefix') format('embedded-opentype'),
    url('../fonts/tapeworm.ttf') format('truetype'),
    url('../fonts/tapeworm.svg#tapewormregular') format('svg');
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #0b083d;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 8px #0b083d;
    border-radius: 2px;
    background-color: rgba(245, 245, 245, 0.2);
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 8px #0b083d;
    background-color: #555;
}

/* 加载旋转动画 */
.loading {
    position: fixed;
    left: 0;
    top: 0;
    font-size: 16px;
    z-index: 100000000;
    width: 100%;
    height: 100%;
    background: #1a1a1c;
    text-align: center;
}

.loadbox {
    position: absolute;
    width: 160px;
    height: 150px;
    color: rgba(255, 255, 255, .6);
    left: 50%;
    top: 50%;
    margin-top: -100px;
    margin-left: -75px;
}

.loadbox img {
    margin: 10px auto;
    display: block;
    width: 40px;
}

/*框架通用CSS*/
.boxAll {
    padding: 0px;
    background: rgba(0, 0, 0, .2);
    position: relative;
    margin-bottom: 15px;
    width: 100%;
    z-index: 10;
}

/*四角边框装饰*/
.boxstyle {
    border: 1px solid rgba(100, 162, 255, .2);
    box-sizing: border-box;
    position: relative;
    margin-top: 15px;
}

.boxstyle:after, .boxstyle:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px
}

.boxstyle:before {
    border-left: 1px solid #089ff0;
    border-bottom: 1px solid #089ff0;
    left: -1px;
    bottom: -1px
}

.boxstyle:after {
    border-right: 1px solid #089ff0;
    border-bottom: 1px solid #089ff0;
    right: -1px;
    bottom: -1px
}

/*阴影CSS*/
.boxshadow {
    box-shadow: inset 0px 0px 15px 10px #0b083d;
}

.popshadow {
    box-shadow: inset 0px 0px 15px 10px #071175;
    border-radius: 10px;
}

.pshadow {
    box-shadow: inset 0px 0px 15px 10px #00acfb;
    border-radius: 10px;
}

/*项目标题样式*/
.allTitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
    position: relative;
    padding-left: 40px;
    margin: 0px;
    height: 38px;
    background-image: linear-gradient(to right, #022b93, #09113a);
}

.allTitle:before {
    width: 20px;
    height: 20px;
    top: 8px;
    left: 10px;
    position: absolute;
    background: url('../images/party.png') no-repeat;
    background-size: 20px 20px;
    content: "";
}

.allTitle > span {
    width: 91px;
    height: 38px;
    line-height: 38px;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    text-align: center;
    display: inline-block;
    margin: auto 5px;
    border-radius: 3px;
    cursor: pointer;
}

.boundary {
    padding-top: 5px;
}

/*Tab按钮*/
.unactive {
    background: url('../images/bnt.png') no-repeat center;
    background-size: 91px 38px;
}

.active {
    background: url('../images/bntactive.png') no-repeat center;
    background-size: 91px 38px;
}

.navBoxAll {
    height: calc(100% - 30px);
}

/*大屏主体*/
.mainbox {
    margin-left: 10px;
    padding: auto 10px;
}

.mainbox > ul > li {
    float: left;
}

.mainbox > ul > li:nth-child(2) {
    padding: 0 10px;
}

.mainbox > ul > li {
    width: 65%
}

.mainbox > ul > li:nth-child(2) {
    width: 35%
}

/*SVG地图*/
path:hover {
    cursor: pointer;
    font-size: 10px;
}

text:hover {
    cursor: pointer;
}

.svgFont {
    font-size: 12px;
    fill: #fff;
}

#mapbox, .mapper {
    margin-left: 30px;
}

/*数据指标*/
#norm {
    position: absolute;
    z-index: 9999;
    top: 80px;
    right: 30px;
}

.norm {
    width: 160px;
    height: 81px;
    background: url('../images/normbg.png') no-repeat center;
    background-size: 160px 81px;
    color: rgba(255, 255, 255, .8);
    font-weight: bold;
    margin: 20px;
    padding: 15px;
    font-size: 14px;
    text-align: center;
}

.norm p {
    color: #0fd4e5;
    font-family: 'tapeworm';
    letter-spacing: 3px;
    font-size: 18px;
    margin: 10px;
}

/*tips*/
#tips {
    position: absolute;
    border: 2px solid #fb5c00;
    border-radius: 15px;
    width: 190px;
    height: 110px;
    z-index: 999;
    bottom: 80px;
    right: 80px;
    display: none;
}

#tips > div {
    color: rgba(255, 255, 255, .8);
    margin-bottom: 10px;
    padding-left: 15px;
}

#tips > div > span {
    color: rgba(255, 255, 255, .8);
}

#tips > div:first-child {
    background: #fb5c00;
    font-weight: bold;
    border-radius: 10px 10px 0px 0px;
    padding-left: 30px;
    height: 30px;
    line-height: 30px;
    margin-top: 0px;
}

#tips > div:first-child:before {
    position: absolute;
    width: 15px;
    height: 15px;
    left: 10px;
    top: 7px;
    background: url('../images/party.png') no-repeat;
    background-size: 15px 15px;
    content: "";
}

/*社区巡礼*/
.community {
    width: 100%;
    margin: 3px auto;
    text-align: center;
}

.community > div {
    display: inline-block;
    width: 32%;
    height: 100%;
    margin: 3px auto;
    padding: auto 0.5%;
    border-radius: 5px;
    background: rgba(9, 3, 89, 0);
}

.ctitle {
    color: rgba(255, 255, 255, .8);
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    padding: 10px;
}

.community > div:first-child {
    margin-left: 0.25%;
}

.community > div:nth-child(3) {
    margin-right: 0.25%;
}

#gender, #ages, #job {
    color: rgba(255, 255, 255, 1);
    height: 145px;
}

/*荣誉榜*/
.table1 {
    width: 600px;
    height: 260px;
    margin: auto;
    padding: auto 10px;
}

.table1 th {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding-top: 10px;
    padding-bottom: 10px;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
}

.table1 td {
    color: rgba(255, 255, 255, .9);
    padding: 10px;
    font-size: 14px;
    border-bottom: 1px dotted rgba(9, 152, 228, .4);
    text-align: center;
}

.table1 td span {
    width: 20px;
    height: 20px;
    display: block;
    background: #878787;
    color: #fff;
    line-height: 20px;
    text-align: center;
    margin: 0 auto;
    font-size: 12px;
    border-radius: 5px;
}

.table1 td:nth-child(3) {
    color: #00fcf9;
}

.table1 tr:hover {
    background-color: rgba(255, 255, 255, .2);
    border-radius: 10px;
    cursor: pointer;
}

.table1 tr:nth-child(1) span {
    background: #ff5700
}

.table1 tr:nth-child(2) span {
    background: #bd8516
}

.table1 tr:nth-child(3) span {
    background: #0091de
}

/*弹出层*/
.laybg {
    display: inline-block;
    width: 16px;
    height: 16px;
    text-align: center;
    float: right;
    cursor: pointer;
}

/*新窗口*/
.new1, .new2, .new3, .new4, .new5, .new6, .new7, .new8, .new9 {
    float: right;
    color: rgba(255, 255, 255, .6);
    margin-right: 2%;
    margin-top: 2%;
    font-size: 10px;
}

.icon2 {
    font-family: "iconfont" !important;
    font-size: 10px;
    font-style: normal;
    color: #f8c239;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}

/*角标*/
#datav-text-logo {
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 150px;
    text-align: right;
    color: #0682c7;
    z-index: 9999;
}

/*弹窗信息*/
.popup {
    background: rgba(6, 2, 53, .7) url("../images/popbg.png") no-repeat center;
    background-size: 100% 100%;
    border-radius: 15px;
    display: none;
}

/*动态背景*/
.actbg {
    position: relative;
    top: 0;
    left: 0;
}

.backLiang {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/back-liang.png') no-repeat top;
    opacity: 1;
    z-index: -99;
    top: 0;
    left: 0;
}

#Mycanvas {
    position: absolute;
    opacity: 0.8;
    top: 0;
    left: 0;
    z-index: -98;
}

/*tab组件*/
.mt-tabpage {
    width: 100%;
    margin: 0px auto;
}

.mt-tabpage-title {
    height: 40px;
    font-size: 0;
    width: 100%;
    margin: auto;
}

.mt-tabpage-title .mt-tabpage-item {
    display: inline-block;
    width: 105px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: url('../images/bnt.png') no-repeat center;
    background-size: 91px 38px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.mt-tabpage-title .mt-tabpage-item:hover {
    background: url('../images/bntactive.png') no-repeat center;
    background-size: 91px 38px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.mt-tabpage-title .mt-tabpage-item-cur {
    background: url('../images/bntactive.png') no-repeat center;
    background-size: 91px 38px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.mt-tabpage-count {
    position: relative;
    width: 100%;
    height: 265px;
    overflow: hidden;
}

.mt-tabpage-cont__wrap {
    position: absolute;
}

.mt-tabpage-count .mt-tabpage-item {
    width: 100%;
    padding-bottom: 10px;
    text-align: center;
}

#orders_0, #orders_1, #orders_2 {
    width: 600px;
    height: 265px;
    margin: auto 0;
    text-align: center;
}

#honor, #honor_year {
    width: 100%;
    height: 300px;
}

/*实时数字滚动*/
.numNorm {
    width: 100%;
    display: block;
    margin-top: 10px;
}

.numberRun {
    position: relative;
    text-align: center;
    width: 600px;
    height: 80px;
    left: 0;
    right: 0;
    margin: auto;
}

.mt-number-animate {
    line-height: 70px;
    height: 70px;
    font-size: 34px;
    font-family: 'Dense';
    overflow: hidden;
    display: inline-block;
    position: relative;
    color: #0091de;
}

/*千分位符号*/
.mt-number-animate .mt-number-animate-dot {
    width: 18px;
    line-height: 60px;
    float: left;
    text-align: center;
    color: #fff;
}

.mt-number-animate .mt-number-animate-dom {
    width: 40px;
    font-family: 'Dense';
    text-align: center;
    float: left;
    position: relative;
    margin: 0px 3px;
}

.mt-number-animate .mt-number-animate-dom .mt-number-animate-span {
    position: relative;
    color: #fff;
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-family: 'Dense';
    border: 1px solid #60686c;
    display: inline-block;
    border-radius: 5px;
}

.mt-number-animate .mt-number-animate-dom .mt-number-animate-cdot {
    position: relative;
    color: #fff;
    font-family: 'Dense';
    height: 60px;
    line-height: 60px;
    text-align: center;
    display: inline-block;
    width: 16px;
}