
        /* 基础样式 */
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f5f5;
            margin: 0;
            padding: 20px;
        }
        
        .news-wrapper {
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            overflow: hidden;
        }
        
        /* 深红色主题 */
        :root {
            --deep-red: #8B0000; /* 深红色 */
            --dark-red: #660000; /* 更深的红色用于强调 */
            --light-red: #F9E8E8; /* 浅红色背景 */
            --gold: #C6A467; /* 金色点缀 */
        }
        
        /* 新闻头部 */
        .news-header {
            background: linear-gradient(135deg, var(--deep-red) 0%, var(--dark-red) 100%);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .news-header::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .news-title {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            margin: 0 0 10px 0;
            letter-spacing: 1px;
            position: relative;
            z-index: 1;
        }
        
        .news-subtitle {
            font-size: 18px;
            font-weight: 400;
            margin: 0;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        /* 新闻内容 */
        .news-content {
            padding: 35px;
            background: white;
        }
        
        .news-highlight {
            background: var(--light-red);
            border-left: 4px solid var(--deep-red);
            padding: 22px;
            margin: 30px 0;
            border-radius: 0 6px 6px 0;
            font-style: italic;
            position: relative;
        }
        
        .news-highlight:before {
            content: """;
            font-family: 'Playfair Display', serif;
            font-size: 60px;
            color: var(--deep-red);
            position: absolute;
            left: 10px;
            top: -10px;
            opacity: 0.3;
        }
        
        .news-section-title {
            color: var(--deep-red);
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            margin: 30px 0 18px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--gold);
        }
        
        /* 列表样式 */
        .feature-list {
            list-style-type: none;
            padding: 0;
            margin: 25px 0;
        }
        
        .feature-list li {
            padding: 12px 0;
            padding-left: 40px;
            position: relative;
            border-bottom: 1px solid #eee;
        }
        
        .feature-list li:before {
            content: "■";
            color: var(--deep-red);
            font-size: 14px;
            position: absolute;
            left: 15px;
            top: 12px;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        /* 日期和地点强调 */
        .emphasis {
            color: var(--deep-red);
            font-weight: 700;
            background: var(--light-red);
            padding: 2px 6px;
            border-radius: 3px;
        }
        
        /* 底部信息 */
        .news-footer {
            background: linear-gradient(to right, #f0f0f0, #e6e6e6);
            padding: 25px 35px;
            font-size: 14px;
            border-top: 1px solid #ddd;
        }
        
        .contact-info {
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px dashed #ccc;
        }
        
        .footer-title {
            color: var(--deep-red);
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        /* 响应式调整 */
        @media (max-width: 650px) {
            .news-title {
                font-size: 26px;
            }
            
            .news-content {
                padding: 25px 20px;
            }
            
            .news-header {
                padding: 25px 20px;
            }
            
            .news-footer {
                padding: 20px;
            }
        }
    