:root {
    --about2-primary: #F5A623;
    --about2-secondary: #E8980A;
    --about2-accent: #FFD180;
    --about2-dark: #2C2C2C;
    --about2-light: #FFF9F0;
    --about2-text: #333333;
    --about2-text-light: #666666;
    /* --about2-gradient: linear-gradient(135deg, #F5A623 0%, #FFB938 50%, #F5A623 100%); */
    --about2-gradient: #ff8315;
    --about2-gradient-dark: linear-gradient(135deg, #2C2C2C 0%, #3D3D3D 100%);
    --about2-gradient-light: linear-gradient(135deg, #FFF9F0 0%, #FFF5E6 100%);
    --about2-glass: rgba(245, 166, 35, 0.08);
    --about2-glass-border: rgba(245, 166, 35, 0.2);
    --about2-shadow: 0 8px 32px rgba(245, 166, 35, 0.15);
    --about2-radius: 12px;
    --about2-highlight: rgba(245, 166, 35, 0.1);
}

.about-banner {
    width: 100%;
    height: 334px;
    background-image: url('/static/default/whl/img/about/banner-con.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.about2-culture-inner-m {
    display: none;
}

@keyframes bannerPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes bannerFloat {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-60px) translateY(-60px);
    }
}

.about2-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.about2-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.about2-page-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: var(--about2-gradient);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(40px);
}

.about2-page-title h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--about2-dark);
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.about2-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--about2-gradient);
    border-radius: 50%;
    position: relative;
    animation: dotPulse 2s ease-in-out infinite;
}

.about2-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--about2-primary);
    border-radius: 50%;
    animation: dotRing 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes dotRing {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0;
        transform: scale(1.5);
    }
}

.about2-page-title p {
    font-size: 16px;
    color: var(--about2-text-light);
    margin: 0;
    font-weight: 500;
}

.about2-nav-tabs {
    display: flex;
    gap: 36px;
    background: var(--about2-glass);
    padding: 16px 16px;
    border-radius: 50px;
    border: 1px solid var(--about2-glass-border);
    backdrop-filter: blur(10px);
}

.about2-nav-tab {
    font-size: 14px;
    color: var(--about2-text-light);
    text-decoration: none;
    padding: 10px 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 30px;
    font-weight: 500;
}

.about2-nav-tab:hover {
    color: var(--about2-primary);
    background: var(--about2-highlight);
}

.about2-nav-tab.active {
    color: white;
    background: var(--about2-gradient);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.35);
}

.about2-section {
    display: block;
    padding-top: 40px;
    margin-top: -40px;
    scroll-margin-top: 120px;
}

.about2-section:target {
    animation: highlightSection 0.6s ease;
}

@keyframes highlightSection {
    0% {
        background-color: rgba(245, 166, 35, 0.05);
    }

    100% {
        background-color: transparent;
    }
}

.about2-intro-inner {
    display: flex;
    gap: 80px;
    align-items: stretch;
    position: relative;
}

.about2-intro-left {
    flex: 0 0 360px;
    display: flex;
}

.about2-intro-image-wrapper {
    position: relative;
    width: 349px;
    height: 100%;
}

.about2-intro-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--about2-radius);
    position: relative;
}

.about2-intro-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--about2-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.about2-intro-image:hover::before {
    opacity: 0.2;
}

.about2-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about2-intro-image:hover img {
    transform: scale(1.05);
}

.about2-intro-image-overlay {
    position: absolute;
    top: 5px;
    left: 10px;
    right: -8px;
    bottom: -8px;
    border: 2px solid transparent;
    background: var(--about2-gradient) border-box;
    border-radius: var(--about2-radius);
    z-index: -1;
    opacity: 0.5;
}

.about2-intro-slogan {
    position: absolute;
    left: 24%;
    top: 40%;
}

.about2-intro-slogan p {
    font-size: 48px;
    font-weight: 800;
    background: var(--about2-gradient);
    /* background: #ff8315; */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    letter-spacing: -1px;
}

.about2-intro-slogan p.slogan-desc {
    /* padding-left: 100px; */
}

