<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #0A0C15;
            color: #F1F5F9;
            line-height: 1.5;
            font-size: 16px;
        }
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #1E293B;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb {
            background: #3B4B66;
            border-radius: 10px;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航栏 */
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 20px 0;
            border-bottom: 1px solid #1F2937;
            margin-bottom: 32px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-icon {
            font-size: 32px;
            color: #10B981;
        }
        .logo-text {
            font-size: 26px;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #FFFFFF 0%, #A7F3D0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .logo-badge {
            background: #10B98120;
            border: 1px solid #10B98140;
            border-radius: 40px;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 500;
            color: #10B981;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            font-weight: 500;
        }
        .nav-links a {
            transition: color 0.2s;
        }
        .nav-links a:hover, .nav-links a.active {
            color: #10B981;
        }
        .user-area {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        .search-icon, .user-icon {
            font-size: 20px;
            cursor: pointer;
            transition: color 0.2s;
        }
        .search-icon:hover, .user-icon:hover {
            color: #10B981;
        }
        /* 面包屑导航 */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 24px;
            font-size: 0.85rem;
            color: #8B9BB0;
        }
        .breadcrumb a:hover {
            color: #10B981;
        }
        .breadcrumb .current {
            color: #10B981;
        }
        /* 两栏布局 */
        .detail-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 32px;
            margin-bottom: 60px;
        }
        /* 主内容区 */
        .main-content {
            background: #0F121E;
            border-radius: 28px;
            border: 1px solid #262E40;
            overflow: hidden;
        }
        .cover-image {
            width: 100%;
            position: relative;
        }
        .cover-image img {
            width: 100%;
            height: auto;
            display: block;
            aspect-ratio: 1200 / 630;
            object-fit: cover;
        }
        .content-inner {
            padding: 28px 32px;
        }
        .article-category {
            display: inline-block;
            background: #10B98120;
            color: #10B981;
            padding: 4px 14px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .article-title {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .article-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 28px;
            padding-bottom: 16px;
            border-bottom: 1px solid #1F2937;
            font-size: 0.85rem;
            color: #8B9BB0;
        }
        .article-meta i {
            margin-right: 6px;
            color: #10B981;
        }
        .last-updated {
            font-size: 0.8rem;
            color: #10B981;
            background: #10B98110;
            padding: 2px 8px;
            border-radius: 20px;
        }
        .article-body {
            font-size: 1rem;
            line-height: 1.7;
            color: #E2E8F0;
        }
        .article-body p {
            margin-bottom: 1.2rem;
        }
        .article-body h2 {
            margin: 1.5rem 0 0.8rem;
            font-size: 1.3rem;
            color: #10B981;
        }
        /* 文章配图居中显示 */
        .article-body img {
            max-width: 100%;
            border-radius: 20px;
            margin: 20px auto;
            display: block;
        }
        /* 按钮样式（居中） */
        .article-buttons {
            display: flex;
            gap: 20px;
            margin: 20px 0 28px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn-watch {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: 0.2s;
            box-shadow: 0 6px 14px rgba(0,0,0,0.3);
        }
        .btn-hd {
            background: linear-gradient(135deg, #10B981, #059669);
            color: #FFFFFF;
            border: 1px solid rgba(16, 185, 129, 0.5);
        }
        .btn-hd:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, #059669, #047857);
            box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
        }
        .btn-live {
            background: linear-gradient(135deg, #EF4444, #DC2626);
            color: #FFFFFF;
            border: 1px solid rgba(239, 68, 68, 0.5);
        }
        .btn-live:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, #DC2626, #B91C1C);
            box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
        }
        .btn-watch:active {
            transform: translateY(1px);
        }
        @media (max-width: 550px) {
            .article-buttons {
                flex-direction: column;
                align-items: center;
            }
            .btn-watch {
                justify-content: center;
                width: 80%;
            }
        }
        /* 作者卡片 */
        .author-bio {
            margin: 30px 0;
            padding: 20px;
            background: #1A1F2E;
            border-radius: 20px;
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
        }
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        .author-info {
            flex: 1;
        }
        .author-name {
            font-weight: 700;
            color: #10B981;
        }
        /* 分享栏 */
        .share-bar {
            margin: 20px 0;
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
        }
        .share-btn {
            background: #1E293B;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .share-btn:hover {
            background: #10B981;
            color: #0A0C15;
        }
        /* 评论区 */
        .comment-area {
            margin-top: 30px;
            background: #0A0D16;
            border-radius: 20px;
            padding: 20px;
        }
        .comment-area textarea {
            width: 100%;
            background: #1E293B;
            border: 1px solid #334155;
            border-radius: 16px;
            padding: 12px;
            color: #F1F5F9;
            font-family: inherit;
            resize: vertical;
        }
        /* 侧边栏 */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: #0F121E;
            border-radius: 24px;
            border: 1px solid #262E40;
            padding: 20px;
        }
        .sidebar-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-left: 3px solid #10B981;
            padding-left: 12px;
        }
        .related-item {
            display: flex;
            gap: 14px;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 1px solid #1F2937;
            transition: 0.2s;
        }
        .related-item:hover {
            transform: translateX(4px);
            color: #10B981;
        }
        .related-thumb {
            width: 80px;
            height: 50px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            background: #1f2a3a;
        }
        .related-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .related-info {
            flex: 1;
        }
        .related-title {
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 4px;
            line-height: 1.3;
        }
        .related-meta {
            font-size: 0.7rem;
            color: #8B9BB0;
        }
        .action-btn {
            background: #1E293B;
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .action-btn:hover {
            background: #10B981;
            color: #0A0C15;
        }
        .footer {
            border-top: 1px solid #1F2937;
            padding: 32px 0;
            text-align: center;
            font-size: 13px;
            color: #6C7A91;
        }
        @media (max-width: 900px) {
            .detail-layout {
                grid-template-columns: 1fr;
            }
            .navbar {
                flex-direction: column;
                gap: 16px;
            }
            .nav-links {
                justify-content: center;
            }
            .content-inner {
                padding: 20px;
            }
            .article-title {
                font-size: 1.4rem;
            }
        }
    </style>