.loading-box {
	width: 100vw;
    height: 100vh;
    background-color: rgb(35 33 33 / 78%);
    /* background-image: url(../img/loading-bgd.jpg); */
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    z-index: 3;
    user-select: none;
    overflow: hidden;

    .box {
        width: 52vh;
        height: 52vh;
        position: absolute;
        left: 0;
        right: 0;
        top: 17%;
        margin: auto;

        .animation {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            margin: auto;
        }
        .animation1 {
            width: 90%;
            height: 90%;
            background: url(../img/loading1.png) no-repeat;
            background-size: 100% 100%;
            animation-name: example2;
            animation-duration: 4s;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
        }
        .animation2 {
            width: 60%;
            height: 60%;
            background: url(../img/loading2.png) no-repeat;
            background-size: 100% 100%;
            animation-name: example;
            animation-duration: 4s;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
        }
        .animation3 {
            width: 53%;
            height: 53%;
            background: url(../img/loading3.png) no-repeat;
            background-size: 100% 100%;
            animation-name: example2;
            animation-duration: 4s;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
        }
        .animation4 {
            width: 47%;
            height: 47%;
            background: url(../img/loading4.png) no-repeat;
            background-size: 100% 100%;
            animation-name: example;
            animation-duration: 4s;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
        }
        .animation5 {
            width: 40%;
            height: 40%;
            background: url(../img/loading5.png) no-repeat;
            background-size: 100% 100%;
            animation-name: example2;
            animation-duration: 4s;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
        }
        .name>h1 {
			margin-top: 24vh;
			text-align: center;
            font-family: pm;
            font-size: 4vh;
            background-image: -webkit-linear-gradient(bottom, #008ee5, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }
    .val-box {
        height: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        top: 68%;
        font-family: title_font;
        font-size: 38px;
        .name {
            width: 165px;
            height: 44px;
            font-size: 38px;
            color: #9fc7ff;
        }
        .val {
            width: 99px;
            height: 44px;
            font-size: 36px;
            color: #fff;
        }
    }
    .style1-box {
        width: 850px;
        height: 30px;
        display: flex;
        align-items: center;
        position: absolute;
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);

        .left {
            width: 120px;
            height: 100%;
            background: url(../img/loading-a1.png) no-repeat;
            background-size: 100% 100%;
            margin-right: 20px;
        }
        .center {
            flex: 1;
            height: 40%;
            overflow: hidden;
            background: #14222b83;
            .animation{
                width: 50%;
                height: 100%;
                background: linear-gradient(to right, #14222b00, #14222b00,#1672da);
                animation-name: example3;
                animation-duration: 3s;
                animation-iteration-count: infinite;
                animation-timing-function: linear;
            }
            
           
        }
        .right {
            width: 120px;
            height: 100%;
            margin-left: 20px;
            background: url(../img/loading-a2.png) no-repeat;
            background-size: 100% 100%;
        }
    }
    .style2{
        width: 200px;
        height: 2px;
        background: linear-gradient(to right,  #14222b83,#1671d6,#14222b83);
        transform: translate(-100%,42.8vh);
        animation-name: example4;
        animation-duration: 3s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
    }
    .line1{
        width: 65%;
        height: 60px;
        background: url('../img/loading-a3.png') no-repeat;
        background-size: 100% 100%;
        position: absolute;
        left: 20%;
        top: 42%;
        opacity: 0;
        animation-name: example5;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }
    .line2{
        width: 35%;
        height: 50px;
        background: url('../img/loading-a4.png') no-repeat;
        background-size: 100% 100%;
        position: absolute;
        left: 40%;
        top: 49%;
        animation-name: example6;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }
    .line3{
        width: 35%;
        height: 55px;
        background: url('../img/loading-a5.png') no-repeat;
        background-size: 100% 100%;
        position: absolute;
        left: 33%;
        top: 85%;
        animation-name: example5;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }
}
.btn{
    width: 100px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    border: 1px solid #1671d6;
    box-sizing: border-box;
    z-index: 2;
    top: 0;
    cursor: pointer;

}
@keyframes example {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(-360deg)
    }
}
@keyframes example2 {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}
@keyframes example3 {
    0% {
        transform: translate(-100%,0);
        opacity: 1;
    }
    80%{
        
        opacity:1
    }
    89% {
        transform: translate(120%,0);
        opacity: 0;
    }
    90% {    
        transform: translate(-100%,0);           
    }
    100% {    
        transform: translate(-100%,0);        
    }
}
@keyframes example4 {
    0% {
        transform: translate(-100%,42.8vh);
    }
    99% {    
        transform: translate(100vw,42.8vh);        
    }
}
@keyframes example5 {
    0% {
        opacity: 0;
    }
    50% {    
        opacity: 1;     
    }
    100%{
        opacity: 0;
    }
}
@keyframes example6 {
    0% {
        opacity: 1;
    }
    50% {    
        opacity: 0;     
    }
    100%{
        opacity: 1;
    }
}


.pop-up{
	width: 300px;
	/* height: 452px; */
	display: none;
	background-image: url("../img/tankuangbg.png");
	background-size: 100% 100%;
	position: absolute;
	z-index: 10000;
	color: white;
	font-size: 12px;
	/* margin: 100px; */
}
.pop-title{
	background-image: url(../img/tankuangtitle.png);
    background-size: 100% 100%;
    width: 200px;
    height: 26px;
    margin: -13px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pop_content{
	margin-top: 30px;
}
.pop_content>div{
	background-image: url(../img/tankuangli.png);
    background-size: 100% 100%;
    width: 80%;
    height: 30px;
    margin: 10px auto;
    display: flex;
    align-items: center;
}
.pop_content_list div{
	
}
.pop_content_list_font1{
	flex: 0.55;
	color: #69aac6;
	margin-left: 10px;
}
.pop_content_list_font2{
	flex: 0.45;
}
.pop_controls{
	width: 80%;
	height: 30px;
	margin: 10px auto;
	display: flex;
	align-items: center;
}
.pop_controls_font1{
	border: 1px solid #69aac6;
	padding: 2px 4px;
	background-color: #185467;
}
.pop_controls_font2{
	border: 1px solid #69aac6;
	padding: 2px 4px;
	background-color: #185467;
	margin-left: 20px;
}
.close_pop{
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
}
