.container{
    width: 100%;
}
.banner2 {
    height: 600px;
    background: url(../images/about/about_banner.jpg) no-repeat;
    background-size: 100% 100%;
    color: #fff;
    padding-top: 160px;
    padding-left: 240px;
    text-align: left;
}
/* 标题样式 */
.banner2 .banner-title-gradient {
    font-size: 56px;
    font-weight: bold;
    color: #000;
    letter-spacing: 0.09em;
    color: rgba(3, 23, 79, 0.9);
    margin-top: 16px;

}

.banner2 .banner-subtitle {
    font-size: 29px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.04em;
    color: rgba(3, 23, 79, 0.9);
}
.about-content{
    width: 100%;
    height: 71px;
    background-color:rgba(255, 255, 255, 0.7) ;
    margin-top: -71px;
}
/* about-content inner buttons */
.about-content .about-inner{
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.about-content .about-btn{
    background: transparent;
    border: none;
    padding: 3px 54.5px;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    cursor: pointer;
    line-height: 26px;
    transition: color .15s ease, transform .12s ease;
}
.about-content .about-btn:hover{
    color: #0052D9;
    /* transform: translateY(-2px); */
}
.image-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    flex-wrap: nowrap;
    width: 100%;
    min-height: 400px;
    list-style: none;
    margin: 0 0 20px 0;
    transform: rotate(-5deg);
    transform-origin: top left;
    transition: transform 0.3s ease;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.image-row > * {
    flex-shrink: 0;
}

.image-row::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.image-row:last-child {
    margin-bottom: 0;
}

.image-item {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
}

.image-item:hover img {
    transform: scale(1.05);
}

.image-item img {
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 62px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    display: block;
    background: white;
    padding: 4px;
    transition: transform 0.3s ease;
}

/* photo-box 样式 - 显示所有照片 */
.photo-box {
    position: relative;
    background-color: #353131;
    padding: 40px 20px;
    min-height: 600px;
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
    overflow: hidden;
}

.photo-header {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    margin-bottom: 100px;
    margin-top: 40px;
}

.photo-header p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 52px;
    font-weight: bolder;
    white-space: nowrap;
}

/* 分类按钮容器 */
.photo-categories {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    flex: 1;
    margin-left: 20px;
    margin-top: 18px;
}

/* 滑动按钮 */
.photo-nav {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* 分类按钮样式 */
.photo-category-btn {
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.photo-category-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.photo-category-btn.active {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    color: #353131;
    font-weight: 700;
}

.photo-nav-prev,
.photo-nav-next {
    width: 50px;
    height: 50px;
    margin: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 30px;
    color: #353131;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-nav-prev:hover,
.photo-nav-next:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* 照片容器 - flex布局 */
.photo-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    padding-top: 10px;
    padding-bottom: 90px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.photo-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.photo-container img {
    display: block;
    width: clamp(360px, 40vw, 840px);
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

/* 确保footer显示在photo-box之上 */
.footer-new {
    position: relative;
    z-index: 10;
}

/* jzg-section 滚动效果容器 */
.jzg-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    height:750px;
    background-color: #fff;
}

.jzg-outline-box {
    position: relative;
    width: 100%;
    height: 100%;
}

.jzg-mask {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    --clip-radius: calc(0% + var(--jzg-pro, 0) * 200%);
    clip-path: circle(var(--clip-radius) at 50% 50%);
    -webkit-transition: clip-path 0.1s ease-out;
    -moz-transition: clip-path 0.1s ease-out;
    -o-transition: clip-path 0.1s ease-out;
    transition: clip-path 0.1s ease-out;
    will-change: clip-path;
    background-color: #EEF7FF;
    overflow: hidden;
}

/* jzg 价值观样式 */
.jzg {
    background-color: #EEF7FF;
    padding: 55px 20px 80px 20px;
    min-height: 600px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
}

.jzg-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin: 0 0 90px 0;
    text-align: center;
    font-family: sans-serif;
}

/* jzg swiper 容器 */
.jzg-swiper {
    width: 100%;
    padding: 0 20px 60px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.jzg-swiper .swiper-wrapper {
    align-items: center;
    display: flex;
}

.jzg-swiper .swiper-slide {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0px;
    width:520px !important;
    flex-shrink: 0;
}

.jzg-circle {
    width: 400px;
    height: 400px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.jzg-dot-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0 0 0 40px;
    padding: 0;
}

.jzg-dot-line li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 3px solid #fff;
    background-color: transparent;
    opacity: 0.4;
    animation: jzgDotBlink 2.5s infinite ease-in-out;
}

.jzg-swiper .swiper-slide:last-child .jzg-dot-line {
    display: none;
}

.jzg-dot-line li:nth-child(1) { animation-delay: 0s; }
.jzg-dot-line li:nth-child(2) { animation-delay: 0.4s; }
.jzg-dot-line li:nth-child(3) { animation-delay: 0.8s; }
.jzg-dot-line li:nth-child(4) { animation-delay: 1.2s; }
.jzg-dot-line li:nth-child(5) { animation-delay: 1.6s; }

@keyframes jzgDotBlink {
    0%, 75%, 100% {
        background-color: transparent;
        opacity: 0.4;
    }

    30%, 50% {
        background-color: #fff;
        opacity: 1;
    }
}

.jzg-circle-title {
    font-size: 20px;
    font-weight: normal;
    color: #333;
    margin: 0 0 40px 0;
    text-align: center;
    font-family: sans-serif;
}

.jzg-circle-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.jzg-circle-text p {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-align: center;
    line-height: 20px;
    font-family: sans-serif;
}

/* 公司资质轮播样式 */
.ch_zz {
    width: 100%;
    height: 100%;
    z-index: 10;
    background: #fff;
    position: relative;
    display: block;
    align-items: center;
    justify-content: center;
    padding:20px;
    box-sizing: border-box;
}

.qualification-container {
    width: 100%;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('../images/about/bg_ry.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.qualification-title {
    font-size: 52px;
    font-weight: bolder;
    color: #333;
    margin: 30px 0 60px 0px;
    padding-bottom: 15px;
    text-align: center;
    position: relative;

}

#swiperQualification,#swiperHonor {
    width: 100%;
    position: relative;
    overflow: hidden;
}

#swiperQualification .swiper-slide,
#swiperHonor .swiper-slide {
    width: 436px !important;
    height: auto;
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
}

.qualification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 436px;
    height: 328px;
    box-sizing: border-box;
    border-radius: 12px;
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(3, 49, 252, 0.1);
    overflow: hidden;
    padding-top: 20px;
    margin: 30px auto;

}

