* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box
}

:root {
    --green: #0ff796;
    --white: #fff;
    --black: #000;
}

[v-cloak] {
    display: none;
}

a {
    text-decoration: none;
    color: #fff;
}


body {
    color: #fff;
    font-family: "Microsoft YaHei", 微软雅黑;
    background: #000;

}

header {
    position: fixed;
    width: 100%;
    height: 110px;
    /*background: rgba(15,247,150,.1);*/
    /*background: linear-gradient(rgba(15,247,150,.3),rgba(15,247,150,0));*/
    background-image: url("img/vbg3.png"), linear-gradient(rgba(15, 247, 150, .3), rgba(15, 247, 150, 0));
    display: flex;
    align-items: center;
    z-index: 999;
    color: var(--white);
    padding: 0 30px;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, .3));mix-blend-mode:screen;
}

.logo {
    width: 186px;
    display: flex;
    flex-shrink: 0;
    position: relative;
}

.logo .shan {
    -webkit-mask-image: url(img/logo.png);
}

.logo i {
    padding-bottom: 22.285714285715%;
    padding-top: 22.285714285715%;
    position: relative;
    width: 100%;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
}

#menu, .icons {
    display: flex;
    align-items: center;
}

#menu {
    flex-grow: 1;
    display: flex;
    gap: 60px;
    justify-content: center;
}

#menu li a {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
}

#menu li.active a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: .5em;
    text-decoration-color: var(--green);
    text-decoration-thickness: 3px;
}

.icons li {
    display: flex;
    font-size: 12px;
    width: 72px;
    justify-content: center;
}

.icons li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
}

.icons li a .img {
    width: 54px;
    height: 54px;
    position: relative;
}

.icons li a .img .shan {
    -webkit-mask-image: url(img/ico_sq.png);
}

.icons li a .img .shan:before {
    animation: unset;
    transform: translate(-100%);
    transition: all .8s;
}


.icons li a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .8s;
}

.icons li a .txt {
    display: flex;
    padding-top: 5px;
}

.icons li a:hover .img .shan:before {
    transform: translate(100%);
}

.icons li a:hover .img img {
    filter: hue-rotate(280deg) drop-shadow(0 0 16px rgba(255, 255, 0, .8));
}


.moveDown {
    position: absolute;
    left: 50%;
    bottom: 0px;
    animation: flash 2.2s infinite;
    cursor: pointer;
    width: clamp(20px, 3vw, 28px);
    margin-left: calc(clamp(20px, 3vw, 28px) * -0.5);
    z-index: 99;
}

.moveDown.fadeIn {
    animation: flash 2.2s infinite, fadeIn .5s both;
}

.moveDown.fadeOut {
    animation: flash 2.2s infinite, fadeOut .5s both;
}

.floatRight.fadeIn {
    animation: fadeIn .5s both;
}

.floatRight.fadeOut {
    animation: fadeOut .5s 1.2s both;
}

@keyframes fadeIn {

    0% {
        opacity: 0;
        display: none;
    }
    100% {
        opacity: 1;
    }

}

@keyframes fadeOut {

    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none;
    }

}

@keyframes flash {

    25% {
        transform: translateY(-10%);
    }
    50% {
        filter: brightness(100%);
    }
    75% {
        transform: translateY(10%);
    }


}


.section {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.section:before {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, .6);
    background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


.section1 {
    background-image: url("img/bg1.jpg");
}

.section1 .container {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6vh
}

.section1 .logo {
    width: 50%;
    max-width: 366px;
}

.section1 .play {
    width: 16%;
    max-width: 96px;
    display: flex;
    cursor: pointer;
    animation: ro 5s infinite linear;
    filter: drop-shadow(0 3px 0 rgba(15, 247, 150, 1));
}

@keyframes ro {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }

}

.section1 .play i {
    width: 100%;
    padding-bottom: 100%;
    background-image: url("img/s1_play.png");
    background-size: cover;
}

.section1 .slogan {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: clamp(22px, 4vw, 80px);
    position: relative;
    -webkit-text-stroke: clamp(3px, 1vw, 20px) #0b2613;
}

