@charset "utf-8";

@font-face {
    font-family: sys-r;
    src: url("../fonts/SOURCEHANSERIFCN-REGULAR.OTF");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: alibaba-m;
    src: url("../fonts/Alibaba-PuHuiTi-Medium.otf");
    font-weight: normal;
    font-style: normal;
}

@keyframes jello {

    from,
    11.1%,
    to {
        -webkit-transform: none;
        -moz-transform: none;
        transform: none;
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        -moz-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        -moz-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        -moz-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        -moz-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        -moz-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        -moz-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        -moz-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

/* 公共样式 */
.slick-prev,
.slick-next {
    font-size: 0;
}

.slick-prev::before,
.slick-next::before {
    content: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    content: none;
}


.pic {
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}

.pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    transition: all 1s;
}

.pich:hover .pic img {
    transform: scale(1.1);
}

.pic::before {
    position: absolute;
    top: 0;
    left: -90%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    opacity: 0.25;
    pointer-events: none;
    background: -webkit-linear-gradient(left,
            rgba(255, 255, 255, 0) 0,
            rgba(255, 255, 255, 53) 50%,
            rgba(255, 255, 255, 0) 70%);
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 53) 50%,
            rgba(255, 255, 255, 0) 70%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    z-index: 3;
}

.pich:hover .pic:before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.pic div.a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 100%;
    transition: all 0.8s;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.pich:hover .pic div.a {
    width: 110%;
    height: 110%;
}

/* 导航 */

.leftNav {
    background: #F6F6F6;
    background: linear-gradient(245deg, transparent 1.875rem, #F6F6F6 0);
    position: relative;
    z-index: 2;
    margin-top: -2.8125rem;
}

.leftNav::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -16.25rem;
    width: 16.25rem;
    background: #F6F6F6;
    z-index: -1;
}

.leftNav-tit {
    display: none;
}

.leftNav>ul {
    display: flex;
    align-items: center;
}

.leftNav>ul>li {
    position: relative;
    margin-right: 5rem;
}

.leftNav>ul>li:last-child {
    margin-right: 0;
}

.leftNav>ul>li>span {
    position: absolute;
    right: 0;
    top: 0;
    width: 3.5rem;
    height: 3.5rem;
    background:  no-repeat center;
    background-size: 0.5625rem auto;
    cursor: pointer;
    /* display: none; */
z-index: 9;
}

.leftNav>ul>li>a {
    font-size: 1.25rem;
    line-height: 4.625rem;
    margin: 0 1.25rem;
    overflow: hidden;
    position: relative;
    transition: all 0.4s;
    z-index: 99;
}

.leftNav>ul>li>a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2.25rem;
    border-bottom: 0.1875rem solid #791CB5;
    transform: translateX(-50%) scaleX(0);
    transition: all 0.4s;
}

.leftNav>ul>li:hover>a,
.leftNav>ul>li.on>a {
    color: #791CB5;
}

.leftNav>ul>li:hover>a::after,
.leftNav>ul>li.on>a::after {
    transform: translateX(-50%) scaleX(1);
}

.leftNav>ul>li:hover>a::before,
.leftNav>ul>li.on>a::before {
    transform: translateX(-50%) translateY(0);
}

.leftNav ul li a {
    display: block;
}

.leftNav ul li:last-child a {
    border-bottom: none;
}

.leftNav>ul>li.on::before,
.leftNav>ul>li:hover::before {
    display: block;
}

.leftNav ul li.active ul {
    display: block;
}

.leftNav>ul>li>ul {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    width: 115%;
    top: 100%;
    background: #fff;
    padding: 0.625rem 0;
    box-shadow: 0 0.625rem 0.9375rem 0 rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    z-index: 9;
    visibility: hidden;
    opacity: 0;
}

.leftNav>ul>li:hover>ul {
    transform: translateX(-50%) scaleY(1);
    visibility: visible;
    opacity: 1;
}

.leftNav>ul>li>ul>li>a {
    font-size: 1rem;
    line-height: 1.625rem;
    padding: 0.4375rem 0.625rem;
    color: #666666;
    text-align: center;
}

.leftNav>ul>li>ul>li.active>a,
.leftNav>ul>li>ul>li:hover>a {
    color: #791CB5;
}

.leftNav>ul>li>ul>li {
    position: relative;
}

.leftNav>ul>li>ul>li>ul {
    position: absolute;
    top: 0;
    left: 100%;
    transform: scaleY(0);
    transform-origin: top;
    background: #fff;
    padding: 0.625rem 0;
    box-shadow: 0 0.625rem 0.9375rem 0 rgba(0, 0, 0, 0.1);
    width: 10rem;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}

.leftNav>ul>li>ul>li>ul>li>a {
    display: block;
    text-align: center;
    font-size: 1rem;
    line-height: 1.625rem;
    padding: 0.4375rem 0.625rem;
    color: #666;
    transition: all 0.5s;
}

.leftNav>ul>li>ul>li:hover>ul {
    transform: none;
    visibility: visible;
    opacity: 1;
}

.leftNav>ul>li>ul>li>ul>li:hover>a,
.leftNav>ul>li>ul>li>ul>li.active>a {
    color: #791CB5;
}

/* xz_index */
.xz_index {}

.xz_index .section1 {
    padding-top: 4.125rem;
}

.xz_index .s1-2 {
    margin-top: 3.75rem;
}

.xz_index .xz-title {
    margin-bottom: 3.125rem;
    position: relative;
}

.xz_index .xz-title .l p {
    font-family: alibaba-m;
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 1.875rem;
    text-transform: uppercase;
    color: #9F9F9F;
}

.xz_index .xz-title .l h3 {
    font-size: 2.25rem;
    font-weight: bold;
    line-height: 3.125rem;
    margin-top: 0.125rem;
}

