﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar {
    background-color: #2c3e50;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 22px;
    font-weight: bold;
    color: #00bc8c;
    text-decoration: none;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}
.nav-menu a:hover {
    color: #00bc8c;
}
.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.main-content {
    display: flex;
    gap: 25px;
    margin: 30px 0;
}

.main-section {
    flex: 7;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-section {
    flex: 3;
    position: sticky;
    top: 80px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.module {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.module-title {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #00bc8c;
}

.main-section img{ width:95%; }
.banner-module {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 50px 25px;
    text-align: center;
    border-radius: 8px;
}
.banner-module h1 {
    font-size: 32px;
    margin-bottom: 10px;
}
.banner-module p {
    font-size: 16px;
    opacity: 0.9;
}


.device-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.device-col {
    flex: 1;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
}
.device-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2c3e50;
}
.device-note {
    padding: 15px;
    background-color: #e8f5e9;
    border-radius: 6px;
    font-size: 14px;
    color: #2e7d32;
}


.download-block {
    margin-bottom: 25px;
}
.download-block h4 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #2c3e50;
}
.download-tips {
    margin-top: 10px;
    padding: 10px;
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    font-size: 14px;
    color: #827717;
}
.step-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.step-num {
    width: 24px;
    height: 24px;
    background-color: #00bc8c;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 14px;
    flex-shrink: 0;
}
.step-text {
    font-size: 14px;
}
.ourplay-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}
.ourplay-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    margin-bottom: 10px;
}
.faq-item {
    margin-bottom: 10px;
    font-size: 14px;
}
.faq-item strong {
    color: #2c3e50;
}


.official-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.official-links a {
    color: #00bc8c;
    text-decoration: none;
    font-size: 14px;
}
.official-links a:hover {
    text-decoration: underline;
}


.version-list {
    margin-left: 20px;
    font-size: 14px;
    line-height: 1.8;
}
.version-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.version-table th, .version-table td {
    padding: 10px;
    border: 1px solid #e0e0e0;
    text-align: left;
}
.version-table th {
    background-color: #f5f7fa;
    color: #2c3e50;
}


.server-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.server-table th, .server-table td {
    padding: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
}
.server-table th {
    background-color: #f5f7fa;
    color: #2c3e50;
}


.game-intro p {
    font-size: 14px;
    margin-bottom: 10px;
}
.game-data {
    margin: 15px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
}
.game-recommend-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin: 15px 0;
}
.game-recommend-table th, .game-recommend-table td {
    padding: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
}
.game-recommend-table th {
    background-color: #f5f7fa;
    color: #2c3e50;
}
.other-games {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 15px 0;
}
.other-game-item {
    text-align: center;
}
.other-game-item img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 5px;
}
.other-game-item p {
    font-size: 12px;
}
.review-item {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
    font-size: 13px;
}
.review-author {
    color: #7f8c8d;
    font-size: 12px;
    margin-top: 5px;
}


.news-list, .strategy-list, .qa-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.news-item, .strategy-item, .qa-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.news-item img, .strategy-item img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}
.news-content, .strategy-content, .qa-content {
    flex: 1;
}
.news-content h4, .strategy-content h4, .qa-content h4 {
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 5px;
}
.news-content p, .strategy-content p, .qa-content p {
    font-size: 13px;
    color: #777;
}
.news-thumb {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
}
.news-info {
    flex: 1;
}
.news-title {
    font-size: 16px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}
.news-title:hover {
    color: #00bc8c;
}
.news-desc {
    font-size: 13px;
    color: #777;
}


.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-list-item {
    font-size: 14px;
}
.faq-list-item strong {
    color: #2c3e50;
}


.download-btn {
    display: inline-block;
    background-color: #00bc8c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    margin: 5px 0;
}
.download-btn:hover {
    background-color: #009973;
}
.download-btn-block {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}
.download-badge {
    background-color: #e74c3c;
    color: #fff;
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 10px;
}


.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.compare-table th, .compare-table td {
    padding: 12px;
    border: 1px solid #e0e0e0;
    text-align: center;
}
.compare-table th {
    background-color: #f5f7fa;
    color: #2c3e50;
}
.badge-good {
    color: #00bc8c;
    font-weight: bold;
}
.badge-bad {
    color: #e74c3c;
    font-weight: bold;
}

/* 长尾链接样式 */
.long-tail-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.long-tail-link {
    display: block;
    padding: 10px 15px;
    background-color: #f8f9fa;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s;
}
.long-tail-link:hover {
    background-color: #e9ecef;
    color: #00bc8c;
}


.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 0;
    margin-top: 30px;
    text-align: center;
}
.footer p {
    font-size: 14px;
    margin-bottom: 8px;
}
.footer-links {
    margin-top: 10px;
}
.footer-links a {
    color: #00bc8c;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}


@media (max-width: 800px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: #2c3e50;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px;
        gap: 15px;
    }
    .nav-menu.active {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .main-content {
        flex-direction: column;
    }
    .device-row {
        flex-direction: column;
    }
    .banner-module h1 {
        font-size: 24px;
    }
    .server-table, .game-recommend-table, .version-table, .compare-table {
        font-size: 11px;
    }
    .server-table th, .server-table td,
    .game-recommend-table th, .game-recommend-table td,
    .version-table th, .version-table td,
    .compare-table th, .compare-table td {
        padding: 5px;
    }
    .news-item img, .strategy-item img, .news-thumb {
        width: 80px;
        height: 60px;
    }
}