/* 基础形状 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            font-size: 16px;
        }
        
        /* 导航形状 */
        .navbar {
            background: linear-gradient(135deg, #1a3a8f 0%, #2c5aa0 100%);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1rem;
        }
        
        .logo {
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            padding: 1rem 0;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 1.5rem;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #a8d1ff;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #a8d1ff;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* 头部形状 */
        header {
            background: #1a73e8;
            color: white;
            padding: 4rem 1rem;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        header .subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        .header-stats {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .stat-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            min-width: 180px;
            backdrop-filter: blur(5px);
        }
        
        .stat-value {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* 重要内容容器 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 1rem;
        }
        
		/* 内容区块优化 */
        .content-section {
            margin: 40px 0;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .content-section h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-bg);
        }
		
        /* 章节形状 */
        section {
            background: white;
            border-radius: 10px;
            padding: 2.5rem;
            margin-bottom: 2.5rem;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #1a3a8f, #2c5aa0);
        }
        
        section:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        section h2 {
            color: #1a3a8f;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            border-bottom: 2px solid #eaeaea;
            display: flex;
            align-items: center;
        }
        
        section h2 i {
           /*  margin-right: 10px; */
            font-size: 1.5rem;
        }
        
        section h3 {
            color: #2c5aa0;
            margin: 2rem 0 1rem;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
        }
        
        section h3 i {
           /*  margin-right: 8px; */
            font-size: 1.2rem;
        }
        
        section p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        
        /* 执行提要特殊形状 */
        #executive-summary {
            background: linear-gradient(to right, #f0f7ff 0%, #ffffff 100%);
            border-left: 5px solid #1a3a8f;
        }
        
        /* 列表形状 */
        ul, ol {
            margin-left: 1.8rem;
            /* margin-bottom: 1.5rem; */
        }
        
        li {
            /* margin-bottom: 0.8rem; */
            position: relative;
        }
        
        ul li::before {
            content: '?';
            color: #2c5aa0;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        /* 表格形状 */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eaeaea;
        }
        
        th {
            background-color: #f0f7ff;
            color: #1a3a8f;
            font-weight: 600;
        }
        
        tr:hover {
            background-color: #f8f9fa;
        }
        
        /* 职能卡片形状 */
        .feature-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .feature-card {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid #2c5aa0;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .feature-card h4 {
            color: #1a3a8f;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        /* 引用形状 */
        blockquote {
            background-color: #f0f7ff;
            border-left: 4px solid #6a949d;
            padding: 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }
        
        /* 页脚形状 */
        footer {
            background-color: #1a73e8;
            color: white;
            padding: 3rem 1rem;
            margin-top: 2rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-section h3 {
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: #a8d1ff;
        }
        
        .footer-section p, .footer-section a {
            margin-bottom: 1rem;
            color: #d0e0ff;
            text-decoration: none;
            display: block;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #a8d1ff;
            font-size: 0.9rem;
        }
		
		.image-containerss {
            width: 250px;
            max-width: 1200px;
            position: relative;
			max-width: 1200px;
            margin: 5px auto;
        }
		
		.image-containerss img {
            width: 250px;
            height: auto;
            display: block;
            border-radius: 8px;
        }

		.image-container {
            width: 100%;
            max-width: 1200px;
            position: relative;
			max-width: 1200px;
            margin: 35px auto;
            /* padding: 3rem 1rem; */
        }

        .image-container img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

		.image-container-ms {
            width: 100%;
            max-width: 1200px;
            position: relative;
			max-width: 1200px;
        }
        
        .image-container-ms img {
            width: 100%;
            height: auto;
            display: block;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
		
		/* 转化按钮形状 */
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), #0052a3);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
            background: linear-gradient(135deg, #0052a3, #004080);
        }
        
        .cta-button.accent {
            background: linear-gradient(135deg, var(--accent-color), #e55a00);
        }
        
        .cta-button.accent:hover {
            background: linear-gradient(135deg, #e55a00, #cc4f00);
        }
		
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .feature-cards {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a3a8f;
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 0;
                text-align: center;
            }
            
            .nav-links a {
                display: block;
                padding: 1rem;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            header h1 {
                font-size: 2rem;
            }
            
            header .subtitle {
                font-size: 1.1rem;
            }
            
            .header-stats {
                gap: 1rem;
            }
            
			.content-section {
                padding: 20px;
                margin: 20px 0;
            }
			
            .stat-item {
                min-width: 140px;
                padding: 1rem;
            }
            
            .stat-value {
                font-size: 1.5rem;
            }
            
            section {
                padding: 1.8rem;
            }
            
            section h2 {
                font-size: 1.6rem;
            }
            
            section h3 {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 2rem 0.8rem;
            }
            
            section {
                padding: 1.5rem;
            }
            
            header {
                padding: 3rem 1rem;
            }
            
            .header-stats {
                flex-direction: column;
                align-items: center;
            }
            
            .stat-item {
                width: 100%;
                max-width: 250px;
            }
            
            table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }
        }
<!--耗时1776083685.6609秒-->