.main {
    position: relative;
    
    /* background: RGBA(255, 254, 255, 1); */
}
.loadingAnime{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loadingAnime.active{
    display: none;
}
.loadingAnimeLeft,
.loadingAnimeRight{
    position: absolute;
    width: 50%;
    height: 100%;
    transition: all .6s;
    background: #fbebf6;
}
.loadingAnimeLeft{
    left: 0;
    animation: loadingAnime3 1s 1.6s cubic-bezier(.9,-0.02,.83,.7) both;
    /* animation: loadingAnime3 1s 1.6s cubic-bezier(.75,-0.01,.99,.26) both; */
    /* animation: loadingAnime3 1s 1.6s cubic-bezier(.99,-0.01,.77,.52) both; */
}
.loadingAnimeRight{
    right: 0;
    animation: loadingAnime4 1s 1.6s cubic-bezier(.9,-0.02,.83,.7) both;
}
.loadingAnimeRight::after,
.loadingAnimeRight::before,
.loadingAnimeLeft::after,
.loadingAnimeLeft::before{
    position: absolute;
    top: 0;
    content: "";
    height: 100%;
    width: 4px;
    background-color: #dc4da9;
    transition: all 2s .4s;
}
.loadingAnimeRight::after{
    left: 0;
    width: 1px;
    animation: loadingAnime1 1s .5s both;
}
.loadingAnimeLeft::after{
    right: 0;
    width: 1px;
    animation: loadingAnime1 1s .5s both;
}
.loadingAnimeLeft::before{
    left: 14%;
    animation: loadingAnime 1s .5s both;
}
.loadingAnimeRight::before{
    right: 14%;
    animation: loadingAnime1 1s .5s both;
}
@keyframes loadingAnime{
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}
@keyframes loadingAnime1{
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}
@keyframes loadingAnime3{
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes loadingAnime4{
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}
.loadingAnime .icon{
    position: relative;
    z-index: 3;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid  #dc4da9; */
    background: #fbebf6;
    animation: opacityAnime .5s 1.1s both;
}
.loadingAnime .icon svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* 从上方顶点开始 */
    z-index: 4;
}

.loadingAnime .icon svg circle {
    fill: none;
    stroke: #dc4da9;
    stroke-width: 2;
    stroke-linecap: round;
    /* 周长计算：2 * π * r = 2 * 3.14159 * 59 ≈ 371 */
    stroke-dasharray: 371;
    stroke-dashoffset: 0;
    animation: circleStroke .7s .5s both;
}

/* 逆时针从100%到0的动画 */
@keyframes circleStroke {
    0% {
        stroke-dashoffset: 0; /* 100%显示 */
    }
    100% {
        stroke-dashoffset: 371; /* 0%显示（逆时针） */
    }
}
@keyframes opacityAnime {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/* 备选方案：使用border实现的效果 */
.loadingAnime .icon.circle-border {
    border: none;
    background: #fbebf6;
}

.loadingAnime .icon.circle-border::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #dc4da9;
    border-right-color: #dc4da9;
    border-bottom-color: #dc4da9;
    border-left-color: transparent;
    animation: circleBorder 2s linear infinite;
}

@keyframes circleBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg); /* 逆时针旋转 */
    }
}

/* 渐变圆周动画 */
.loadingAnime .icon.gradient::before {
    background: conic-gradient(from 0deg, #dc4da9 0deg, #dc4da9 360deg, transparent 360deg);
    mask: radial-gradient(circle, transparent 58px, black 58px, black 60px, transparent 60px);
    -webkit-mask: radial-gradient(circle, transparent 58px, black 58px, black 60px, transparent 60px);
    animation: circleGradient 2s ease-in-out infinite;
}

@keyframes circleGradient {
    0% {
        transform: rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: rotate(-360deg);
        opacity: 0;
    }
}
.banner{
    position: relative;
    /* mask-image: url(../img/ziyuan2.svg), url(../img/gesang-flower-section-2.png);
    mask-position: center, center;
    mask-repeat: no-repeat, no-repeat;
    transition: mask-size 1s;
    animation: loadingAnimePc 2.5s .5s both; */
    overflow: hidden;
}
.banner .btn{
    position:absolute;
    top: 50%;
    transform: translate(-50%);
    cursor: pointer;
    z-index: 3;
    color: #fff;
}
.banner .btn.btn-prev{
    left: 3%;
}
.banner .btn.btn-next{
    right: 3%;
}
.banner .btn .iconfont{
    font-size: 22px;
}
/* .banner.active::before{
    position: fixed;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    
    z-index: 2;
} */
@keyframes loadingAnimePc {
    0% {
        mask-size: 0vw 0vw, 0vw 0vw;
        animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1)
    }

    50% {
        mask-size: 30.83334vw 30.83334vw, 0vw 0vw
    }

    100% {
        mask-size: 100.5vw 100.5vw, 156.25vw 156.25vw
    }
}

