        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            background-color: #f5f5f5;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .header {
            background: linear-gradient(135deg, #3d26a5, #ff6600);
            color: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .header h1 {
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .header p {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .navigation {
            background: white;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .navigation ul {
            list-style: none;
            display: flex;
            gap: 20px;
        }
        
        .navigation a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
            transition: color 0.3s;
        }
        
        .navigation a:hover {
            color: #ff4400;
        }
        
        .breadcrumb {
            font-size: 14px;
            margin-bottom: 15px;
            color: #666;
        }
        
        .breadcrumb a {
            color: #ff4400;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb .current {
            color: #333;
            font-weight: bold;
        }
        
        .update-info {
            margin-top: 10px;
            font-size: 14px;
            opacity: 0.8;
        }
        
        .update-info span {
            margin-right: 20px;
        }
        
        .dashboard {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .chart-card {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .chart-card h2 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .chart-container {
            width: 100%;
            height: 300px;
        }
        
        .filter-bar {
            background: white;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .filter-bar select {
            padding: 8px 12px;
            margin-right: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }
        
        .server-table {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        th {
            background-color: #f8f8f8;
            padding: 15px;
            text-align: left;
            font-weight: bold;
            border-bottom: 2px solid #ff4400;
        }
        
        td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        tr:hover {
            background-color: #f5f5f5;
        }
        
        .rank {
            font-weight: bold;
            color: #ff4400;
            text-align: center;
            width: 60px;
        }
        
        .server-name {
            font-weight: bold;
            color: #ff0000;
        }
        
        .version-type {
            background-color: #e6f7ff;
            color: #1890ff;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 12px;
            display: inline-block;
        }
        
        .feature {
            background-color: #f6ffed;
            color: #52c41a;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 12px;
            display: inline-block;
        }
        
        .promotion {
            background-color: #fff7e6;
            color: #fa8c16;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 12px;
            display: inline-block;
        }
        
        .action {
            text-align: center;
        }
        
        .btn-view {
            background-color: #ff4400;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        
        .btn-view:hover {
            background-color: #ff6600;
        }
        
        .popularity {
            text-align: center;
            font-weight: bold;
        }
        
        .hot {
            color: #ff4400;
            margin-left: 5px;
            font-size: 12px;
        }
        
        .cms-section {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .cms-section h2 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #333;
            border-bottom: 2px solid #ff4400;
            padding-bottom: 10px;
        }
        
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .article-card {
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .article-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .article-content {
            padding: 15px;
        }
        
        .article-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }
        
        .article-excerpt {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .article-meta {
            font-size: 12px;
            color: #999;
        }
        

        .video-section h2 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #333;
            border-bottom: 2px solid #ff4400;
            padding-bottom: 10px;
        }


        .video-section {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .video-card {
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .video-thumbnail {
            width: 100%;
            height: 180px;
            background-color: #f0f0f0;
            position: relative;
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background-color: rgba(255,68,0,0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }
        
        .video-content {
            padding: 15px;
        }
        
        .video-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }
        
        .footer {
            background: #333;
            color: white;
            padding: 30px;
            border-radius: 8px;
            margin-top: 40px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-section h3 {
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        .footer-section p {
            font-size: 14px;
            line-height: 1.5;
            opacity: 0.8;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        
        .footer-links a:hover {
            opacity: 1;
        }
        
        .featured-servers {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .featured-servers h2 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #333;
            border-bottom: 2px solid #ff4400;
            padding-bottom: 10px;
        }
        
        .featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
        }
        
        .featured-card {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 15px;
            position: relative;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .featured-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .featured-rank {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ff4400;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
        }
        
        .featured-card h3 {
            font-size: 16px;
            margin-bottom: 10px;
        }
        
        .featured-card h3 a {
            color: #ff4400;
            text-decoration: none;
        }
        
        .featured-card h3 a:hover {
            text-decoration: underline;
        }
        
        .featured-card p {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .featured-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #999;
        }
        
        .featured-version {
            background: #e6f7ff;
            color: #1890ff;
            padding: 2px 8px;
            border-radius: 12px;
        }
        
        .featured-popularity {
            font-weight: bold;
            color: #ff4400;
        }
        
        .version-nav {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .version-nav h2 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #333;
            border-bottom: 2px solid #ff4400;
            padding-bottom: 10px;
        }
        
        .version-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
        }
        
        .version-card {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            text-decoration: none;
            color: #333;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .version-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-color: #ff4400;
        }
        
        .version-card h3 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #333;
        }
        
        .version-card p {
            font-size: 12px;
            color: #666;
            line-height: 1.4;
        }
        
        .news-section {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .news-section h2 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #333;
            border-bottom: 2px solid #ff4400;
            padding-bottom: 10px;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .news-card {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 15px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .news-card h3 {
            font-size: 16px;
            margin-bottom: 10px;
        }
        
        .news-card h3 a {
            color: #333;
            text-decoration: none;
        }
        
        .news-card h3 a:hover {
            color: #ff4400;
        }
        
        .news-card p {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .faq-section {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .faq-section h2 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #333;
            border-bottom: 2px solid #ff4400;
            padding-bottom: 10px;
        }
        
        .faq-list {
            display: grid;
            gap: 15px;
        }
        
        .faq-item {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 15px;
        }
        
        .faq-item h3 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #333;
        }
        
        .faq-item p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }
        
        .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #555;
            text-align: center;
            font-size: 14px;
            opacity: 0.6;
        }
        
        @media screen and (max-width: 768px) {
            .container {
                padding: 10px;
            }
            
            .dashboard {
                grid-template-columns: 1fr;
            }
            
            .navigation ul {
                flex-direction: column;
                gap: 10px;
            }
            
            table {
                font-size: 12px;
            }
            
            th, td {
                padding: 8px;
            }
            
            .btn-view {
                padding: 4px 8px;
                font-size: 12px;
            }
            
            .article-grid,
            .video-grid,
            .featured-grid,
            .version-grid {
                grid-template-columns: 1fr;
            }
            
            .featured-grid {
                gap: 15px;
            }
            
            .featured-card {
                padding: 12px;
            }
            
            .version-grid {
                gap: 10px;
            }
            
            .version-card {
                padding: 12px;
            }
            
            .news-grid {
                gap: 15px;
            }
            
            .news-card {
                padding: 12px;
            }
            
            .faq-item {
                padding: 12px;
            }