﻿/*
 * *Created by PoLeung
 * *Email 30930572@qq.com
 * *Create date 2021-01-11
 * *Copyright LockDataV
 * *Desc data visualization project based on echarts4.0.js.
 */

@charset "utf-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

/*页面全局设置*/
*, body {
    padding: 0px;
    margin: 0px;
    font-family: "微软雅黑";
}

body {
    color: #666;
    font-size: 16px;
    background: #FFF;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

html, body {
    height: 100%;
}

li {
    list-style-type: none;
}

i {
    margin: 0px;
    padding: 0px;
    text-indent: 0px;
}

/*img {
    border: none;
    max-width: 100%;
}*/

a {
    text-decoration: none;
    color: #399bff;
}

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
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 8px rgba(30, 159, 255, 0.5);
    border-radius: 2px;
    background-color: rgba(245, 245, 245, 0.2);
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 8px #1E9FFF;
    background-color: #555;
}

/*首页模版*/
.indexBox {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.indexBox > ul {
    height: 100%;
}

.indexTitle {
    font-weight: bold;
}

.indexBox > ul > li:first-child {
    float: left;
    width: 60%;
    height: 100%;
    line-height: 100%;
    background: #00a2c8;
    text-align: center;
}

.indexBox > ul > li > p {
    margin: 10px;
}

.code {
    width: 220px;
    text-align: center;
    margin: 0 auto;
}

#qrcode {
    text-align: center;
    margin: 0 auto;
    border: 10px solid #fff;
}

.indexBox > ul > li:nth-child(2) {
    float: left;
    width: 40%;
    height: 100%;
    background: #FFF;
    text-align: center;
}

.logo {
    width: 150px;
    border-radius: 50%;
}

.indexContact {
    float: left;
}

.tipfont {
    font-size: 12px;
    color: #000;
}