.xz_index .xz-title .more {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.xz_index .xz-title .more a {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 2.5rem;
    text-align: center;
    color: #791CB5;
    border-radius: 1.375rem;
    border: 1px solid #D4D4D4;
    padding: 0 1.5625rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.xz_index .xz-title .more a::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0;
    background: #791CB5;
    z-index: -1;
    transition: all 0.5s;
}

.xz_index .gg-lb {
    margin-top: 2.5rem;
}

.xz_index .gg-lb1 {
    margin-top: 0;
}

.xz_index .gg-lb .tit {
    margin-bottom: 1.875rem;
}

.xz_index .gg-lb .tit span {
    display: inline-block;
    padding: 0 2.1875rem;
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 2.5rem;
    border-radius: 1.375rem;
    border: 1px solid #D4D4D4;
}

.xz_index .gg-lb ul {
    padding-right: 3.875rem;
}

.xz_index .gg-lb ul li {
    padding-top: 0.25rem;
}

.xz_index .gg-lb ul li a {
    display: block;
    margin: 0 0.625rem;
}

.xz_index .gg-lb ul li a .picbox {
    background: #FFFFFF;
    box-shadow: 0px 0.25rem 0.625rem 0px rgba(0, 0, 0, 0.1);
    padding: 0.625rem;
    height: 7.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

.xz_index .gg-lb ul li a .picbox img {
    flex-shrink: 0;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.xz_index .gg-lb ul li a h3 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 1.875rem;
    margin-top: 1.375rem;
    transition: all 0.5s;
}

.xz_index .gg-lb .slick-prev,
.xz_index .gg-lb .slick-next {
    width: 2.625rem;
    height: 2.625rem;
    border: 1px solid #791CB5;
    background-color: #fff;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 0.875rem auto;
    margin-top: -1.25rem;
    transition: all 0.5s;
}

.xz_index .gg-lb .slick-prev {
    display: none !important;
}

.xz_index .gg-lb .slick-next {
    background-image: url(../images/xn/gg-lbnext.png);
}

.xz_index .section2 {
    background: url(../images/xn/s2-bbg.png) no-repeat left 15%;
    background-size: 28.125% auto;
    position: relative;
    z-index: 1;
}

.xz_index .section2 .k {
    padding: 3.75rem 0 7.125rem 0;
    background: url(../images/xn/s2-bg.png) no-repeat right bottom;
    background-size: 32.7% auto;
}

.xz_index .section2 .s2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.xz_index .section2 .s2 .tx {
    width: 52.85%;
}

.xz_index .section2 .s2 .tx .s2-yh {
    display: block;
    width: 3.8125rem;
}

.xz_index .section2 .s2 .tx h3 {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 2.25rem;
    text-align: justify;
    color: #791CB5;
    margin-top: 2.1875rem;
}

.xz_index .section2 .s2 .tx p {
    font-size: 1.125rem;
    line-height: 2.25rem;
    text-align: justify;
    margin-top: 1.25rem;
}

.xz_index .section2 .s2 .tx p ins:hover {
    color: #791CB5;
}

.xz_index .section2 .s2 .jdt {
    width: 42.85%;
    margin-top: 5rem;
}

.xz_index .section2 .s2 .jdt ul li a {
    display: block;
}

.xz_index .section2 .s2 .jdt ul li a .pic {
    padding-top: 65%;
    padding-top: 24.375rem;
    border-radius: 0.9375rem;
}


.xz_index .section2 .s2 .jdt .slick-prev,
.xz_index .section2 .s2 .jdt .slick-next {
    top: auto;
    transform: none;
    bottom: 0;
    width: 3.125rem;
    height: 3.125rem;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1.25rem auto;
    transition: all 0.5s;
}

.xz_index .section2 .s2 .jdt .slick-prev {
    left: auto;
    right: 3.125rem;
    border-radius: 0.9375rem 0 0 0;
    background-image: url(../images/xn/jdt-prev.png);
}

.xz_index .section2 .s2 .jdt .slick-next {
    border-radius: 0 0 0.9375rem 0;
    background-image: url(../images/xn/jdt-next.png);
}

.xz_index .gg-lb5 {
    border-top: 1px solid #DBDBDB;
    padding-top: 2.5rem;
}

.xz_index .gg-lb5 ul li a {
    position: relative;
    z-index: 1;
    margin: 0 1.25rem;
}

.xz_index .gg-lb5 ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -1.25rem;
    height: 3.75rem;
    border-left: 1px solid #DBDBDB;
    z-index: -1;
}

.xz_index .gg-lb5 ul li.slick-current a::before {
    content: none;
}

.xz_index .gg-lb5 ul li a .picbox {
    box-shadow: none;
    padding: 0;
    height: 5.5rem;
}

.xz_index .gg-lb5 ul li a .picbox img {
    transition: all 0.5s;
}

.xz_index .gg-lb5 .slick-prev,
.xz_index .gg-lb5 .slick-next {
    margin-top: 0;
}

.xz_index .s2-b {
    margin-top: 6.875rem;
    position: relative;
}

.xz_index .s2-b .xz-title {
    position: absolute;
    left: 75.14%;
    top: 0.875rem;
}

.xz_index .s2-b .con {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.xz_index .s2-b .con .l {
    width: 34.28%;
}

.xz_index .s2-b .con .c {
    width: 34.28%;
}

.xz_index .s2-b .con .r {
    width: 28.57%;
}

.xz_index .s2-b .con ul li a {
    display: block;
    position: relative;
    border-radius: 0.625rem;
    overflow: hidden;
}

.xz_index .s2-b .con ul li a::after {
    content: '';
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 1rem;
    height: 0.75rem;
    background: url(../images/xn/jdt-nexton.png) no-repeat center;
    background-size: 100% 100%;
    transition: all 0.5s;
}

.xz_index .s2-b .con .l {
    margin-top: 3.75rem;
}

.xz_index .s2-b .con .l ul li:first-child {
    width: 58.33%;
    margin-left: 41.67%;
    margin-bottom: 1.25rem;
}

.xz_index .s2-b .con .c ul:nth-child(2) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 1.25rem;
}

.xz_index .s2-b .con .c ul:nth-child(2) li:first-child {
    width: 43.75%;
}

.xz_index .s2-b .con .c ul:nth-child(2) li:nth-child(2) {
    width: 52.08%;
}

.xz_index .s2-b .con .r {
    margin-top: 10.625rem;
}

.xz_index .s2-b .con .r ul li:nth-child(2) {
    width: 52.5%;
    margin-top: 1.25rem;
}

.xz_index .s2-b .con ul li .tx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 1.25rem;
}

.xz_index .s2-b .con ul li .tit {}

.xz_index .s2-b .con ul li .tit h3 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 3.125rem;
    letter-spacing: normal;
    color: #FFFFFF;
}

.xz_index .s2-b .con ul li.li1 .tit h3,
.xz_index .s2-b .con ul li.li3 .tit h3 {
    font-size: 1.75rem;
}

.xz_index .s2-b .con ul li .tit p {
    font-family: sys-r;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5rem;
    text-transform: capitalize;
    letter-spacing: normal;
    color: #FFFFFF;
}

