.banner {
    position: relative
}

.banner .svg {
    display: none
}

.banner .swiper {
    width: 100%;
    height: 100vh
}

.banner .swiper .swiper-slide .back {
    width: 100%;
    height: 100%;
    position: relative
}

.banner .swiper .back img {
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    transition: cubic-bezier(0.77, 0, 0.175, 1) transform 2s
}

.banner .swiper .back video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.banner .swiper .swiper-slide:first-child .back:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2)
}

.banner .swiper .back.video_back:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2)
}

.banner .swiper .back video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.banner .swiper .swiper-slide-active .back img {
    transform: scale(1)
}

.banner .swiper .content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 80px;
    width: 100%;
    z-index: 5
}

.banner .swiper .content .dis {
    display: flex;
    gap: 10px;
    margin: 65px 0 0 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s, transform .6s .3s
}

.banner .swiper .swiper-slide-active .content .dis {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .3s
}

.banner .swiper .content .dis .list {
    width: fit-content;
    height: 52px;
    background: #ED6D00;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    text-transform: uppercase
}

.banner .swiper .content .dis .list p {
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF
}

.banner .swiper .content .dis .list .iconfont {
    font-size: 10px;
    color: #FFFFFF
}

.banner .swiper .pick span {
    font-weight: bold;
    font-size: 54px;
    color: #FFFFFF;
    line-height: 64px;
    margin: 0 0 29px;
    display: block;
    transform: translateY(20px);
    opacity: 0;
}
.banner .swiper .pick p {
    transform: translateY(20px);
    opacity: 0;
}
.banner .swiper .swiper-slide.on .pick span,.banner .swiper .swiper-slide.on .pick p {
    transform: translateY(0px);
    opacity: 1;
    transition: 0.6s;
}
.banner .swiper .swiper-slide {
    overflow: hidden
}

.banner .swiper .pick p {
    font-weight: 300;
    font-size: 24px;
    color: #FFFFFF
}

.banner .swiper .swiper-slide.on .pick span div, .banner .swiper .swiper-slide.on .pick p div {
    transition: 1s;
    opacity: 1 !important;
    transform: translateX(0) !important
}

.banner .swiper .swiper-slide.unset .pick span div, .banner .swiper .swiper-slide.unset .pick p div {
    transition-delay: unset !important
}

.banner .swiper-pagination {
    position: absolute;
    z-index: 5;
    height: fit-content;
    left: 20px;
    bottom: 56px;
    width: fit-content
}

.banner .svg {
    display: none
}

.banner .swiper-pagination span {
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1 !important;
    margin: 0 9px 0 0 !important;
    position: relative;
    transition: .6s ease
}

.banner .swiper-pagination span:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left
}

.banner .swiper-pagination span:last-child {
    margin: 0 !important
}

@keyframes banner_auto_animate {
    100% {
        transform: scaleX(1)
    }
}

.banner .swiper-pagination span.swiper-pagination-bullet-active {
    width: 100px
}

.banner .swiper-pagination span.swiper-pagination-bullet-active:after {
    animation: banner_auto_animate 5s linear forwards
}

.banner .parallax {
    width: 100%;
    height: 100%
}

.banner .page {
    position: absolute;
    left: 80px;
    z-index: 999;
    bottom: 60px
}

.banner .down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    z-index: 32
}

.banner .down .iconfont {
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    animation: 1.5s ease infinite eSdEvq
}

@keyframes eSdEvq {
    0% {
        transform: translate(0px, 0px)
    }
    50% {
        transform: translate(20px, 0px)
    }
    100% {
        transform: translate(0px, 0px)
    }
}

.banner .page .list {
    display: flex;
    align-items: center
}

.banner .page .list .item {
    color: rgba(255, 255, 255, 0.2);
    font-size: 16px;
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    transition: all 1s
}

.banner .page .list .item:hover {
    color: var(--color)
}

.banner .page .list .item.active {
    color: var(--color)
}

.banner .page .list .lineBox {
    height: 1px;
    width: 50px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 1s
}

