<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: #0a0c12;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Microsoft YaHei", sans-serif;
            color: #eef2ff;
            line-height: 1.6;
        }
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
        }
        /* 头部导航 */
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 16px 0;
            border-bottom: 1px solid #2a2e3a;
            margin-bottom: 24px;
        }
        .logo {
            font-size: 1.4rem;
            font-weight: bold;
            background: linear-gradient(135deg, #ff4a4a, #ff8c42);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .home-link {
            color: #ccc;
            text-decoration: none;
        }
        .breadcrumb {
            font-size: 0.8rem;
            color: #aaa;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #ff8c42;
            text-decoration: none;
        }
        /* 文章头部 */
        .article-header {
            margin-bottom: 32px;
        }
        .article-category {
            display: inline-block;
            background: #e33;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.75rem;
            margin-bottom: 12px;
        }
        h1 {
            font-size: 2rem;
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: #8e93a0;
            font-size: 0.85rem;
            border-bottom: 1px solid #232630;
            padding-bottom: 16px;
        }
        /* 正文区 */
        .article-content {
            background: #11141c;
            border-radius: 28px;
            padding: 32px;
            margin-bottom: 32px;
            border: 1px solid #232630;
        }
        .article-content p {
            margin-bottom: 1.2rem;
        }
        .article-content h2 {
            margin: 1.5rem 0 1rem;
            font-size: 1.4rem;
            border-left: 4px solid #e33;
            padding-left: 16px;
        }
        .article-content h3 {
            margin: 1.2rem 0 0.8rem;
            font-size: 1.2rem;
        }
        .article-content ul {
            margin: 1rem 0 1rem 2rem;
        }
        /* 直播按钮区 */
        .live-buttons {
            background: #1a1f2a;
            border-radius: 24px;
            padding: 20px;
            margin: 30px 0;
        }
        .live-buttons h3 {
            margin-bottom: 16px;
            font-size: 1.2rem;
        }
        .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .live-btn {
            background: #2a2e3a;
            padding: 10px 22px;
            border-radius: 40px;
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: 0.2s;
            display: inline-block;
        }
        .live-btn:hover {
            background: #e33;
            transform: translateY(-2px);
        }
        /* 相关推荐 */
        .related-posts {
            background: #11141c;
            border-radius: 28px;
            padding: 28px;
            margin-bottom: 32px;
            border: 1px solid #232630;
        }
        .related-posts h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 16px;
        }
        .related-item {
            background: #1a1f2a;
            padding: 14px;
            border-radius: 20px;
            text-decoration: none;
            color: #ddd;
            transition: 0.2s;
        }
        .related-item:hover {
            background: #e33;
            color: white;
        }
        /* 评论区 */
        .comment-section {
            background: #11141c;
            border-radius: 28px;
            padding: 28px;
            border: 1px solid #232630;
        }
        .comment-list {
            margin: 20px 0;
            max-height: 400px;
            overflow-y: auto;
        }
        .comment-item {
            border-bottom: 1px solid #2a2e3a;
            padding: 14px 0;
        }
        .comment-name {
            font-weight: bold;
            color: #ff8c42;
        }
        .comment-time {
            font-size: 0.7rem;
            color: #777;
            margin-left: 12px;
        }
        .comment-text {
            margin-top: 8px;
            color: #cbd5e6;
        }
        .comment-form input, .comment-form textarea {
            width: 100%;
            background: #1e2430;
            border: 1px solid #2a2e3a;
            padding: 12px;
            border-radius: 20px;
            color: white;
            margin-bottom: 12px;
            font-family: inherit;
        }
        .comment-form button {
            background: #e33;
            border: none;
            padding: 10px 24px;
            border-radius: 40px;
            color: white;
            cursor: pointer;
        }
        footer {
            text-align: center;
            margin-top: 40px;
            padding: 30px 20px;
            border-top: 1px solid #1e2128;
            color: #7e8493;
            font-size: 0.8rem;
        }
        .footer-links {
            margin-bottom: 16px;
        }
        .footer-links a {
            color: #9aa4bf;
            text-decoration: none;
            margin: 0 10px;
        }
        .footer-links a:hover {
            color: #ff8c42;
        }
        /* 备案链接颜色统一为 #7e8493，与上方提示文字一致 */
        .beian a {
            color: #7e8493;
            text-decoration: none;
            margin: 0 4px;
        }
        .beian a:hover {
            color: #ff8c42;
        }
        @media (max-width: 700px) {
            .container {
                padding: 12px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .article-content {
                padding: 20px;
            }
            .footer-links a {
                margin: 0 6px;
            }
            .beian {
                margin-top: 8px;
            }
        }
    </style>