.about2-intro-right {
    flex: 1;
    padding: 40px 40px !important;
    background: linear-gradient(145deg, #f8faff 0%, #f0f4f8 50%, #e8f0f8 100%);
    border-radius: var(--about2-radius);
    position: relative;
    overflow: hidden;
}

.about2-intro-right::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about2-intro-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--about2-dark);
    margin: 0 0 30px 0;
    position: relative;
    line-height: 1.3;
}

.about2-intro-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--about2-gradient);
    border-radius: 2px;
}

.about2-intro-desc {
    margin-bottom: 30px;
}

.about2-intro-desc p {
    font-size: 16px;
    color: var(--about2-text-light);
    line-height: 1.9;
    margin: 0 0 18px 0;
    text-align: justify;
    text-indent: 33px;
}

.about2-intro-desc b {
    color: var(--about2-primary);
    font-weight: 600;
}

.about2-intro-stats {
    display: flex;
    gap: 80px;
    justify-content: center;
}

.about2-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* padding: 24px 32px; */
    /* background: white; */
    /* border-radius: 12px; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); */
    /* border: 1px solid rgba(0, 0, 0, 0.04); */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* .about2-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--about2-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about2-stat-item:hover::before {
    transform: scaleX(1);
}

.about2-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--about2-shadow);
} */

