* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box
}

:root {
    --blue: #34a8e3;
    --white: #fff;
    --black: #000;
    --fen: #b9b4ff;
}

[v-cloak] {
    display: none;
}

.swiper-slide video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

a {
    text-decoration: none;
    color: #000;
}


body {
    color: #000;
    font-family: "Microsoft YaHei", 微软雅黑;
    background: #000;

}

header {
    position: fixed;
    width: 100%;
    height: 110px;
    background: rgba(0,0,0,.4);
    background: linear-gradient(#000,rgba(0,0,0,0));
    /*background-image: url("img/header.jpg");*/
    /*background-color: #824A97;*/
    /*background-blend-mode: color-burn;*/
    /*background-repeat: no-repeat;*/
    /*background-size: 100% 100%;*/
    display: flex;
    align-items: center;
    z-index: 999;
    color: var(--white);
    padding: 0 30px;
}

.logo {
    width: 186px;
    display: flex;
    flex-shrink: 0;
}

.logo i {
    padding-bottom: 15.0390625%;
    padding-top: 15.0390625%;
    position: relative;
    width: 100%;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
}

#menu, .icons, .twoBtn {
    display: flex;
    align-items: center;
}

.twoBtn {
    flex-grow: 1;
}

.twoBtn li {
    cursor: pointer;
}

.twoBtn i {
    position: absolute;
    text-indent: -9999rem;
}

.twoBtn img {
    width: 100%;
    height: 100%;
}

#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: #A439DB;
}

.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;
}

.icons li a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icons li a .txt {
    display: flex;
    padding-top: 5px;
}

.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%);
    }


}

.floatRight {
    position: fixed;
    right: 15px;
    top: 13%;
    /*transform: translateY(-45%);*/
    z-index: 99;
    display: flex;
    flex-direction: column;
    width: 20%;
    max-width: 200px;
}

.floatRight .z_top, .floatRight .z_mid, .floatRight .z_bottom {
    display: flex;
    overflow: hidden;
}

.floatRight .z_mid a {
    width: 100%;
    display: flex;
}

.floatRight img {
    width: 100%;
}

.floatRight .z_mid.scrollTop {
    animation: scrollTop 2.2s both linear;
}

.floatRight .z_mid.scrollBottom {
    animation: scrollBottom 1.2s both linear;
}

@keyframes scrollTop {

    /*0% {*/
    /*    height: 0;*/
    /*}*/
    /*100% {*/
    /*   height: var(--h);*/
    /*}*/

}

@keyframes scrollBottom {

    0% {
        height: var(--h);
    }
    100% {
        height: 0;
    }

}


.floatBtns {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 99;
    top: 80%;
    right: clamp(10px, 3vw, 30px);
}

.floatBtns .btn {
    cursor: pointer;
    width: clamp(120px, 24vw, 165px);
}

.floatBtns .btn img {
    width: 100%;
    height: 100%;
}

.floatBtns .btn i {
    position: absolute;
    text-indent: -9999rem;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6%;
    position: relative;
}

.title .txt {
    font-size: 48px;
    color: var(--blue);
    font-weight: bold;
    padding: 0 50px;
    flex-shrink: 0;
    background-image: linear-gradient(var(--blue), var(--fen));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0;
}

.title .ht {
    max-width: 232px;
    width: 50%;
    display: flex;
}

.title .ht i {
    width: 100%;
    padding-bottom: 5.172413793103%;
}

.title .ht_l i {
    background-image: url("img/ti_l.png");
    background-size: cover;
}

.title .ht_r i {
    background-image: url("img/ti_r.png");
    background-size: cover;
}

.title img {
    max-width: 382px;
    width: 50%;
}


.section {
    background-size: cover;
    position: relative;
}

.section:before {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, .6);
    background: linear-gradient(rgba(0, 0, 0, .4) 80%, rgba(0, 0, 0, 1));
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.section2:before {
    content: unset;
}

.section1 {
    background-position: center center;
}

.section1 .fp-tableCell {
    vertical-align: bottom;
}

.section1 .video {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    left: 0;
    top: 0;
}

.section1 .video video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.section1 .video .cover {
    width: 100%;
    height: 100%;
    position: absolute;
    background: url("img/s1_cover.png");
    left: 0;
    top: 0;
}


.section1 .vplay {
    width: 24%;
    max-width: 200px;
    margin: 5px auto 5px;
    cursor: pointer;
    position: relative;
}

.section1 .vplay img {
    width: 100%;

}

