/* index css */
html {font-size: 62.5%!important; /* 10÷16=62.5% */}
@media only screen and (min-width: 481px){
    html {
        font-size: 94%!important; /* 15.04÷16=94% */
    }
}
@media only screen and (min-width: 561px){
    html {
        font-size: 109%!important; /* 17.44÷16=109% */
    }
}
@media only screen and (min-width: 641px){
    html {
        font-size: 125%!important; /* 20÷16=125% */
    }
}
@media only screen and (min-width: 320px){html {font-size: 62.5%!important;}}

@media only screen and (min-width: 360px){html {font-size: 72.5%!important;}}

@media only screen and (min-width: 400px){html {font-size: 82.5%!important;}}

@media only screen and (min-width: 480px){html {font-size: 94%!important;}}
a{text-decoration:none;cursor:pointer;outline:none;}
a:hover{
    color:#00a0e9;text-decoration:none;
    transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
}
.notice{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    height: 44px;
    line-height: 44px;
    color: #838383;
    overflow: hidden;
    z-index: 20;
}
.scrolling-text {
    width: 80%;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
}

.scrolling-text ul {
    display: inline-block;
    animation: scroll-top 20s linear infinite;
}

.scrolling-text li {
    padding: 0 1rem;
    width: 100%;
}

@keyframes scroll-top {
    0% {
        /*transform: translateX(0);*/
        transform: translateY(20%);
    }
    100% {
        /*transform: translateX(-100%);*/
        transform: translateY(-100%);
    }
}
.close-notice{
    display: block;
    position: absolute;
    right: 10px;
    top: 0;
    margin: 0 24px;
    cursor: pointer;
    width: 40px;
    height: 100%;
}
.close-notice::before,.close-notice::after{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 1px;
    background: #000;
    transform: rotate(45deg) translate(-50%, -50%);
    transform-origin: 0% 0%;
}
.close-notice::after{
    transform: rotate(-45deg) translate(-50%, -50%);
}
.video-bg{
    width: 100%;
    height: 100vh;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
video,.video-gif {
    width: 100%;
    animation: video-fade-in 10s 1;
}
.video-gif{
    display: none;
}
.logo-animate{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
}

.index-logo{
    animation: fade-in-out 5s 1 ease-in-out;
    opacity: 0;
    height: 0;
    width: 70%;
}
.index-logo img{
    width: 100%;
}
.other-logo{
    /*display: none;*/
    width: 100%;
    text-align: center;
}
.other-logo img{
    /*width: 30%;*/
    margin: 0 1.3%;
    animation: scaleAnimation 10s 1 ease-in-out;
    opacity: 0;
    height: 0;
}
.toHome{
    font-size: 1rem;
    font-weight: 700;
    /*animation: txt-fade-in 12s 1;*/
    z-index: 10;
    text-align: center;
    position: fixed;
    bottom: 6%;
}

.toHome a{
    padding: 5px 20px;
    border: 1px solid #ffffff;
    color: #ffffff;
    background-color: rgba(255,255,255,.15);
    position: relative;
    overflow: hidden;
    transition: all .5s;
    display: inline-block;
}
.toHome a:hover{
    color: #fff;
}
.toHome a::before{
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transform: skew(-45deg);
}
.toHome a:hover::before{
    left: 120%;
    transition: all .5s;
}
.toHome p{
    line-height: 5vw;
    font-size: 2vw;
    font-weight: 700;
    color: #ffffff;
}
.footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #ffffff;
    text-align: center;
    padding: 5px;
    /*background-color: #fff;*/
}
.footer .beian{
    color: #fff;
}
@keyframes fade-in-out {
    0%{opacity: 0;height: auto;}
    50%{opacity: 1;}
    100%{opacity: 0;height: auto;}
}
@keyframes scaleAnimation{
    0%{opacity: 0;}
    50%{opacity: 0;transform: scale(0);height: 0;}
    51%{opacity: 0;transform: scale(0.5);height: 15vw;}
    90%{opacity: 1;transform: scale(1);height: 15vw;}
    100%{opacity: 0;height: 15vw;}
}
@keyframes video-fade-in{
    0%{opacity: 0.2;}
    80%{opacity: 0.2;}
    100%{opacity: 1;}
}
@keyframes txt-fade-in{
    0%{opacity: 0;}
    80%{opacity: 0;}
    100%{opacity: 1;}
}
@media screen and (max-width: 696px){
    .video-gif{
        display: block;
    }
    #myVideo{
        display: none;
    }
}