﻿/*
 * *Created by PoLeung
 * *Email 30930572@qq.com
 * *Create date 2024-10-24
 * *Copyright LockDataV
 * *Desc data visualization project based on Echarts5.0.
 */
@charset "utf-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html {
    overflow: hidden;
}

*, body {
    padding: 0px;
    margin: 0px;
    color: #222;
    font-family: "微软雅黑";
}

body {
    color: #bbbdbd;
    font-size: 16px;
    background: #000 url('../images/dogBg3.jpg') no-repeat top center;
    background-size: 100% 100%;
    -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;
}

a {
    text-decoration: none;
    color: #bbbdbd;
}

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: #bbbdbd;
    text-decoration: none !important
}

/*动态背景*/
.actbg {
    position: relative;
    top: 0;
    left: 0;
}

.backLiang {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent url('../images/honeycomb.png') no-repeat center top;
    opacity: 1;
    z-index: -1;
    top: 0;
    left: 0;
}

#Mycanvas {
    position: absolute;
    opacity: 0.8;
    top: 0;
    left: 0;
    z-index: -98;
}

.download {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999999999;
}

/*登陆面板*/
.panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.panel-content {
    width: 960px;
    height: 600px;
}

.panel-login {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.login-title {
    width: 100%;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    background-image: linear-gradient(to bottom, #2fe2dc, #30a8e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-title-en {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    margin: 12px auto;
    font-size: 12px;
    color: #bbbdbd;
}

/*图表样式*/
.boxall {
    border: 1px solid #0f2c58;
    background-color: rgba(0, 40, 66, .4);
    padding: 0 5px 5px 5px;
    width: 450px;
    height: 200px;
    position: absolute; /*绝对定位水平居中*/
    margin: auto;
    left: 0;
    right: 0;
}

.boxall:before, .boxall:after {
    position: absolute;
    width: 10px;
    height: 10px;
    content: "";
    border-top: 3px solid #00b8ff;
    top: 0;
}

.boxall:before, .boxfoot:before {
    border-left: 3px solid #00b8ff;
    left: 0;
}

.boxall:after, .boxfoot:after {
    border-right: 3px solid #00b8ff;
    right: 0;
}

.boxfoot {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

.boxfoot:before, .boxfoot:after {
    position: absolute;
    width: 10px;
    height: 10px;
    content: "";
    border-bottom: 3px solid #00b8ff;
    bottom: 0;
}

/*标题*/
.alltitle {
    letter-spacing: 2px;
    text-align: center;
    margin: 10px auto;
}

.tipPanel {
    margin-top: 20px;
    font-size: 12px;
}

.tipPanel > p:first-child {
    color: #fff;
    margin-bottom: 10px;
}

.login {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.lock-input {
    width: 80%;
    height: 45px;
    color: #fff;
    font-size: 12px;
    margin-top: 10px;
    padding: 5px 0 5px 35px;
    border: 1px solid #0b8ab9;
    border-radius: 5px;
    background: rgba(27, 31, 81, .6);
    outline: none;
    background: url("../images/pass2.png") no-repeat left 10px center;
}


#showTips {
    width: 80%;
    height: 45px;
    margin-top: 10px;
}


/*版权*/
.login-footer {
    position: absolute;
    color: #bbbdbd;
    bottom: 0;
    text-align: center; /* 对于文本或行内元素 */
    width: 100%; /* 确保footer宽度占满父元素 */
    padding: 20px 0; /* 上下内边距 */
}

.login-footer > span {
    color: #bbbdbd;
}