.section1 .slogan:before {
    content: attr(data-title);
    position: absolute;
    background-image: linear-gradient(var(--green), var(--white));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0;
}


.section1 .down {
    width: 36%;
    max-width: 224px;
    display: flex;
    cursor: pointer;
}

.section1 .down i {
    width: 100%;
    padding-bottom: 34.375%;
    background-image: url("img/s1_down.png");
    background-size: cover;
}


.title {
    width: 100%;
    max-width: 597px;
    display: flex;
    /*padding-top: 8vw;*/
}

.title i {
    width: 100%;
    padding-bottom: 9.547738693467%;
    position: relative;
}

.title i img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}


.section2 {
    background-image: url("img/bg2.jpg");
}

.section2 .container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section2 .title {
    padding-top: 5%;
}

.section2 .con {
    height: calc(30vw + 5vw);
    width: 80vw;
    padding-top: 5vw;
}

.section2 .con .slideWrap {
    width: 100%;
    height: 100%;
    gap: 15px;
    display: flex;
}

.section2 .con .slideWrap .slideLi {
    width: 15%;
    transition: all .4s;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-shrink: 0;
    border: solid 1px transparent;
    filter: brightness(40%);
    transition: all .4s;
}

.section2 .con .slideWrap .slideLi.active {
    width: 66.667%;
    width: calc(70% - 30px);
    border: solid 1px var(--green);
    filter: brightness(100%);
}

.section2 .con .slideWrap .slideLi .vnei {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.section2 .con .slideWrap .slideLi .vnei img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section2 .con .slideWrap .slideLi .text {
    position: absolute;
    padding: 2vw 2vw;
    left: 0;
    bottom: 0;
    width: 100%;
    filter: drop-shadow(0 0 13px rgba(0, 0, 0, .5));
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.section2 .con .slideWrap .slideLi .text .tit {
    text-align: center;
    font-weight: bold;
    font-size: clamp(14px, 1.5vw, 26px);
    transition: all .4s;
}

.section2 .con .slideWrap .slideLi .text .titEx {
    opacity: 0;
    height: 0;
    color: var(--green);
    font-weight: bold;
    transition: all .4s;
    font-size: clamp(16px, 4vw, 40px);

}

.section2 .con .slideWrap .slideLi .text .ms {
    opacity: 0;
    font-size: clamp(12px, 1vw, 20px);
    transition: all .4s .2s;
    height: 0;
}

.section2 .con .slideWrap .slideLi.active .text .titEx, .section2 .con .slideWrap .slideLi.active .text .ms {
    opacity: 1;
}

.section2 .con .slideWrap .slideLi.active .text .titEx {
    height: clamp(16px, 4vw, 40px);
    line-height: clamp(16px, 4vw, 40px);

    margin-bottom: 1vw;
}

.section2 .con .slideWrap .slideLi.active .text .ms {
    height: clamp(12px, 1vw, 20px);
    line-height: clamp(12px, 1vw, 20px);
}

.section2 .con .slideWrap .slideLi.active .text .tit {
    opacity: 0;
    height: 0;
}


.section3 {
    background-image: url("img/bg3.jpg");
}

.section3 .container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.section3 .container .arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-25%);
    max-width: 36px;
    cursor: pointer;
    width: 4vw;
    z-index: 1;
}
.section3 .container .arrow:before{
    display: flex;
    width: 100%;
    content: '';
    padding-bottom: 183.333333333333%;

}
.section3 .container .prev{
    left: 15px;
}
.section3 .container .prev:before{
    background: url("img/s3_img_pre.png");
    background-size: cover;
}

.section3 .container .next{
    right: 15px;
}
.section3 .container .next:before{
    background: url("img/s3_img_next.png");
    background-size: cover;
}


.section3 .con {
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 100%;
}

