        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', Arial, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.8;
            background-color: #f8f9fa;
        }
        
        a {
            text-decoration: none;
            color: #2b6cb0;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #1a365d;
            text-decoration: underline;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Banner样式 */
        .banner {
            height: 400px;
            background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .banner-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .banner h1 {
            font-size: 42px;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .banner p {
            font-size: 20px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            padding: 20px 0;
            background-color: #fff;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .breadcrumb ul {
            display: flex;
            list-style: none;
        }
        
        .breadcrumb a{
            margin-right: 10px;
            font-size: 16px;
            color: #718096;
        }
        
        .breadcrumb li:not(:last-child):after {
            content: '>';
            margin-left: 10px;
            color: #cbd5e0;
        }
        
        /* 链接导航区 */
        .page-links {
            padding: 40px 0;
            text-align: center;
            background-color: #fff;
        }
        
        .page-links a {
            display: inline-block;
            margin: 0 15px;
            padding: 12px 30px;
            background-color: #2b6cb0;
            color: white;
            border-radius: 4px;
            font-size: 18px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .page-links a:hover {
            background-color: #1a365d;
            text-decoration: none;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        /* 内容区域 */
        .content-section {
            padding: 60px 0;
            background-color: #fff;
        }
        
        .article-content {
            /*max-width: 900px;*/
            margin: 0 auto;
            font-size: 18px;
            color: #4a5568;
        }
        
        .article-content h3 {
            font-size: 28px;
            color: #1a365d;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
            position: relative;
        }
        
        .article-content h3:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: #2b6cb0;
        }
        
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .highlight {
            background-color: #f1f8ff;
            padding: 30px;
            border-left: 4px solid #2b6cb0;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .team-photo {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
        }
        
        .team-photo img {
            width: calc(33.333% - 20px);
            min-width: 250px;
            margin: 0;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .banner {
                height: 300px;
            }
            
            .banner h1 {
                font-size: 32px;
            }
            
            .banner p {
                font-size: 18px;
            }
            
            .page-links a {
                display: block;
                margin: 10px auto;
                max-width: 300px;
            }
            
            .article-content {
                font-size: 16px;
            }
            
            .article-content h3 {
                font-size: 24px;
            }
            
            .team-photo img {
                width: 100%;
            }
        }