.about-page {
    padding: 80px 0;
    background: #f9fafb;
}

.intro-banner-section {
    position: relative;
    height: 500px; /* 根据实际需要调整高度 */
    background-image: url('./assets/images/3.jpg'); /* 固定背景图片 */
    background-size: cover; /* 图片铺满整个区域 */
    background-position: center; /* 图片居中显示 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 80%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.9); /* 背景半透明 */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.banner-content h1 {
    color: #004a9e;
    margin-bottom: 20px;
}

.banner-content p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.more a {
    display: inline-block;
    padding: 10px 20px;
    background: #004a9e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.more a:hover {
    background: #003366;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-wrapper {
    display: flex;
    align-items: stretch; /* 使图片和文字内容高度一致 */
    gap: 30px; /* 图片和文字之间的间距 */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background: rgba(0, 74, 158, 0.05);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 2.2em;
    color: #004a9e;
    font-weight: 600;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 100px;
    top: 0;
    height: 100%;
    width: 3px;
    background: #eee;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    width: 100px;
    font-size: 1.2em;
    font-weight: 600;
    color: #004a9e;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.leader-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.honour {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 20px auto;
    max-width: 1200px;
}

.itemBox {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 20px auto;
    max-width: 1200px; /* 根据实际需要调整最大宽度 */
}

.itemBox:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.itemBox img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.content {
    padding: 20px;
}

.title {
    margin-bottom: 15px;
}

.title h1 {
    color: #004a9e;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.detailBtn a {
    display: inline-block;
    padding: 10px 20px;
    background: #004a9e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.detailBtn a:hover {
    background: #003366;
}


.honourSwiper {
    margin: 40px 0;
    padding: 20px 0;
    background: #f9f9f9;
    text-align: center;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.title img {
    width: 30px;
    height: 30px;
    margin: 0 15px;
}

.title h1 {
    font-size: 24px;
    color: #004a9e;
    margin: 0;
}

.swiper_content {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.prevButton, .nextButton {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}

.prevButton {
    left: 10px;
}

.nextButton {
    right: 10px;
}

.swiper-container {
    width: 100%;
    padding: 0 50px; /* 为左右按钮预留空间 */
}

.swiper-slide {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.imgBox {
    margin-bottom: 10px;
}

.imgBox img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-section {
    flex: 0 0 40%; /* 图片部分占40%宽度 */
}
.image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover; /* 确保图片比例不失真 */
}

.image-section1 {
    flex: 0 0 40%; /* 图片部分占40%宽度 */
    order: 2; /* 将图片放置在右侧 */
}
.image-section1 img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover; /* 确保图片比例不失真 */
}

.image-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}
.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-inner img {
    width: 100%;
    flex-shrink: 0;
    height: auto;
    border-radius: 8px;
    transition: opacity 0.5s ease-in-out;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 74, 158, 0.7);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: background 0.3s;
}
.carousel-btn:hover {
    background-color: rgba(0, 74, 158, 1);
}
.prev-btn {
    left: 15px;
}
.next-btn {
    right: 15px;
}

.swiper-slide span {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}

.map-qr-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qr-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.qr-overlay img {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.qr-overlay p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.text-section {
    flex: 1; /* 文字内容占剩余宽度 */
    display: flex;
    flex-direction: column; /* 将内容垂直排列 */
}
.text-section h1 {
    color: #004a9e;
    font-size: 24px;
    margin-bottom: 20px;
}
.text-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.text-section1 {
    flex: 1; /* 文字内容占剩余宽度 */
    display: flex;
    flex-direction: column; /* 将内容垂直排列 */
    order: 1; /* 将文字内容放置在左侧 */
}
.text-section1 h1 {
    color: #004a9e;
    font-size: 24px;
    margin-bottom: 20px;
}
.text-section1 p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.button-container {
    margin-top: auto; /* 将按钮推到文字部分底部 */
    text-align: center; /* 按钮居中 */
}

#honor-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px; /* 按需调整 */
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-inner {
    width: 100%;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    display: none;
    width: 100%;
    text-align: center;
}

.carousel-item.active {
    display: block;
}

.carousel-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; /* 按钮宽度 */
    height: 40px; /* 按钮高度 */
    border: none;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s;
    z-index: 10;
}

/* 按钮悬停效果 */
.carousel-control:hover {
    background: rgba(255, 255, 255, 1);
}

/* 左侧按钮图标 */
.prev-btn {
    left: 20px; /* 调整左侧间距 */
}
.prev-btn .icon-left {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/left.png) no-repeat center / 60%; /* 图片路径按实际修改 */
}

/* 右侧按钮图标 */
.next-btn {
    right: 20px; /* 调整右侧间距 */
}
.next-btn .icon-right {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/right.png) no-repeat center / 60%; /* 图片路径按实际修改 */
}

.carousel-btn img {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {

    .banner {
        flex-direction: column;
    }

    .swiper-container, .contentBox {
        max-width: 100%;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
    }

    .header-placeholder {
        height: 240px; /* 移动端增加高度 */
    }
    
    .fixed-header {
        position: static; /* 移动端取消固定定位 */
    }
    
    .main-content {
        margin-top: 0 !important;
    }

    .intro-banner-section {
        height: 300px; /* 移动端调整高度 */
    }

    .banner-content {
        width: 90%;
        padding: 20px;
    }

    .itemBox {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        margin: 20px auto;
        max-width: 1200px; /* 根据实际需要调整最大宽度 */
    }

    .itemBox img {
        height: 200px;
    }

    .content {
        padding: 15px;
    }

    .title h1 {
        font-size: 20px;
    }

    .title h1 {
        font-size: 20px;
    }

    .prevButton, .nextButton {
        display: none; /* 移动端隐藏左右按钮 */
    }

    .swiper-container {
        padding: 0;
    }

    .imgBox img {
        max-width: 150px;
    }

    .map-qr-container {
        height: 300px;
    }

    .qr-overlay {
        top: 10px;
        right: 10px;
        padding: 10px;
    }

    .qr-overlay img {
        width: 80px;
    }

    .qr-overlay p {
        font-size: 12px;
    }

    .content-wrapper {
        flex-direction: column; /* 在移动端堆叠图片和文字 */
    }
    .image-section {
        flex: 1; /* 图片占满宽度 */
        width: 100%;
    }
    .text-section {
        text-align: center; /* 文字内容居中对齐 */
    }

    .image-section1 {
        order: 1; /* 图片在上 */
        flex: 1; /* 图片占满宽度 */
        width: 100%;
    }
    .text-section1 {
        order: 2; /* 文字内容在下 */
        text-align: center; /* 文字内容居中对齐 */
    }

    .carousel-btn {
        padding: 8px;
        font-size: 16px;
    }
}