* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.container {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

/* 其他原始样式保持不变，只添加以下新样式 */
.special-btn[data-count="0"] .special-count {
    background-color: rgba(153, 153, 153, 0.1);
    color: #999;
}

.special-btn[data-count="0"] {
    opacity: 0.8;
    border-color: #cccccc;
}

.special-btn[data-count="0"]:hover {
    opacity: 1;
    border-color: #999999;
}

/* 分页提示信息样式 */
.page-info-message {
    text-align: center;
    padding: 15px;
    background-color: #f0f7ff;
    color: #3366aa;
    font-size: 0.95rem;
}

.page-info-message i {
    margin-right: 8px;
    color: #0066cc;
}

/* 新增：最火游戏样式 */
.hot-game {
    color: #e60012 !important; /* 红色标题 */
    position: relative;
    padding-left: 26px; /* 为图标留出空间 */
}

.hot-icon {
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff6b35; /* 橙色图标 */
    font-size: 1.1rem;
}

/* 链接有误按钮样式 */
.error-report-btn {
    background-color: #ff4757 !important;
    color: white !important;
}

.error-report-btn:hover {
    background-color: #ff2e43 !important;
}

.error-report-btn.processing {
    background-color: #ffa502 !important;
    cursor: not-allowed;
}

.error-report-btn.success {
    background-color: #2ed573 !important;
}

.error-report-btn.failed {
    background-color: #535c68 !important;
}

.error-report-btn.disabled {
    background-color: #cccccc !important;
    cursor: not-allowed !important;
}

/* 修改确认提示样式，去掉原来的文字提示，改为表单 */
.confirm-prompt {
    background-color: #fff8e1;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.confirm-title {
    font-size: 1.2rem;
    color: #856404;
    font-weight: 600;
    margin-bottom: 15px;
}

.confirm-content {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: left;
}

/* 去掉原来的微信联系样式 */
.wechat-contact {
    display: none;
}

/* 新增反馈表单样式 */
.feedback-form {
    text-align: left;
}

.feedback-textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    resize: vertical;
    margin-bottom: 15px;
    font-family: inherit;
}