.banner .page .list .lineBox.active::after {
    transition: 5s linear;
    clip-path: inset(0 0 0 0)
}

.banner .page .list .lineBox::after {
    width: 100%;
    height: 100%;
    border-top: 1px dashed var(--color);
    content: '';
    position: absolute;
    top: -1px;
    clip-path: inset(0 100% 0 0)
}

.index1 {
    padding: 100px 0 130px
}

.index1 .wrap {
    width: 1760px;
    margin: auto
}

.index1 .wrap .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 50px;
    position: relative;
    z-index: 5;
}

.index1 .wrap .top .title {
    font-weight: bold;
    font-size: 54px;
    color: #080404
}
.index1 .wrap .top .more{
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.index1 .wrap .top .more .show {
    width: 180px;
    height: 45px;
    border-radius: 23px;
    border: 1px solid #DAE0E6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px 0 25px;
    position: relative;
    transition: .6s ease;
    z-index: 2;
}
.index1 .wrap .top .more.on .show{
    border: 1px solid transparent;
}
.index1 .wrap .top .more.on .hide{
    opacity: 1;
    pointer-events: auto;
}
.index1 .wrap .top .more .hide{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 23px;
    padding: 43px 10px 10px 10px;
    border: 1px solid #DAE0E6;
    margin-top: -45px;
    z-index: 1;
    opacity: 0;
    transition: .3s ease;
    pointer-events: none;
}
.index1 .wrap .top .more .hide a:first-child{
    border-top: 1px solid #DAE0E6;
}
.index1 .wrap .top .more .hide a{
    font-size: 16px;
    color: #000;
    line-height: 40px;
    display: block;
    text-align: left;
    padding: 0 15px;
    transition: .6s ease;
}
.index1 .wrap .top .more .hide a:hover{
    color: var(--color);
}

.index1 .wrap .top .more p {
    font-weight: 400;
    font-size: 18px;
    color: #151419;
    transition: .6s ease
}

.index1 .wrap .top .more .iconfont {
    font-size: 12px;
    color: #333333;
    transition: .6s ease
}

.index1 .wrap .content .x {
    width: 2420px;
    /*width: max-content;*/
    /*display: flex;*/
    position: relative;
    left: 0
}
.index1 .wrap .content .x .xSwiper{
    width: 100%;
}

.index1 .wrap .content .x .item {
    width: 780px
}

.index1 .wrap .content .x .item:hover .img img {
    transform: scale(1.05)
}

.index1 .wrap .content .x .item:hover .text .p1 {
    color: var(--color)
}

.index1 .wrap .content .x .item:not(:last-child) {
    margin: 0 40px 0 0
}

.index1 .wrap .content .x .item .img {
    width: 100%;
    height: 480px;
    background: linear-gradient(45deg, rgba(199, 206, 216, 0.2), rgba(159, 170, 183, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center
}

.index1 .wrap .content .x .item .img img {
    object-fit: contain;
    transition: .6s ease
}

.index1 .wrap .content .x .item .text {
    margin: 26px 0 0 0
}

.index1 .wrap .content .x .item .text .p1 {
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    margin: 0 0 10px;
    transition: .6s ease
}

.index1 .wrap .content .x .item .text .p2 {
    font-weight: 400;
    font-size: 14px;
    color: #ACB6BF
}

.index1 .wrap .drag {
    margin: 67px 0 0 0;
    position: relative;
    pointer-events: none;
    display: none;
}

.index1 .wrap .drag .line {
    width: 100%;
    opacity: .2;
    pointer-events: none;
    user-select: none
}

.index1 .wrap .drag .line.line2 {
    opacity: 1;
    position: absolute;
    left: 0;
    top: 6px;
    clip-path: inset(0 100% 0 0)
}

.index1 .wrap .drag .color {
    position: absolute;
    top: -3px;
    left: 0;
    width: 55px;
    height: 28px;
    background: #ED6D00;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab
}

.index1 .wrap .drag .color .iconfont {
    font-size: 18px;
    color: #fff
}

.index1 .wrap .drag .color .iconfont:first-child {
    transform: rotate(180deg)
}

.index2 {
    padding: 10px 0 46px
}

.index2 .wrap {
    width: 1760px;
    margin: auto
}

.index2 .wrap .title {
    font-weight: bold;
    font-size: 54px;
    color: #080404;
    margin: 0 0 60px;
    text-transform: uppercase
}

.index2 .wrap .cut {
    display: flex;
    gap: 20px;
    margin: 0 0 40px
}

.index2 .wrap .cut .list {
    width: fit-content;
    padding: 0 20px;
    height: 55px;
    background: #FFFFFF;
    border-radius: 27px;
    border: 1px solid #DAE0E6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    color: #ACB6BF;
    transition: .6s ease;
    cursor: pointer
}

.index2 .wrap .cut .list:hover {
    color: var(--color);
    border: 1px solid var(--color)
}

.index2 .wrap .cut .list.on {
    background: var(--color);
    color: #fff;
    border: 1px solid transparent
}

.index2 .wrap .content {
    display: flex;
    height: 640px;
    background: #EFF1F3;
    border-radius: 20px;
    justify-content: space-between
}

.index2 .wrap .content .l {
    width: 840px;
    height: 100%;
    padding: 83px 60px 58px 60px
}

.index2 .wrap .content .l .joke {
    position: relative;
    height: 100%
}

.index2 .wrap .content .l .joke .matter {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    pointer-events: none
}

.index2 .wrap .content .l .joke .matter.on {
    pointer-events: auto
}

.index2 .wrap .content .l .joke .matter.on .t .p1, .index2 .wrap .content .l .joke .matter.on .t .p2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .3s
}

.index2 .wrap .content .l .joke .matter.on .t .p2 {
    transition-delay: .4s
}

.index2 .wrap .content .l .joke .matter.on .more {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .5s
}

.index2 .wrap .content .l .joke .matter:not(first-child) {
    position: absolute;
    top: 0;
    left: 0
}

.index2 .wrap .content .l .joke .matter .t .p1 {
    font-weight: bold;
    font-size: 36px;
    color: #080404;
    margin: 0 0 39px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s, transform .6s .3s
}

.index2 .wrap .content .l .joke .matter .t .p2 {
    width: 584px;
    font-weight: 400;
    font-size: 18px;
    color: #444444;
    line-height: 34px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s, transform .6s .3s
}

.index2 .wrap .content .l .joke .matter .more {
    width: max-content;
    padding: 0 20px;
    height: 50px;
    background: #ED6D00;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s, transform .6s .3s
}

.index2 .wrap .content .r {
    border-radius: 20px;
    width: 920px;
    height: 100%;
    overflow: hidden;
    position: relative
}

.index2 .wrap .content .r img {
    width: 100%;
    height: 100%;
    transition: .6s ease;
    opacity: 0;
    pointer-events: none
}

.index2 .wrap .content .r img:hover {
    transform: scale(1.05)
}

.index2 .wrap .content .r img.on {
    opacity: 1;
    pointer-events: auto
}

.index2 .wrap .content .r img:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0
}

.index3 {
    padding: 100px 0 140px
}

.index3 .wrap {
    width: 1760px;
    margin: auto
}

.index3 .wrap .headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 85px
}

