* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #1a1a2e;
            color: #e6e6e6;
        }
        
        .container {
            width: 1000px;
            margin: 0 auto;
            background-color: #16213e;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }
        
        /* ===== 顶部区域 ===== */
        .header {
            width: 1000px;
            height: 150px;
            background: linear-gradient(135deg, #0f3460 0%, #533483 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;           
            opacity: 0.3;
        }
        
        .logo {
            font-size: 42px;
            font-weight: bold;
            color: #e94560;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 2px;
            z-index: 1;
        }
        
        .logo span {
            color: #00b4d8;
        }
        
        /* ===== 导航栏 ===== */
        .nav {
            background-color: #0f3460;
            height: 50px;
            display: flex;
            align-items: center;
            padding: 0 20px;
            border-bottom: 2px solid #533483;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-right: 25px;
            position: relative;
        }
        
        .nav-menu a {
            color: #e6e6e6;
            text-decoration: none;
            font-size: 16px;
            padding: 5px 10px;
            border-radius: 3px;
            transition: all 0.3s;
            display: block;
        }
        
        .nav-menu a:hover {
            background-color: #533483;
            color: #00b4d8;
        }
        
        .nav-menu a.active {
            background-color: #e94560;
            color: white;
        }
        
        /* ===== 主要内容区域 ===== */
        .main-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
            padding: 20px;
        }
        
        /* 左侧内容区域 */
        .content-left {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        /* 幻灯片区域 */
        .slideshow-section {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            height: 300px;
        }
        
        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 24px;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide:nth-child(1) {
            background: linear-gradient(135deg, #0f3460 0%, #533483 100%);
        }
        
        .slide:nth-child(2) {
            background: linear-gradient(135deg, #e94560 0%, #533483 100%);
        }
        
        .slide:nth-child(3) {
            background: linear-gradient(135deg, #00b4d8 0%, #0f3460 100%);
        }
        
        .slide:nth-child(4) {
            background: linear-gradient(135deg, #533483 0%, #e94560 100%);
        }
        
        .slide:nth-child(5) {
            background: linear-gradient(135deg, #0f3460 0%, #00b4d8 100%);
        }
        
        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 20px;
            color: white;
        }
        
        .slide-title {
            font-size: 24px;
            margin-bottom: 10px;
            color: #00b4d8;
        }
        
		.slide-title a{ color:#FFFFFF; text-decoration:none; }
		
        .slide-desc {
            font-size: 14px;
            line-height: 1.5;
        }
        
        .slide-indicators {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .indicator.active {
            background-color: #e94560;
        }
        
        /* 新闻区块 */
        .news-section {
            background-color: #1a1a2e;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .section-title {
            font-size: 20px;
            color: #e94560;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #533483;
            display: flex;
            align-items: center;
        }
        
        .section-title::before {
            content: "";
            display: inline-block;
            width: 5px;
            height: 20px;
            background-color: #00b4d8;
            margin-right: 10px;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .news-card {
            background-color: #16213e;
            border-radius: 5px;
            overflow: hidden;
            transition: transform 0.3s;
            border: 1px solid #0f3460;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            border-color: #00b4d8;
        }
        
        .news-image {
            height: 120px;
            background-color: #0f3460;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #e6e6e6;
        }
        
        .news-content {
            padding: 15px;
        }
        
        .news-title {
            font-size: 16px;
            margin-bottom: 10px;
            color: #e6e6e6;
        }
		
        .news-title a{ color:#FFFFFF; text-decoration:none; }
		
        .news-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #8a8a8a;
        }
        
        /* 无缩略图文章列表 */
        .text-articles {
            margin-top: 10px;
        }
        
        .text-article-item {
            padding: 12px 0;
            border-bottom: 1px solid #0f3460;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .text-article-item:last-child {
            border-bottom: none;
        }
        
        .text-article-title {
            color: #e6e6e6;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
            flex-grow: 1;
        }
        
        .text-article-title:hover {
            color: #00b4d8;
        }
        
        .text-article-date {
            font-size: 12px;
            color: #8a8a8a;
            min-width: 100px;
            text-align: right;
        }
        
        /* 右侧边栏 */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        /* 热门游戏 */
        .hot-games {
            background-color: #1a1a2e;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .game-list {
            list-style: none;
        }
        
        .game-item {
            padding: 12px 0;
            border-bottom: 1px solid #0f3460;
            display: flex;
            align-items: center;
        }
        
        .game-item:last-child {
            border-bottom: none;
        }
        
        .game-rank {
            background-color: #e94560;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            margin-right: 10px;
        }
        
        .game-name {
            color: #e6e6e6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .game-name:hover {
            color: #00b4d8;
        }
        
        /* 推荐文章 */
        .recommended-articles {
            background-color: #1a1a2e;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .recommended-list {
            list-style: none;
        }
        
        .recommended-item {
            padding: 12px 0;
            border-bottom: 1px solid #0f3460;
        }
        
        .recommended-item:last-child {
            border-bottom: none;
        }
        
        .recommended-title {
            color: #e6e6e6;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
            display: block;
            margin-bottom: 5px;
        }
        
        .recommended-title:hover {
            color: #00b4d8;
        }
        
        .recommended-meta {
            font-size: 12px;
            color: #8a8a8a;
        }
        
        /* ===== 友情链接区域 ===== */
        .links-section {
            background-color: #0f3460;
            padding: 20px;
            margin: 20px;
            border-radius: 8px;
        }
        
        .links-title {
            font-size: 18px;
            color: #e94560;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .links-title::before {
            content: "";
            display: inline-block;
            width: 5px;
            height: 18px;
            background-color: #00b4d8;
            margin-right: 10px;
        }
        
        .links-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .links-container a {
            background-color: #1a1a2e;
            padding: 8px 15px;
            border-radius: 3px;
            color: #e6e6e6;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        
        .links-container a:hover {
            background-color: #533483;
            color: #00b4d8;
            border-color: #00b4d8;
        }
        
        /* ===== 底部区域 ===== */
        .footer {
            background-color: #0f3460;
            color: #e6e6e6;
            text-align: center;
            padding: 20px;
            margin-top: 30px;
            border-top: 2px solid #533483;
        }
        
        .footer p {
            margin-bottom: 10px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }
        
        .footer-links a {
            color: #8a8a8a;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #00b4d8;
        }

/* ===== 列表页特定样式 ===== */
        .list-main {
            padding: 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
        }
        
        /* 列表标题和筛选 */
        .list-header {
            grid-column: 1 / -1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #533483;
        }
        
        .list-title {
            font-size: 24px;
            color: #e94560;
            display: flex;
            align-items: center;
        }
        
        .list-title::before {
            content: "";
            display: inline-block;
            width: 5px;
            height: 24px;
            background-color: #00b4d8;
            margin-right: 10px;
        }
        
        .list-filter {
            display: flex;
            gap: 10px; color:#FFFFFF;
        }
		
		.list-filter a{ color:#FFFFFF; text-decoration:none; }
        
        .filter-btn {
            background-color: #1a1a2e;
            border: 1px solid #533483;
            padding: 5px 15px;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s;
            color: #e6e6e6;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background-color: #e94560;
            color: white;
            border-color: #e94560;
        }
        
        /* 文章列表区域 */
        .article-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .article-item {
            background-color: #1a1a2e;
            border-radius: 8px;
            padding: 20px;
            transition: all 0.3s;
            border: 1px solid #0f3460;
        }
        
        .article-item:hover {
            border-color: #00b4d8;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .article-category {
            display: inline-block;
            background-color: #533483;
            color: white;
            font-size: 12px;
            padding: 3px 8px;
            border-radius: 3px;
            margin-bottom: 10px;
        }
        
        .article-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: #e6e6e6;
        }
        
        .article-title a {
            color: #e6e6e6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .article-title a:hover {
            color: #00b4d8;
        }
        
        .article-excerpt {
            font-size: 14px;
            line-height: 1.6;
            color: #b3b3b3;
            margin-bottom: 15px;
        }
        
        .article-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #8a8a8a;
        }
        
        /* 侧边栏 */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        /* 热门文章 */
        .popular-articles {
            background-color: #1a1a2e;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .sidebar-title {
            font-size: 18px;
            color: #e94560;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #533483;
            display: flex;
            align-items: center;
        }
        
        .sidebar-title::before {
            content: "";
            display: inline-block;
            width: 5px;
            height: 18px;
            background-color: #00b4d8;
            margin-right: 10px;
        }
        
        .popular-list {
            list-style: none;
        }
        
        .popular-item {
            padding: 12px 0;
            border-bottom: 1px solid #0f3460;
        }
        
        .popular-item:last-child {
            border-bottom: none;
        }
        
        .popular-rank {
            display: inline-block;
            background-color: #e94560;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 3px;
            text-align: center;
            line-height: 20px;
            font-size: 12px;
            margin-right: 10px;
        }
        
        .popular-title {
            color: #e6e6e6;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .popular-title:hover {
            color: #00b4d8;
        }
        
        /* 带图片推荐文章 */
        .featured-sidebar {
            background-color: #1a1a2e;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .featured-sidebar-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .featured-sidebar-item {
            display: flex;
            gap: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #0f3460;
        }
        
        .featured-sidebar-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .featured-sidebar-img {
            width: 80px;
            height: 60px;
            background-color: #0f3460;
            border-radius: 5px;
            flex-shrink: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            color: #8a8a8a;
        }
        
        .featured-sidebar-content {
            flex-grow: 1;
        }
        
        .featured-sidebar-title {
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        .featured-sidebar-title a {
            color: #e6e6e6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .featured-sidebar-title a:hover {
            color: #00b4d8;
        }
        
        .featured-sidebar-meta {
            font-size: 12px;
            color: #8a8a8a;
        }
        
        /* 分页 */
        .pagination {
            grid-column: 1 / -1;
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 5px;
        }
        
        .pagination a {
            padding: 8px 15px;
            background-color: #1a1a2e;
            border: 1px solid #533483;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s; text-decoration:none;
            color: #e6e6e6;
        }
		
		.pagination strong {
            padding: 8px 15px;
            background-color: #1a1a2e;
            border: 1px solid #533483;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s;
            color: #e6e6e6;
        }
        
        .pagination a:hover {
            background-color: #533483;
        }
        
        .pagination a.active {
            background-color: #e94560;
            color: white;
            border-color: #e94560;
        }
		
		/* ===== 文章详情页特定样式 ===== */
        .detail-main {
            padding: 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
        }
        
        /* 文章内容区域 */
        .article-content {
            background-color: #1a1a2e;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .article-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #533483;
        }
        
        .article-category {
            display: inline-block;
            background-color: #533483;
            color: white;
            font-size: 14px;
            padding: 5px 10px;
            border-radius: 3px;
            margin-bottom: 15px;
        }
        
        .article-title {
            font-size: 28px;
            color: #e6e6e6;
            line-height: 1.4;
            margin-bottom: 15px;
        }
        
        .article-meta {
            display: flex;
            gap: 20px;
            font-size: 14px;
            color: #8a8a8a;
        }
        
        .article-body {
            line-height: 1.8;
            font-size: 16px;
        }
        
        .article-body p {
            margin-bottom: 20px;
            text-indent: 2em;
        }
        
        .article-body h2 {
            font-size: 22px;
            color: #e94560;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #533483;
        }
        
        .article-body h3 {
            font-size: 18px;
            color: #00b4d8;
            margin: 25px 0 15px;
        }
        
        .article-body blockquote {
            background-color: #0f3460;
            border-left: 4px solid #533483;
            padding: 15px 20px;
            margin: 20px 0;
            font-style: italic;
            border-radius: 0 5px 5px 0;
        }
        
        .article-body ul, .article-body ol {
            margin: 15px 0;
            padding-left: 40px;
        }
        
        .article-body li {
            margin-bottom: 8px;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 5px;
        }
        
        .article-tags {
            display: flex;
            gap: 10px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #533483;
        }
        
        .tag {
            background-color: #0f3460;
            color: #8a8a8a;
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 14px;
        }
        
        .article-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #533483;
        }
        
        .action-btn {
            background-color: #0f3460;
            border: 1px solid #533483;
            padding: 8px 15px;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s;
            color: #e6e6e6;
        }
		
		.action-btn a{ color:#FFFFFF; text-decoration:none; }
        
        .action-btn:hover {
            background-color: #533483;
            color: #00b4d8;
        }
        
        /* 侧边栏 */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        /* 热门文章 */
        .popular-articles {
            background-color: #1a1a2e;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .sidebar-title {
            font-size: 18px;
            color: #e94560;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #533483;
            display: flex;
            align-items: center;
        }
        
        .sidebar-title::before {
            content: "";
            display: inline-block;
            width: 5px;
            height: 18px;
            background-color: #00b4d8;
            margin-right: 10px;
        }
        
        .popular-list {
            list-style: none;
        }
        
        .popular-item {
            padding: 12px 0;
            border-bottom: 1px solid #0f3460;
        }
        
        .popular-item:last-child {
            border-bottom: none;
        }
        
        .popular-rank {
            display: inline-block;
            background-color: #e94560;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 3px;
            text-align: center;
            line-height: 20px;
            font-size: 12px;
            margin-right: 10px;
        }
        
        .popular-title {
            color: #e6e6e6;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .popular-title:hover {
            color: #00b4d8;
        }
        
        /* 带图片推荐文章 */
        .featured-sidebar {
            background-color: #1a1a2e;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .featured-sidebar-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .featured-sidebar-item {
            display: flex;
            gap: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #0f3460;
        }
        
        .featured-sidebar-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .featured-sidebar-img {
            width: 80px;
            height: 60px;
            background-color: #0f3460;
            border-radius: 5px;
            flex-shrink: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            color: #8a8a8a;
        }
        
        .featured-sidebar-content {
            flex-grow: 1;
        }
        
        .featured-sidebar-title {
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        .featured-sidebar-title a {
            color: #e6e6e6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .featured-sidebar-title a:hover {
            color: #00b4d8;
        }
        
        .featured-sidebar-meta {
            font-size: 12px;
            color: #8a8a8a;
        }
        
        /* 相关文章 */
        .related-articles {
            margin-top: 40px;
            grid-column: 1 / -1;
            background-color: #1a1a2e;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 15px;
        }
        
        .related-item {
            background-color: #16213e;
            border-radius: 5px;
            overflow: hidden;
            transition: transform 0.3s;
            border: 1px solid #0f3460;
        }
        
        .related-item:hover {
            transform: translateY(-5px);
            border-color: #00b4d8;
        }
        
        .related-img {
            height: 120px;
            background-color: #0f3460;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #e6e6e6;
        }
        
        .related-content {
            padding: 15px;
        }
        
        .related-title {
            font-size: 14px;
            margin-bottom: 10px;
            color: #e6e6e6;
        }
        
        .related-title a {
            color: #e6e6e6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .related-title a:hover {
            color: #00b4d8;
        }
        
        .related-meta {
            font-size: 12px;
            color: #8a8a8a;
        }