.feedback-textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.feedback-counter {
    text-align: right;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

.feedback-counter.warning {
    color: #ff4757;
}

.feedback-tip {
    background-color: #e6f7ff;
    border: 1px solid #91d5ff;
    border-radius: 4px;
    padding: 8px 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #0050b3;
}

.feedback-tip i {
    margin-right: 5px;
    color: #1890ff;
}

.confirm-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.confirm-submit-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.confirm-submit-btn:hover:not(:disabled) {
    background-color: #218838;
}

.confirm-submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.confirm-cancel-btn {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.confirm-cancel-btn:hover {
    background-color: #5a6268;
}

/* 新增：已有反馈提示样式 */
.existing-feedback-prompt {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.existing-feedback-title {
    font-size: 1.1rem;
    color: #495057;
    font-weight: 600;
    margin-bottom: 10px;
}

.existing-feedback-content {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
}

/* 新增：NS头号玩家发展历程相关样式 */
.website-content {
    position: relative;
    background-color: #ffffff;
}

.website-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.website-history {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 13px;
    border: 1px solid #e0e0e0;
}

.website-history h2 {
    color: #e60012;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.website-history-content {
    position: relative;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

.website-history-content::-webkit-scrollbar {
    width: 5px;
}

.website-history-content::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.website-history-content::-webkit-scrollbar-thumb {
    background: #e60012;
    border-radius: 3px;
}

.website-history-content::-webkit-scrollbar-thumb:hover {
    background: #ff3333;
}

.website-history-content img {
    float: left;
    width: 165px !important;
    height: 125px !important;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    margin: 0 15px 0px 0 !important;
    shape-outside: margin-box;
}

.website-history-content p:first-of-type {
    margin-top: 0;
    text-align: justify;
    overflow: hidden;
}

.website-history-content a {
    color: #e60012;
    text-decoration: none;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    background-color: rgba(230, 0, 18, 0.1);
    border: 1px solid rgba(230, 0, 18, 0.3);
    transition: all 0.3s ease;
    margin: 0 2px;
    display: inline-block;
}

.website-history-content a:hover {
    color: #ff3333;
    background-color: rgba(230, 0, 18, 0.2);
    border-color: rgba(230, 0, 18, 0.5);
    transform: translateY(-1px);
}

.website-history p {
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}

.highlight-text {
    color: #e60012 !important;
    font-weight: bold !important;
    background-color: rgba(230, 0, 18, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}

.account-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.account-item {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e0e0e0;
}

.account-item:hover {
    background-color: #fff;
    transform: translateY(-2px);
    border-color: #e60012;
}

.account-qr {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    transition: all 0.3s ease;
}

.account-qr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.account-qr:hover img {
    transform: scale(1.05);
}

.account-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.account-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #e60012;
    display: flex;
    align-items: center;
    gap: 6px;
}

.account-name.gray {
    color: #999 !important;
    text-decoration: line-through;
}

.account-desc {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #666;
}

.account-status {
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: #e60012;
    color: white;
    border: 1px solid #e60012;
}

.status-inactive {
    background: #999;
    color: white;
    border: 1px solid #999;
}

.status-container {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.follow-btn {
    background: #3366cc;
    color: white;
    border: none;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 22px;
    line-height: 1;
}

.follow-btn:hover {
    background: #5588ee;
    transform: translateY(-1px);
}

/* 修改：通知栏样式 - 改为文字通栏广告 */
.announcement-bar {
    background: linear-gradient(135deg, #e60012 0%, #ff4d4d 100%);
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(230, 0, 18, 0.2);
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.announcement-bar a {
    color: #ffeb3b;
    text-decoration: underline;
    font-weight: 700;
    margin: 0 5px;
}

.announcement-bar a:hover {
    color: #fff;
    text-decoration: none;
}

.wechat-section {
    margin-top: 20px;
}

.wechat-section h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #e60012;
    font-size: 1.8rem;
}

.wechat-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
}

.search-guide-news {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    border: 1px solid #e0e0e0;
}

.search-guide-news .news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.search-guide-news h2 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.2rem;
    color: #e60012;
    font-weight: bold;
    margin: 0;
}

.search-guide-news .news-date {
    font-size: 0.85rem;
    color: #666;
    background-color: #f0f0f0;
    padding: 3px 8px;
    border-radius: 10px;
}

.search-guide-news .news-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 625px;
    overflow-y: auto;
    padding-right: 8px;
}

.search-guide-news .news-container::-webkit-scrollbar {
    width: 5px;
}

.search-guide-news .news-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.search-guide-news .news-container::-webkit-scrollbar-thumb {
    background: #e60012;
    border-radius: 3px;
}

.search-guide-news .news-container::-webkit-scrollbar-thumb:hover {
    background: #ff3333;
}

.search-guide-news .news-item {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    border-bottom: 1px dashed #e0e0e0;
}

.search-guide-news .news-item:last-child {
    border-bottom: none;
}

.search-guide-news .news-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-guide-news .news-item-time {
    font-size: 0.75rem;
    color: #e60012;
    font-weight: bold;
}

.search-guide-news .news-content {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #333;
}

.search-guide-news .news-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}

.search-guide-news .news-tag {
    font-size: 0.7rem;
    color: #e60012;
    background-color: rgba(230, 0, 18, 0.1);
    padding: 2px 5px;
    border-radius: 6px;
}

.search-guide-news .news-more {
    text-align: center;
    margin-top: 12px;
}

.search-guide-news .news-more-btn {
    background-color: #f0f0f0;
    color: #e60012;
    border: 1px solid rgba(230, 0, 18, 0.3);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.search-guide-news .news-more-btn:hover {
    background-color: rgba(230, 0, 18, 0.1);
    transform: translateY(-1px);
}

.tutorial-section {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: auto;
}

.tutorial-section h2 {
    margin-bottom: 15px;
    text-align: center;
    color: #e60012;
    padding-bottom: 10px;
    font-size: 1.2rem !important;
}

.tutorial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.tutorial-header h2 {
    margin-bottom: 0;
    text-align: left;
    padding-bottom: 0;
}

.more-link {
    color: #e60012;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: bold;
    transition: color 0.3s;
}

.more-link:hover {
    color: #ff3333;
    text-decoration: underline;
}

.tutorial-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.tutorial-item {
    background-color: #fff;
    border-radius: 6px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e0e0e0;
}

.tutorial-item:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    border-color: #e60012;
}

.tutorial-image {
    width: 150px;
    height: 110px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background-color: #f0f0f0;
}

.tutorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tutorial-image:hover img {
    transform: scale(1.05);
}

.tutorial-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    height: 110px;
    min-width: 0;
}

.tutorial-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #e60012;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.tutorial-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    width: 100%;
}