.section1 .slogan {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.section1 .slogan img {
    width: 100%;
}
.section1 .regGift{
    position: absolute;
    right: 15px;
    width: 15%;
    max-width: 262px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    top: 50%;
    transform: translateY(-46%);
    gap: 15px;
}
.section1 .regGift h3{
    color: #F3D198;
    font-size: 30px;
    text-align: center;
    /*filter: drop-shadow(0 4px  4px  #c15ae7);*/
    text-shadow: 0 4px 4px #c15ae7,0  4px 4px #f00 ;
}

.section1 .regGift img{
    width: 100%;
}

.section1 .gift {
    width: 16%;
    max-width: 129px;
    position: absolute;
    left: 15px;
    top: 160px;
    display: flex;
    animation: bounceIn 1.3s infinite;
}

.shan {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    mask-size: cover;
    left: 0;
    top: 0;
}

.section1 .gift .shan {
    -webkit-mask-image: url(img/gift_f.png);
}

.section1 .sloganPC ~ .shan {
    -webkit-mask-image: url(img/s1_slogan.png);
}

.section1 .sloganMb ~ .shan {
    -webkit-mask-image: url(img/s1_slogan_mb.png);
}
.section1 .vplay  .shan {
    -webkit-mask-image: url(img/vplay.png);
}
.section3 .slog .shan {
    -webkit-mask-image: url(img/s3_slog.png);
}

.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, 255, .6), transparent, transparent);

}

.section1 .gift .shan:before {
    animation: 1s linear infinite shan;
}

.section1 .slogan .shan:before {
    animation: 2s linear infinite shan;
}
.section1 .vplay .shan:before {
    animation: 1s linear infinite shan;
}
.section3 .slog .shan:before {
    animation: 2s linear infinite shan;
}


@keyframes shan {
    0% {
        transform: translate(-100%);
    }

    100% {
        transform: translate(100%);
    }

}

@keyframes bounceIn {
    0% {
        transform: scale(0.8)
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.8)
    }

}

.section1 .gift img {
    width: 100%;
}

.section1 .btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 2% 0 4%;
    max-width: 722px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

section1 .btns a {
    width: 100%;
    display: flex;
    position: relative;
}

.section1 .btns a img {
    width: 100%;
    height: 100%;
}

.section1 .btns a span {
    position: absolute;
    text-indent: -9999rem;
}


.section2 {
    background-image: url("img/bg2.jpg");
}

.section2 .fp-tableCell {
    vertical-align: top;
}

.section2 .title {
    padding-top: 140px;
}

.section2 .title img {
    max-width: 750px;
    width: 100%;
}

.section2 .bigQuan {
    width: 100%;
    max-width: 734px;
    margin: 0 auto;
}

.section2 .bigQuan .quan {
    padding-bottom: 100%;
    background-image: url(img/s2_quan_pc.png);
    background-size: cover;
    position: relative;
}
.section2 .bigQuan .quan .shan{
    -webkit-mask-image: url(img/s2_ren.png);
    z-index: 2;
}
.section2 .bigQuan .quan .shan:before{
    animation: 2s linear infinite shan;
}


.section2 .bigQuan .quan .circle-box {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
}

.section2 .bigQuan .quan .ren {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    object-fit: cover;
}

.section2 .bigQuan .quan .circle {
    width: 14%;
    offset-path: circle(var(--qw));
    position: absolute;
    z-index: 2;
    cursor: pointer;
}
.section2 .bigQuan .quan .circle:nth-child(1){
    offset-distance: 60%;
}
.section2 .bigQuan .quan .circle:nth-child(1) .circleN {
    transform: rotate(54deg);
}

.section2 .bigQuan .quan .circle:nth-child(2){
    offset-distance: 54%;
}
.section2 .bigQuan .quan .circle:nth-child(2) .circleN {
    transform: rotate(75deg);
}
.section2 .bigQuan .quan .circle:nth-child(3){
    offset-distance: 48%;
}
.section2 .bigQuan .quan .circle:nth-child(3) .circleN {
    transform: rotate(97deg);
}
.section2 .bigQuan .quan .circle:nth-child(4){
    offset-distance: 42%;
}
.section2 .bigQuan .quan .circle:nth-child(4) .circleN {
    transform: rotate(118deg);
}
.section2 .bigQuan .quan .circle:nth-child(8){
    offset-distance: 90%;
}
.section2 .bigQuan .quan .circle:nth-child(8) .circleN {
    transform: rotate(-54deg);
}
.section2 .bigQuan .quan .circle:nth-child(7){
    offset-distance: 96%;
}
.section2 .bigQuan .quan .circle:nth-child(7) .circleN {
    transform: rotate(-76deg);
}
.section2 .bigQuan .quan .circle:nth-child(6){
    offset-distance: 102%;
}
.section2 .bigQuan .quan .circle:nth-child(6) .circleN {
    transform: rotate(-97deg);
}
.section2 .bigQuan .quan .circle:nth-child(5){
    offset-distance: 108%;
}
.section2 .bigQuan .quan .circle:nth-child(5) .circleN {
    transform: rotate(-119deg);
}




