* {
    padding: 0;
    margin: 0;
}
body{
    overflow: hidden;
}
.guideAll{
    z-index: 10000000;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    overflow: hidden;
}
.guide_all {
    position: relative;
    height: 100vh;
    background-image: url("../img/index/guide_bg.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    overflow: hidden;
}
.guide_logo img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 206px;
    height: 202px;
    margin: 0 auto;
    margin-top: 204px;
}
.guide_title_ie {
    display: none;
    justify-content: center;
    width: 505px;
    height: 66px;
    background: url("../img/index/guide_title2.png");
    margin: 0 auto;
    margin-top: 23px;
}
.guide_title {
    display: flex;
    justify-content: center;
    width: 505px;
    height: 66px;
    background: rgba(38, 86, 152, 0.5);
    margin: 0 auto;
    margin-top: 23px;
    mask-image: url("../img/index/guide_title2.png");
    -webkit-mask-image: url("../img/index/guide_title2.png");
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    transition: 6s;
}
.wave {
    background-image: url("../img/index/wave.png");
    background-size: 100% 100%;
    background-repeat: repeat-x;
    opacity: 1;
    animation: wave-animation 6s linear, loading-animation 6s forwards;
}
@keyframes wave-animation {
    0% {
        background-position: 66px bottom;
    }
    100% {
        background-position: 66px bottom;
    }
}

@keyframes loading-animation {
    0% {
        background-size: 505px 0;
    }
    100% {
        background-size: 505px 66px;
    }
}
/*.guide_train {*/
/*    position: relative;*/
/*}*/
.guide_train_img_ie {
    display: none;
    position: absolute;
    bottom: 160px;
    width: auto;
    height: 47px;
}
.guide_train_img {
    position: absolute;
    bottom: 160px;
    width: auto;
    height: 47px;
    right: 0px;
    visibility:hidden;
}
.guide_bottom {
    position: absolute;
    width: 100%;
    height: 180px;
    bottom: 0;
}
.guide_bottom img {
    width: 100%;
    height: 100%;
}
.loader-circle_ie {
    display: none;
    width: 186px;
    height: 86px;
    margin: 0 auto;
    margin-top: 50px;
    position: relative;
    justify-content: center;
}
.loader-circle {
    width: 86px;
    height: 86px;
    margin: 0 auto;
    margin-top: 50px;
    position: relative;
}
.loader-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* 旋转以便从顶部开始 */
}
.loader-circle circle {
    fill: none;
    stroke: #265698;
    stroke-width: 5;
    stroke-dasharray: 232.36; /* 圆的周长，假设半径为27 */
    stroke-dashoffset: 232.36; /* 初始时隐藏 */
}
.loader-numble {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #265698;
    font-size: 18px;
}

@media all and (max-width: 1780px){

}
/*! 1440 ~ 1680 */
@media all and (max-width: 1680px){
    .guide_logo img {
        width: 186px;
        height: 182px;
        margin-top: 184px;
    }
    .guide_bottom {
        position: absolute;
        width: 100%;
        height: 140px;
        bottom: 0;
    }
    .loader-circle {
        margin-top: 40px;
    }
    .guide_train_img {
        bottom: 130px;
        height: 40px;
    }
}
/*! 1200 ~ 1440 */
@media all and (max-width: 1440px){
    .guide_logo img {
        width: 156px;
        height: 152px;
        margin-top: 114px;
    }
    .loader-circle {
        margin-top: 20px;
    }

}
/*! 992 ~ 1200 */
@media all and (max-width: 1200px){
    .guide_logo img {
        width: 136px;
        height: 132px;
        margin-top: 45px;
    }
    .guide_bottom {
        height: 120px;
        bottom: 0;
    }
    .guide_train_img {
        bottom: 110px;
        height: 30px;
    }
}
/* 。。。动画 */
.dot1, .dot2, .dot3 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 10px;
}

.dot1 {
    animation: jump 1.6s -0.32s linear infinite;
    background: #265698;
}
.dot2 {
    animation: jump 1.6s -0.16s linear infinite;
    background: #265698;
}
.dot3 {
    animation: jump 1.6s linear infinite;
    background: #265698;
}

@keyframes jump {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(2.0);
        transform: scale(2.0);
    }
}
.flash-warn {
    position: fixed;
    top: 0;
    width: 100%;
    height: 52px;
    display: none;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(90deg, rgba(255, 248, 197, .01) 5%, rgba(255, 248, 197, .9) 50%, rgba(255, 248, 197, .01) 100%);
    border-color: rgba(212, 167, 44, 0.6);
    z-index: 10000;
}
.flash-warn span {
    color: #265698;
    cursor: pointer;
    margin-right: 40px;
}
#edgDownLoadClose {
    cursor: pointer;
    transform: rotate(45deg);
}