.xz_index .s2-b .con ul li.li1 .pic {
    padding-top: 121.42%;
}

.xz_index .s2-b .con ul li.li2 .pic {
    padding-top: 62.5%;
}

.xz_index .s2-b .con ul li.li3 .pic {
    padding-top: 104.16%;
}

.xz_index .s2-b .con ul li.li4 .pic {
    padding-top: 80.95%;
}

.xz_index .s2-b .con ul li.li5 .pic {
    padding-top: 104%;
}

.xz_index .s2-b .con ul li.li6 .pic {
    padding-top: 65%;
}

.xz_index .s2-b .con ul li.li7 .pic {
    padding-top: 80.95%;
}

.xz_index .s2-b .con ul li .icon {
    text-align: center;
}

.xz_index .s2-b .con ul li .icon img {
    max-width: 5rem;
}

.xz_index .s2-b .con ul li.li1 .icon {
    margin-top: 4.75rem;
}

.xz_index .s2-b .con ul li.li2 .icon {
    margin-top: 3.5rem;
}

.xz_index .s2-b .con ul li.li5 .icon {
    margin-top: 2.25rem;
}

.xz_index .s2-b .con ul li.li6 .icon {
    margin-top: 1.625rem;
}

.xz_index .section3 {
    padding: 4rem 0 6.875rem 0;
    background: url(../images/xn/section3-bg.png) no-repeat center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.xz_index .s3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.xz_index .s3-l {
    width: 66.92%;
}

.xz_index .s3-l .con {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.xz_index .s3-l .con .l {
    width: 49.51%;
}

.xz_index .s3-l .con .l ul li a {
    display: block;
    border-radius: 0.625rem;
    background: #FFFFFF;
    overflow: hidden;
}

.xz_index .s3-l .con .l ul li a .pic {
    padding-top: 62.5%;
    padding-top: 18.125rem;
}

.xz_index .s3-l .con .l ul li a .tx {
    padding: 1.875rem 1.375rem 1.375rem 1.375rem;
    height: 17.1875rem;
}

.xz_index .s3-l .con .l ul li a .tx span {
    display: block;
    font-family: Bebas;
    font-size: 1rem;
    line-height: 1.125rem;
    position: relative;
    padding-left: 0.8125rem;
}

.xz_index .s3-l .con .l ul li a .tx span::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 0.25rem;
    height: 0.25rem;
    background: #981DEF;
}

.xz_index .s3-l .con .l ul li a .tx h3 {
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 1.875rem;
    color: #981DEF;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 0.9375rem;
}

.xz_index .s3-l .con .l ul li a .tx p {
    font-size: 0.875rem;
    line-height: 1.5rem;
    max-height: 4.5rem;
    color: #8C8C8C;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    margin-top: 0.875rem;
}

.xz_index .s3-l .con .l .swiper-but {
    position: absolute;
    right: 1.375rem;
    bottom: 1.375rem;
    z-index: 1;
    display: flex;
    align-items: center;
}

.xz_index .s3-l .con .l .swiper-button-prev,
.xz_index .s3-l .con .l .swiper-button-next {
    position: static;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    transition: all 0.3s;
}

.xz_index .s3-l .con .l .swiper-button-prev {
    background-image: url(../images/xn/s3-lprev.png);
}

.xz_index .s3-l .con .l .swiper-button-next {
    margin-left: 2rem;
    background-image: url(../images/xn/s3-lnext.png);
}

.xz_index .s3-l .con .l .swiper-button-prev:hover {
    width: 6.5rem;
    background-image: url(../images/xn/s3-lprevon.png);
}

.xz_index .s3-l .con .l .swiper-button-next:hover {
    width: 6.5rem;
    background-image: url(../images/xn/s3-lnexton.png);
}

.xz_index .s3-l .con .r {
    width: 46.95%;
}

.xz_index .s3-l .con .r ul li a {
    display: block;
    position: relative;
}

.xz_index .s3-l .con .r ul li a .pic {
    padding-top: 128.4%;
    padding-top: 35.3125rem;
    border-radius: 0.625rem;
}

.xz_index .s3-l .con .r ul li a .pic::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 58.05%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 3%, rgba(0, 0, 0, 0.5) 100%);
}

.xz_index .s3-l .con .r ul li a .tx {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    padding: 0 1.875rem 1.375rem 1.875rem;
}

.xz_index .s3-l .con .r ul li a .tx span {
    display: block;
    font-family: Bebas;
    font-size: 1rem;
    line-height: 1.125rem;
    color: #FFFFFF;
    position: relative;
    padding-left: 0.8125rem;
}

.xz_index .s3-l .con .r ul li a .tx span::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 0.25rem;
    height: 0.25rem;
    background: #DB9B6A;
}

.xz_index .s3-l .con .r ul li a .tx h3 {
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 2.125rem;
    color: #FFFFFF;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 0.625rem;
}


.xz_index .s3-r {
    width: 29.28%;
}

.xz_index .s3-r ul li+li {
    margin-top: 2.8125rem;
}

.xz_index .s3-r ul li a {
    display: block;
    padding-bottom: 2.1875rem;
    border-bottom: 1px solid #E5E5E5;
}

.xz_index .s3-r ul li a span {
    display: block;
    font-family: Bebas;
    font-size: 1rem;
    line-height: 1.125rem;
    position: relative;
    padding-left: 0.8125rem;
}

.xz_index .s3-r ul li a span::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 0.25rem;
    height: 0.25rem;
    background: #981DEF;
}

.xz_index .s3-r ul li a h3 {
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 2.875rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all 0.5s;
}