.section2 .bigQuan .quan .circleN {
    padding-bottom: 100%;
    width: 100%;
    position: relative;
    height: 0;
}
.section2 .bigQuan .quan .circleN .text-cont{
    transform: translateX(-100%);
    display: flex;
    flex-direction: column;
    width: fit-content;
    position: relative;
}
.section2 .bigQuan .quan .circle:nth-child(5) .circleN .text-cont,.section2 .bigQuan .quan .circle:nth-child(6) .circleN .text-cont,.section2 .bigQuan .quan .circle:nth-child(7) .circleN .text-cont,.section2 .bigQuan .quan .circle:nth-child(8) .circleN .text-cont{
    transform: translateX(50%);
}

.section2 .bigQuan .quan .circleN .text-cont .circle-tit {
    float: right;
    width: 198px;
    height: 27px;
    font-size: 28px;
    text-align: center;
    color: #452300;
    background: url(img/s2_ti.png) no-repeat center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}


.section2 .bigQuan .quan .circleN .text-cont .circle-tit span{
    margin-left: 15px;
}

.section2 .bigQuan .quan .circleN .text-cont .circle-text {
    font-size: 14px;
    color: #5c574c;
    line-height: 19px;
    transition: all .8s;
    text-align: right;
    right: 0;
    position: absolute;
    width: 114%;
    top: 44px;
    padding-right: 25px;
 }
.section2 .bigQuan .quan .circle:nth-child(5) .circleN .text-cont .circle-text,.section2 .bigQuan .quan .circle:nth-child(6) .circleN .text-cont .circle-text,.section2 .bigQuan .quan .circle:nth-child(7) .circleN .text-cont .circle-text,.section2 .bigQuan .quan .circle:nth-child(8) .circleN .text-cont .circle-text {
    text-align: left;
    left: 0;
    padding-left: 25px;width: 154%;
    padding-right: 0;
 }


.section2 .bigQuan .quan .circleN .text-cont .circle-text.short{
    opacity: 1;
}
.section2 .bigQuan .quan .circleN .text-cont .circle-text.long{
    opacity: 0;
}

.section2 .bigQuan .quan .circle:hover .circleN .text-cont .circle-text.long,.section2 .bigQuan .quan .circle.on .circleN .text-cont .circle-text.long{
    opacity: 1;
}
.section2 .bigQuan .quan .circle:hover .circleN .text-cont .circle-text.short,.section2 .bigQuan .quan .circle.on .circleN .text-cont .circle-text.short{
    opacity: 0;
}




.section2 .bigQuan .quan .circleN .circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(img/s2_quan.png);
    background-size: cover;
}
.section2 .bigQuan .quan .circle:hover .circleN .circle-bg,.section2 .bigQuan .quan .circle.on .circleN .circle-bg {
    position: absolute;
    width: 122%;
    height: 122%;
    left: -11%;
    top: -11%;
    background-image: url(img/s2_quan_hover.png);
    background-size: cover;
}




.section2 .bigQuan .quan .circleN .img {
    width: 82%;
    position: absolute;
    height: 82%;
    left: 50%;
    top: 50%;
    margin-left: -41%;
    margin-top: -41%;
}

.section2 .bigQuan .quan .circleN .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 100%
}

.section2 .container {
    margin: 0 auto;
}

.section2 .container .mb_ul {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 6px);
    padding-top: 5vw;
}

.section2 .container .mb_ul li {
    width: 25%;
    padding-right: 6px;
}

.section2 .container .mb_ul li .li {
    width: 100%;
    padding-bottom: 144.78527607362%;
    height: 0;
    background: url("img/s2_ge.png");
    background-size: cover;
}

.section2 .container .mb_ul li .li .title {
    color: #452300;
    font-size: 16px;
    font-weight: bold;
    padding-top: 10%;
}


.section2 .container .mb_ul li .li .img {
    display: flex;
    align-items: center;
    background: url("img/s2_quan.png");
    background-size: cover;
    justify-content: center;
    width: 50%;
    margin: .6vw auto;
}