.qualification-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.qualification-image {
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    margin-top: 20px;
    justify-content: center;
    margin-bottom: 15px;
    background: transparent;
    border-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

/* 横向证书：170×120，垂直居中 */
.qualification-image.landscape img {
    width: 170px;
    height: 120px;
    object-fit: contain;
    display: block;
}

/* 纵向证书：120×170，水平居中 */
.qualification-image.portrait img {
    width: 120px;
    height: 170px;
    object-fit: contain;
    display: block;
}

/* 默认样式（图片加载前） */
.qualification-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.qualification-caption {
    font-size: 16px;
    width: 80%;
    height: 40px;
    line-height: 21px;
    font-weight: 400;
    color: #021a49;
    opacity: 0.9;
    text-align: center;
    margin-top: 28px;
    position: relative;
    z-index: 2;
}
.qualification-caption-description{
    font-size: 16px;
    line-height: 20px;
    width: 100%;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

/* 分页指示器样式*/
.qualification-pagination,.honor-pagination {
    position: relative !important;
    margin-top: 64px !important;
    text-align: center;
    left: 24px;
}

.qualification-pagination .swiper-pagination-bullet,.honor-pagination .swiper-pagination-bullet{
    width: 8px !important;
    height: 8px !important;
    background: #ccc !important;
    border: none !important;
    margin: 0 6px !important;
    opacity: 1 !important;
}

.qualification-pagination .swiper-pagination-bullet-active,.honor-pagination .swiper-pagination-bullet-active{
    background: #999 !important;
    width: 8px !important;
    border-radius: 50% !important;
}

/* 证书滚动（改为无缝跑马灯） */
.qualification-marquee {
    width: 100%;
    overflow: hidden;
}
.qualification-marquee .marquee-row {
    --marquee-duration: 120s;
    overflow-x: auto; /* 支持拖动滚动 */
    overflow-y: hidden; /* 隐藏垂直滚动 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    cursor: grab; /* 默认光标样式 */
}
.qualification-marquee .marquee-row:active {
    cursor: grabbing; /* 拖动时光标样式 */
}
.qualification-marquee .marquee-row::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.qualification-marquee .marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
}
.qualification-card {
    flex: 0 0 auto;
    margin-right: 24px;
}


/* 响应式设计 */
@media (max-width: 1400px) {
    .qualification-item {
        width: 436px;
        height: 328px;
    }
    
    .qualification-image {
        width: 170px;
        height: 170px;
    }
}

@media (max-width: 1024px) {
    .jzg-content {
        gap: 40px;
    }
    
    .jzg-circle {
        width: 350px;
        height: 350px;
    }
    
    .qualification-item {
        width: 436px;
        height: 328px;
    }
    
    .qualification-image {
        width: 170px;
        height: 170px;
    }
    
    .qualification-caption {
        font-size: 15px;
    }
    
    .qualification-caption-description {
        font-size: 13px;
    }

    .branch-company-cardss {
        width: 240px;
    }
    /* 视口随卡片尺寸调整：4张240px + 3个gap(30px) */
    .branch-office-viewport {
        width: calc(4 * 240px + 3 * 30px); /* 1050px */
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .jzg-title {
        font-size: 36px;
        margin-bottom: 60px;
    }
    
    .jzg-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .jzg-circle {
        width: 300px;
        height: 300px;
        padding: 40px 30px;
    }
    
    
    .jzg-circle-text p {
        font-size: 24px;
    }
    
    .jzg-dots {
        transform: rotate(90deg);
        gap: 6px;
    }
    
    .ch_zz {
        height: auto;
        min-height: 500px;
        padding:  15px;
    }
    
    .qualification-container {
        max-width: 100%;
    }
    
    .qualification-title {
        font-size: 36px;
        margin-bottom: 70px;
        padding-left: 0;
    }
    
    .qualification-item {
        width: 100%;
        max-width: 436px;
        height: auto;
        min-height: 328px;
        padding: 18px 15px 15px 15px;
    }
    
    .qualification-image {
        width: 170px;
        height: 170px;
        margin-bottom: 12px;
    }
    
    .qualification-caption {
        font-size: 14px;
        margin-top: 10px;
    }
    
    .qualification-caption-description {
        font-size: 12px;
        height: auto;
        min-height: 35px;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .qualification-item {
        width: 100%;
        max-width: 436px;
        height: auto;
        min-height: 328px;
        padding: 15px 12px 15px 12px;
    }
    
    .qualification-image {
        width: 170px;
        height: 170px;
    }
    
    .qualification-caption {
        font-size: 13px;
    }
    
    .qualification-caption-description {
        font-size: 11px;
    }

    .branch-company-cardss {
        width: 200px;
    }
    /* 视口随卡片尺寸调整：4张200px + 3个gap(30px) */
    .branch-office-viewport {
        width: calc(4 * 200px + 3 * 30px); /* 890px */
        max-width: 100%;
    }
}

/* 分支机构模块样式 */
.branch-office-container {
    width: 100%;
    margin: 0;
    padding: 65px 0 40px 0;
    background-color: #EEF7FF;
    position: relative;
}

.branch-office-title {
    font-size: 48px;
    font-weight: bolder;
    color: #333;
    text-align: center;
    margin: 0 0 40px 0;
    padding: 0;
}

.branch-office-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 0 auto 40px;
    width: 100%;
    max-width: calc(100% - 240px);
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0;
}

.branch-tab {
    font-size: 16px;
    color: #666;
    padding: 12px 30px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    -webkit-user-select: none;
    user-select: none;
    z-index: 10;
    pointer-events: auto !important;
}

.branch-tab:hover {
    color: #333;
}

.branch-tab.active {
    color: #333;
    font-weight: 500;
}

.branch-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #1890ff;
    border-radius: 2px 2px 0 0;
}

.branch-office-content {
    width: 100%;
    max-width: calc(100% - 240px);
    margin: 0 auto;
}

.branch-tab-content {
    display: none;
}

.branch-tab-content.active {
    display: block;
}

.branch-company-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* 跑马灯视口：固定显示4张卡片（含间隙） */
.branch-office-viewport {
    width: calc(4 * 280px + 3 * 30px); /* 1210px */
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.branch-office-marquee {
    width: 100%;
    overflow: hidden;
}

.branch-marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
    --branch-marquee-duration: 45s;
    animation: branch-marquee-left var(--branch-marquee-duration) linear infinite;
}

@keyframes branch-marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* 向左移动一整组（已复制）实现无缝循环 */
}