.xz_index .s3-r ul li a p {
    font-size: 0.875rem;
    line-height: 1.5rem;
    height: 3rem;
    color: #8C8C8C;
    margin-top: 0.625rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.xz_index .section4 {
    padding-top: 5.25rem;
    position: relative;
    z-index: 1;
}

.xz_index .s4-bg {
    background: url(../images/xn/s4-bg.png) no-repeat center top;
    background-size: 100% auto;
}

.xz_index .s4 .xz-title {
    display: flex;
    align-items: center;
}

.xz_index .s4 .xz-title>.l h3 {
    font-size: 1.625rem;
    font-weight: normal;
    color: #791CB5;
}

.xz_index .s4 .xz-title>.l p {
    opacity: 0;
    visibility: hidden;
}

.xz_index .s4 .xz-title>.l.on h3 {
    font-size: 2.25rem;
    font-weight: bold;
    color: #333333;
}

.xz_index .s4 .xz-title>.l.on p {
    opacity: 1;
    visibility: visible;
}

.xz_index .s4 .xz-title>.l {
    /* cursor: pointer; */
    margin-right: 3.875rem;
}

.xz_index .s4 .xz-title>.l:last-of-type {
    margin-right: 0 !important;
}

.xz_index .s4 .more>a {
    display: none;
}

.xz_index .s4 .more>a.on {
    display: block;
}

.xz_index .s4 .qh-bd {
    position: relative;
    overflow: hidden;
}

.xz_index .s4 .qh-bd>div {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    z-index: 8;
    overflow: hidden;
}

.xz_index .s4 .qh-bd>div.on {
    position: relative;
    z-index: 9;
    opacity: 1;
}

.xz_index .s4 .qh-bd .k ul li a {
    display: block;
}

.xz_index .s4 .qh-bd .k ul li a .pic {
    padding-top: 129.03%;
    border-radius: 0.9375rem;
}

.xz_index .s4 .qh-bd .k ul li a .tx {
    padding-top: 1.875rem;
}

.xz_index .s4 .qh-bd .k ul li a .tx h3 {
    display: flex;
    align-items: center;
}

.xz_index .s4 .qh-bd .k ul li a .tx h3 b {
    display: block;
    font-size: 1.5rem;
    font-weight: normal;
    margin-right: 0.625rem;
    transition: all 0.5s;
}

.xz_index .s4 .qh-bd .k ul li a .tx h3 span {
    flex: 1;
    min-width: 0;
    display: block;
    font-size: 1rem;
    color: #666666;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.xz_index .s4 .qh-bd .k ul li a .tx p {
    font-size: 1rem;
    line-height: 1.75rem;
    height: 3.5rem;
    color: #666666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    margin-top: 0.375rem;
}

.xz_index .s4 .qh-bd .k {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.xz_index .s4 .qh-bd .k ul li a {
    display: block;
}

.xz_index .s4 .qh-bd .k .l {
    width: 62.85%;
}

.xz_index .section5 {
    padding-bottom: 7.5rem;
    background: url(../images/xn/s5-bg.png) no-repeat right bottom;
    background-size: 41.66% auto;
    position: relative;
    z-index: 1;
}

.xz_index .s4 .qh-bd .k .s5-zi {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #DBDBDB;
}

.xz_index .s4 .qh-bd .k .s5-zi h3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.xz_index .s4 .qh-bd .k .s5-zi h3 b {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 2.875rem;
    margin-right: 1.25rem;
    border-bottom: 0.125rem solid #791CB5;
}

.xz_index .s4 .qh-bd .k .s5-zi h3 span {
    display: block;
    font-size: 1rem;
    color: #666666;
    margin-right: 0.875rem;
}

.xz_index .s4 .qh-bd .k .s5-zi .con {
    margin-top: 1.25rem;
}

.xz_index .s4 .qh-bd .k .s5-zi .con p {
    font-size: 1rem;
    line-height: 1.875rem;
}

.xz_index .s4 .qh-bd .k .s5-zi .con p:nth-child(2) {
    color: #666666;
    margin-top: 0.375rem;
    line-height: 1.625rem;
}

.xz_index .s4 .qh-bd .k .s5-zi .gd {
    margin-top: 1.5rem;
}

.xz_index .s4 .qh-bd .k .s5-zi .gd span {
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1.375rem;
    color: #FFFFFF;
    padding: 0.5625rem 2.5rem;
    border-radius: 0.3125rem;
    background: #791CB5;
}


.xz_index .s4 .qh-bd .k .s5-sml {
    margin-top: 6.5625rem;
    position: relative;
    z-index: 1;
}

.xz_index .s4 .qh-bd .k .s5-sml::before {
    content: '';
    position: absolute;
    bottom: -1.5625rem;
    left: 26.875rem;
    width: 18.75rem;
    height: 18.75rem;
    background: url(../images/xn/s5-q.png) no-repeat center;
    background-size: 100% auto;
    z-index: -1;
}

.xz_index .s4 .qh-bd .k .s5-sml ul li {
    padding-top: 1.375rem;
}

.xz_index .s4 .qh-bd .k .s5-sml ul li a {
    margin: 0 0.6875rem;
    border: 0.125rem solid transparent;
    border-radius: 0.3125rem;
    overflow: hidden;
    position: relative;
    top: 0;
    transition: all 0.5s;
}

.xz_index .s4 .qh-bd .k .s5-sml ul li.slick-current a {
    top: -1.25rem;
    border-color: #791CB5;
}

.xz_index .s4 .qh-bd .k .s5-sml ul li a .pic {
    padding-top: 130.13%;
    padding-top: 11.875rem;
    border-radius: 0.3125rem;
}

.xz_index .s4 .qh-bd .k .s5-sml ul li a .pic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(121, 28, 181, 0.22);
}

.xz_index .s4 .qh-bd .k .s5-sml ul li.slick-current a .pic::after {
    content: none;
}

.xz_index .s4 .qh-bd .k .s5-sml .slick-slider {
    padding: 0 1.25rem;
}


.xz_index .s4 .qh-bd .k .s5-sml .slick-prev,
.xz_index .s4 .qh-bd .k .s5-sml .slick-next {
    width: 1.25rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    transition: all 0.5s;
}

.xz_index .s4 .qh-bd .k .s5-sml .slick-prev {
    background-image: url(../images/xn/s5-prev.png);
}

.xz_index .s4 .qh-bd .k .s5-sml .slick-next {
    background-image: url(../images/xn/s5-next.png);
}

.xz_index .s4 .qh-bd .k .s5-sml .slick-prev:hover {
    background-image: url(../images/xn/s5-prevon.png);
}

.xz_index .s4 .qh-bd .k .s5-sml .slick-next:hover {
    background-image: url(../images/xn/s5-nexton.png);
}

.xz_index .s4 .qh-bd .k .s5-r {
    width: 30.71%;
}

.xz_index .s4 .qh-bd .k .s5-r ul li a .pic {
    padding-top: 34.1875rem;
    padding-top: 127.2%;
}

.xz_index .section6 {
    position: relative;
    z-index: 1;
    padding: 1.375rem 0 1.875rem 0;
    background: url(../images/xn/section6-bg.jpg) no-repeat center;
    background-size: cover;
}

.xz_index .s6 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.xz_index .s6 .tx {
    width: 47.14%;
    padding-top: 2.125rem;
}

.xz_index .s6 .tx .tit p {
    font-family: Bakbak One;
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 1.875rem;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.4;
}

.xz_index .s6 .tx .tit h3 {
    font-size: 2.25rem;
    font-weight: bold;
    line-height: 3.125rem;
    color: #FFFFFF;
    margin-top: 0.125rem;
}

.xz_index .s6 .tx .con {
    margin-top: 1.875rem;
}

.xz_index .s6 .tx .con p {
    font-size: 1rem;
    line-height: 2.125rem;
    text-align: justify;
    color: #FFFFFF;
}

.xz_index .s6 .tx .gd {
    text-align: right;
    margin-top: 2.5rem;
}

.xz_index .s6 .tx .gd a {
    display: inline-block;
    border-radius: 0.3125rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5625rem 2.25rem;
    font-size: 0.875rem;
    line-height: 1.375rem;
    color: #FFFFFF;
    transition: all 0.5s;
}

.xz_index .s6 .r {
    width: calc(50% + 7.5rem);
    margin-right: -7.5rem;
}

.xz_index .s6 .r ul {
    display: flex;
    flex-wrap: wrap;
}

.xz_index .s6 .r ul li {
    margin-right: 0.625rem;
}

.xz_index .s6 .r ul li a {
    display: block;
    width: 14.125rem;
    height: 14.125rem;
    line-height: 14.75rem;
    text-align: center;
    background: #981DEF;
    border-radius: 50%;
    font-family: Arial;
    font-size: 2.5rem;
    color: #fff;
    transition: all 0.5s;
}

.xz_index .s6 .r ul li a b {
    font-weight: normal;
    color: #FFC163;
    text-transform: capitalize;
    transition: all 0.5s;
}

.xz_index .s6 .r ul li:nth-child(4) {
    margin-left: 7.5rem;
}

.xz_index .s6 .r ul li:nth-child(3),
.xz_index .s6 .r ul li:nth-child(6) {
    margin-right: 0;
}

.xz_index .section7 {
    padding: 6.875rem 0 4.375rem 0;
    background: url(../images/xn/s7-bg.png) no-repeat right bottom;
    background-size: 38.125% auto;
    position: relative;
    z-index: 1;
}

.xz_index .s7 {
    position: relative;
}

.xz_index .s7 ul li a {
    display: block;
    padding: 1.5625rem;
    border-radius: 0.625rem;
    background: #F5F4FF;
}

.xz_index .s7 ul li a .pic {
    padding-top: 60.75%;
    border-radius: 0.625rem;
}

.xz_index .s7 ul li a .tx {
    margin-top: 2.5rem;
}

.xz_index .s7 ul li a .tx h3 {
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 2rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all 0.5s;
}

.xz_index .s7 ul li a .tx p {
    font-size: 1rem;
    line-height: 1.625rem;
    height: 3.25rem;
    text-align: justify;
    color: #666666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    margin-top: 1.125rem;
}

.xz_index .s7 ul li a .tx .gd {
    margin-top: 1.375rem;
}

.xz_index .s7 ul li a .tx .gd span {
    font-size: 0.875rem;
    line-height: 1.625rem;
    color: #791CB5;
    background: url(../images/xn/s7-jt.png) no-repeat right center;
    background-size: 1rem auto;
    padding-right: 1.25rem;
}

.xz_index .s7 .swiper-button {
    position: absolute;
    right: 9.375rem;
    top: -6rem;
    display: flex;
    align-items: center;
}

.xz_index .s7 .swiper-button .swiper-button-next,
.xz_index .s7 .swiper-button .swiper-button-prev {
    position: static;
    transform: none;
    width: 3.75rem;
    height: 3.75rem;
    border: 1px solid #791CB5;
    background-color: #fff;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1.25rem auto;
    transition: all 0.5s;
}

.xz_index .s7 .swiper-button .swiper-button-prev {
    background-image: url(../images/xn/jdt-prev.png);
}

.xz_index .s7 .swiper-button .swiper-button-next {
    margin-left: 1.25rem;
    background-image: url(../images/xn/jdt-next.png);
}

.xz_index .section8 {
    position: relative;
    z-index: 1;
    padding: 3.375rem 0 5.125rem 0;
    background: url(../images/xn/section8-bg.jpg) no-repeat center;
    background-size: cover;
}

.xz_index .s8 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.xz_index .s8 .l {
    width: 52.85%;
    margin-top: 2.6875rem;
    padding-left: 3.75rem;
    position: relative;
    z-index: 1;
}

.xz_index .s8 .l ul li a {
    display: block;
    padding-bottom: 0.9375rem;
}

.xz_index .s8 .l ul li a .pic {
    padding-top: 58.82%;
    border-radius: 0.9375rem;
}

.xz_index .s8 .l ul li a .tx {
    padding-top: 1.6875rem;
    padding-right: 4.375rem;
}

.xz_index .s8 .l ul li a .tx h3 {
    font-size: 1.5rem;
    font-weight: normal;
    color: #791CB5;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.xz_index .s8 .l ul li a .tx p {
    font-size: 1rem;
    line-height: 1.75rem;
    height: 3.5rem;
    letter-spacing: 0.04em;
    color: #666666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    margin-top: 0.9375rem;
}

.xz_index .s8 .l ul li a .tx .gd {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    width: 9.375rem;
    line-height: 2.875rem;
    border-radius: 1.8438rem;
    background: #FFFFFF;
    box-shadow: 0px 0.25rem 0.625rem 0px rgba(54, 122, 187, 0.22);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.xz_index .s8 .l ul li a .tx .gd::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: #791CB5;
    z-index: -1;
    transition: all 0.5s;
}

.xz_index .s8 .l ul li a .tx .gd b {
    display: block;
    width: 2.875rem;
    height: 2.875rem;
    text-align: center;
    line-height: 2.875rem;
    border-radius: 50%;
    background-color: #791CB5;
}

.xz_index .s8 .l ul li a .tx .gd span {
    padding-left: 1.125rem;
    font-size: 1rem;
    color: #666666;
    transition: all 0.5s;
}

.xz_index .s8 .l .swiper-pagination {
    width: 1.5rem;
    left: 0;
    top: 0;
}

.xz_index .s8 .l .swiper-pagination span {
    display: block;
    width: auto;
    height: auto;
    font-family: sys-r;
    font-size: 1.25rem;
    line-height: 1.875rem;
    color: #B4B9BD;
    opacity: 1;
    text-align: center;
    margin-top: 2.1875rem;
    background: none;
    transition: all 0.5s;
}

.xz_index .s8 .l .swiper-pagination span.swiper-pagination-bullet-active {
    color: #791CB5;
}

.xz_index .s8 .r {
    margin-left: -3.125rem;
    width: calc(47.15% + 3.125rem);
    border-radius: 0.625rem;
    background: #FFFFFF;
    box-shadow: 0px 0.25rem 1.25rem 0px rgba(0, 0, 0, 0.1);
    padding: 3.875rem 5rem 3.875rem 6.875rem;
}

.xz_index .s8 .r ul li {
    padding: 1.5625rem 2.5rem 1.5625rem 0;
    border-bottom: 1px dashed #D2D2D2;
    cursor: pointer;
}

.xz_index .s8 .r ul li h3 {
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 1.875rem;
    height: 3.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.xz_index .s8 .r ul li.show h3 {
    color: #791CB5;
}

.xz_index .section9 {
    padding: 7.75rem 0 6.9375rem 0;
    background: url(../images/xn/s9-bg.png) no-repeat left bottom;
    background-size: 36.45% auto;
}

.xz_index .section9 .w1200 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.xz_index .section9 .xz-title {
    margin-right: 3.625rem;
}

.xz_index .s9 {
    flex: 1;
    min-width: 0;
}

.xz_index .s9 ul li a {
    display: block;
    height: 22.5rem;
    background: url(../images/xn/s9-libg.png) no-repeat center top;
    background-size: 100% 100%;
    padding: 4.375rem 1.25rem 0 1.25rem;
    transition: all 0.5s;
}

.xz_index .s9 ul li h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 3.125rem;
}

.xz_index .s9 ul li .icon {
    text-align: center;
    margin-top: 2.3125rem;
}

.xz_index .s9 ul li .icon img {
    max-width: 15rem;
}

.xz_index .s9 ul li .gd {
    width: 9.375rem;
    line-height: 2.875rem;
    border-radius: 3.125rem;
    border: 1px solid rgba(121, 28, 181, 0.3);
    margin: 0 auto;
    text-align: center;
    margin-top: -4.6875rem;
    font-size: 0.875rem;
    color: #791CB5;
}

.xz_index .s9 ul li .gd img {
    width: 1rem;
    margin-left: 0.25rem;
}

.xz_index .s9 .swiper-button {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.xz_index .s9 .swiper-button-prev,
.xz_index .s9 .swiper-button-next {
    position: static;
    transform: none;
    width: 3.75rem;
    height: 3.75rem;
    border: 1px solid #791CB5;
    background-color: #fff;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1.25rem auto;
    transition: all 0.5s;
}

.xz_index .s9 .swiper-button-prev {
    background-image: url(../images/xn/jdt-prev.png);
}

.xz_index .s9 .swiper-button-next {
    margin-left: 1.25rem;
    background-image: url(../images/xn/jdt-next.png);
}

.xz_index .section10 {
    padding: 5.625rem 0;
    background: url(../images/xn/section10.jpg) no-repeat center;
    background-size: cover;
}

.xz_index .s10 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.xz_index .s10 .dz {}

.xz_index .s10 .dz h3 {
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 2.5rem;
    color: #F6F6F6;
}

.xz_index .s10 .dz .con {
    margin-top: 2.3125rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.94);
    padding: 2rem;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.xz_index .s10 .dz .con::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 1.25rem;
    border-bottom: 0.5625rem solid #fff;
    border-left: 0.625rem solid transparent;
    border-right: 0.625rem solid transparent;
}

.xz_index .s10 .dz .con div+div {
    margin-left: 1.875rem;
}

.xz_index .s10 .dz .con div p {
    font-size: 1rem;
    line-height: 1.875rem;
    position: relative;
}

.xz_index .s10 .dz .con div p+p {
    margin-top: 1.125rem;
}

.xz_index .s10 .dz .con div p img {
    width: 1.375rem;
    margin-right: 0.625rem;
}

.xz_index .s10 .dz .con div:nth-child(2) p {
    padding-left: 1.875rem;
}

.xz_index .s10 .dz .con div:nth-child(2) p::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 1.25rem;
    border-left: 1px solid #E5E5E5;
}

