/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #c41e3a; /* 中国红 */
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #c41e3a; /* 中国红 */
    transition: all 0.3s ease;
}

a:hover {
    color: #a01729; /* 深红色 */
}

ul {
    list-style-type: none;
    padding-left: 20px;
}

ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
}

ul li:before {
    content: "•";
    color: #c41e3a; /* 中国红 */
    font-weight: bold;
    position: absolute;
    left: -10px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #c41e3a; /* 中国红 */
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn:hover {
    background-color: #a01729; /* 深红色 */
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 10px;
}

/* 导航栏 */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    color: #c41e3a; /* 中国红 */
    font-size: 1.8rem;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #c41e3a; /* 中国红 */
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

/* 主横幅 */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* 中心背景 */
.about {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.core-values {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.value-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(196, 30, 58, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.value-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #c41e3a;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-item i,
.venue-icon i,
.service-icon i,
.future-icon i {
    font-size: 2.5rem;
    color: #c41e3a; /* 中国红 */
    margin-bottom: 15px;
    background: rgba(196, 30, 58, 0.05);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.1);
    transition: all 0.3s ease;
    margin: 0 auto 15px;
}

.value-item:hover i,
.venue-card:hover .venue-icon i,
.service-card:hover .service-icon i,
.future-card:hover .future-icon i {
    transform: scale(1.1) rotate(5deg);
    background: rgba(196, 30, 58, 0.1);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.2);
}

/* 场馆布局 */
.venues {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.venue-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(196, 30, 58, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.venue-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #c41e3a;
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.venue-icon {
    width: 60px;
    height: 60px;
    background-color: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.venue-icon i {
    font-size: 1.8rem;
    color: #c41e3a; /* 中国红 */
}

/* 核心管理团队 */
.management {
    padding: 80px 0;
    background-color: #fff;
}

.team-detail {
    width: 100%;
}

.leader-profile {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.leader-header {
    display: flex;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.leader-photo {
    flex: 0 0 250px;
    margin-right: 40px;
}

.leader-photo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
}

.leader-info {
    flex: 1;
}

.leader-info h2 {
    font-size: 2.5rem;
    color: #c41e3a;
    margin-bottom: 10px;
}

.leader-info .title {
    font-size: 1.3rem;
    color: #c41e3a;
    margin-bottom: 15px;
    font-weight: 600;
}

.leader-info .subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: #c41e3a;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #c41e3a;
    color: white;
    transform: translateY(-3px);
}

.leader-content {
    padding: 40px;
}

.leader-intro,
.leader-achievements,
.leader-timeline,
.leader-philosophy {
    margin-bottom: 50px;
}

.leader-intro h3,
.leader-achievements h3,
.leader-timeline h3,
.leader-philosophy h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.leader-intro h3:before,
.leader-achievements h3:before,
.leader-timeline h3:before,
.leader-philosophy h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #c41e3a;
    border-radius: 50%;
}

.leader-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.achievement-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #c41e3a;
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.achievement-icon i {
    font-size: 2rem;
    color: #c41e3a;
}

.achievement-item h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.achievement-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: #c41e3a;
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item:before {
    content: "";
    position: absolute;
    left: -38px;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 3px solid #c41e3a;
    border-radius: 50%;
    z-index: 1;
}

.timeline-year {
    position: absolute;
    left: -120px;
    top: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #c41e3a;
    width: 100px;
    text-align: right;
}

.timeline-content {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    border-left: 3px solid #c41e3a;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.philosophy-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    border-left: 4px solid #c41e3a;
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-item h4 {
    font-size: 1.3rem;
    color: #c41e3a;
    margin-bottom: 15px;
}

.philosophy-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .leader-header {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .leader-photo {
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: 20px;
        max-width: 250px;
    }
    
    .timeline-year {
        position: static;
        margin-bottom: 10px;
        text-align: left;
        width: auto;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline:before {
        left: 3px;
    }
    
    .timeline-item:before {
        left: -27px;
    }
}

@media (max-width: 768px) {
    .leader-header {
        padding: 20px;
    }
    
    .leader-content {
        padding: 20px;
    }
    
    .achievement-grid,
    .philosophy-content {
        grid-template-columns: 1fr;
    }
    
    .timeline-year {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .leader-info h2 {
        font-size: 2rem;
    }
    
    .leader-info .title {
        font-size: 1.1rem;
    }
    
    .social-links {
        margin-top: 15px;
    }
}

/* 事迹图片展示区 */
.leader-gallery {
    margin-top: 50px;
    margin-bottom: 50px;
}

.leader-gallery h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
}

.leader-gallery h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #c41e3a;
    border-radius: 50%;
}

.gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #c41e3a #f9f9f9;
}

.gallery-slider::-webkit-scrollbar {
    height: 8px;
}

.gallery-slider::-webkit-scrollbar-track {
    background: #f9f9f9;
    border-radius: 4px;
}

.gallery-slider::-webkit-scrollbar-thumb {
    background-color: #c41e3a;
    border-radius: 4px;
}

.gallery-item {
    flex: 0 0 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #c41e3a;
}

.gallery-img {
    height: 200px;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 15px;
    text-align: center;
    font-size: 1rem;
    color: #555;
    background-color: #f9f9f9;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background-color: #c41e3a;
    color: white;
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

/* 任命通知区 */
.appointment-notice {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 10px;
    padding: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.appointment-notice:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background-color: #c41e3a;
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

.notice-header h3 {
    font-size: 1.8rem;
    color: #c41e3a;
    margin: 0;
}

.notice-date {
    font-size: 1.2rem;
    color: #666;
    font-weight: 600;
}

.notice-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.notice-stamp {
    flex: 0 0 100px;
    height: 100px;
    background-color: rgba(196, 30, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.notice-stamp i {
    font-size: 3rem;
    color: #c41e3a;
    opacity: 0.8;
}

.notice-text {
    flex: 1;
}

.notice-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.notice-text p:last-child {
    margin-bottom: 0;
}

.notice-signature {
    margin-top: 30px;
    text-align: right;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
}

.notice-signature p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .notice-content {
        flex-direction: column;
    }
    
    .notice-stamp {
        align-self: center;
        margin-bottom: 20px;
    }
    
    .notice-signature {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .appointment-notice {
        padding: 25px;
    }
    
    .notice-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .notice-date {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .notice-stamp {
        width: 80px;
        height: 80px;
    }
    
    .notice-stamp i {
        font-size: 2.5rem;
    }
}

/* 核心功能与服务 */
.services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: #c41e3a; /* 中国红 */
}

/* 行业影响与成果 */
.achievements {
    padding: 80px 0;
    background-color: #fff;
}

.achievements-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.achievement-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #c41e3a; /* 中国红 */
    margin-bottom: 10px;
}

.achievement-details {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.achievement-text ul {
    padding-left: 20px;
}

.achievement-text li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.achievement-text li:before {
    content: "✓";
    color: #c41e3a; /* 中国红 */
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 未来发展方向 */
.future {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.future-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.future-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.future-icon {
    width: 60px;
    height: 60px;
    background-color: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.future-icon i {
    font-size: 1.8rem;
    color: #c41e3a; /* 中国红 */
}



/* 页脚 */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

/* 小分辨率设备上优化卡片布局 */
@media (max-width: 576px) {
    /* 瀑布流布局容器 */
    .masonry-layout {
        column-count: 2;
        column-gap: 15px;
    }
    
    /* 瀑布流项目 */
    .masonry-item {
        break-inside: avoid;
        margin-bottom: 15px;
    }
    
    /* 交错式卡片布局 */
    .staggered-layout {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: -10px;
    }
    
    .staggered-item {
        flex: 0 0 calc(50% - 20px);
        margin: 10px;
        break-inside: avoid;
    }
    
    /* 特殊卡片布局 */
    .featured-card {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }
    
    .featured-card:nth-child(1) {
        order: 1;
    }
    
    .featured-card:nth-child(2) {
        order: 3;
    }
    
    .featured-card:nth-child(3) {
        order: 2;
    }
    
    .featured-card:nth-child(4) {
        order: 4;
    }
    
    .featured-card:nth-child(5) {
        order: 6;
    }
    
    .featured-card:nth-child(6) {
        order: 5;
    }
    /* 优化value-item样式 */
    .value-item {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 12px;
        background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(196, 30, 58, 0.15);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        break-inside: avoid;
    }
    
    .value-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background-color: #c41e3a;
        border-radius: 0 3px 3px 0;
    }
    
    .value-item:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        border-color: rgba(196, 30, 58, 0.3);
    }
    
    .value-item i {
        font-size: 2.2rem;
        color: #c41e3a;
        margin-bottom: 12px;
        background: rgba(196, 30, 58, 0.08);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(196, 30, 58, 0.1);
        transition: all 0.3s ease;
        margin: 0 auto 15px;
    }
    
    .value-item:hover i {
        transform: scale(1.1) rotate(5deg);
        background: rgba(196, 30, 58, 0.15);
        box-shadow: 0 8px 20px rgba(196, 30, 58, 0.2);
    }
    
    .value-item h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #333;
        line-height: 1.3;
    }
    
    .value-item p {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.5;
        margin: 0;
    }
    
    /* 优化venue-card样式 */
    .venue-card {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 12px;
        background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(196, 30, 58, 0.15);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        break-inside: avoid;
    }
    
    .venue-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background-color: #c41e3a;
        border-radius: 0 3px 3px 0;
    }
    
    .venue-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        border-color: rgba(196, 30, 58, 0.3);
    }
    
    .venue-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #333;
        line-height: 1.3;
    }
    
    .venue-card p {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.5;
        margin: 0;
    }
    
    /* 优化achievement-item样式 */
    .achievement-item {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 12px;
        background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(196, 30, 58, 0.15);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        break-inside: avoid;
    }
    
    .achievement-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background-color: #c41e3a;
        border-radius: 0 3px 3px 0;
    }
    
    .achievement-item:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        border-color: rgba(196, 30, 58, 0.3);
    }
    
    .achievement-item h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #333;
        line-height: 1.3;
    }
    
    .achievement-item p {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.5;
        margin: 0;
    }
    
    /* 优化service-card样式 */
    .service-card {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 12px;
        background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(196, 30, 58, 0.15);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        break-inside: avoid;
    }
    
    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background-color: #c41e3a;
        border-radius: 0 3px 3px 0;
    }
    
    .service-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        border-color: rgba(196, 30, 58, 0.3);
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #333;
        line-height: 1.3;
    }
    
    .service-card p {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.5;
        margin: 0;
    }
    
    /* 优化future-card样式 */
    .future-card {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 12px;
        background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(196, 30, 58, 0.15);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        break-inside: avoid;
    }
    
    .future-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background-color: #c41e3a;
        border-radius: 0 3px 3px 0;
    }
    
    .future-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        border-color: rgba(196, 30, 58, 0.3);
    }
    
    .future-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #333;
        line-height: 1.3;
    }
    
    .future-card p {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.5;
        margin: 0;
    }
    
    /* 优化core-values布局 - 采用交错式布局 */
    .core-values {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: -10px;
        margin-top: 30px;
    }
    
    /* 在手机上创建卡片交错布局 */
    .core-values .value-item {
        flex: 1 0 calc(50% - 20px);
        margin: 10px;
        break-inside: avoid;
    }
    
    /* 优化achievement-grid布局 - 采用瀑布流布局 */
    .achievement-grid {
        column-count: 2;
        column-gap: 15px;
    }
    
    /* 在手机上创建卡片交错布局 */
    .achievement-grid .achievement-item {
        break-inside: avoid;
        margin-bottom: 15px;
    }
}