.index3 .wrap .headline.aos-animate .line {
    transform: scaleX(1)
}

.index3 .wrap .headline p {
    font-weight: 400;
    font-size: 18px;
    color: #080404
}

.index3 .wrap .headline .line {
    width: 1600px;
    height: 1px;
    background: #080404;
    transform-origin: left;
    transform: scaleX(0);
    transition: 2s
}

.index3 .wrap .top {
    display: flex;
    justify-content: space-between
}

.index3 .wrap .top .title {
    font-weight: bold;
    font-size: 48px;
    color: #080404;
    line-height: 64px;
    text-transform: uppercase
}

.index3 .wrap .top .text {
    width: 648px;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 36px
}

.index3 .wrap .top .r .more{
    width: fit-content;
    padding: 0 30px;
    height: 50px;
    background: #ED6D00;
    border-radius: 25px;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    margin: 30px 0 0 0;
}

.index3 .wrap .content {
    margin: 85px 0 0 0;
    height: 650px;
    border-radius: 20px;
    position: relative;
    overflow: hidden
}

.index3 .wrap .content .img {
    width: 100%;
    height: 100%
}

.index3 .wrap .content .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color);
    cursor: pointer
}

.index3 .wrap .content .play .rote {
    position: absolute;
    width: 105px;
    height: 105px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: roteAnimate 10s linear infinite
}