.xz_index .s10 .wx {
    margin-top: 5.625rem;
}

.xz_index .s10 .wx ul {
    display: flex;
    flex-wrap: wrap;
}

.xz_index .s10 .wx ul li {
    width: 6.875rem;
}

.xz_index .s10 .wx ul li+li {
    margin-left: 1.875rem;
}

.xz_index .s10 .wx ul li .picbox {
    border-radius: 0.375rem;
    background: #FFFFFF;
    padding: 0.3125rem;
}

.xz_index .s10 .wx ul li .picbox img {
    width: 100%;
}

.xz_index .s10 .wx ul li h3 {
    text-align: center;
    margin-top: 0.375rem;
    font-size: 1rem;
    line-height: 1.375rem;
    color: #F6F6F6;
}


@media screen and (min-width: 1025px) {
    .xz_index .xz-title .more a:hover {
        color: #fff;
    }

    .xz_index .xz-title .more a:hover::before {
        left: 0;
        width: 100%;
    }

    .xz_index .gg-lb ul li:hover a .picbox {
        box-shadow: 0px 0.25rem 0.625rem 0px rgba(121, 28, 181, 0.1);
    }

    .xz_index .gg-lb ul li:hover a h3 {
        color: #791CB5;
    }

    .xz_index .gg-lb .slick-prev:hover,
    .xz_index .gg-lb .slick-next:hover {
        background-color: #791CB5;
    }

    .xz_index .gg-lb .slick-next:hover {
        background-image: url(../images/xn/gg-lbnexton.png);
    }

    .xz_index .section2 .s2 .jdt .slick-prev:hover {
        background-color: #791CB5;
        background-image: url(../images/xn/jdt-prevon.png);
    }

    .xz_index .section2 .s2 .jdt .slick-next:hover {
        background-color: #791CB5;
        background-image: url(../images/xn/jdt-nexton.png);
    }

    .xz_index .gg-lb5 ul li:hover a .picbox {
        box-shadow: none;
    }

    .xz_index .gg-lb5 ul li:hover a .picbox img {
        transform: scale(1.05);
    }

    .xz_index .s2-b .con ul li:hover .icon img {
        animation: jello 1.5s linear;
    }

    .xz_index .s2-b .con ul li:hover a::after {
        right: 0.625rem;
    }

    .xz_index .s3-r ul li:hover a h3 {
        color: #981DEF;
    }

    .xz_index .s4 .qh-bd .k ul li:hover a .tx h3 b {
        color: #791CB5;
        text-decoration: underline;
    }

    .xz_index .s6 .r ul li:hover a {
        background: #FFC163;
    }

    .xz_index .s6 .r ul li:hover a b {
        color: #981DEF;
    }

    .xz_index .s6 .tx .gd a:hover {
        border: 1px solid #fff;
        background: #fff;
        color: #981DEF;
    }

    .xz_index .s7 ul li:hover a .tx h3 {
        color: #981DEF;
    }

    .xz_index .s7 .swiper-button .swiper-button-prev:hover,
    .xz_index .s9 .swiper-button .swiper-button-prev:hover {
        background-color: #791CB5;
        background-image: url(../images/xn/jdt-prevon.png);
    }

    .xz_index .s7 .swiper-button .swiper-button-next:hover,
    .xz_index .s9 .swiper-button .swiper-button-next:hover {
        background-color: #791CB5;
        background-image: url(../images/xn/jdt-nexton.png);
    }

    .xz_index .s8 .l ul li a:hover .tx .gd::before {
        width: 100%;
    }

    .xz_index .s8 .l ul li a:hover .tx .gd span {
        color: #fff;
    }

    .xz_index .s9 ul li:hover a {
        background: url(../images/xn/s9-libgon.png) no-repeat center top;
        background-size: cover;
    }

    .xz_index .s9 ul li:hover a h3 {
        color: #fff;
    }

    .xz_index .s9 ul li:hover a .gd {
        background-color: #fff;
    }
}