.section2 .container .mb_ul li .li .img i {
    padding-bottom: 50%;
    padding-top: 50%;
    height: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section2 .container .mb_ul li .li .img img {
    width: 80%;
    border-radius: 100%;
}

.section2 .container .mb_ul li .li p {
    font-size: 12px;
    color: #616c6e;
    padding: 0 1vw;
    text-align: center;
}

.section2 .container .ren {
    width: 100%;
}


.section3 {
    background-image: url("img/bg3.jpg");
}

.section3 .container {
    margin: 0 auto;
}

.section3 .slog {
    width: 100%;
    max-width: 796px;
    margin: 0 auto;
    display: flex;
    position: relative;
    padding-top: 6%;
}

.section3 .slog img {
    width: 100%;
}

.section3 .content {
    width: 100%;
    max-width: 1245px;
    margin: 0 auto;
    position: relative;
}

.section3 .content ul {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 15px);
}

.section3 .content ul li {
    width: 25%;
    padding-right: 15px;
}

.section3 .content ul li img {
    width: 100%;
}

.section3 .yy {
    position: absolute;
    width: 40%;
    max-width: 180px;
    right: 0;
    top: 0;
    z-index: 1;
    transform: translateY(-100%);
}

.section3 .yy img {
    width: 100%;
    height: 100%;animation: bounceIn .8s infinite;
    filter: drop-shadow(0px 0px 10px rgb(187, 68, 255));
}


.section4 {
    background-image: url("img/bg4.jpg");
}

.section4 .container {
    width: 1000px;
    margin: clamp(20px, 3vw, 40px) auto 0;
    position: relative;
}

.section4 .swiper {
    overflow: hidden;
}

.section4 .swiper-wrapper {

}

.section4 .swiper-slide {
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    position: relative;
}

.section4 .swiper-slide img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.section4 .swiper-pagination {
    bottom: 0;
    top: 104%;
    width: 100%;
}

.section4 .swiper-pagination-bullet {
    width: clamp(20px, 3vw, 25px);
    height: clamp(20px, 3vw, 25px);
    position: relative;
    background: none;
    opacity: 1;
    margin: 0 0 0 clamp(6px, 1vw, 18px) !important;
}

.section4 .swiper-pagination-bullet:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(img/dot.png) no-repeat center;
    background-size: contain;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;

}

.section4 .swiper-pagination-bullet-active:after {
    background: url(img/dot_on.png) no-repeat center;
    width: 106px;
    height: 49px;
}


.section5 {
    background-image: url("img/bg5.jpg");
}

.section5 .container {
    width: 100vw;
    margin: clamp(20px, 3vw, 40px) auto 0;
}

.section5 .swiper-slide, .section5 .swiper-wrapper, .section5 .swiper, .section5 .swiper-wrapper {
    height: fit-content;
}

.section5 .swiper {
    position: relative;
    width: 100%;
}

.section5 .swiper-slide .vnei {
    padding: 28.125% 0;
    position: relative;
}

.section5 .swiper-slide .vnei .text {
    position: absolute;
    background: rgba(50, 156, 217, 1);
    color: #fff;
    padding: 1%;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: clamp(12px, 3vw, 16px);
}

.section5 .swiper-slide .vnei .vplay {
    position: absolute;
    width: 20%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
}

.section5 .swiper-slide-active .vnei .vplay {
    display: none;
}

.section5 .swiper-slide .vnei .vplay i {
    padding-bottom: 100%;
    background: url(img/play_btn.png) no-repeat center;
    background-size: contain;
    width: 100%;
}

.section5 .swiper-pagination {
    bottom: 0;
    top: 102%;
}

.section5 .swiper-pagination-bullet {
    width: clamp(20px, 3vw, 25px);
    height: clamp(20px, 3vw, 25px);
    position: relative;
    background: none;
    opacity: 1;
    margin: 0 0 0 18px !important;
}

.section5 .swiper-pagination-bullet:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(img/dot.png) no-repeat center;
    background-size: contain;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;

}

.section5 .swiper-pagination-bullet-active:after {
    background: url(img/dot_on.png) no-repeat center;
    width: 106px;
    height: 49px;
}


.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(--blue);
    border-color: var(--blue);
}


