        /* 报纸风格样式 */
        :root {
            --paper-color: #f7f2e8;
            --text-color: #3e2723;
            --accent-color: #c8232c;
            --border-color: #d4c0a1;
            --header-bg: #c8232c;
            --header-text: #fff;
            --section-bg: rgba(255, 255, 255, 0.7);
        }

        .oak-news-newspaper-container {
            max-width: 1000px;
            margin: 10px auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .oak-news-newspaper-header {
            grid-column: 1 / -1;
            text-align: center;
            padding: 20px 0;
            border-bottom: 2px solid var(--accent-color);
            margin-bottom: 20px;
            position: relative;
        }

        .oak-news-newspaper-title {
            font-size: 48px;
            color: var(--accent-color);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
            text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
        }

        .oak-news-date-info {
            font-size: 18px;
            font-style: italic;
        }

        .oak-news-newspaper-logo {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 14px;
            color: #888;
        }

        .oak-news-panel {
            background-image: url('https://cdn.8i5.net/2025/06/cream-paper.png');
            background-repeat: repeat;
            background-attachment: local;
            background-color:#ffefce;
            border: 1px solid var(--border-color);
            border-radius: 2px;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: relative;
            height: fit-content;
        }

        .oak-news-panel::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--accent-color);
        }

        .oak-news-section-title {
            font-size: 24px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
            color: var(--accent-color);
            font-weight: bold;
        }

        .oak-news-hot-news-list {
            list-style: none;
        }

        .oak-news-hot-news-item {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed var(--border-color);
            position: relative;
            padding-left: 30px;
        }

        .oak-news-hot-news-item:last-child {
            border-bottom: none;
        }

        .oak-news-hot-news-rank {
            position: absolute;
            left: 0;
            top: 2px;
            width: 24px;
            height: 24px;
            background-color: var(--accent-color);
            color: white;
            text-align: center;
            line-height: 24px;
            border-radius: 50%;
            font-weight: bold;
            font-size: 14px;
        }

        .oak-news-hot-news-title {
            color: var(--text-color);
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            display: block;
            margin-bottom: 5px;
            transition: all 0.3s;
            line-height: 1.4;
        }

        .oak-news-hot-news-title:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        .oak-news-hot-news-info {
            display: flex;
            gap: 15px;
            font-size: 14px;
            color: #666;
        }

        .oak-news-hot-news-hot {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* 黄历部分 */
        .oak-news-huangli-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 15px;
        }

        .oak-news-huangli-item {
            padding: 10px;
            background-color: rgba(255,255,255,0.5);
            border: 1px solid var(--border-color);
            font-size: 16px;
        }

        .oak-news-huangli-label {
            font-weight: bold;
            color: var(--accent-color);
        }

        .oak-news-huangli-special {
            padding: 15px;
            margin: 15px 0;
            background-color: rgba(255,255,255,0.5);
            border-left: 3px solid var(--accent-color);
            font-size: 16px;
            line-height: 1.6;
        }

        /* 每日一言 */
        .oak-news-daily-quote {
            font-size: 20px;
            font-style: italic;
            text-align: center;
            padding: 20px;
            margin: 20px 0;
            background-color: rgba(255,255,255,0.5);
            border: 1px solid var(--border-color);
            position: relative;
            line-height: 1.6;
        }

        .oak-news-daily-quote::before, .oak-news-daily-quote::after {
            content: """;
            font-size: 50px;
            color: var(--accent-color);
            opacity: 0.3;
            position: absolute;
        }

        .oak-news-daily-quote::before {
            top: 0;
            left: 10px;
        }

        .oak-news-daily-quote::after {
            bottom: -30px;
            right: 10px;
            transform: rotate(180deg);
        }

        /* 导出按钮 */
        .oak-news-export-container {
            grid-column: 1 / -1;
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .oak-news-export-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 15px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-weight: bold;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .oak-news-export-btn:hover {
            background-color: #a51c24;
        }

        .oak-news-export-btn::after {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .oak-news-export-btn:hover::after {
            left: 100%;
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .oak-news-newspaper-container {
                grid-template-columns: 1fr;
            }
            
            .oak-news-newspaper-title {
                font-size: 36px;
            }
        }
        
        .oak-news-newspaper-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .print-only {
            display: none;
        }

        /* 版权水印样式 */
        .oak-news-panel .copyright {
            display: block;
            margin-top: 20px;
            font-size: 14px;
            color: #bdbdbd;
            text-align: right;
        }