.section3 .title {
    padding-top: 7vw;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section3 .text {
    width: 40%;
    padding-left: 5%;
    padding-top: 1%;
}

.section3 .text.animate {
    animation: slideRight .4s .3s both ease-out;
}

.section3 .ren.animate {
    animation: slideLeft .4s both ease-out;
}

@keyframes slideLeft {
    0% {
        transform: translateX(20%);
        opacity: 0;
        filter: brightness(0%);
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
        filter: brightness(100%);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-20%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }

}


.section3 .text h2, .section3 .text b {
    color: var(--green);
    font-weight: normal;
}

.section3 h2 {
    font-size: clamp(24px, 3.8vw, 46px);
    line-height: clamp(24px, 3.8vw, 46px);
    margin-top: 8%;
    border-left: solid clamp(2px, .8vw, 8px) var(--green);
    padding-left: 2%;
}

.section3 h3 {
    font-size: clamp(18px, 3.8vw, 24px);
    margin-top: 8%;
    line-height: clamp(18px, 3.8vw, 24px);
    color: #F1D281;
}

.section3 p {
    font-size: clamp(14px, 3vw, 20px);
    margin-top: 8%
}

.section3 .con .ren {
    width: 55%;
    max-width: 1200px;
    display: flex;
    position: absolute;
    right: 0;
    bottom: 0;
}

.section3 .con .ren img {
    width: 100%;
}

.section4 {
    background-image: url("img/bg4.jpg");
    background-position: center 0;
    background-size: unset;
}

.section4:before {
    content: unset;
}

.section4 .container {
    width: 100%;
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
}

.section4 .tit {
    display: flex;
    padding-top: 450px;
    padding-bottom: 25px;
}

.section4 .tit img {
    width: 24%;
    max-width: 151px;
}



.section4 .collapse-item{
    background:rgba(0,0,0,.1) ;
    border: 1px solid rgba(255,255,255,.2);
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.section4 .collapse-item-tab {
    background: linear-gradient(90deg, #350d00,transparent);
    color: #ddb885;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color .3s;
    font-weight: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(14px, 2vw, 18px);
    padding: 15px;
    position: relative;
}
.section4 .collapse-item-tab:before{
    content: 'Q：' attr(data-title);
    position: absolute;
    background-image: linear-gradient(0deg,#bc8245 30%, #fce7c4 60%,#bc8245 90%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.section4 .collapse-item-tab i{
    width: 14px;
    height: 8px;
    background:url("img/s4_arrow.png");
    transition: all .3s;
    transform: rotate(-90deg);
}

.section4 .collapse-item.is-active .collapse-item-tab{
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.section4 .collapse-item.is-active .collapse-item-tab i{
    transform: rotate(0deg);
}



.section4 .collapse-item-wrap {
    will-change: height;
    overflow: hidden;
    box-sizing: border-box;
}

.section4 .collapse-item-content {
    padding: 15px;
    color: #999;font-size: clamp(12px, 2vw, 16px);
    display: flex;
    line-height: 1.5em;
}

.section4 .collapse-item-content .tt{
    color: #ddb885;
    position: relative;
}
.section4 .collapse-item-content .tt:before{
    content: attr(data-title);
    position: absolute;
    background-image: linear-gradient(0deg,#bc8245 30%, #fce7c4 60%,#bc8245 90%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section4 .collapse-item-content b{
    color: #ddb885;
}


.section4 .my-enter-active {
    animation: my-in .3s ease-in-out;
}

.section4 .my-leave-active {
    animation: my-out .3s ease-in-out;
}

@keyframes my-in {
    0% {

        height: 0
    }

    100% {
        height: var(--h);
    }
}

@keyframes my-out {
    0% {
        height: var(--h);
    }

    100% {
        height: 0
    }
}


.section5 {
    background-image: url("img/bg5.jpg");
}

.section5 .container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section5 .con {
    width: 100%;
    max-width: 1000px;
    padding-top: 5vw;
    display: flex;
}

.section5 .table {
    width: 100%;
    border: solid 1px #fff;
}

.section5 .thead {
    background: #584580;
    color: var(--white);
    display: flex;
    font-size: clamp(16px, 2vw, 30px);


}

.section5 .thead .th {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;padding: 1.5% 0;
}

.section5 .thead .th:first-child{
    border-right: solid 1px var(--black);
}
.section5 .thead .th:last-child{
    border-left: solid 1px rgba(255,255,255,.8);
    background: var(--green);
    color: var(--black);
}

.section5 .tbody {
    background: rgba(0, 0, 0, .8);
    color: var(--white);
    font-size: clamp(12px, 2vw, 18px);
}

.section5 .tr {
    display: flex;
    align-items: center;

}

.section5 .tr .td {
    width: 50%;
    padding: 2%;
    text-align: center;border-bottom: solid 1px rgba(255, 255, 255, .3);
}


.section5 .tr .td:nth-child(1) {
    background: rgba(88,68,128,.5);
    border-right: solid 1px rgba(0,0,0,1);


}
.section5 .tr .td:nth-child(2) {
    border-left: solid 1px rgba(255,255,255,.5);
    background: rgba(15,247,150,.5);

}


.section5 .thead .th {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section6 {
    background-image: url("img/bg6.jpg");
}

.section6 .container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section6 .con {
    width: 100%;
    padding-top: 10vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4vw;
}

.section6 .con1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10vw
}

.section6 .logo {
    width: 40%;
    max-width: 525px;
}

.section6 .ewm {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1vw
}

.section6 .ewm .ico {
    max-width: 170px;
    display: flex;
    width: 60%;
    border: solid clamp(1px, 1vw, 4px) #f60

}

.section6 .ewm .ico img {
    width: 100%;
}

.section6 .ewm .wz {
    font-size: clamp(16px, 2vw, 26px);
    font-weight: bold;
    -webkit-text-stroke: clamp(1px, 1vw, 4px) #000;
    position: relative;
}

.section6 .ewm .wz i {
    -webkit-text-stroke: clamp(1px, 1vw, 4px) #000;
    font-style: normal;
}

.section6 .ewm .wz:before {
    content: attr(data-title);
    position: absolute;
    background-image: linear-gradient(#fc0, #f60);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0;
}


.section6 .web {
    width: 50%;
    max-width: 668px;
    display: flex;
}

.section6 .web img {
    width: 100%;
}


.fadeOut-leave-to {
    opacity: 0;
}

.fadeOut-leave {
    opacity: 1;
}


.fp-tooltip {
    color: #000;
    position: inherit;
    display: none;
}

#fp-nav {
    display: none
}

#fp-nav ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#fp-nav li {
    width: fit-content;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 0;
    position: inherit;
    gap: 8px;
}

#fp-nav li a {
    display: flex;
    position: inherit;
    width: inherit;
    height: inherit;
    cursor: pointer;
    text-decoration: none;
    align-items: center;
}

#fp-nav span {
    width: 10px;
    height: 10px;
    border: 1px solid #000;
    background: rgba(0, 0, 0, 0);
    border-radius: 50%;
    position: inherit;
}

#fp-nav li .active span {
    background: var(--green);
    border-color: var(--green);
}

.videoplay {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, .8);
}

.videoplay .kuang {
    width: 1000px;
    position: relative;
    border: solid 2px #ffe0ae;
    background: #000;
}

.videoplay .closewin {
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: absolute;
    right: -68px;
    top: -12px;
    transform: rotate(45deg);
    transition: all .4s;
    z-index: 2;
}

.videoplay .closewin span {
    display: block;
    background: #fff;
    position: absolute;
}

.videoplay .closewin span:nth-child(1) {
    height: 2px;
    width: 100%;
    top: 50%;
    margin-left: -50%;
    left: 50%;
    margin-top: -1px;
}

.videoplay .closewin span:nth-child(2) {
    height: 100%;
    width: 2px;
    left: 50%;
    margin-left: -1px;
    margin-top: -50%;
    top: 50%;
}

.videoplay .closewin:hover {
    transform: rotate(135deg);
}

.videoplay .kuang .video {
    padding-bottom: 56.25%;
    width: 100%;
    position: relative;
}

.videoplay .kuang .video video {
    width: 100%;
    height: 100%;
    position: absolute;
}


.shan {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    mask-size: cover;
    left: 0;
    top: 0;
}

.shan:before {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, transparent, rgba(255, 255, 200, .5), transparent, transparent);
    animation: 2s linear infinite alternate shan;

}

@keyframes shan {
    0% {
        transform: translate(-100%);
    }

    100% {
        transform: translate(100%);
    }

}