@media screen and (max-width: 1650px) {
    .xz_index .s6 .r ul li a {
        width: 11.25rem;
        height: 11.25rem;
        line-height: 11.25rem;
    }
}

@media screen and (max-width: 1430px) {
    .xz_index .s9 .swiper-button {
        left: 15px;
    }
}

@media screen and (max-width: 1399px) {
    .xz_index .s6 .r {
        width: calc(50% + 2.5rem);
        margin-right: -2.5rem;
    }
}

@media screen and (max-width: 1200px) {
    .leftNav {
        display: none;
    }

    .xz_index .s6 .r {
        width: 50%;
        margin-right: 0;
    }

    .xz_index .s6 .r ul {
        justify-content: center;
    }

    .xz_index .s6 .r ul li:nth-child(4) {
        margin-left: 0;
    }

    .xz_index .s6 .r ul li:nth-child(3)~li {
        margin-top: 1.25rem;
    }

}

@media screen and (max-width: 1024px) {
    .xz_index .s2-b .con ul li .tit p {
        font-size: 12px;
        line-height: 1.2;
    }

    .xz_index .s2-b .con ul li.li1 .icon {
        margin-top: 2.75rem;
    }

    .xz_index .s2-b .con ul li.li2 .icon {
        margin-top: 2.5rem;
    }

    .xz_index .s2-b .con ul li.li5 .icon {
        margin-top: 1.25rem;
    }

    .xz_index .s2-b .con ul li .icon img {
        max-width: 4rem;
    }
}