.win {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.mark {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
}

.myWin {
    position: absolute;
    left: 50%;
    width: 90%;
    margin-left: -45%;
    background: var(--white);
    top: 50%;
    transform: translateY(-50%);
    padding: clamp(12px, 3vw, 60px) clamp(12px, 3vw, 60px) clamp(22px, 6vw, 90px);

}

.myWin .close {
    width: clamp(40px, 4vw, 60px);
    position: absolute;
    border-radius: 100%;
    background-image: linear-gradient(var(--blue), var(--fen));
    right: calc(-0.5 * clamp(40px, 4vw, 60px));
    top: calc(-0.5 * clamp(40px, 4vw, 60px));
    cursor: pointer;
}

.myWin .closen {
    padding-bottom: 100%;
    position: relative;
    transform: rotate(45deg);
}

.myWin .closen i {
    width: 50%;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.myWin .closen i:nth-child(2) {
    width: 2px;
    height: 50%;
}

.myWin .container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 889;
}

.myWin .down {
    width: 44%;
    max-width: 230px;
    min-width: 120px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.myWin .down img {
    width: 100%;
}

.myWin .container .flavar {
    width: 100%;
    padding-bottom: 54.166666666667%;
    position: relative;
    overflow: hidden;
}

.myWin .container .flavar .swiper {
    width: 100%;
    height: 100%;
    position: absolute;
}

.myWin .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.myWin .myPagination {
    padding-top: 5%;
}

.myWin .myPaginationN {
    width: 100%;
    display: flex;
}

.myWin .myPagination .pa {
    display: flex;
    align-items: center;
}

.myWin .myPagination .pa .bullet {
    cursor: pointer;
    position: relative;
    margin: 3px -4px 0;
    width: 30px;
    height: 30px;
}

.myWin .myPagination .pa .bullet .ico {
    height: 100%;
    width: 100%;
}

.myWin .myPagination .pa .bullet .ico:after {
    content: "";
    height: 80px;
    left: 50%;
    margin: -41px 0 0 -40px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transition: all .3s ease;
    width: 80px;
    z-index: 5;
    transform: scale(0);
}

.myWin1 .myPagination .pa .bullet .ico {
    background: url(img/img_pagination.png) 0 -408px no-repeat;
}

.myWin1 .myPagination .pa .bullet .ico:after {
    background: url(img/img_pagination.png) 0 0 no-repeat;
}

.myWin2 .myPagination .pa .bullet .ico {
    background: url(img/img_pagination1.png) 0 -408px no-repeat;
}

.myWin2 .myPagination .pa .bullet .ico:after {
    background: url(img/img_pagination1.png) 0 0 no-repeat;
}


.myWin .myPagination .pa:nth-child(2) .bullet .ico:after {
    background-position-y: -80px;
}

.myWin .myPagination .pa:nth-child(3) .bullet .ico:after {
    background-position-y: -160px;
}

.myWin .myPagination .pa:nth-child(4) .bullet .ico:after {
    background-position-y: -240px;
}

.myWin .myPagination .pa:nth-child(5) .bullet .ico:after {
    background-position-y: -320px;
}

.myWin .myPagination .pa .bullet .text {
    color: #888;
    font-size: 18px;
    left: 50%;
    padding-top: 55px;
    position: absolute;
    top: 0;
    transform: translate(-50%);
    transition: color .3s ease;
    white-space: nowrap;
    font-weight: bold;
    transition: color .3s ease;
}

.myWin1 .myPagination .pa .line {
    background: #eee;
    height: 2px;
    width: calc(calc(var(--w) - 110) * 0.25 * 1px);
    position: relative;
}

.myWin2 .myPagination .pa .line {
    background: #eee;
    height: 2px;
    width: calc(calc(var(--w) - 80) * 0.33 * 1px);
    position: relative;
}


.myWin .myPagination .pa .line:after {
    background-image: linear-gradient(to right, var(--blue), var(--fen));
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
}

.myWin .myPagination .pa.ok .bullet .ico, .myWin .myPagination .pa.active .bullet .ico {
    background-position-x: -30px;
}

.myWin .myPagination .pa.ok .line:after {
    width: 100%;
}

.myWin .myPagination .pa.ok .bullet .text, .myWin .myPagination .pa.active .bullet .text {
    color: var(--blue);
}

.myWin .myPagination .pa.active .line:after {
    animation: widthFull 5s ease forwards;
}

.myWin .myPagination .pa.active .bullet .ico:after {
    opacity: 1;
    transform: scale(1);
}

@keyframes widthFull {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.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;
}

.swiper-button-next, .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-size: cover;
}

.swiper-button-prev {
    transform: translateX(-200%);
    background-image: url("img/prev_btn.png");
}

.swiper-button-next {
    transform: translateX(200%);
    background-image: url("img/next_btn.png");
}