.banner .swiper-slide img,
.banner .swiper-slide video {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.about-section {
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.about-section .bg {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 61%;
}

.about-section .container {
    position: relative;

}

.about-section .container .swiper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.about-section .swiper-slide {
    width: 45.74%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    transition: all .6s;
}

.about-section .swiper-slide:not(:last-child) {
    margin-right: .859%;
}

.about-section .swiper-slide.active {
    width: 61%;
}

.about-section .swiper-slide .img {
    transform: skewX(-9deg);
    transform-origin: right top;
    height: 100%;
    border-radius: 0 20px 20px 0;
}

.about-section .swiper-slide .img img {
    width: auto;
    height: 100%;
    display: block;
}

.about-section .swiper-slide:nth-child(2) {
    margin-left: -7.5%;
}

.about-section .swiper-slide:nth-child(2) .slide-box::before,
.about-section .swiper-slide:nth-child(2) .img {
    transform-origin: left bottom;
    border-radius: 20px 0 0 20px;
}

.about-section .swiper-slide .slide-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 130px 140px 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.about-section .swiper-slide .slide-box .slide-box-t{
    position:relative;
    z-index:3
}
.about-section .swiper-slide .slide-box::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, RGBA(226, 64, 169, .3), RGBA(226, 64, 169, .6));
    transform: skewX(-9deg);
    transform-origin: right top;
    border-radius: 0 20px 20px 0;
    opacity: 0;
    transition: all .6s;
}

.about-section .swiper-slide.active .slide-box::before {
    opacity: 1;
}

.about-section .swiper-slide:nth-child(2) .slide-box {
    padding-left: 180px;
    padding-right: 100px;
}

.about-section .swiper-slide .text-title {
    /* font-family: SweiSpringCJKtc-Bold; */
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    text-shadow: 4px 4px 8px rgba(214, 37, 152, 1);
}

.about-section .swiper-slide .text-des {
    /* font-family: SweiSpringCJKtc-ExtraLight; */
    font-weight: 300;
    color: #fff;
    line-height: 1.33;
    margin-top: 1em;
    /* color: #000; */
    text-shadow: 4px 4px 8px rgba(214, 37, 152, 1);
    font-weight: bold;
}

.about-section .slide-box-b {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .6s;
    transform: translateY(30px);
}

.about-section .swiper-slide.active .slide-box-b {
    opacity: 1;
    visibility: visible;
    pointer-events: inherit;
    transform: translateY(0);
    transition: all .6s .4s;
}

.about-section .swiper-slide .text {
    /* font-family: SourceHanSansSC; */
    font-weight: 300;
    font-size: 24px;
    color: #FEF9FC;
    line-height: 40px;
}

.news-section {
    text-align: center;
    padding-bottom: 175px;
    overflow: hidden;
}

.advance-section .title,
.news-section .title {
    /* font-family: SweiSpringCJKtc-Bold; */
    font-weight: bold;
    color: #D62598;

}

.news-section .news-content {
    margin-top: 104px;
}

.news-section .news-content .swiper {
    overflow: visible;
}

.news-section .news-content .swiper-slide {
    width: 330px;
}

.news-section .news-content .swiper-slide a {
    display: block;
    background: #FEF8FB;
    border-radius: 10px;
    padding: 20px 20px 23px;
    transition: all .6s;
    color: #222222;
}

.news-section .news-content .swiper-slide-active a,
.news-section .news-content .swiper-slide:hover a {
    transform: translateY(-30px);
    color: #fff;
    background: #D62598;
    box-shadow: 5px 9px 30px 0px rgba(214, 37, 152, 0.3);
}

.news-section .news-content .swiper-slide .picCover {
    padding-top: 100%;
}

.news-section .news-content .swiper-slide .pic {
    border-radius: 5px;
}

.news-section .news-content .swiper-slide .text-box {
    padding-top: 26px;
}

