* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* 导航栏形状 */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* 英雄区域形状 */
.hero {
    height: 100vh !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    background: linear-gradient(rgba(26, 75, 140, 0.9), rgba(26, 75, 140, 0.9));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(26, 75, 140, 0.8), rgba(26, 75, 140, 0.9)), url('/images/founder/portrait.jpg') center/cover;
    background-position: center 20%;
    opacity: 0.9;
    z-index: -1;
    filter: grayscale(20%);
}

.hero-content h1 {
    font-size: 3rem !important;
    margin-bottom: 20px;
    font-weight: bold; 
}

.hero-content .subtitle {
    font-size: 1.25rem !important;
    margin-bottom: 10px;
}

.hero-content .description {
    font-size: 1rem !important;
}

/* 关于部门形状 */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.founder-info {
    display: flex;
    gap: 60px;
    margin-top: 50px;
    align-items: flex-start;
}

.founder-image {
    flex: 0 0 45%;
    max-width: 500px;
}

.founder-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    max-height: 600px;
}

.founder-text {
    flex: 1;
    padding-top: 20px;
}

/* 功夫线形状 */
.timeline {
    margin-top: 50px;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: #007bff;
}

.year {
    color: #007bff;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 成就卡片形状 */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 75, 140, 0.1);
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-card .number {
    color: var(--primary-blue);
}

/* 页脚形状 */
.footer {
    margin-top: 25px;
    background: #333;
    color: #fff;
    padding: 50px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #fff;
    text-decoration: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .founder-info {
        flex-direction: column;
        gap: 40px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .founder-image {
        max-width: 100%;
    }
    
    .professional-portrait img {
        max-height: 500px;
        width: 100%;
        object-position: center top;
    }
} 

/* 增长慈悲事业部门的形状 */
.charity-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.charity-content {
    margin-top: 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.charity-content p {
    margin: 20px 0;
    font-size: 1.1rem !important;
    line-height: 1.8;
} 

/* 增长与照片响应的蓝色主题 */
:root {
    --primary-blue: #1a4b8c; /* 照片中西装的蓝色 */
    --accent-orange: #ff6b35; /* 照片中领带的橙色 */
    --spacing: 60px;
    --bg-light: #f8f9fa;
} 

/* 增长媒体专访部门的形状 */
.media-section {
    padding: 100px 0;
    background: #fff;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.media-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 75, 140, 0.1);
}

.media-source {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.source-tag {
    background: var(--primary-blue);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.date {
    color: #666;
    font-size: 0.9rem;
}

.media-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2rem;
    line-height: 1.4;
}

.excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: transform 0.2s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

/* 沉要概想形状 */
.media-highlight {
    margin-top: 80px;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 20px;
}

.media-highlight h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-blue);
}

.quote-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.quote-item {
    position: relative;
    padding-left: 40px;
}

.quote-icon {
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 2rem;
    color: var(--primary-blue);
    opacity: 0.5;
}

.quote-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-list {
        grid-template-columns: 1fr;
    }
    
    .media-highlight {
        padding: 30px;
    }
} 

/* 调整首创人照片形状 */
.professional-portrait {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(26, 75, 140, 0.1);
}

.professional-portrait img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
    display: block;
}

/* 调整照片容器在关于部门的布局 */
.founder-info {
    display: flex;
    gap: 60px;
    margin-top: 50px;
    align-items: flex-start;
}

.founder-image {
    flex: 0 0 45%;
    max-width: 500px;
}

.founder-text {
    flex: 1;
    padding-top: 20px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .founder-info {
        flex-direction: column;
        gap: 40px;
    }

    .founder-image {
        max-width: 100%;
    }

    .professional-portrait img {
        max-height: 500px;
        width: 100%;
        object-position: center top;
    }
} 

/* 调整关于部门的布局 */
.founder-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.founder-text {
    padding-top: 20px;
}

.founder-text p {
    margin-bottom: 15px;
    font-size: 1rem !important;
    line-height: 1.8;
}

.founder-timeline {
    padding-top: 20px;
}

.founder-timeline h3 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: bold; 
}

.founder-timeline h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline {
    border-left: 2px solid var(--primary-blue);
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-blue);
}

.year {
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1.1rem !important;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .founder-content {
        gap: 30px;
    }
    
    .founder-text {
        padding-top: 0;
    }
    
    .founder-timeline {
        padding-top: 0;
    }
} 

/* 批改照片集形状 */
.photos-section {
    padding: 60px 0;
    background: var(--bg-light);
    overflow: hidden;
    margin-bottom: 15px;
}

.gallery-container {
    position: relative;
    padding: 20px 0;
    width: 100%;
    overflow: hidden;
}

.gallery-wrapper {
    display: flex !important;
    gap: 30px !important;
    overflow-x: hidden !important;
    scroll-behavior: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 40px 10px !important;
    margin: -40px 0 !important;
    width: 100% !important;
    cursor: grab;
    position: relative;
}

.gallery-wrapper::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}

.gallery-item {
    flex: 0 0 300px !important;
    min-width: 300px !important;
    height: 225px !important;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

/* 图片基础形状 */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 文字注明和布景条形状 */
.gallery-item::after {
    content: attr(data-caption);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5); /* 将通明度从 0.7 改为 0.5 */
    color: white;
    padding: 15px 20px;
    font-size: 1rem !important;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 2;
}

/* 悬停成效 */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* 移除其他可能矛盾的形状 */
.gallery-item::before {
    display: none;
}

/* 增长激活状态的形状 */
.gallery-item.active {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* 移除之前的hover transform成效 */
.gallery-item:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* 增长点击成效 */
.gallery-item:active {
    transform: scale(0.98);
}

/* 增长闪光成效 */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255,255,255,0.3) 50%,
        transparent 100%
    );
    transform: skewX(-25deg);
    transition: all 0.75s;
    z-index: 2;
}

.gallery-item:hover::before {
    left: 150%;
}

/* 增长滚动触发区域形状 */
.scroll-area {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-area.scroll-left {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.1), transparent);
}

.scroll-area.scroll-right {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.1), transparent);
}

.scroll-area:hover {
    opacity: 0.2;
}

/* 移除之前的导航按钮有关形状 */
.gallery-nav {
    display: none;
}

/* 更新提醒文字 */
.gallery-container::after {
    display: none;
} 

/* 批改基础字体大幼设置 */
html {
    font-size: 16px !important;
}

/* 调整各个文字大幼 */
.hero-content h1 {
    font-size: 3rem !important;
    margin-bottom: 20px;
}

.hero-content .subtitle {
    font-size: 1.25rem !important;
    margin-bottom: 10px;
}

.hero-content .description {
    font-size: 1rem !important;
}

h2 {
    font-size: 2rem !important;
    margin-bottom: 30px;
    font-weight: bold;
}

.founder-text p {
    font-size: 1rem !important;
    line-height: 1.8;
    margin-bottom: 15px;
}

.timeline .year {
    font-size: 1.1rem !important;
    font-weight: bold;
}

.timeline p {
    font-size: 1rem !important;
}

.charity-content p {
    font-size: 1.1rem !important;
    line-height: 1.8;
}

/* 照片注明文字大幼 */
.gallery-item::after {
    font-size: 1rem !important;
} <!--耗时1781328530.3119秒-->