        /* 容器 */
        /* 通用模块间距 */
        .section {
            padding: 48px 0;
            border-bottom: 1px solid #e9edf2;
        }
        .section:last-child {
            border-bottom: none;
        }
        .section-title {
            font-size: clamp(16px, 5vw, 32px);
            font-weight: 700;
            margin-bottom: 28px;
            color: #009933;
            letter-spacing: -0.2px;
            border-left: 4px solid #009933;
            padding-left: 16px;
        }
        .subsection-title {
            font-size: 18px; /* 小标题18px */
            font-weight: 600;
            margin: 24px 0 16px 0;
            color: #009933;
        }
        .body-text {
            font-size: 16px; /* 正文16px */
            line-height: 1.6;
            color: #333;
        }
        .text-muted {
            color: #5f6c7a;
            font-size: 14px;
        }

        /* 卡片网格布局 */
        .grid-2col {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: 32px;
        }
        .highlight-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 28px 24px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.03);
            transition: all 0.2s ease;
            border: 1px solid #edf2f7;
        }
        .highlight-card:hover {
            box-shadow: 0 12px 20px -12px rgba(0,0,0,0.1);
            border-color: #dce5ef;
        }
        .highlight-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #009933;
        }
        .highlight-card p {
            font-size: 16px;
            color: #666;
            line-height: 1.65;
        }

        /* 动态列表样式 */
        .news-list, .filings-list {
            list-style: none;
            margin-top: 8px;
        }
        .news-list li, .filings-list li {
            padding: 16px 0;
            border-bottom: 1px solid #eef2f8;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: baseline;
        }
        .news-date {
            font-size: 16px;
            color: #333;
            min-width: 100px;
        }
        .news-title {
            font-size: 16px;
            font-weight: 500;
            color: #009933;
            text-decoration: none;
        }
        .news-title:hover {
            text-decoration: underline;
            color: #0f3b5c;
        }
        .link-arrow {
            font-size: 14px;
            margin-left: 12px;
            color: #2c7da0;
        }
        .btn-link {
            display: inline-block;
            margin-top: 20px;
            font-size: 16px;
            font-weight: 500;
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #cbdde9;
        }
        .btn-link:hover {
            border-bottom-color: #2c7da0;
        }

        /* 股价实时区块 (模拟动态数据) */
        .stock-card {
            background: linear-gradient(135deg, #0f2d3f 0%, #1a4b6e 100%);
            border-radius: 28px;
            padding: 28px 32px;
            color: white;
            margin: 16px 0 8px;
        }
        .stock-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        .price-large {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -1px;
        }
        .change-positive {
            background: rgba(72, 187, 120, 0.25);
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 18px;
        }
        .stock-details {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            margin-top: 24px;
            padding-top: 16px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 15px;
        }
        .stock-details div {
            flex: 1;
            min-width: 110px;
        }
        .update-time {
            font-size: 13px;
            opacity: 0.8;
            margin-top: 16px;
            text-align: right;
        }
        .chart-link {
            margin-top: 16px;
            font-size: 15px;
        }
        .chart-link a {
            color: #ffd966;
            text-decoration: none;
            font-weight: 500;
        }

        /* 财务资料中心 */
        .fin-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            margin: 20px 0 28px;
        }
        .fin-links a {
            font-size: 16px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            border-bottom: 1px dashed #bcd0e0;
        }
        .download-btn {
            background: #666;
            color: white;
            padding: 12px 28px;
            border-radius: 40px;
            display: inline-block;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: background 0.2s;
            border: none;
        }
        .download-btn:hover {
            background: #009933;
        }

        /* 企业治理列表 */
        .governance-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0 16px;
        }
        .gov-item {
            background: #f1f5f9;
            padding: 12px 24px;
            border-radius: 40px;
            font-size: 16px;
            font-weight: 500;
            color: #333;
            text-decoration: none;
            transition: all 0.2s;
        }
        .gov-item:hover {
            background: #e2eaf1;
        }

        /* 联系方式 */
        .contact-block {
            background: #ffffff;
            border-radius: 24px;
            padding: 32px;
            margin-top: 16px;
            border: 1px solid #e2e8f0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        .contact-info p {
            margin: 8px 0;
            font-size: 16px;
        }
        .contact-email {
            font-size: 18px;
            font-weight: 600;
            color: #009933;
        }
        /* 响应式调整 */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
            .section {
                padding: 36px 0;
            }
            .stock-card {
                padding: 20px;
            }
            .price-large {
                font-size: 32px;
            }
            .change-positive {
                font-size: 16px;
            }
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        a {
            text-decoration: none;
        }
        hr {
            margin: 24px 0;
            border: none;
            border-top: 1px solid #e2edf2;
        }