.branch-company-card {
    flex: 1;
    min-width: calc(33.333% - 20px);
    max-width: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}
.branch-company-cardss {
    flex: 0 0 calc(25% - 22.5px);
    max-width: calc(25% - 22.5px);
    background-color: #fff;
    border-radius: 8px;
    padding: 40px 40px 20px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

/* 在跑马灯场景下固定卡片宽度用于精准计算显示4张 */
.branch-office-marquee .branch-company-cardss {
    flex: 0 0 280px;
    max-width: 280px;
}

.branch-company-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    width: 100%;
    max-width: 360px;
    line-height: 24px;
    text-align: center;
    margin: 0px auto;
    padding: 8px 0;
    background-color: #EEF7FF;
    box-sizing: border-box;
}

.branch-company-description {
    font-size: 15px;
    line-height: 30px;
    color: rgba(0, 0, 0, 0.6);
    text-align: justify;
    margin: 40px 0 40px 0;
    padding: 0;
    height: 120px;
}

.branch-company-address {
    font-size: 14px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.4);
    margin: 0 0 12px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    min-height: 48px;
}

/* .branch-company-address::before {
    content: "公司地址：";
    flex-shrink: 0;
} */

.branch-company-phone {
    font-size: 14px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.4);
    margin: 0;
    padding: 0;
}
.branch-company-address span {
    color: #2468F2;
    font-size: 14px;
    line-height: 24px;
    flex: 1;
    min-width: 0;
}

