.index2_load {
    width: 100%;
    height: 100vh;
    background: #100f15;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
}
.index2_load .wrap .svg{
    display: flex;
    align-items: center;
    transform: translateY(219px);
    transition: 1s;
}
.index2_load .wrap.on .svg{
    transform: translateY(0);
}
.index2_load .wrap .svg svg{
    width: 536px;
    transition: 0.6s;
}
.index2_load svg path,.index2_load polygon, .index2_load rect{
    fill: none;
    stroke-width: 0.5px;
    stroke: #fff;
}
.index2_load .wrap .svg .list_1{
    margin: 0 45px 0 0;
}
.index2_load .wrap .svg .list{
    position: relative;
}
.index2_load .wrap .svg .list img{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 1s;
}
.index2_load .wrap .svg .list.on img{
    opacity: 1;
}
.index2_load .wrap .svg .list.on svg{
    opacity: 0;
}
@keyframes dash {
    0% {
        stroke-dasharray: 4000;
        stroke-dashoffset: 4000;
    }
    100% {
        stroke-dashoffset: 0
    }
}
@keyframes dash_2 {
    0% {
        stroke-dasharray: 4000;
        stroke-dashoffset: 4000;
    }
    100% {
        stroke-dashoffset: 0
    }
}
.index2_load .wrap .svg .list_1 path,.index2_load .wrap .svg .list_1 polygon,.index2_load .wrap .svg .list_1 rect{
    animation: dash 15s ease forwards;
}

.index2_load .wrap .svg .list_2 path,.index2_load .wrap .svg .list_2 polygon,.index2_load .wrap .svg .list_2 rect{
    stroke-width: 1px;
    animation: dash_2 11s ease forwards;
}
.index2_load .wrap .content{
    text-align: center;
}

.index2_load .wrap .content .text{
    margin: 50px 0 0 0;
}
.index2_load .wrap .content .text span{
    font-size: 60px;
    font-family: PingFang;
    font-weight: bold;
    color: #FFFFFF;
    display: block;
    margin: 0 0 45px 0;
    transform: translateY(160px);
    opacity: 0;
    transition: 4s;
    transition-delay: 0.3s;
}
.index2_load .wrap.on .content .text span{
    opacity: 1;
    transform: translateY(0);
}
.index2_load .wrap .content .text p{
    font-size: 30px;
    font-family: PingFang;
    font-weight: 300;
    color: #FFFFFF;
    transform: translateY(160px);
    opacity: 0;
    transition: 4s;
    transition-delay: 0.5s;
}
.index2_load .wrap.on .content .text p{
    opacity: 1;
    transform: translateY(0);
}
.index2_load .wrap .content .guide{
    display: flex;
    align-items: center;
    margin: 129px auto 0;
    width: 195px;
    height: 50px;
    position: relative;
    left: -36px;
    transform: translateY(160px);
    opacity: 0;
    transition: 4s;
    transition-delay: 0.7s;
}
.index2_load .wrap.on .content .guide{
    opacity: 1;
    transform: translateY(0);
}
.index2_load .wrap .content .guide.on .circle{
    pointer-events: none;
}
.index2_load .wrap .content .guide .circle{
    width: 50px;
    height: 50px;
    background: #88878a;
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    left: 0;
    cursor: move;
}
.index2_load .wrap .content .guide .circle:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #88878a;
    opacity: 0.5;
    border-radius: 50%;
    animation: 1s scale linear infinite;
    animation-delay: 600ms;
    z-index: 0;
}
@keyframes scale {
    100% {
        transform: translate(-50%, -50%) scale(1.85);
        opacity: 0;
    }
}