/* 响应式设计 */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .about-content,
    .team {
        flex-direction: column;
    }

    .about-image,
    .team-member {
        margin-top: 30px;
    }

    .core-values,
    .contact-info {
        flex-direction: column;
    }

    .value-item,
    .contact-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0 10px 10px 0;
    }

    .hero {
        height: 80vh;
        margin-top: 100px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
    
    /* 手机端优化 - 减少间距和内边距 */
    .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .about,
    .venues,
    .management,
    .services,
    .achievements,
    .future {
        padding: 50px 0;
    }
    
    .about-content,
    .leader-header,
    .leader-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-image,
    .leader-photo {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .leader-info h2 {
        font-size: 1.8rem;
    }
    
    .leader-info .title {
        font-size: 1rem;
    }
    
    .leader-info .subtitle {
        font-size: 0.9rem;
    }
    
    .leader-intro,
    .leader-achievements,
    .leader-timeline,
    .leader-philosophy {
        margin-bottom: 30px;
    }
    
    .leader-intro h3,
    .leader-achievements h3,
    .leader-timeline h3,
    .leader-philosophy h3 {
        font-size: 1.4rem;
    }
    
    .leader-intro p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievement-item {
        padding: 20px;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(196, 30, 58, 0.1);
        transition: all 0.3s ease;
    }
    
    .achievement-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-color: rgba(196, 30, 58, 0.3);
    }
    
    .achievement-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background-color: #c41e3a;
    }
    
    .value-item,
    .venue-card,
    .service-card,
    .future-card {
        padding: 25px;
        border-radius: 10px;
        background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(196, 30, 58, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .value-item:hover,
    .venue-card:hover,
    .service-card:hover,
    .future-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-color: rgba(196, 30, 58, 0.3);
    }
    
    .value-item::before,
    .venue-card::before,
    .service-card::before,
    .future-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background-color: #c41e3a;
    }
    
    .achievement-icon {
        width: 60px;
        height: 60px;
    }
    
    .achievement-icon i {
        font-size: 1.8rem;
    }
    
    .achievement-item h4 {
        font-size: 1.2rem;
    }
    
    .achievement-item p {
        font-size: 0.9rem;
    }
    
    .timeline {
        padding-left: 15px;
    }
    
    .timeline:before {
        left: 3px;
    }
    
    .timeline-item {
        margin-bottom: 25px;
        padding-left: 20px;
    }
    
    .timeline-item:before {
        left: -22px;
    }
    
    .timeline-year {
        position: static;
        margin-bottom: 5px;
        font-size: 1rem;
        width: auto;
        text-align: left;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .philosophy-item {
        padding: 20px;
    }
    
    .philosophy-item h4 {
        font-size: 1.2rem;
    }
    
    .philosophy-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .gallery-container {
        margin: 20px 0;
    }
    
    .gallery-item {
        flex: 0 0 250px;
    }
    
    .gallery-img {
        height: 180px;
    }
    
    .gallery-caption {
        font-size: 0.9rem;
        padding: 10px;
    }
    
    .appointment-notice {
        padding: 25px;
        margin: 30px 0;
    }
    
    .notice-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .notice-header h3 {
        font-size: 1.4rem;
    }
    
    .notice-date {
        margin-top: 10px;
        font-size: 1rem;
    }
    
    .notice-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .notice-stamp {
        align-self: center;
        margin-bottom: 10px;
    }
    
    .notice-stamp i {
        font-size: 2.5rem;
    }
    
    .notice-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .notice-signature {
        text-align: center;
        margin-top: 20px;
    }
    
    .notice-signature p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .venues-grid,
    .services-grid,
    .future-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .btn {
        padding: 10px 20px;
    }
    
    /* 小屏幕设备进一步优化 */
    .container {
        padding: 0 10px;
    }
    
    .about,
    .venues,
    .management,
    .services,
    .achievements,
    .future {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .section-header .subtitle {
        font-size: 1rem;
    }
    
    .leader-header {
        padding: 20px;
    }
    
    .leader-photo {
        max-width: 200px;
    }
    
    .leader-info h2 {
        font-size: 1.6rem;
    }
    
    .leader-info .title {
        font-size: 0.95rem;
    }
    
    .leader-info .subtitle {
        font-size: 0.85rem;
    }
    
    .leader-content {
        padding: 20px;
    }
    
    .leader-intro h3,
    .leader-achievements h3,
    .leader-timeline h3,
    .leader-philosophy h3 {
        font-size: 1.2rem;
    }
    
    .leader-intro p {
        font-size: 0.95rem;
    }
    
    .achievement-item {
        padding: 15px;
    }
    
    .achievement-icon {
        width: 50px;
        height: 50px;
    }
    
    .achievement-icon i {
        font-size: 1.6rem;
    }
    
    .achievement-item h4 {
        font-size: 1.1rem;
    }
    
    .achievement-item p {
        font-size: 0.85rem;
    }
    
    .timeline {
        padding-left: 10px;
    }
    
    .timeline-item {
        margin-bottom: 20px;
        padding-left: 15px;
    }
    
    .timeline-year {
        font-size: 0.95rem;
    }
    
    .timeline-content {
        padding: 12px;
    }
    
    .timeline-content h4 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
    
    .philosophy-item {
        padding: 15px;
    }
    
    .philosophy-item h4 {
        font-size: 1.1rem;
    }
    
    .philosophy-item p {
        font-size: 0.85rem;
    }
    
    .gallery-item {
        flex: 0 0 220px;
    }
    
    .gallery-img {
        height: 160px;
    }
    
    .gallery-caption {
        font-size: 0.85rem;
        padding: 8px;
    }
    
    .appointment-notice {
        padding: 20px;
        margin: 25px 0;
    }
    
    .notice-header h3 {
        font-size: 1.2rem;
    }
    
    .notice-date {
        font-size: 0.95rem;
    }
    
    .notice-text p {
        font-size: 0.95rem;
    }
    
    .notice-signature p {
        font-size: 0.95rem;
    }
}