.about2-stat-number {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.about2-stat-num {
    font-size: 44px;
    font-weight: 800;
    background: var(--about2-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about2-stat-unit {
    font-size: 16px;
    font-weight: 600;
    color: var(--about2-secondary);
}

.about2-stat-label {
    font-size: 13px;
    color: var(--about2-text-light);
    margin-top: 10px;
    font-weight: 500;
}

.about2-culture-inner {
    display: flex;
    gap: 240px;
    align-items: center;
    position: relative;
}

.about2-culture-left {
    flex: 1;
    position: relative;
}

.about2-culture-title {
    position: absolute;
    top: 0px;
    left: 28%;
}

.about2-culture-title h2 {
    font-size: 52px;
    font-weight: 800;
    color: var(--about2-dark);
    margin: 0 0 10px 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.about2-culture-title p {
    font-size: 24px;
    font-weight: 700;
    background: var(--about2-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.about2-culture-year {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 155px;
    padding-right: 100px;
    position: relative;
}

.year2-num {
    font-size: 76px;
    font-weight: 800;
    background: var(--about2-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.year2-num::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: var(--about2-gradient);
    border-radius: 2px;
}

.year2-label {
    font-size: 24px;
    color: var(--about2-text-light);
    position: absolute;
    top: 140px;
    right: -22px;
    line-height: 30px;
    font-weight: 500;
}

.year2-label::after {
    content: '';
    position: absolute;
    top: 116%;
    left: 4px;
    width: 12px;
    height: 12px;
    background: var(--about2-gradient);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.about2-culture-right {
    flex: 2;
}

.about2-culture-image {
    width: 100%;
    overflow: hidden;
    border-radius: var(--about2-radius);
    position: relative;
}

/* .about2-culture-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--about2-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
} */

.about2-culture-image:hover::before {
    opacity: 0.15;
}

.about2-culture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about2-culture-image:hover img {
    transform: scale(1.03);
}

.about2-culture-2-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.about2-culture-2-left {
    display: flex;
    flex-direction: column;
}

.about2-culture-2-image {
    width: 100%;
    height: 100%;
    /* max-height: 400px; */
    overflow: hidden;
    border-radius: var(--about2-radius);
    position: relative;
}

/* .about2-culture-2-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(245, 166, 35, 0.25);
    border-radius: var(--about2-radius);
    pointer-events: none;
} */

.about2-culture-2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about2-culture-2-image:hover img {
    transform: scale(1.03);
}

.about2-culture-2-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about2-culture-2-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about2-culture-2-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 0px;
    /* padding: 20px 24px; */
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    border: 0px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about2-culture-2-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--about2-gradient);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.about2-culture-2-item:hover::before {
    transform: scaleY(1);
}

.about2-culture-2-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.15);
}

.about2-culture-2-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--about2-gradient);
    border-radius: 50%;
    margin-top: 10px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(245, 166, 35, 0.45);
}

.about2-culture-2-content {
    font-size: 18px;
    color: var(--about2-text-light);
    line-height: 1.7;
}

.about2-culture-2-content strong {
    /* background: linear-gradient(135deg, var(--about2-primary) 0%, var(--about2-secondary) 100%); */
    background: var(--about2-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.about2-values {
    margin-top: 12px;
    background: linear-gradient(145deg, #f8faff 0%, #f0f4f8 100%);
    padding-bottom: 25px;
}

.about2-values-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
}

.about2-values-list li {
    font-size: 16px;
    color: var(--about2-text-light);
    padding: 8px 40px;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 0px;
}

.about2-values-list li span {
    background: var(--about2-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.about-history {
    width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    background-image: url('/static/default/whl/img/about/fzlcbg.jpg');
    /* background-image: url('https://picsum.photos/1900/1000?random=1'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0 80px;
    background-attachment: fixed;
}

.about-history-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-history-title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 50px 0;
    text-align: center;
}

.about-history-title.main {
    margin-bottom: 0px;
}

.about-history-title.sub {
    font-size: 25px;
    margin-top: -10px;
}

.about-history-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
    padding-right: 10px;
    padding-left: 10px;
}

.about-history-info {
    flex: 1;
    max-width: 600px;
}

.about-history-year {
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    /* color: var(--about2-primary); */
    color: var(--about2-gradient);
    padding: 3px 30px;
    /* border: 3px solid #fff; */
    background-color: #fff;
    border-radius: 70px;
    margin-bottom: 25px;
}

.about-history-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
}

.about-history-desc {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.about-history-desc p {
    font-size: 18px;
    margin: 0 0 12px 0;
    color: rgba(255, 255, 255, 0.85);
}

.about-history-desc p:last-child {
    margin-bottom: 0;
}

.about-history-image {
    flex: 0 0 550px;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); */
}

.about-history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-history-timeline {
    position: relative;
    padding: 30px 0;
}

.timeline-line {
    position: absolute;
    top: 46px;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.6) 0px,
            rgba(255, 255, 255, 0.6) 12px,
            transparent 12px,
            transparent 14px);
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 25px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding: 10px 0;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

/* .timeline-item.active .timeline-dot {
    background: var(--about2-gradient);
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
} */

.swiper-slide-thumb-active .timeline-item .timeline-dot {
    background: var(--about2-gradient);
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.timeline-year {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.swiper-slide-thumb-active .timeline-item .timeline-year {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}

.timeline-item:hover .timeline-dot {
    background: #fff;
    transform: scale(1.2);
}

.timeline-item:hover .timeline-year {
    color: #fff;
}

/* 时间轴左右箭头 */
.about-history-timeline {
    position: relative;
}

.about-history-timeline .prev,
.about-history-timeline .next {
    position: absolute;
    top: 47px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-history-timeline .prev {
    left: -40px;
}

.about-history-timeline .next {
    right: -40px;
}

.about-history-timeline .prev svg,
.about-history-timeline .next svg {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1600px) {
    .about2-intro-right {
        padding: 100px 90px 0 100px;
    }
}

@media screen and (max-width: 1199px) {
    .about2-content {
        padding: 30px 20px 60px;
    }

    .about2-page-header {
        /* flex-direction: column; */
        gap: 24px;
        margin-bottom: 40px;
    }

    .about2-nav-tabs {
        gap: 16px;
    }

    .about2-intro-inner {
        gap: 50px;
    }

    .about2-intro-left {
        flex: 0 0 280px;
    }

    .about2-intro-image-wrapper {
        width: 280px;
        height: 380px;
    }

    .about2-intro-slogan {
        right: -10px;
    }

    .about2-intro-slogan p {
        font-size: 24px;
    }

    .about2-intro-right {
        padding: 50px 60px 30px 60px;
    }

    .about2-intro-title {
        font-size: 22px;
        margin-bottom: 28px;
    }

    .about2-intro-desc {
        margin-bottom: 40px;
    }

    .about2-intro-stats {
        gap: 40px;
    }

    .about2-stat-item {
        padding: 18px 24px;
    }

    .about2-stat-num {
        font-size: 38px;
    }

    .about2-culture-inner,
    .about2-culture-2-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about2-culture-left {
        flex: 0 0 250px;
    }

    .year2-num {
        font-size: 60px;
    }

    .about2-culture-image {
        height: 320px;
    }

    .about2-culture-2-image {
        min-height: 350px;
    }
}

@media screen and (max-width: 767px) {

    .about-banner {
        height: 130px;
        background-size: 174%;
    }

    .about2-content {
        padding: 20px 15px 40px;
    }

    .about2-page-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .about2-page-title h1 {
        font-size: 30px;
    }

    .about2-nav-tabs {
        flex-wrap: wrap;
        gap: 10px;
        padding: 6px 12px;
    }

    .about2-nav-tab {
        font-size: 13px;
        padding: 8px 14px;
    }

    .about2-intro-inner {
        flex-direction: column;
        gap: 30px;
    }

    .about2-intro-left {
        flex: none;
        width: 100%;
    }

    .about2-intro-image-wrapper {
        width: 100%;
        max-width: 300px;
        height: 400px;
        margin: 0 auto;
    }

    .about2-intro-slogan {
        right: 10px;
        top: 35%;
        display: none;
    }

    .about2-intro-slogan p {
        font-size: 22px;
    }

    .about2-intro-right {
        padding: 40px 24px 24px !important;
    }

    .about2-intro-title {
        font-size: 20px;
        margin-bottom: 20px;
        text-align: center;
    }

    .about2-intro-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about2-intro-desc {
        margin-bottom: 30px;
    }

    .about2-intro-desc p {
        font-size: 14px;
    }

    .about2-intro-stats {
        /* flex-direction: column; */
        flex-direction: row;
        gap: 16px;
        align-items: center;
        flex-wrap: wrap;
    }

    .about2-stat-item {
        /* width: 100%;
        max-width: 240px; */
        /* flex-direction: row; */
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        width: 40%;
    }

    .about2-stat-number {
        align-items: center;
    }

    .about2-stat-label {
        margin-top: 0;
    }

    .about2-culture-inner {
        flex-direction: column;
        gap: 30px;
    }

    .about2-culture-left {
        flex: none;
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .about2-culture-title h2 {
        font-size: 26px;
    }

    .year2-num {
        font-size: 48px;
    }

    .year2-label {
        writing-mode: horizontal-tb;
    }

    .about2-culture-image {
        height: 250px;
    }

    .about2-culture-2-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about2-culture-2-image {
        min-height: 280px;
        height: 280px;
    }

    .about2-culture-2-right {
        padding-top: 0;
    }

    .about2-culture-2-item {
        /* margin-bottom: 16px; */
        padding: 16px 18px;
    }

    .about2-culture-2-content {
        font-size: 13px;
    }

    .about2-values-list li {
        font-size: 13px;
    }

    .about2-values-list {
        grid-template-columns: 1fr;
    }

    .about2-culture-inner-w {
        display: none !important;
    }

    .about2-culture-inner-m {
        display: block;
        padding-left: 10px;
    }

    .about2-culture-inner-m h2 {
        font-size: 30px;
        color: var(--about2-dark);
    }

    .about2-culture-inner-m h3 {
        font-size: 20px;
        color: var(--about2-dark);
    }

    .about2-culture-2-icon {
        margin-top: 6px;
    }

}

@media screen and (max-width: 575px) {
    .about2-content {
        padding: 15px 12px 30px;
    }

    .about2-page-title h1 {
        font-size: 33px;
    }

    .about2-nav-tabs {
        gap: 8px;
        padding: 4px 10px;
    }

    .about2-nav-tab {
        font-size: 12px;
        padding: 6px 10px;
    }

    .about2-intro-image-wrapper {
        /* max-width: 260px;
        height: 340px; */
        max-width: 100%;
        height: 200px;
    }

    .about2-intro-slogan {
        right: 5px;
    }

    .about2-intro-slogan p {
        font-size: 20px;
    }

    .about2-intro-right {
        padding: 30px 18px 20px;
    }

    .about2-intro-title {
        font-size: 18px;
    }

    .about2-intro-stats {
        gap: 12px;
    }

    .about2-stat-item {
        /* max-width: 200px; */
        padding: 14px 16px;
    }

    .about2-stat-num {
        font-size: 30px;
    }

    .about2-stat-unit {
        font-size: 13px;
    }

    .about2-stat-label {
        font-size: 11px;
    }

    .about2-culture-title h2 {
        font-size: 22px;
    }

    .year2-num {
        font-size: 38px;
    }

    .about2-culture-image {
        height: 200px;
    }

    .about2-culture-2-image {
        min-height: 240px;
        height: 240px;
    }
}

@media screen and (min-width: 1400px) {
    .about2-content {
        max-width: 1600px;
    }

    .about2-intro-inner {
        gap: 240px;
    }

    .about2-intro-left {
        flex: 0 0 349px;
    }

    .about2-intro-image-wrapper {
        width: 349px;
        /* height: 739px; */
        height: auto;
    }

    .about2-intro-stats {
        gap: 100px !important;
    }

    .about2-stat-num {
        font-size: 50px;
    }

    .about2-culture-2-inner {
        gap: 80px;
    }

    /* .about2-culture-2-image {
        min-height: 500px;
        height: 500px;
    } */

}

@media screen and (max-width: 1199px) and (min-width: 768px) {
    .about2-culture-title {
        left: 32%;
    }

    .about2-culture-title h2 {
        font-size: 44px;
    }

    .about2-culture-year {
        padding-right: 60px;
    }

    .year2-num {
        font-size: 64px;
    }
}

/* 发展历程响应式样式 */
@media screen and (max-width: 1199px) {
    .about-history-container {
        padding: 0 30px;
    }

    .about-history-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .about-history-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-history-info {
        max-width: 100%;
    }

    .about-history-year {
        font-size: 40px;
        padding: 12px 35px;
    }

    .about-history-subtitle {
        font-size: 20px;
    }

    .about-history-image {
        flex: none;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .timeline-year {
        font-size: 12px;
    }
}

@media screen and (max-width: 767px) {

    .about-history {
        padding: 0px 0px;
        min-height: auto;
    }

    .about-history-container {
        padding: 0 20px;
    }

    .about-history-container .mobile {
        display: none !important;
    }

    .about-history-title {
        font-size: 24px;
        margin-bottom: 30px;
        text-align: center;
    }

    .about-history-content {
        gap: 30px;
        margin-bottom: 40px;
    }

    .about-history-year {
        font-size: 32px;
        padding: 10px 30px;
        margin-bottom: 20px;
    }

    .about-history-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .about-history-desc p {
        font-size: 13px;
    }

    .about-history-image {
        max-width: 100%;
    }

    .about-history-timeline {
        padding: 2px 0 30px;
        position: relative;
    }

    .about-history-timeline .prev {
        left: -10px;
    }

    .about-history-timeline .next {
        right: -10px;
    }

    .timeline-items {
        padding: 0 35px;
    }

    .timeline-items .swiper-slide {
        width: auto;
    }

    .timeline-item {
        padding: 10px 0;
        text-align: center;
    }

    .timeline-year {
        font-size: 13px;
        white-space: nowrap;
    }

    .swiper-slide-thumb-active .timeline-item .timeline-year {
        font-size: 15px;
    }

    .timeline-dot {
        width: 10px;
        height: 10px;
    }

    .timeline-line {
        top: 44px;
    }



}

@media screen and (max-width: 575px) {
    .about-history-container {
        padding: 0 15px;
    }

    .about-history-title {
        margin-top: 20px;
        font-size: 30px;
        margin-bottom: 25px;
    }

    .about-history-year {
        font-size: 28px;
        padding: 8px 25px;
        border-width: 2px;
    }

    .about-history-subtitle {
        font-size: 16px;
    }

    .about-history-desc p {
        font-size: 12px;
        line-height: 1.7;
    }

    .about-history-timeline .prev,
    .about-history-timeline .next {
        width: 30px;
        height: 30px;
    }

    .about-history-timeline .prev {
        left: -10px;
        top: 15px;
    }

    .about-history-timeline .next {
        right: -10px;
        top: 15px;
    }

    .timeline-item {
        min-width: 50px;
        padding: 8px 3px;
    }

    .timeline-year {
        font-size: 12px;
    }

    .swiper-slide-thumb-active .timeline-item .timeline-year {
        font-size: 14px;
    }

    .timeline-dot {
        width: 8px;
        height: 8px;
        margin-bottom: 8px;
    }

    .timeline-line {
        top: 14px;
    }
}