.index2_load .wrap .content .guide .circle:after{
    content: '';
    position: absolute;
    width: 400%;
    height: 100%;
    left: -400%;
    top: 0;
    background: #100f15;
    display: none;
}
.index2_load .wrap .content .guide .circle.on:after{
    left: -407%;
}
.index2_load .wrap .content .guide .line{
    width: 98%;
    height: 2px;
    border-bottom: 1px dashed #fff;
    border-spacing: 5px;
    margin: 0 2px 0 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    clip: rect(0px,200px,2px,0px);
}
.index2_load .wrap .content .guide .virtual{
    width: 54px;
    height: 54px;
    border: 1px dashed #fff;
    border-radius: 50%;
    animation: 20s rote infinite linear;
    position: absolute;
    right: -52px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

@keyframes rote {
    100%{
        transform: translateY(-50%) rotate(360deg);
    }
}
.index2_load .wrap .content .prompt{
    font-size: 14px;
    font-family: PingFang;
    font-weight: 500;
    color: #BDBDBD;
    margin: 38px 0 0 0;
    opacity: 0;
    transform: translateY(160px);
    transition: 4s;
    transition-delay: 0.9s;
}
.index2_load .wrap.on .content .prompt{
    opacity: 1;
    transform: translateY(0);
}
.common_mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.common_mask:before{
    content: '';
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: #07afd3;
    border-bottom-left-radius: 150%;
    border-bottom-right-radius: 150%;
    transition: 0.6s;
    z-index: 2;
}
.common_mask:after{
    content: '';
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: #005ca9;
    border-bottom-left-radius: 150%;
    border-bottom-right-radius: 150%;
    transition: 0.6s;
    /*animation: 0.6s mask linear forwards;*/
    z-index: 1;
}
.common_mask.on:before{
    animation: 0.4s mask linear forwards;
    animation-delay: 200ms;
}
.common_mask.on:after{
    animation: 0.6s mask linear forwards;
}
@keyframes mask {
    70%{
        top: 0;
    }
    100%{
        top: 0;
        border-bottom-left-radius: 0%;
        border-bottom-right-radius: 0%;
    }
}

banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.banner .global{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}
.banner .global img{
    width: 90%;
    object-fit: contain;
}
.banner .global img:first-child{
    position: absolute;
    top: -90%;
    left: -50%;
    animation: fist 50s linear infinite;
}
.banner .global img:last-child{
    position: absolute;
    top: -5%;
    left: 50%;
    animation: last 50s linear infinite;
}
@keyframes fist {
    0%{
        top: -90%;
        left: -50%;
    }
    50%{
        top: -5%;
        left: 50%;
    }
    100%{
        top: -90%;
        left: -50%;
    }
}
@keyframes last {
    0%{
        top: -5%;
        left: 50%;
    }
    50%{
        top: -90%;
        left: -50%;
    }
    100%{
        top: -5%;
        left: 50%;
    }
}
.banner .swiper {
    width: 100%;
    height: 100%;
}

.banner .swiper .swiper-slide {
    display: flex;
    align-items: center;
    opacity: 0 !important;
    transition: 1s;
}

.banner .swiper .swiper-slide-active {
    opacity: 1 !important;
}

.banner .swiper .swiper-slide .background {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .swiper .swiper-slide .joke {
    width: 100%;
    padding: 0 103px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.banner .swiper .swiper-slide .joke .text span {
    font-size: 60px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    display: block;
    margin: 0 0 45px 0;
}

.banner .swiper .swiper-slide .joke .text p {
    font-size: 30px;
    font-family: PingFang SC;
    font-weight: 300;
    color: #FFFFFF;
}

.banner .swiper .swiper-slide .joke .more {
    margin: 86px 0 0 0;
    width: 200px;
    height: 45px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.banner .swiper .swiper-slide .joke .more p {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 300;
    color: #FFFFFF;
    position: relative;
    z-index: 5;
}

.banner .swiper .swiper-slide .joke .more .line {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 0.8s;
    display: flex;
    justify-content: space-between;
}

.banner .swiper .swiper-slide .joke .more .line .left {
    width: 61px;
    height: 100%;
}

.banner .swiper .swiper-slide .joke .more .line div > div {
    transition: 0.85s;
}

.banner .swiper .swiper-slide .joke .more .line .left div:nth-child(1) {
    width: 15px;
    height: 1px;
    background: #0c395e;
}

.banner .swiper .swiper-slide .joke .more .line .left div:nth-child(2) {
    width: 1px;
    height: calc(100% - 2px);
    background: #094a81;
}

.banner .swiper .swiper-slide .joke .more .line .left div:nth-child(3) {
    width: 100%;
    height: 1px;
    background: #0b375d;
}

.banner .swiper .swiper-slide .joke .more .line .right {
    width: 61px;
    height: 100%;
    transform: rotateY(180deg);
}

.banner .swiper .swiper-slide .joke .more .line .right div:nth-child(1) {
    width: 100%;
    height: 1px;
    background: #116278;
}

.banner .swiper .swiper-slide .joke .more .line .right div:nth-child(2) {
    width: 1px;
    height: calc(100% - 2px);
    background: #0c84a0;
}

.banner .swiper .swiper-slide .joke .more .line .right div:nth-child(3) {
    width: 15px;
    height: 1px;
    background: #106075;
}

.banner .swiper .swiper-slide .joke .more .color {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    transition: 0.8s;
}

.banner .swiper .swiper-slide .joke .more .color:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 115px 115px 0 0;
    border-color: #005ca9 transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
    transition: 1s;
}

.banner .swiper .swiper-slide .joke .more .color:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #07afd3;
    position: absolute;
    right: 0;
    top: 0;
}

.banner .swiper .swiper-slide .joke .more:hover .left div:first-child {
    width: 100px;
}

.banner .swiper .swiper-slide .joke .more:hover .right div:first-child {
    width: 100px;
}

.banner .swiper .swiper-slide .joke .more:hover .left div:last-child {
    width: 100px;
}

.banner .swiper .swiper-slide .joke .more:hover .right div:last-child {
    width: 100px;
}

.banner .swiper .swiper-slide .joke .more:hover .line {
    opacity: 0;
}

.banner .swiper .swiper-slide .joke .more:hover .color {
    opacity: 1;
    transition-delay: 0.5s;
}

.banner .swiper .swiper-pagination {
    width: 16px !important;
    height: 100vh;
    display: flex;
    bottom: 0;
    right: 44px;
    left: unset !important;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.banner .swiper .swiper-pagination .circle {
    width: 16px;
    height: 16px;
    /* border: 1px solid rgba(255,255,255,0.3); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    margin-bottom: 12px;
}

.banner .swiper .swiper-pagination .circle:last-child {
    margin-bottom: 0;
}

.banner .swiper .swiper-pagination .active .path-loop {
    animation: path-loop var(--animate-time) linear infinite;
}

@keyframes path-loop {
    0% {
        stroke-dashoffset: 157px;
    }
    100% {
        stroke-dashoffset: 19px;
    }
}

.banner .swiper .bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1093px;
    z-index: 9;
}
.fixed_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: 1s;
}

.fixed_menu.on {
    pointer-events: auto;
}

.fixed_menu:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #100f15;
    z-index: 1;
    transform: scaleY(0) translateX(0) ;
    transform-origin: top;
    transition: transform 1.2s cubic-bezier(.77, 0, .175, 1) .2s, -webkit-transform 1.2s cubic-bezier(.77, 0, .175, 1) .2s;
    transition-delay: 0s;
}

.fixed_menu:after {
    transform: scaleY(0) translateX(0);
    transform-origin: top;
    transition: transform 1.2s cubic-bezier(.77, 0, .175, 1) .2s, -webkit-transform 1.2s cubic-bezier(.77, 0, .175, 1) .2s;
    transition-delay: 0s;
    content: '';
    display: block;
    position: absolute;
    top: 0%;
    left: 0;
    right: -20vw;
    height: 100%;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    -webkit-animation: slide 8s infinite linear;
    background: linear-gradient(129deg,#005CA9 -10%,#07AFD3);
    /*background: linear-gradient(100deg,#fff -10%,#000);*/
    opacity: 0.2;
    z-index: 2;
}

@-webkit-keyframes slide {
    0% {
        right: 0;
    }
    50% {
        right: -20vw;
    }
    100% {
        right: 0;
    }
}

@keyframes slide {
    0% {
        right: 0;
    }
    50% {
        right: -20vw;
    }
    100% {
        right: 0;
    }
}

.fixed_menu.on:after, .fixed_menu.on:before {
    transform: scaleY(1) translateX(0);
}

.fixed_menu .wrap {
    position: relative;
    display: flex;
    /* align-items: center; */
    left: 10px;
    z-index: 3;
}

.fixed_menu .picture {
    width: 348px;
    height: 649px;
    margin: 0 151px 0 0;
    position: relative;
    clip-path: inset(0px 100% 0px 0px);
    transition: .7s cubic-bezier(.65, .05, .36, 1);
}

.fixed_menu.on .picture {
    clip-path: inset(0px 0% 0px 0px);
    transition-delay: 1s;
}

.fixed_menu .picture .images {
    width: 100%;
    height: 100%;
    clip-path: inset(0px 100% 0px 0px);
    transition: .7s cubic-bezier(.65, .05, .36, 1);
    position: absolute;
    top: 0;
    left: 0;
}

.fixed_menu .picture .images img {
    width: 100%;
    height: 100%;
}

.fixed_menu .picture .images.on {
    clip-path: inset(0px 0% 0px 0px);
}

.fixed_menu .the_right {
    transform: translateY(50px);
    opacity: 0;
    transition: 1s;
}

.fixed_menu.on .the_right {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1s;
    padding-top: 12px;
}

.fixed_menu .the_right nav a {
    width: fit-content;
    font-size: 25px;
    font-weight: 200;
    color: #FFFFFF;
    line-height: 60px;
    display: flex;
    align-items: center;
}

.fixed_menu .the_right nav a svg, .fixed_menu .the_right nav a svg path {
    fill: rgba(255, 255, 255, 1);
    opacity: .6;
    width: 15px;
    margin: 0 0 0 15px;
}

.fixed_menu .the_right nav {
    margin: 0 0 117px 0;
    height: 500px;
    overflow: hidden;
}

.fixed_menu .the_right .svg {
    display: flex;
    align-items: center;
}

.fixed_menu .the_right .svg img {
    width: 202px;
    margin: 0 16px 0 0;
}

.fixed_menu .the_right .icon_svg {
    display: flex;
    align-items: center;
    margin: 38px 0 0 0;
}

.fixed_menu .the_right .icon_svg svg {
    margin: 0 35px 0 0;
    cursor: pointer;
}

.fixed_menu .the_right .icon_svg svg, .fixed_menu .the_right .icon_svg svg path {
    width: 30px;
    height: 30px;
    fill: rgba(255, 255, 255, 0.2);
    transition: 0.6s;
}

.fixed_menu .the_right .icon_svg svg:hover path {
    fill: #fff;
}

.common_mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9;
}
.common_mask:before{
    content: '';
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: #07afd3;
    border-bottom-left-radius: 150%;
    border-bottom-right-radius: 150%;
    transition: 0.6s;
    z-index: 2;
}
.common_mask:after{
    content: '';
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: #005ca9;
    border-bottom-left-radius: 150%;
    border-bottom-right-radius: 150%;
    transition: 0.6s;
    /*animation: 0.6s mask linear forwards;*/
    z-index: 1;
}
.common_mask.on:before{
    animation: 0.4s mask linear forwards;
    animation-delay: 200ms;
}
.common_mask.on:after{
    animation: 0.6s mask linear forwards;
}
@keyframes mask {
    70%{
        top: 0;
    }
    100%{
        top: 0;
        border-bottom-left-radius: 0%;
        border-bottom-right-radius: 0%;
    }
}
.fixed_cursor{
    pointer-events: none;
}
.cursor {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    transition: opacity .3s, color .4s;
    /*mix-blend-mode: difference;*/
    z-index: 99999;
    opacity: 0;
}

.xiao_cursor{
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
}
body:hover .cursor,body:hover .xiao_cursor {
    opacity: 1;
}
.index2_load .wrap .content .guide.nb{
    pointer-events: none;
}


.fixed_menu .the_right .svg,
.fixed_menu .the_right .icon_svg{
    position: absolute;
}
.fixed_menu .the_right .svg{
    bottom: 60px;
}
.fixed_menu .the_right .icon_svg{
    bottom: -30px;
}
.fixed_menu .the_right nav a {
    line-height: 60px;
}
@media screen and (max-width: 2560px){

}


@media screen and (max-width: 2048px){

}

@media screen and (max-width: 1856px){

}

@media screen and (max-width: 1792px){

}

@media screen and (max-width: 1680px){
    .banner .swiper .swiper-slide .joke .text span {
        font-size: 52px;
        margin-bottom: 20px;
      }
      .banner .swiper .swiper-slide .joke .text p {
        font-size: 24px;
      }
      .fixed_menu .picture{
        width: 300px;
        height: 600px;
        margin-right: 180px;
    }
    .fixed_menu .the_right nav a {
        font-size: 20px;
    }

}

@media screen and (max-width: 1600px){

}

@media screen and (max-width: 1440px){
    .banner .swiper .swiper-slide .joke {
        top:60%;
    }
    .banner .swiper .swiper-slide .joke .text span {
        font-size: 44px;
    }
    .banner .swiper .swiper-slide .joke .text p {
        font-size: 20px;
    }
    .banner .swiper .swiper-slide .joke .more {
        margin-top: 60px;
        width: 180px;
    }
    .fixed_menu .the_right nav .list .item .itemhead svg{
        height: 40px;
    }
    .fixed_menu .picture {
        width: 300px;
        height: 550px;
    }
    .fixed_menu .the_right nav {
        margin-bottom: 70px;
    }
    .fixed_menu .the_right nav a svg, .fixed_menu .the_right nav a svg path{
        height: 40px;
    }
    .fixed_menu .the_right nav a {
        line-height: 40px;
    }
}

@media screen and (max-width: 1400px){

}

@media screen and (max-width: 1366px){

}






@media screen and (max-width: 820px){
    .banner .swiper .swiper-slide .joke {
        padding: 0 40px;
    }
    .banner .swiper .bottom{
        width: 100%;
    }
    .fixed_menu .picture{
        display: none;
    }
    .fixed_menu .wrap{
        left: 0;
    }
    .fixed_menu .the_right nav{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


@media screen and (max-width: 768px){

}


@media screen and (max-width: 540px){
	.banner .swiper .swiper-slide .joke {
        padding: 0 20px;
    }
    .banner .swiper .swiper-slide .joke .text span {
        font-size: 36px;
    }
    .banner .swiper .swiper-slide .joke .text p {
        font-size: 18px;
    }
    .banner .swiper .swiper-pagination{
        right: 0;
    }
    .banner .swiper .swiper-pagination{
        width: 100vw !important;
        height: 16px;
    }
    .banner .swiper .swiper-pagination{
        flex-direction: row;
        bottom: 30px;
        justify-content: end;
    }
    .banner .swiper .swiper-pagination .circle{
        margin-bottom: 0;
        margin-right:15px;
    }
    .banner .global{
        overflow: hidden;
    }
    .fixed_menu .the_right .icon_svg svg{
        margin-right: 20px;
    }
    .fixed_menu .the_right .icon_svg svg{
        width: 25px;
        height: 25px;
    }
    /* .fixed_menu .the_right .icon_svg {
        bottom: 70px;
    } */
    .fixed_menu .the_right nav a {
        font-size: 18px;
    }
    .fixed_menu .the_right nav a {
        line-height: 40px;
    }
    .fixed_menu .the_right nav .list .item .itemhead svg{
        height: 40px;
    }
    .fixed_menu .the_right .svg img{
        margin-right: 0;
    }
    .fixed_menu .the_right .icon_svg svg:last-child{
        margin-right: 0;
    }
    .fixed_menu .the_right nav .list .item .towlist .towItem a {
        font-size: 14px;
    }
    .fixed_menu .the_right .svg{
        width: 140px;
    }
}


@media screen and (max-width: 414px){
    .banner .swiper .swiper-slide .joke .text span {
        font-size: 28px;
    }
    .banner .swiper .swiper-slide .joke .text p {
        font-size: 16px;
    }
    .banner .swiper .swiper-slide .joke .more{
        width: 150px;
    }
    .banner .swiper .swiper-slide .joke .more p {
        font-size: 14px;
    }
    .fixed_menu .the_right nav.PE {
        transform: translateY(15vh);
    }
    .fixed_menu .the_right .svg {
        bottom: 80px;
    }
    .fixed_menu .the_right .icon_svg {
        bottom: 30px;
    }
}

@media screen and (max-width: 375px){

}

@media screen and (max-width: 360px){

}