.news-section .news-content .swiper-slide .text-title {
    /* font-family: SourceHanSerifCN-Bold; */
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-section .news-content .swiper-slide .icon {
    margin: 37px auto 16px;
}

.news-section .news-content .swiper-slide .icon img {
    display: block;
    margin: 0 auto;
}

.news-section .news-content .swiper-slide .date {
    /* font-family: SourceHanSerifCN-Bold; */
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
}

.news-section .news-content .swiper-slide-active .icon img,
.news-section .news-content .swiper-slide:hover .icon img {
    filter: brightness(0) invert(1);
}

.news-section .news-content .btns {
    margin-top: 61px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.news-section .news-content .btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid #DEDEDE;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(222, 222, 222, 1);
    cursor: pointer;
    transition: all .6s;
}

.news-section .news-content .btn:hover {
    background: #D62598;
    box-shadow: 5px 9px 30px 0px rgba(214, 37, 152, 0.3);
    color: #fff;
    border-color: rgba(255, 255, 255, 1);
}

.news-section .news-content .btn .iconfont {
    font-size: 26px;
}

.art-care-section {
    position: relative;
    background: linear-gradient(165deg, #F18EE2, #D0288A);
    padding: 160px 0 190px;
    text-align: center;

    /* font-family: SourceHanSansSC-Light; */
    font-weight: 300;
    color: #FFFFFF;
    line-height: 1.33;
}

.art-care-section .content1400 {
    position: relative;
    z-index: 3;
}

.art-care-section .title,
.art-care-section .des {
    letter-spacing: .2em;
}

.art-care-section .title {
    margin-top: 10px;
}

.art-care-section .icon {
    position: absolute;
}

.art-care-section .icon img {
    display: block;
    width: 100%;
}

.art-care-section .icon1 {
    left: 10.15%;
    top: 36.04%;
}

.art-care-section .icon2 {
    right: 20.31%;
    bottom: 4.01%;
}

.advance-section {
    background: linear-gradient(-30deg, #E13BA7, #FFFFFF);
    border-radius: 20px;
    padding: 140px 0;
    overflow: hidden;
}

.advance-section .title {
    position: relative;
    text-align: center;
    z-index: 3;
}

.advance-section .list {
    position: relative;
    margin-top: 91px;
    z-index: 2;
}

.advance-section .list .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.advance-section .list .bg img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    transform: translateY(-60%);
}

.advance-section .list .item {
    position: relative;
    z-index: 2;
    perspective: 131px;
}

.advance-section .list .item-box {
    position: relative;
    top: 0;
    padding: 50px 70px 50px 100px;
    background-color: #fff;
    border-radius: 20px;
    min-height: 680px;
    display: flex;
    align-items: center;
    filter: brightness(1);
    justify-content: space-between;
}

.advance-section .list .item:not(:last-child) {
    margin-bottom: 40px;
}

.advance-section .list .item-l {
    width: 50.62%;
    background-image: url(../img/advance-section-2.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 380px auto;
}

.advance-section .list .number {
    /* font-family: SweiSpringCJKtc-Bold; */
    font-weight: bold;
    color: rgba(214, 37, 152, 0);
    line-height: 1;
    text-stroke: 2px #D52597;
    font-style: italic;
    -webkit-text-stroke: 2px #D52597;
}

.advance-section .list .text-title {
    font-weight: 400;
    color: #000000;
    line-height: 1.25;
    margin-top: .75em;
}

.advance-section .list .text-des {
    /* font-family: SourceHanSansSC-Light; */
    font-weight: 300;
    color: rgba(0, 0, 0, 1);
    line-height: 1.33;
    margin-top: 5px;
}

.advance-section .list .text-des span {
    color: #D62598;
}

.advance-section .list .text {
    /* font-family: SourceHanSansSC-Light; */
    font-weight: 300;
    font-size: 24px;
    color: #222222;
    line-height: 1.5;
    margin-top: 40px;
    min-height: 108px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.advance-section .list .commonMore {
    margin-top: 34px;
}

.advance-section .list .item-r {
    width: 46.15%;
}

.advance-section .list .item-r img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.advance-section .slogan-list {
    margin-top: 100px;
    display: flex;
    /* font-family: SweiSpringCJKtc-Bold; */
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    gap: 10vw;
    transform: translateX(143px);
}

.advance-section .slogan-item {
    display: flex;
    align-items: center;
    gap: .36em;
}

.intro-section {
    position: relative;
    padding: 170px 0 215px;
    text-align: center;
    overflow: hidden;
}

.intro-section>.icon {
    position: absolute;
}

.intro-section>.icon img {
    display: block;
    width: 100%;
    transform: scale(0);
    /* 初始缩放为0，准备绽放效果 */
}

.intro-section .icon1 {
    width: 357px;
    left: 1.66%;
    top: 34.72%;
}

.intro-section .icon2 {
    width: 244px;
    top: 14.17%;
    right: 1.5%;
}

.intro-section .content1320 {
    position: relative;
    z-index: 3;
}

.intro-section .text {
    position: relative;
    /* font-family: SourceHanSansSC-Light; */
    font-weight: 300;
    color: #D62598;
    text-align: center;
    line-height: 1.66;
    z-index: 3;
}

.intro-section .text img {
    display: inline-block;
    vertical-align: text-bottom;
    animation: rotate 20s linear infinite;
}

.intro-section .pic {
    position: absolute;
    right: 0;
    bottom: -52px;
    width: 233px;
}

.intro-section .pic img {
    display: block;
    width: 100%;
}

.intro-section .commonMore {
    position: relative;
    margin-top: 30px;
    z-index: 3;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width:1440px) {
    .about-section .swiper-slide .slide-box {
        padding: 100px 60px;
    }

    .about-section .swiper-slide:nth-child(2) .slide-box {
        padding-left: 120px;
        padding-right: 60px;
    }
}

@media (max-width:1280px) {
    .about-section .swiper-slide .text {
        font-size: 22px;
        line-height: 1.66;
    }

    .about-section .swiper-slide .commonMore {
        margin-top: 30px;
    }

    .advance-section .list .item-box {
        padding: 50px 70px;
    }
}

@media (max-width:1199px) {
    .advance-section .list .item-box {
        min-height: 0;
        padding: 50px;
    }

    .advance-section .list .text {
        font-size: 22px;
        margin-top: 20px;
        min-height: 0;
        display: block;
    }

    .art-care-section,
    .intro-section,
    .advance-section {
        padding: 80px 0;
    }

    .news-section {
        padding-bottom: 80px;
    }

    .advance-section .slogan-list,
    .advance-section .list {
        margin-top: 50px;
    }

    .news-section .news-content {
        margin-top: 80px;
    }

    .about-section .swiper-slide .text {
        font-size: 20px;
    }

    .about-section .swiper-slide .slide-box {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .banner .swiper-slide img,
    .banner .swiper-slide video {
        height: auto;
    }

    .advance-section .slogan-item img {
        width: 86px;
    }

    .intro-section .icon2 {
        width: 20%;
        right: -6.8%;
    }

    .intro-section .pic {
        width: 16%;
    }

    .intro-section .icon1 {
        width: 20%;
        left: -9.4%;
    }

    .intro-section .text img {
        width: 60px;
    }

    .news-section .news-content .btns {
        margin-top: 45px;
    }

    .news-section .news-content .btn {
        width: 60px;
        height: 60px;
    }
}

@media (max-width:1024px) {
    .news-section .news-content .btns {
        margin-top: 40px;
    }

    .news-section .news-content .btn {
        width: 50px;
        height: 50px;
    }

    .advance-section .slogan-item img {
        width: 68px;
    }

    .advance-section .list .item-box {
        padding: 40px;
    }

    .advance-section .list .text {
        font-size: 20px;
    }

    .art-care-section,
    .intro-section,
    .advance-section {
        padding: 70px 0;
    }

    .news-section {
        padding-bottom: 70px;
    }

    .advance-section .slogan-list,
    .advance-section .list {
        margin-top: 45px;
    }

    .news-section .news-content {
        margin-top: 70px;
    }

    .about-section .swiper-slide .text {
        display: none;
    }

    .about-section .slide-box-b {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .about-section .swiper-slide .slide-box {
        padding-left: 40px;
    }

    .about-section .swiper-slide:nth-child(2) .slide-box {
        padding-left: 100px;
        padding-right: 40px;
    }
}

@media (max-width:768px) {
    .advance-section .list .number{
        /* font-weight: 400; */
        -webkit-text-stroke-width: 1px;
    }
    .news-section .news-content .btns {
        margin-top: 30px;
    }

    .intro-section .text img {
        width: 50px;
    }

    .intro-section .text {
        font-size: 24px;
    }

    .intro-section .pic {
        bottom: 0;
    }

    .advance-section .slogan-item img {
        width: 49px;
    }

    .advance-section .list .item-box {
        padding: 30px;
    }

    .advance-section .list .text {
        font-size: 18px;
        margin-top: 13px;
    }

    .advance-section .list .commonMore {
        margin-top: 20px;
    }

    .advance-section .list .text-des {
        font-size: 22px;
    }

    .advance-section .list .item-box {
        flex-direction: column;
        align-items: center;
    }

    .advance-section .list .item-l {
        width: 100%;
    }

    .advance-section .list .item-r {
        width: 100%;
        margin-top: 30px;
    }

    .art-care-section,
    .intro-section,
    .advance-section {
        padding: 60px 0;
    }

    .news-section {
        padding-bottom: 60px;
    }

    .advance-section .slogan-list,
    .advance-section .list {
        margin-top: 30px;
    }

    .news-section .news-content {
        margin-top: 60px;
    }

    .about-section .swiper-wrapper {
        flex-direction: column;
    }

    .about-section .container .swiper {
        position: relative;
    }

    .about-section .bg {
        display: none;
    }

    .about-section .swiper-slide.active,
    .about-section .swiper-slide {
        width: 100%;
    }

    .about-section .swiper-slide:nth-child(2) .slide-box::before,
    .about-section .swiper-slide:nth-child(2) .img,
    .about-section .swiper-slide .slide-box::before,
    .about-section .swiper-slide .img {
        transform: none;
    }
    .about-section .swiper-slide .slide-box::before{
        opacity:1;
    }
    .about-section .swiper-slide .img img {
        width: 100%;
        min-height: 413px;
        object-fit: cover;
    }

    .about-section .swiper-slide:nth-child(2) {
        margin-left: 0;
        margin-top: 20px;
    }

    .about-section .swiper-slide .text {
        display: block;
    }

    .about-section .swiper-slide:nth-child(2) .slide-box,
    .about-section .swiper-slide .slide-box {
        padding: 60px 40px;
    }
    .about-section .swiper-slide .img{
        position:absolute;
        left:0;
        width:100%;
        top:0;
        
    }
    .about-section .swiper-slide .text-des{
        margin-top:.4em;
    }
    .about-section .swiper-slide .slide-box{
        position:relative;
        gap: 25px;
    }
    .about-section .swiper-slide .text {
        font-size: 18px;
    }

    .advance-section .list .item-l {
        background-size: 200px auto;
    }

    .news-section .news-content .swiper-slide .text-title {
        font-size: 22px;
    }

    .news-section .news-content .swiper-slide .icon {
        margin-top: 26px;
    }

    .art-care-section .icon2 {
        right: 8%;
        width: 20%;
    }

    .art-care-section .icon1 {
        left: 5%;
        top: 10%;
        width: 14%;
    }
}

@media (max-width: 500px) {
    .about-section .swiper-slide .slide-box{
        /* position:relative; */
        gap: 10px;
    }
    .art-care-section .title {
        font-size: 20px;
    }

    .art-care-section .des {
        font-size: 18px;
    }

    .news-section .news-content .swiper-slide-active a,
    .news-section .news-content .swiper-slide:hover a {
        transform: translateY(-15px);
    }

    .news-section .news-content .btn .iconfont {
        font-size: 20px;
    }

    .news-section .news-content .btn {
        width: 42px;
        height: 42px;
    }

    .news-section .news-content .swiper-slide .date {
        font-size: 16px;
    }

    .news-section .news-content .swiper-slide .icon {
        margin-top: 20px;
    }

    .news-section .news-content .swiper-slide .text-title {
        font-size: 20px;
    }

    .news-section .news-content .btns {
        margin-top: 25px;
    }

    .intro-section .commonMore {
        margin-top: 25px;
    }

    .intro-section .text {
        font-size: 20px;
    }

    .intro-section .text img {
        width: 40px;
    }

    .advance-section .slogan-list {
        gap: 0 6vw;
    }

    .advance-section .slogan-item img {
        width: 31px;
    }

    .advance-section .list .text-des {
        font-size: 20px;
    }

    .advance-section .list .text {
        font-size: 16px;
    }

    .art-care-section,
    .intro-section,
    .advance-section {
        padding: 50px 0;
    }

    .news-section {
        padding-bottom: 50px;
    }

    .advance-section .slogan-list,
    .advance-section .list {
        margin-top: 25px;
    }

    .news-section .news-content {
        margin-top: 50px;
    }

    .about-section .swiper-slide .commonMore {
        margin-top: 20px;
    }

    .about-section .swiper-slide .text {
        font-size: 16px;
    }

    .about-section .swiper-slide .text-des {
        margin-top: .1em;
    }

    .about-section .swiper-slide:nth-child(2) .slide-box,
    .about-section .swiper-slide .slide-box {
        padding: 30px 25px;
    }
}
@media(max-width:400px){
    .about-section .swiper-slide .text-des{
        font-size: 18px;
    }
    .about-section .swiper-slide .text-title{
        font-size: 20px;
    }
   
    .advance-section .list .text-title{
        font-size: 20px;
    }
    .advance-section .list .text-des{
        font-size: 16px;
    }
    .advance-section .list .text{
        font-size: 14px;
    }
    .intro-section .text{
        font-size: 18px;
    }
}
