
        /* 基础样式 - 限制最大宽度并优化边距 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        body {
            background-color: #fff8f0;
            color: #333;
            line-height: 1.6; /* 减少行高，紧凑内容 */
            padding: 15px; /* 减少内边距 */
            max-width: 100%; /* 自适应父容器宽度 */
            width: 100%; /* 强制占满可用宽度 */
            margin: 0 auto;
            overflow-x: hidden; /* 防止横向滚动 */
        }
        /* 头部样式 */
        .event-header {
            text-align: center;
            padding: 25px 15px; /* 减少上下内边距 */
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }
        .event-header h1 {
            color: #ff7a00;
            font-size: 22px; /* 缩小标题字体 */
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .event-header p {
            color: #666;
            font-size: 14px;
            max-width: 90%; /* 限制内容宽度，避免过宽 */
            margin: 0 auto;
        }
        /* 内容卡片 */
        .content-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px 15px; /* 减少内边距 */
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .content-card:hover {
            transform: translateY(-3px); /* 减小悬浮效果 */
        }
        .content-card h2 {
            color: #ff7a00;
            font-size: 18px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #fff8f0;
        }
        .content-card p {
            font-size: 14px;
            margin-bottom: 15px;
        }
        /* 引用框 */
        .quote-box {
            background-color: #fff8f0;
            border-left: 4px solid #ff7a00;
            padding: 12px 15px; /* 减少内边距 */
            margin: 15px 0;
            border-radius: 0 6px 6px 0;
        }
        .quote-box p {
            font-style: italic;
            color: #555;
            margin-bottom: 0;
            font-size: 13px;
        }
        .quote-box .quote-source {
            font-weight: 600;
            color: #ff7a00;
            margin-top: 5px;
            font-style: normal;
            font-size: 13px;
        }
        /* 高亮文本 */
        .highlight {
            color: #ff7a00;
            font-weight: 600;
        }
        /* 行动召唤区 */
        .cta-section {
            text-align: center;
            padding: 25px 15px; /* 减少内边距 */
            background-color: #ff7a00;
            color: #fff;
            border-radius: 10px;
            margin: 30px 0;
        }
        .cta-section h3 {
            font-size: 18px;
            margin-bottom: 15px;
        }
        .cta-btn {
            display: inline-block;
            background-color: #fff;
            color: #ff7a00;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 14px;
            transition: background-color 0.3s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .cta-btn:hover {
            background-color: #fff8f0;
        }
        /* 响应式优化 - 适配更小屏幕 */
        @media (max-width: 600px) {
            .event-header h1 {
                font-size: 19px;
            }
            .content-card {
                padding: 15px 10px;
            }
            .content-card h2 {
                font-size: 16px;
            }
            .cta-section h3 {
                font-size: 16px;
            }
            .cta-btn {
                padding: 10px 20px;
                font-size: 13px;
                width: 90%; /* 按钮占满屏幕宽度 */
                box-sizing: border-box;
            }
            .quote-box {
                padding: 10px;
            }
        }
    