.tutorial-name a:hover {
    color: #ff3333;
    text-decoration: underline;
}

.tutorial-desc {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #666;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tutorial-meta {
    font-size: 0.75rem;
    color: #666;
    display: flex;
    gap: 12px;
}

.tutorial-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tutorial-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.tutorial-link-item:hover {
    background-color: #f0f0f0;
}

.tutorial-link-title {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 8px;
}

.tutorial-link-title:hover {
    color: #ff3333;
    text-decoration: underline;
}

.tutorial-link-date {
    color: #666;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #e60012;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background-color: #ff3333;
    transform: translateY(-2px);
}

.back-to-top.show {
    display: flex;
}

.qr-modal,
.wechat-modal,
.mvp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.qr-modal-content,
.wechat-modal-content,
.mvp-modal-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    max-width: 320px;
    width: 90%;
    border: 2px solid #e60012;
}

.qr-modal-content h3 {
    color: #e60012;
    margin-bottom: 5px;
    font-size: 0.85rem;
    font-weight: bold;
}

.qr-modal-content p {
    color: #0066cc;
    margin-bottom: 5px;
    font-size: 0.85rem;
    font-weight: bold;
}

.wechat-modal-content h3,
.mvp-modal-content h3 {
    color: #e60012;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.wechat-qr-large,
.mvp-qr-large {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
}

.wechat-qr-large img,
.mvp-qr-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qr-code-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code-placeholder {
    color: #666;
    font-size: 0.85rem;
    padding: 15px;
    text-align: center;
}

.wechat-close,
.qr-modal-close,
.mvp-close {
    background-color: #e60012;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
    width: 100%;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.wechat-close:hover,
.qr-modal-close:hover,
.mvp-close:hover {
    background-color: #ff3333;
}

header {
    background: linear-gradient(to right, #e60012, #ff4d4d);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 3px solid #e60012;
}

.logo {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
}

.logo-image {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.logo .brand {
    position: relative;
    background: #fff;
    color: #e60012;
    padding: 0px 15px;
    border-radius: 12px;
    margin-right: 10px;
    display: inline-block;
    transform: rotate(-4deg);
    font-size: 2.2rem;
    font-weight: 900;
}

.logo .brand::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: #fff;
    border-radius: 8px;
    z-index: 1;
}

.logo .brand::after {
    content: 'NS';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    color: #e60012;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 2.2rem;
    font-weight: 900;
    transform: rotate(-4deg);
}

.logo .brand {
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.4);
}

.tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.search-section {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-box {
    width: 100%;
    padding: 14px 60px 14px 20px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-box:focus {
    outline: none;
    box-shadow: 0 6px 20px rgba(230, 0, 18, 0.2);
}

.search-button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-90%);
    background-color: #e60012;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-button:hover {
    background-color: #ff3333;
}

.search-info {
    margin-top: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-keyword {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    margin: 0 2px;
}

.category-filter {
    padding: 25px 20px;
    background-color: #fafafa;
    border-bottom: 1px solid #e0e0e0;
}

.filter-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e60012;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.filter-title i ,.special-title i{
    margin-right: 10px;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-btn {
    padding: 8px 16px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    color: #666666;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-btn:hover {
    background-color: #ffefef;
    border-color: #e60012;
    color: #e60012;
}

.category-btn.active {
    background-color: #e60012;
    border-color: #e60012;
    color: white;
}

.category-btn i {
    margin-right: 5px;
    font-size: 0.8rem;
}

.toggle-special-btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background-color: #f0f7ff;
    border: 2px dashed #a0c8ff;
    border-radius: 8px;
    color: #3366aa;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.toggle-special-btn:hover {
    background-color: #e6f0ff;
    border-color: #0066cc;
    color: #004488;
}

.toggle-special-btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.toggle-special-btn.collapsed i {
    transform: rotate(-90deg);
}

.special-category {
    padding: 20px;
    background-color: #f0f7ff;
    border-bottom: 1px solid #d0e3ff;
    display: none;
}

.special-category.visible {
    display: block;
}

.special-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.special-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.special-btn {
    padding: 8px 20px;
    background-color: #ffffff;
    border: 1px solid #a0c8ff;
    border-radius: 6px;
    color: #3366aa;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.special-btn:hover {
    background-color: #e6f0ff;
    border-color: #0066cc;
    color: #004488;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.1);
}

.special-btn.active {
    background-color: #0066cc;
    border-color: #0066cc;
    color: white;
}

.special-count {
    background-color: rgba(0, 102, 204, 0.1);
    color: #0066cc;
    border-radius: 12px;
    padding: 2px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 8px;
}

.special-btn.active .special-count {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.game-list {
    padding: 20px;
}

.game-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #e0e0e0;
    margin-bottom: 0;
    transition: background-color 0.2s ease;
}

.game-item:hover {
    background-color: #f9f9f9;
}

.game-item:last-child {
    border-bottom: none;
}

.game-cover {
    position: relative;
    width: 176px;
    height: 100px;
    min-width: 160px;
    margin-right: 20px;
    flex-shrink: 0;
}

.game-cover-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-cover-img.loaded {
    opacity: 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    color: #999999;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.image-placeholder.hidden {
    display: none;
}

.image-placeholder i {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #cccccc;
}

.image-placeholder span {
    font-size: 0.8rem;
}

.game-size {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(230, 0, 18, 0.9);
    color: white;
    padding: 3px 8px;
    border-radius: 0 8px 0 8px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.game-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-name-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.game-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #222222;
    line-height: 1.4;
}

.game-alias {
    font-size: 1rem;
    color: #666666;
    margin-left: 8px;
}

.game-alias::before {
    content: "| ";
    color: #999999;
}

.game-english-name {
    font-size: 1rem;
    color: #888888;
    margin-bottom: 8px;
    font-style: italic;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.chinese-tag {
    background-color: #e60012;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 4px;
}

/* 新增两个标签样式 */
.special-tag {
    background-color: #28a745;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 4px;
}

.platform-tag {
    background-color: #ffc107;
    color: #333;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 4px;
}

.game-tag {
    background-color: #f0f0f0;
    color: #666666;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 15px;
    min-width: 100px;
}

.download-btn {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.baidu-btn {
    background-color: #2932e1;
    color: white;
}

.baidu-btn:hover {
    background-color: #1a22c9;
}

.quark-btn {
    background-color: #ff6b35;
    color: white;
}

.quark-btn:hover {
    background-color: #e55a2b;
}

.empty-download-space {
    height: 37px;
    visibility: hidden;
}

.pagination {
    display: flex;
    justify-content: center;
    padding: 25px 20px;
    border-top: 1px solid #f0f0f0;
    background-color: #fafafa;
}

.page-numbers {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0;
    color: #666666;
}

.page-number:hover {
    background-color: #ffefef;
    border-color: #e60012;
    color: #e60012;
}

.page-number.active {
    background-color: #e60012;
    color: white;
    border-color: #e60012;
}

/* 修改清空按钮样式 */
.clear-all-btn {
    display: none; /* 默认隐藏 */
    width: 280px;
    margin: 30px auto;
    padding: 16px 30px;
    background: linear-gradient(to right, #e60012, #ff3333);
    color: white;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(230, 0, 18, 0.2);
    border: none;
    cursor: pointer;
}

.clear-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 0, 18, 0.3);
    background: linear-gradient(to right, #ff3333, #ff6666);
}

.footer {
    text-align: center;
    padding: 20px;
    color: #999999;
    font-size: 0.9rem;
    border-top: 1px solid #f0f0f0;
    background-color: #fafafa;
}

.loading-indicator {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.1rem;
}

.loading-indicator i {
    margin-right: 10px;
    color: #e60012;
}

.search-results-info {
    padding: 15px 20px;
    background-color: #f0f7ff;
    border-bottom: 1px solid #d0e3ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.results-count {
    font-size: 1rem;
    color: #0066cc;
    font-weight: 600;
}

.current-filter {
    font-size: 0.9rem;
    color: #666;
}

.clear-filter-btn {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.clear-filter-btn:hover {
    background-color: #e55a2b;
}

/* 二维码模态框样式 */
.qr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.qr-modal-content {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.qr-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e60012;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-modal-title i {
    margin-right: 10px;
}

.qr-modal-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.qr-container {
    margin: 20px auto;
    display: flex;
    justify-content: center;
}

.qr-code-canvas {
    width: 200px;
    height: 200px;
    background-color: white;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

/* 小程序二维码图片样式 */
.mini-program-qrcode {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 5px;
}

/* 公众号二维码图片样式 */
.official-account-qrcode {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 5px;
}

.qr-mode-switch {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.mode-switch-btn {
    background-color: #f0f0f0;
    color: #666;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mode-switch-btn.active {
    background-color: #e60012;
    color: white;
}

.mode-switch-btn:hover:not(.active) {
    background-color: #e0e0e0;
}

.qr-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.qr-copy-btn {
    background-color: #2932e1;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex: 1;
}

.qr-copy-btn:hover {
    background-color: #1a22c9;
}

.qr-close-btn {
    background-color: #666;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex: 1;
}

.qr-close-btn:hover {
    background-color: #555;
}

.copy-success {
    color: #28a745;
    font-size: 0.9rem;
    margin-top: 10px;
    display: none;
}

.copy-success.show {
    display: block;
}

/* 新增：链接有误按钮样式 */
.qr-error-btn {
    background-color: #ff4757;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex: 1;
}

.qr-error-btn:hover {
    background-color: #ff2e43;
}

.qr-error-btn.processing {
    background-color: #ffa502;
    cursor: not-allowed;
}

.qr-error-btn.success {
    background-color: #2ed573;
}

.qr-error-btn.failed {
    background-color: #535c68;
}

.qr-error-btn.disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.error-report-success {
    color: #2ed573;
    font-size: 0.9rem;
    margin-top: 10px;
    display: none;
}

.error-report-success.show {
    display: block;
}

/* 新增：游戏集合栏目样式 - 重新设计版 */
.game-collection-section {
    margin-top: 40px;
}

.collection-header {
    text-align: center;
    margin-bottom: 35px;
}

.game-collection-section h2 {
    color: #e60012;
    font-size: 2rem;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 3px solid rgba(230, 0, 18, 0.2);
    display: inline-block;
    position: relative;
}

.game-collection-section h2 i {
    margin-right: 12px;
    font-size: 1.8rem;
}

.collection-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.collection-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.collection-card:hover {
    border-color: #e60012;
    box-shadow: 0 8px 25px rgba(230, 0, 18, 0.15);
}

.collection-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    loading: lazy;
}

.collection-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.collection-card-header {
    margin-bottom: 15px;
    width: 100%;
    overflow: hidden;
}

.collection-card-title {
    color: #222;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    display: block;
}

.collection-card-title a {
    color: inherit;
    text-decoration: none;
}

.collection-card-title a:hover {
    color: #e60012;
}

.collection-card-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制显示2行 */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

/* 查看更多按钮样式 */
.collection-more {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.collection-more-btn {
    background-color: #f8f9fa;
    color: #e60012;
    border: 2px solid #e60012;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.collection-more-btn:hover {
    background-color: #e60012;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 0, 18, 0.2);
}

.collection-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.collection-more-btn:hover i {
    transform: translateX(3px);
}

/* ============================================== */
/* 移动端媒体查询 - 全部归并到此处 */
/* ============================================== */

@media (max-width: 1200px) {
    body {
        padding: 15px;
    }
    
    .collection-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .game-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
    }
    
    .game-cover {
        width: 100%;
        height: 180px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .download-buttons {
        flex-direction: row;
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .categories, .special-categories {
        gap: 8px;
    }
    
    .category-btn, .special-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .logo {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .clear-all-btn {
        width: 90%;
    }
    
    .search-box {
        padding: 12px 60px 12px 16px;
        font-size: 1rem;
    }
    
    .search-button {
        padding: 8px 16px;
        font-size: 0.9rem;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* 移动端隐藏搜索提示信息 */
    .search-info {
        display: none;
    }
    
    .search-results-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    /* 移动端调整二维码模态框 */
    .qr-modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .qr-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .page-number {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .page-info-message {
        font-size: 0.85rem;
        padding: 10px;
    }
    
    /* 移动端调整模式切换按钮 */
    .qr-mode-switch {
        flex-direction: column;
        gap: 5px;
    }
    
    .mode-switch-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    /* 游戏集合栏目移动端适配 */
    .game-collection-section {
        margin-top: 30px;
    }
    
    .game-collection-section h2 {
        font-size: 1.6rem;
    }
    
    .collection-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .collection-card-image {
        height: 180px;
    }
    
    .collection-card-title {
        font-size: 1.4rem;
    }
    
    .collection-more {
        margin-top: 25px;
        padding-top: 20px;
    }
    
    .collection-more-btn {
        padding: 9px 22px;
        font-size: 0.9rem;
    }
    
    /* 移动端将两列布局改为单列布局 */
    .website-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wechat-main-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-filter,.tutorial-meta ,.tagline{
        display: none !important;
    }
    
    /* 在移动端去掉 container 的边框和阴影 */
    .container {
        border: none !important;
        box-shadow: none !important;
        background-color: transparent !important;
    }
    
    .game-list {
        padding: 15px 0px;
    }
    
    /* 可选：调整移动端其他相关元素的间距 */
    .account-container {
        gap: 12px;
    }
    
    .tutorial-container {
        gap: 12px;
    }
}

@media (max-width: 576px) {
    body {
        padding: 10px;
    }
    
    .game-item {
        padding: 12px 0;
    }
    
    .page-number {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .download-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .search-button {
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
        width: auto;
    }
    
    .page-info-message {
        font-size: 0.8rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .game-collection-section h2 {
        font-size: 1.4rem;
    }
    
    .collection-subtitle {
        font-size: 1rem;
    }
    
    .collection-card-content {
        padding: 20px;
    }
    
    .collection-card-title {
        font-size: 1.3rem;
    }
    
    .collection-card-desc {
        font-size: 0.9rem;
    }
    
    .collection-more-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    /* 小屏幕移动设备进一步优化 */
    .website-grid {
        gap: 15px;
    }
    
    .wechat-main-content {
        gap: 15px;
    }
}