.branch-company-phone span {
    color: #2468F2;
    font-size: 14px;
    line-height: 22.4px;
    font-weight: 500;
}
/* photo-box 响应式设计 */
@media (max-width: 768px) {
    .photo-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .photo-header p {
        font-size: 32px;
    }

    .photo-categories {
        gap: 10px;
        width: 100%;
    }
    
    .photo-category-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .photo-container {
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .photo-header {
        gap: 12px;
    }

    .photo-header p {
        font-size: 24px;
    }
    
    .photo-categories {
        flex-direction: column;
        gap: 8px;
    }

    .photo-nav {
        width: 100%;
        justify-content: flex-end;
    }
    
    .photo-category-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .photo-container {
        padding-top: 200px;
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .branch-company-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .branch-company-card {
        min-width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .branch-office-title {
        font-size: 36px;
    }
    
    .branch-office-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .branch-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .branch-company-card {
        min-width: 100%;
        padding: 20px;
    }
    
    .branch-company-name {
        font-size: 14px;
    }
    
    .branch-company-description,
    .branch-company-address,
    .branch-company-phone {
        font-size: 13px;
    }
}
/* 简介 */
.vango-section{
    position:relative;
    padding:80px 0 40px 0;
}
.vango-watermark{
    z-index: 0;
    font-size: 110px;
    line-height: 1;
    font-weight: 800;
    color: #5397f0;
    opacity: 0.15;
    letter-spacing: -6px;
    user-select: none;
    pointer-events: none;
    font-family: inherit;
    transform: translateZ(0);
    white-space: nowrap;
    margin-top: -10px;
    margin-right: 30px;
}
.vango-container{
    width:1440px;
    margin:20px auto;
    gap:40px;
    align-items:flex-start;
    box-sizing:border-box;
    position:relative;
    z-index:1;
}
/* .vango-title{
    font-size:48px;
    line-height:1.0;
    margin:0 0 16px;
    color:#0052D9;
    font-weight:500;
    } */
.vango-sub{
    color:rgba(0, 0, 0, 0.6);
    margin:0 0 60px 0;
    font-size:20px;
    text-align: center;
}
.vango-desc{
    font-size: 18px;
    font-weight: normal;
    line-height: 40px;
    text-align: justify;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.6);
    text-indent:2.1em;
}
.jianjie{
    width: 100%;
    height: 520px;
    background-image: url('../images/about/jianjie_btn.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-top: -105px;
}
/* stats inside jianjie */
.jianjie .jianjie-inner{
    max-width: 1288px;
    margin: 0 auto;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-items: center;
    gap: 0;
    position: relative;
    color: #fff;
}
.jianjie .jianjie-stat{
    text-align: center;
    padding: 0px 95px;
    box-sizing: border-box;
    justify-self: center;
    margin-top: 170px;
}
.jianjie .jianjie-number{
    font-size: 54px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    display: flex;
    width: 140px;
    align-items: flex-start;
    justify-content: center;
}
.jianjie .jianjie-number .plus{
    font-size: 24px;
    margin-left: 8px;
    align-self: flex-end;
    margin-bottom: 2px;
}
.jianjie .jianjie-label{
    margin-top: 16px;
    font-size: 18px;
    line-height: 28px;
    color: rgba(255,255,255,0.9);
}
/* vertical dividers between columns */
.jianjie .jianjie-stat:not(:last-child){
    border-right: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 900px){
    .jianjie{height: auto; padding: 40px 0; margin-top: 0;}
    .jianjie .jianjie-inner{grid-template-columns: repeat(2,1fr); gap:20px; padding: 20px;}
    .jianjie .jianjie-stat{padding: 20px 10px;}
    .jianjie .jianjie-number{font-size:40px;}
}


@media (max-width: 1100px){
    .vango-container{
        width:92%;
    }  
}
@media (max-width: 800px){
    .vango-container{
        flex-direction:column;
        align-items:flex-start;
    }

}
@media (max-width:480px){
    .vango-stat{width:100%}
    .vango-title{font-size:36px;word-spacing:1rem}
}
 