.index3 .wrap .content .play svg {
    width: 40px
}

@keyframes roteAnimate {
    100% {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

.index4 {
    padding: 100px 0 135px 0
}

.index4 .wrap {
    width: 1760px;
    margin: auto
}

.index4 .wrap .top {
    display: flex;
    justify-content: space-between;
    margin: 0 0 60px
}

.index4 .wrap .top .title {
    font-weight: bold;
    font-size: 54px;
    color: #080404
}

.index4 .wrap .top .more {
    width: fit-content;
    padding: 0 30px;
    height: 49px;
    background: rgba(1, 69, 140, 0);
    border-radius: 25px;
    border: 1px solid #080404;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 18px;
    color: #080404;
    transition: .6s ease
}

.index4 .wrap .top .more:hover {
    background: var(--color);
    color: #fff;
    border: 1px solid transparent
}

.index4 .wrap .content {
    position: relative
}

.index4 .wrap .content:after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 1px;
    background: rgba(1, 69, 140, 0.14);
    left: 50%;
    transform: translateX(-50%);
    top: 0
}

.index4 .wrap .content .x {
    display: flex;
    width: 1720px;
    position: relative
}

.index4 .wrap .content .x .xSwiper2{
    width: 100%;
}

.index4 .wrap .content .x .item {
    padding: 70px 0 0 0;
    position: relative;
    display: block;
}

.index4 .wrap .content .x .item:before{
    content: '';
    position: absolute;
    right: -40px;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(1, 69, 140, 0.14)
}

.index4 .wrap .content .x .item:last-child:after {
    display: none
}

.index4 .wrap .content .x .item:after {
    content: '';
    position: absolute;
    right: -40px;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(1, 69, 140, 0.14)
}

.index4 .wrap .content .x .item:not(:last-child) {
    margin: 0 80px 0 0
}

.index4 .wrap .content .x .item:hover .p1 {
    color: var(--color)
}

.index4 .wrap .content .x .item:hover .img img {
    transform: scale(1.05)
}

.index4 .wrap .content .x .item .p1 {
    width: 431px;
    font-weight: 400;
    font-size: 20px;
    color: #111111;
    line-height: 28px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 56px;
    transition: .6s ease
}

.index4 .wrap .content .x .item .dis {
    margin: 40px 0 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.index4 .wrap .content .x .item .dis p {
    font-weight: 400;
    font-size: 14px;
    color: #B3B3B3
}

.index4 .wrap .content .x .item .img {
    width: 100%;
    height: 320px;
    border-radius: 15px;
    overflow: hidden
}

.index4 .wrap .content .x .item .img img {
    width: 100%;
    height: 100%;
    transition: 2s
}

.index4 .wrap .drag {
    margin: 67px 0 0 0;
    position: relative;
    display: none;
}

.index4 .wrap .drag .line {
    width: 100%;
    opacity: .2;
    pointer-events: none;
    user-select: none
}

.index4 .wrap .drag .line.line2 {
    opacity: 1;
    position: absolute;
    left: 0;
    top: 6px;
    clip-path: inset(0 100% 0 0)
}

.index4 .wrap .drag .color {
    position: absolute;
    top: -3px;
    left: 0;
    width: 55px;
    height: 28px;
    background: #ED6D00;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab
}

.index4 .wrap .drag .color .iconfont {
    font-size: 18px;
    color: #fff
}

.index4 .wrap .drag .color .iconfont:first-child {
    transform: rotate(180deg)
}


@media screen and (max-width: 1919px) {
    .banner .swiper .content{
        padding: 0px 4.1666666667vw;
    }
    .banner .swiper .content .dis{
        gap: 0.5208333333vw;
        margin: 3.3854166667vw 0px 0px;
        transform: translateY(1.0416666667vw);
    }
    .banner .swiper .content .dis .list{
        height: 2.7083333333vw;
        border-radius: 1.3541666667vw;
        gap: 0.4166666667vw;
        padding: 0px 1.0416666667vw;
    }
    .banner .swiper .content .dis .list p{
        font-size: 0.8333333333vw;
    }
    .banner .swiper .content .dis .list .iconfont{
        font-size: 0.5208333333vw;
    }
    .banner .swiper .pick span{
        font-size: 2.8125vw;
        line-height: 3.3333333333vw;
        margin: 0px 0px 1.5104166667vw;
    }
    .banner .swiper .pick p{
        font-size: 1.25vw;
    }
    .banner .swiper-pagination{
        left: 1.0416666667vw;
        bottom: 2.9166666667vw;
    }
    .banner .swiper-pagination span{
        width: 1.5625vw;
        height: 0.15625vw;
        border-radius: 0.1041666667vw;
        margin: 0px 0.46875vw 0px 0px !important;
    }
    .banner .swiper-pagination span::after{
        border-radius: 0.1041666667vw;
    }
    .banner .swiper-pagination span.swiper-pagination-bullet-active{
        width: 5.2083333333vw;
    }
    .banner .page{
        left: 4.1666666667vw;
        bottom: 3.125vw;
    }
    .banner .down{
        bottom: 2.0833333333vw;
    }
    .banner .down .iconfont{
        font-size: 1.25vw;
    }
    .banner .page .list .item{
        font-size: 0.8333333333vw;
        margin-left: 0.5208333333vw;
        margin-right: 0.5208333333vw;
    }
    .banner .page .list .lineBox{
        width: 2.6041666667vw;
    }
    .index1{
        padding: 5.2083333333vw 0px 6.7708333333vw;
    }
    .index1 .wrap{
        width: 91.6666666667vw;
    }
    .index1 .wrap .top{
        margin: 0px 0px 2.6041666667vw;
    }
    .index1 .wrap .top .title{
        font-size: 2.8125vw;
    }
    .index1 .wrap .top .more .show{
        width: 9.375vw;
        height: 2.34375vw;
        border-radius: 1.1979166667vw;
        padding: 0px 1.6666666667vw 0px 1.3020833333vw;
    }
    .index1 .wrap .top .more .hide{
        border-radius: 1.1979166667vw;
        padding: 2.2395833333vw 0.5208333333vw 0.5208333333vw;
        margin-top: -2.34375vw;
    }
    .index1 .wrap .top .more .hide a{
        font-size: 0.8333333333vw;
        line-height: 2.0833333333vw;
        padding: 0px 0.78125vw;
    }
    .index1 .wrap .top .more p{
        font-size: 0.9375vw;
    }
    .index1 .wrap .top .more .iconfont{
        font-size: 0.625vw;
    }
    .index1 .wrap .content .x{
        width: 126.0416666667vw;
    }
    .index1 .wrap .content .x .item{
        width: 40.625vw;
    }
    .index1 .wrap .content .x .item:not(:last-child){
        margin: 0px 2.0833333333vw 0px 0px;
    }
    .index1 .wrap .content .x .item .img{
        height: 25vw;
        border-radius: 1.0416666667vw;
    }
    .index1 .wrap .content .x .item .text{
        margin: 1.3541666667vw 0px 0px;
    }
    .index1 .wrap .content .x .item .text .p1{
        font-size: 1.0416666667vw;
        margin: 0px 0px 0.5208333333vw;
    }
    .index1 .wrap .content .x .item .text .p2{
        font-size: 0.7291666667vw;
    }
    .index1 .wrap .drag{
        margin: 3.4895833333vw 0px 0px;
    }
    .index1 .wrap .drag .line.line2{
        top: 0.3125vw;
    }
    .index1 .wrap .drag .color{
        top: -0.15625vw;
        width: 2.8645833333vw;
        height: 1.4583333333vw;
        border-radius: 0.7291666667vw;
    }
    .index1 .wrap .drag .color .iconfont{
        font-size: 0.9375vw;
    }
    .index2{
        padding: 0.5208333333vw 0px 2.3958333333vw;
    }
    .index2 .wrap{
        width: 91.6666666667vw;
    }
    .index2 .wrap .title{
        font-size: 2.8125vw;
        margin: 0px 0px 3.125vw;
    }
    .index2 .wrap .cut{
        gap: 1.0416666667vw;
        margin: 0px 0px 2.0833333333vw;
    }
    .index2 .wrap .cut .list{
        padding: 0px 1.0416666667vw;
        height: 2.8645833333vw;
        border-radius: 1.40625vw;
        font-size: 0.8333333333vw;
    }
    .index2 .wrap .content{
        height: 33.3333333333vw;
        border-radius: 1.0416666667vw;
    }
    .index2 .wrap .content .l{
        width: 43.75vw;
        padding: 4.3229166667vw 3.125vw 3.0208333333vw;
    }
    .index2 .wrap .content .l .joke .matter .t .p1{
        font-size: 1.875vw;
        margin: 0px 0px 2.03125vw;
        transform: translateY(1.0416666667vw);
    }
    .index2 .wrap .content .l .joke .matter .t .p2{
        width: 30.4166666667vw;
        font-size: 0.9375vw;
        line-height: 1.7708333333vw;
        transform: translateY(1.0416666667vw);
    }
    .index2 .wrap .content .l .joke .matter .more{
        padding: 0px 1.0416666667vw;
        height: 2.6041666667vw;
        border-radius: 1.3020833333vw;
        font-size: 0.9375vw;
        transform: translateY(1.0416666667vw);
    }
    .index2 .wrap .content .r{
        border-radius: 1.0416666667vw;
        width: 47.9166666667vw;
    }
    .index3{
        padding: 5.2083333333vw 0px 7.2916666667vw;
    }
    .index3 .wrap{
        width: 91.6666666667vw;
    }
    .index3 .wrap .headline{
        margin: 0px 0px 4.4270833333vw;
    }
    .index3 .wrap .headline p{
        font-size: 0.9375vw;
    }
    .index3 .wrap .headline .line{
        width: 83.3333333333vw;
    }
    .index3 .wrap .top .title{
        font-size: 2.5vw;
        line-height: 3.3333333333vw;
    }
    .index3 .wrap .top .text{
        width: 33.75vw;
        font-size: 0.9375vw;
        line-height: 1.875vw;
    }
    .index3 .wrap .top .r .more{
        padding: 0 1.5625vw;
        height: 2.6041666667vw;
        border-radius: 1.3020833333vw;
        font-size: 0.9375vw;
        margin: 1.5625vw 0px 0px;
    }
    .index3 .wrap .content{
        margin: 4.4270833333vw 0px 0px;
        height: 33.8541666667vw;
        border-radius: 1.0416666667vw;
    }
    .index3 .wrap .content .play{
        width: 6.7708333333vw;
        height: 6.7708333333vw;
    }
    .index3 .wrap .content .play .rote{
        width: 5.46875vw;
        height: 5.46875vw;
    }
    .index3 .wrap .content .play svg{
        width: 2.0833333333vw;
    }
    .index4{
        padding: 5.2083333333vw 0px 7.03125vw;
    }
    .index4 .wrap{
        width: 91.6666666667vw;
    }
    .index4 .wrap .top{
        margin: 0px 0px 3.125vw;
    }
    .index4 .wrap .top .title{
        font-size: 2.8125vw;
    }
    .index4 .wrap .top .more{
        padding: 0 1.5625vw;
        height: 2.5520833333vw;
        border-radius: 1.3020833333vw;
        font-size: 0.9375vw;
    }
    .index4 .wrap .content .x{
        width: 89.5833333333vw;
    }
    .index4 .wrap .content .x .item{
        padding: 3.6458333333vw 0px 0px;
    }
    .index4 .wrap .content .x .item::before{
        right: -2.0833333333vw;
    }
    .index4 .wrap .content .x .item::after{
        right: -2.0833333333vw;
    }
    .index4 .wrap .content .x .item:not(:last-child){
        margin: 0px 4.1666666667vw 0px 0px;
    }
    .index4 .wrap .content .x .item .p1{
        width: 22.4479166667vw;
        font-size: 1.0416666667vw;
        line-height: 1.4583333333vw;
        height: 2.9166666667vw;
    }
    .index4 .wrap .content .x .item .dis{
        margin: 2.0833333333vw 0px 0.9375vw;
    }
    .index4 .wrap .content .x .item .dis p{
        font-size: 0.7291666667vw;
    }
    .index4 .wrap .content .x .item .img{
        height: 16.6666666667vw;
        border-radius: 0.78125vw;
    }
    .index4 .wrap .drag{
        margin: 3.4895833333vw 0px 0px;
    }
    .index4 .wrap .drag .line.line2{
        top: 0.3125vw;
    }
    .index4 .wrap .drag .color{
        top: -0.15625vw;
        width: 2.8645833333vw;
        height: 1.4583333333vw;
        border-radius: 0.7291666667vw;
    }
    .index4 .wrap .drag .color .iconfont{
        font-size: 0.9375vw;
    }
}
@media screen and (max-width: 768px) {
    .banner .swiper{
        height: 430px;
    }
    .banner .swiper .content {
        padding: 0 5vw;
    }
    .banner .swiper .pick span {
        font-size: 23px;
        line-height: 1.6;
    }
    .banner .swiper .pick p {
        font-size: 16px;
        margin: 20px 0 30px;
    }
    .banner .swiper .content .dis .list p {
        font-size: 15px;
    }
    .banner .swiper .content .dis .list {
        width: fit-content;
        height: auto;
        padding: 10px 15px;
        border-radius: 30px;
    }
    .banner .page .list .item {
        font-size: 15px;
    }
    .banner .page .list .lineBox {
        width: 70px;
        margin: 0 5px;
    }
    .banner .down .iconfont {
        font-size: 20px;
    }
    .banner .down {
        bottom: 30px;
    }
    .banner .page {
        left: 5vw;
        bottom: 30px;
    }
    .index1 {
        padding: 40px 0 50px;
    }
    .index1 .wrap .top .title {
        font-size: 20px;
    }
    .index1 .wrap .top {
        margin-bottom: 30px;
    }
    .index1 .wrap .top .more .show {
        width: 150px;
        height: 40px;
        border-radius: 20px;
        padding: 0 20px;
    }
    .index1 .wrap .top .more p {
        font-size: 15px;
    }
    .index1 .wrap .top .more .iconfont {
        font-size: 14px;
    }
    .index1 .wrap .top .more .hide {
        margin-top: -40px;
        padding: 40px 10px 10px;
        border-radius: 20px;
    }
    .index1 .wrap .top .more .hide a {
        font-size: 15px;
        line-height: 40px;
    }
    .index1 .wrap .content .x {
        width: 100%;
    }
    .index1 .wrap .content .x .item .img {
        height: 56vw;
    }
    .index1 .wrap .content .x .item {
        display: block;
        width: 100%;
    }
    .index1 .wrap .content .x .item .img img {
        max-width: 80%;
        max-height: 80%;
    }
    .index1 .wrap .content .x .item .text {
        margin: 20px 0 0;
    }
    .index1 .wrap .content .x .item .text .p1 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .index1 .wrap .content .x .item .text .p2 {
        font-size: 15px;
    }
    .index2 {
        padding: 10px 0 50px;
    }
    .index2 .wrap .title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    .index2 .wrap .cut .list {
        font-size: 14px;
        height: 40px;
        border-radius: 20px;
        padding: 0 15px;
    }
    .index2 .wrap .cut {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 30px;
    }
    .index2 .wrap .content {
        height: unset;
        flex-direction: column-reverse;
        border-radius: 6px;
    }
    .index2 .wrap .content .r {
        width: 100%;
        border-radius: 6px;
        height: 64vw;
    }
    .index2 .wrap .content .l {
        width: 100%;
        height: 600px;
        padding: 30px 20px 30px;
    }
    .index2 .wrap .content .l .joke .matter{
        width: 100%;
    }
    .index2 .wrap .content .l .joke .matter .t .p1 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .index2 .wrap .content .l .joke .matter .more {
        height: 38px;
        font-size: 15px;
        padding: 0 15px;
        border-radius: 19px;
    }
    .index2 .wrap .content .l .joke .matter .t .p2 {
        width: 100%;
        font-size: 15px;
        line-height: 1.8;
    }
    .index3 {
        padding: 10px 0 40px;
    }
    .index3 .wrap .headline p {
        font-size: 16px;
    }
    .index3 .wrap .headline {
        margin-bottom: 20px;
    }
    .index3 .wrap .headline .line {
        width: 54vw;
        transform: scaleX(1);
    }
    .index3 .wrap .top .title {
        font-size: 20px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    .index3 .wrap .top .text {
        width: 100%;
        font-size: 15px;
        line-height: 1.8;
    }
    .index3 .wrap .top .r .more {
        height: 38px;
        width: fit-content;
        padding: 0 15px;
        font-size: 15px;
        margin: 30px 0 0;
        border-radius: 19px;
    }
    .index3 .wrap .content {
        margin: 30px 0 0;
        height: 42vw;
    }
    .index3 .wrap .content .play {
        width: 70px;
        height: 70px;
    }
    .index3 .wrap .content .play .rote {
        width: 62px;
        height: 62px;
    }
    .index3 .wrap .content .play svg {
        width: 16px;
    }
    .index3 .wrap .top {
        display: block;
    }
    .index3 .wrap .top .title br {
        display: none;
    }
    .index4 {
        padding: 20px 0 70px;
    }
    .index4 .wrap .top {
        align-items: center;
        margin-bottom: 30px;
    }
    .index4 .wrap .top .title {
        font-size: 20px;
    }
    .index4 .wrap .top .more {
        font-size: 15px;
        width: fit-content;
        padding: 0 15px;
        height: 38px;
        border-radius: 19px;
    }
    .index4 .wrap .content .x .item {
        padding: 30px 20px 20px;
        border: 1px solid #cccccc;
        border-radius: 6px;
    }
    .index4 .wrap .content .x .item::before {
        display: none;
    }
    .index4 .wrap .content:after {
        display: none;
    }
    .index4 .wrap .content .x .item .p1 {
        width: 100%;
        font-size: 16px;
        line-height: 24px;
        height: 48px;
    }
    .index4 .wrap .content .x .item .dis {
        margin: 20px 0 30px;
    }
    .index4 .wrap .content .x .item .dis p {
        font-size: 14px;
    }
    .index4 .wrap .content .x .item .img {
        height: 55vw;
        border-radius: 6px;
    }
    .index2 .wrap .content .l {
        padding: 0;
    }

    .index2 .wrap .content .l .joke .matter {
        padding: 30px 20px 30px;
        height: unset;
        background: #EFF1F3;
        border-radius: 0 0 20px 20px;
        opacity: 0;
        transition: 0.6s;
    }
    .index2 .wrap .content .l .joke .matter.on {
        opacity: 1;
    }
    .index2 .wrap .content .l .joke .matter .more {
        width: 100%;
        height: auto;
        padding: 10px 20px;
        border-radius: 45px;
        margin: 30px 0 0;
    }
    .index2 .wrap .content {
        background: unset;
    }
}