@media screen and (max-width: 920px) {
    .xz_index .section1 {
        padding-top: 1.875rem;
    }

    .xz_index .xz-title {
        margin-bottom: 1.25rem;
    }

    .xz_index .xz-title .l p {
        font-size: 1.125rem;
        line-height: 1.125rem;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .xz_index .xz-title .l h3 {
        font-size: 1.5rem;
        line-height: 1.875rem;
    }

    .xz_index .xz-title .more a {
        font-size: 1rem;
        padding: 0 1.25rem;
    }

    .xz_index .gg-lb ul li a h3 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .xz_index .s1-2 {
        margin-top: 1.875rem;
    }

    .xz_index .gg-lb {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }

    .xz_index .gg-lb .tit span {
        padding: 0 1.25rem;
        font-size: 1.125rem;
    }

    .xz_index .gg-lb .tit {
        margin-bottom: 1.25rem;
    }

    .xz_index .gg-lb .slick-prev,
    .xz_index .gg-lb .slick-next {
        width: 2.25rem;
        height: 2.25rem;
        background-size: 0.75rem auto;
    }

    .xz_index .gg-lb ul {
        padding-right: 2.8125rem;
    }

    .xz_index .gg-lb ul li a .picbox {
        height: 6.5rem;
    }

    .xz_index .section2 .k {
        padding: 1.875rem 0;
    }

    .xz_index .section2 .s2 .tx .s2-yh {
        width: 1.875rem;
    }

    .xz_index .section2 .s2 .tx {
        width: 100%;
    }

    .xz_index .section2 .s2 .jdt {
        width: 100%;
        margin-top: 1.25rem;
    }

    .xz_index .section2 .s2 .tx h3 {
        font-size: 1.125rem;
        line-height: 1.875rem;
        margin-top: 1.25rem;
    }

    .xz_index .section2 .s2 .jdt ul li a .pic {
        padding-top: 65%;
    }

    .xz_index .gg-lb5 ul li a .picbox {
        height: 4.5rem;
    }

    .xz_index .s2-b {
        margin-top: 1.875rem;
    }

    .xz_index .s2-b .con .l {
        width: 100%;
        margin-top: 0;
    }

    .xz_index .s2-b .con .l ul li:first-child {
        width: 100%;
        margin-left: 0;
        margin-bottom: 10px;
    }

    .xz_index .s2-b .con ul li.li1 .tit h3,
    .xz_index .s2-b .con ul li.li3 .tit h3 {
        font-size: 1.5rem;
        line-height: 1.5;
    }

    .xz_index .s2-b .con ul li.li1 .icon,
    .xz_index .s2-b .con ul li.li2 .icon {
        margin-top: 1.25rem;
    }

    .xz_index .s2-b .con ul li.li1 .pic {
        padding-top: 22.42%;
        min-height: 160px;
    }

    .xz_index .s2-b .con ul li.li2 .pic {
        padding-top: 22.5%;
        min-height: 160px;
    }

    .xz_index .s2-b .con .c {
        width: 100%;
        margin-top: 10px;
    }

    .xz_index .s2-b .con ul li.li3 .pic {
        padding-top: 84.16%;
    }

    .xz_index .s2-b .con .c ul:nth-child(2) {
        margin-top: 10px;
    }

    .xz_index .s2-b .con .c ul:nth-child(2) li:first-child {
        width: 100%;
    }

    .xz_index .s2-b .con ul li.li4 .pic {
        padding-top: 20.95%;
        min-height: 160px;
    }

    .xz_index .s2-b .con .c ul:nth-child(2) li:nth-child(2) {
        width: 100%;
        margin-top: 10px;
    }

    .xz_index .s2-b .con ul li.li5 .pic {
        padding-top: 24%;
        min-height: 160px;
    }

    .xz_index .s2-b .con .r {
        width: 100%;
        margin-top: 10px;
    }

    .xz_index .s2-b .con ul li.li6 .icon {
        margin-top: 1.25rem;
    }

    .xz_index .s2-b .con ul li.li6 .pic {
        padding-top: 24%;
        min-height: 160px;
    }

    .xz_index .s2-b .con .r ul li:nth-child(2) {
        width: 100%;
        margin-top: 10px;
    }

    .xz_index .s2-b .con ul li.li7 .pic {
        padding-top: 20.95%;
        min-height: 160px;
    }

    .xz_index .section3 {
        padding: 0 0 1.875rem 0;
    }

    .xz_index .s3-l {
        width: 100%;
    }

    .xz_index .s3-l .con .l {
        width: 100%;
    }

    .xz_index .s3-l .con .l ul li a .pic {
        padding-top: 62.5%;
    }

    .xz_index .s3-l .con .l ul li a .tx {
        padding: 1.25rem 1.25rem 3.75rem;
        height: auto;
    }

    .xz_index .s3-l .con .r {
        width: 100%;
        margin-top: 10px;
    }

    .xz_index .s3-l .con .r ul li a .pic {
        padding-top: 128.4%;
    }

    .xz_index .s3-l .con .l ul li a .tx p {
        font-size: 1rem;
    }

    .xz_index .s3-r {
        width: 100%;
        margin-top: 1.875rem;
    }

    .xz_index .s3-r ul li a {
        padding-bottom: 1.25rem;
    }

    .xz_index .s3-r ul li+li {
        margin-top: 1.25rem;
    }

    .xz_index .s3-r ul li a p {
        font-size: 1rem;
    }

    .xz_index .section4 {
        padding-top: 1.875rem;
    }

    .xz_index .s4 .xz-title>.l {
        margin-right: 1.5rem;
        min-width: 6rem;
    }

    .xz_index .s4 .xz-title>.l h3 {
        font-size: 1.25rem;
    }

    .xz_index .s4 .xz-title>.l.on h3 {
        font-size: 1.5rem;
    }

    .xz_index .s4 .qh-bd .k ul li a .pic {
        padding-top: 129.03%;
    }

    .xz_index .s4 .qh-bd .k .l {
        width: 100%;
    }

    .xz_index .s4 .qh-bd .k .s5-sml {
        margin-top: 1.25rem;
    }

    .xz_index .s4 .qh-bd .k .s5-r {
        width: 100%;
        display: none;
    }

    .xz_index .section5 {
        padding-bottom: 1.875rem;
    }

    .xz_index .s6 .tx {
        width: 100%;
        padding-top: 0;
    }

    .xz_index .s6 .tx .tit p {
        font-size: 12px;
    }

    .xz_index .s6 .tx .tit h3 {
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1.875rem;
    }

    .xz_index .s6 .tx .gd {
        margin-top: 1.25rem;
    }

    .xz_index .s6 .r {
        width: 100%;
        margin-top: 1.5rem;
    }

    .xz_index .s6 .r ul li {
        width: 33.33%;
        margin-right: 0;
    }

    .xz_index .s6 .r ul li a {
        width: 8.125rem;
        height: 8.125rem;
        line-height: 8.125rem;
        margin: 0 auto;
        font-size: 1.875rem;
    }

    .xz_index .section7 {
        padding: 1.875rem 0;
    }

    .xz_index .s7 ul li a {
        padding: 0.9375rem;
    }

    .xz_index .s7 ul li a .tx {
        margin-top: 1.25rem;
    }

    .xz_index .s7 .swiper-button {
        position: static;
        display: flex;
        justify-content: center;
        height: 2.25rem;
        margin-top: 1.875rem;
    }

    .xz_index .s7 .swiper-button .swiper-button-next,
    .xz_index .s7 .swiper-button .swiper-button-prev {
        width: 2.25rem;
        height: 2.25rem;
        background-size: 0.9375rem auto;
        margin-top: 0;
    }

    .xz_index .section8 {
        padding: 1.875rem 0;
    }

    .xz_index .s8 .l {
        width: 100%;
    }

    .xz_index .s8 .r {
        width: 100%;
        display: none;
    }

    .xz_index .s8 .l ul li a .tx {
        padding-top: 1.25rem;
        padding-right: 0;
    }

    .xz_index .s8 .l ul li a .tx h3 {
        font-size: 1.25rem;
    }

    .xz_index .section9 {
        padding: 1.875rem 0;
    }

    .xz_index .section9 .xz-title {
        width: 100%;
        margin-right: 0;
    }

    .xz_index .s9 {
        flex: none;
        width: 100%;
    }

    .xz_index .s9 .swiper-button {
        left: auto;
        right: 15px;
        top: 2.25rem;
        bottom: auto;
    }

    .xz_index .s9 .swiper-button-prev,
    .xz_index .s9 .swiper-button-next {
        width: 2.25rem;
        height: 2.25rem;
        background-size: 0.9375rem auto;
    }

    .xz_index .s9 ul li h3 {
        font-size: 1.375rem;
    }

    .xz_index .s9 ul li a {
        height: auto;
        padding: 3.125rem 1.25rem 1.25rem 1.25rem;
    }

    .xz_index .section10 {
        padding: 1.875rem 0;
    }

    .xz_index .s10 .dz {
        width: 100%;
    }

    .xz_index .s10 .dz h3 {
        font-size: 1.5rem;
        line-height: 1.875rem;
    }

    .xz_index .s10 .dz .con {
        margin-top: 1.5rem;
        padding: 1.25rem;
        height: auto;
    }

    .xz_index .s10 .wx {
        margin: 0 auto;
        margin-top: 1.5rem;
    }

    .xz_index .s10 .dz .con div {
        width: 100%;
    }

    .xz_index .s10 .dz .con div+div {
        margin-left: 0;
        margin-top: 0.9375rem;
    }

    .xz_index .s10 .dz .con div:nth-child(2) p {
        padding-left: 0;
    }

    .xz_index .s10 .dz .con div:nth-child(2) p::before {
        content: none;
    }

    .xz_index .s10 .dz .con div p+p {
        margin-top: 0.9375rem;
    }
}