/* 重置和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fefefe 0%, #e9ecef 100%);
    min-height: 100vh;
}
.main-content-shuoming{
    padding:0 0 20px 0;
}
.container {
 
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部导航 */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
   
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shenqingbtn {
    margin-left: 20px;
}

.shenqingbtn a {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.shenqingbtn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.about-btn {
    margin-left: 10px;
}

.about-btn a {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* 搜索框 */
.search-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 8px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 400px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 0;
    font-size: 16px;
    outline: none;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* 登录注册按钮 */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-login {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-login:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.btn-register {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* 主要内容区域 */
.main-content {
    padding: 40px 0;
}

/* 筛选器区域 */
.filter-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.filter-section h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-tag {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.filter-tag input[type="checkbox"] {
    display: none;
}

.filter-tag span {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
}

.filter-tag input[type="checkbox"]:checked + span {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* 游戏卡片网格 - 改为多列网格布局 */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.game-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    position: relative;
    z-index: 1;
}

.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.game-image {
    position: relative;
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
}

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

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

.game-overlay {
    position: absolute;
    top: 8px;
    right: 8px;
}

.new-server {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.game-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-title-row {
   
    margin-bottom: 5px;
    gap: 10px;
}

.game-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    flex: 1;
    margin: 0;
}

.game-rating-small {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.stars-small {
    display: flex;
    gap: 1px;
}

.stars-small i {
    color: #ffd700;
    font-size: 12px;
}

.rating-score-small {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 8px;
    min-width: 32px;
    text-align: center;
}

.game-description {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.game-type {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
}

.online-time {
    color: #999;
    font-size: 10px;
}

.server-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 8px;
    margin-top: 5px;
}

.server-name {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 11px;
    margin-bottom: 2px;
}

.server-time {
    color: #666;
    font-size: 10px;
    display: flex;
    gap: 10px;
}
.server-time em{
    color: #667eea;
    font-style: normal;
}

/* 游戏详情弹窗样式 */
.game-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.game-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.game-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #ff6b6b;
    color: white;
    transform: scale(1.1);
}

.modal-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* 左侧游戏详情 */
.modal-left {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    max-height: 100%;
}

.game-gallery {
    margin-bottom: 30px;
}

.gallery-main {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: white;
    color: #667eea;
    transform: scale(1.1);
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
}

.thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.thumb.active {
    opacity: 1;
    border: 2px solid #667eea;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-details {
    padding: 0 10px;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 5px;
  
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffd700;
    font-size: 18px;
}

.rating-score {
    font-size: 1px;
    font-weight: 700;
    color: #333;
}

.rating-count {
    color: #666;
    font-size: 12px;
}

.modal-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.game-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.info-label {
    font-weight: 600;
    color: #333;
    min-width: 100px;
}

.info-value {
    color: #666;
}

.info-link {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.game-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* 右侧评论区域 */
.modal-right {
    width: 100%;
    background: #f8f9fa;
    padding: 30px;
    border-left: 1px solid #e9ecef;
    max-height: 100%;
}

.comments-section {
    height: 100%;
}

.comments-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    position: sticky;
    top: 0;
    background: #f8f9fa;
    padding: 10px 0;
    z-index: 5;
}

/* 评分统计 */
.rating-stats {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.rating-overall {
    text-align: center;
    margin-bottom: 20px;
}

.rating-number {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 5px;
}

.rating-stars i {
    color: #ffd700;
    font-size: 20px;
}

.rating-text {
    color: #666;
    font-size: 14px;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.rating-bar span:first-child {
    width: 30px;
    color: #666;
}

.rating-bar span:last-child {
    width: 30px;
    text-align: right;
    color: #666;
}

.bar-bg {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* 写评价 */
.write-review {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.write-review h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.rating-input {
    display: flex;
    gap: 5px;
}

.rating-input i {
    font-size: 20px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-input i:hover,
.rating-input i.active {
    color: #ffd700;
}

.review-text {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    resize: vertical;
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 15px;
}

.review-text:focus {
    outline: none;
    border-color: #667eea;
}

/* 评论列表 */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-info {
    flex: 1;
}
.review-actions{
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 2px;
}

.comment-rating {
    display: flex;
    gap: 1px;
}

.comment-rating i {
    color: #ffd700;
    font-size: 12px;
}

.comment-score {
    font-size: 14px;
    font-weight: 600;
    color: #ffb500;
    padding: 1px 4px;
 
}

.comment-date {
    color: #999;
    font-size: 12px;
}

.comment-content {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.comment-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    background: transparent;
    border: none;
    color: #666;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.action-btn:hover {
    color: #667eea;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-box {
        max-width: 100%;
        order: 2;
    }
    
    .auth-buttons {
        order: 3;
    }
    
    .filter-tags {
        justify-content: center;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 15px;
    }
    
    .game-card {
        
    }
    
    .game-image {
        width: 100px;
        height: 70px;
    }
    
    .game-info {
        padding: 10px;
    }
    
    .game-title {
        font-size: 14px;
    }
    
    .game-description {
        font-size: 11px;
    }
    
    .stars-small i {
        font-size: 10px;
    }
    
    .rating-score-small {
        font-size: 10px;
        padding: 1px 4px;
        min-width: 28px;
    }
    
    /* 弹窗响应式 */
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-body {
        flex-direction: column;
    }
    
    .modal-left {
        padding: 20px;
    }
    
    .modal-right {
        width: 100%;
        padding: 20px;
        border-left: none;
        border-top: 1px solid #e9ecef;
    }
    
    .gallery-main {
        height: 250px;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .game-info-grid {
        grid-template-columns: 1fr;
    }
    
    .game-actions {
        justify-content: center;
    }
    
    .rating-stats {
        padding: 15px;
    }
    
    .rating-number {
        font-size: 28px;
    }
    
    .write-review {
        padding: 15px;
    }
    
    .comment-item {
        padding: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .filter-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }
    
    .shenqingbtn {
        margin-left: 10px;
    }
    
    .shenqingbtn a {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .search-box {
        padding: 6px 15px;
    }
    
    .search-input {
        font-size: 14px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .filter-section h2 {
        font-size: 20px;
    }
    
    .filter-tag span {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .game-card {
      
    }
    .logo-img{height: auto;width: 160px;}
    .game-image {
        width: 80px;
        height: 60px;
    }
    
    .game-title {
        font-size: 13px;
    }
    
    .game-description {
        font-size: 10px;
    }
    
    .game-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }
    
    /* 弹窗响应式 */
    .modal-content {
        width: 98%;
        max-height: 98vh;
        border-radius: 15px;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .modal-left {
        padding: 15px;
    }
    
    .modal-right {
        padding: 15px;
    }
    
    .gallery-main {
        height: 200px;
    }
    
    .gallery-thumbs {
        gap: 8px;
    }
    
    .thumb {
        width: 60px;
        height: 45px;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .game-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .modal-description {
        font-size: 14px;
    }
    
    .game-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .comments-title {
        font-size: 20px;
    }
    
    .rating-stats {
        padding: 12px;
    }
    
    .rating-number {
        font-size: 24px;
    }
    
    .rating-bars {
        gap: 6px;
    }
    
    .rating-bar {
        font-size: 11px;
    }
    
    .write-review h4 {
        font-size: 16px;
    }
    
    .review-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .review-text {
        min-height: 60px;
        font-size: 13px;
    }
    
    .comment-item {
        padding: 12px;
    }
    
    .comment-header {
        gap: 8px;
    }
    
    .user-avatar {
        width: 35px;
        height: 35px;
    }
    
    .user-name {
        font-size: 13px;
    }
    
    .comment-content {
        font-size: 13px;
    }
    
    .comment-actions {
        gap: 12px;
    }
    
    .action-btn {
        font-size: 11px;
    }
    
    .game-title {
        font-size: 13px;
    }
    
    .game-description {
        font-size: 10px;
    }
    
    .stars-small i {
        font-size: 9px;
    }
    
    .rating-score-small {
        font-size: 9px;
        padding: 1px 3px;
        min-width: 20px;
    }
}

/* 隐藏的游戏卡片 */
.game-card.hidden {
    display: none !important;
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card {
    animation: fadeIn 0.6s ease-out;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #5a6fd8, #6a4190);
}

/* 关于本站弹窗样式 */
.about-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.about-modal.active {
    opacity: 1;
    visibility: visible;
}

.about-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.about-content {
    padding: 20px;
    overflow-y: auto;
    max-height: 90vh;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.about-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid #667eea;
}

.about-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-section h3 i {
    color: #667eea;
    font-size: 18px;
}

.about-section p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-section ul {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 20px;
}

.about-section li {
    margin-bottom: 8px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    color: #667eea;
    font-size: 16px;
}

.feature-item span {
    font-weight: 500;
    color: #333;
}

.user-list,
.cooperation-list {
    list-style: none;
    padding-left: 0;
}

.user-list li,
.cooperation-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.user-list li::before,
.cooperation-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    color: #667eea;
    font-size: 16px;
    width: 20px;
}

.contact-item span {
    color: #333;
    font-weight: 500;
}

.support-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.support-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.about-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #f8f9fa;
    text-align: center;
}

.about-footer p {
    color: #999;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Footer样式 */
.footer-minimal {
    color: #222;
    font-size: 15px;
    margin-top: 60px;
    padding: 20px;
  }
  .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 0 18px 0;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-logo {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #222;
  }
  .footer-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #667eea;
  }
  .footer-social {
    display: flex;
    gap: 16px;
  }
  .footer-social a {
    color: #222;
    font-size: 20px;
    transition: color 0.2s;
  }
  .footer-social a:hover {
    color: #667eea;
  }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding: 16px 0 8px 0;
    font-size: 14px;
    color: #888;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-bottom a{
    color: #888;
    text-decoration: none;
  }
  .footer-links {
    display: flex;
    gap: 18px;
  }
  .footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #667eea;
  }
  @media (max-width: 700px) {
    .footer-top, .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }
    .footer-nav {
      gap: 16px;
    }
    .footer-logo {
      font-size: 20px;
    }
  }

/* 申请收录弹窗样式 */
.modal-apply {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.modal-apply.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.modal-apply .modal-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  animation: fadeIn 0.3s ease;
}
.modal-apply .modal-content {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 20px;
  max-width: 480px;
  width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 32px 32px 32px;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: slideIn 0.4s ease;
  border: 1px solid rgba(255,255,255,0.2);
}
.modal-apply .modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.modal-apply .modal-close:hover {
  background: #ff6b6b;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}
.modal-apply .modal-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.apply-form .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.apply-form label {
  font-size: 15px;
  color: #333;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.apply-form .required {
  color: #ff6b6b;
  font-size: 16px;
  font-weight: bold;
}
.apply-form input[type="text"],
.apply-form input[type="url"],
.apply-form input[type="date"],
.apply-form select,
.apply-form textarea {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}
.apply-form input[type="text"]:focus,
.apply-form input[type="url"]:focus,
.apply-form input[type="date"]:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102,126,234,0.1);
  transform: translateY(-1px);
}
.apply-form input[type="text"]::placeholder,
.apply-form input[type="url"]::placeholder,
.apply-form textarea::placeholder {
  color: #999;
  font-style: italic;
}
.apply-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}
.apply-form select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23667eea' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}
.apply-form input[type="date"] {
  cursor: pointer;
}
.apply-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.apply-form input[type="date"]:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
}
.apply-form input[type="date"]:focus::-webkit-calendar-picker-indicator {
  opacity: 1;
}
.apply-form textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.5;
}
.apply-form input[type="file"] {
  margin-top: 8px;
  padding: 12px;
  border: 2px dashed #e2e8f0;
  border-radius: 12px;
  background: rgba(248,249,250,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.apply-form input[type="file"]:hover {
  border-color: #667eea;
  background: rgba(102,126,234,0.05);
}
.apply-form input[type="file"]:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102,126,234,0.1);
}
.apply-images-preview {
  display: none;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 12px;
  background: rgba(248,249,250,0.5);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.apply-images-preview.has-images {
  display: flex;
}
.apply-images-preview img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.apply-images-preview img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.apply-form .btn-primary {
  width: 100%;
  margin-top: 20px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102,126,234,0.3);
  position: relative;
  overflow: hidden;
}
.apply-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102,126,234,0.4);
}
.apply-form .btn-primary:active {
  transform: translateY(1px);
}
.apply-form .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.apply-form .btn-primary:hover::before {
  left: 100%;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 500px) {
  .modal-apply .modal-content {
    padding: 24px 20px 20px 20px;
    margin: 20px;
    max-height: calc(100vh - 40px);
  }
  .modal-apply .modal-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .apply-form input[type="text"],
  .apply-form input[type="url"],
  .apply-form textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
  .apply-form .btn-primary {
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* 申请表单游戏类型选择样式 */
.apply-type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
}

.apply-type-tag {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.apply-type-tag input[type="checkbox"] {
  display: none;
}

.apply-type-tag span {
  padding: 8px 16px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
}

.apply-type-tag input[type="checkbox"]:checked + span {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border-color: #667eea;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.apply-type-tag:hover span {
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.05);
}

/* 响应式调整 */
@media (max-width: 500px) {
  .apply-type-tags {
    gap: 8px;
  }
  
  .apply-type-tag span {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* 违规举报弹窗样式 */
.modal-report {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-report.active {
  opacity: 1;
  visibility: visible;
}

.modal-report .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal-report .modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(30px) scale(0.9);
  transition: all 0.3s ease;
  z-index: 1000000;
  margin: auto;
  align-self: center;
  justify-self: center;
  /* 强制居中 */
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
}

.modal-report.active .modal-content {
  transform: translate(-50%, -50%) scale(1);
}

.modal-report .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f8f9fa;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-report .modal-close:hover {
  background: #e9ecef;
  transform: rotate(90deg);
}

.modal-report .modal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #dc3545;
  margin-bottom: 30px;
  padding-right: 50px;
}

.modal-report .modal-title i {
  font-size: 28px;
}

.report-form .form-group {
  margin-bottom: 20px;
}

.report-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.report-form .required {
  color: #dc3545;
  font-weight: bold;
}

.report-form input[type="text"],
.report-form input[type="email"],
.report-form select,
.report-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.report-form input[type="text"]:focus,
.report-form input[type="email"]:focus,
.report-form select:focus,
.report-form textarea:focus {
  outline: none;
  border-color: #dc3545;
  background: white;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.report-form input[type="text"]::placeholder,
.report-form input[type="email"]::placeholder,
.report-form textarea::placeholder {
  color: #999;
}

.report-form select {
  cursor: pointer;
  /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");*/
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.report-form select:focus {
  /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23dc3545' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");*/
}

.report-form textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.report-form input[type="file"] {
  padding: 10px;
  border: 2px dashed #dee2e6;
  border-radius: 10px;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
}

.report-form input[type="file"]:hover {
  border-color: #dc3545;
  background: #fff5f5;
}

.report-form input[type="file"]:focus {
  outline: none;
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.file-hint {
  font-size: 12px;
  color: #6c757d;
  margin-top: 5px;
}

.char-count {
  text-align: right;
  font-size: 12px;
  color: #6c757d;
  margin-top: 5px;
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.report-form .btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.report-form .btn-secondary {
  background: #6c757d;
  color: white;
}

.report-form .btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.report-form .btn-danger {
  background: linear-gradient(45deg, #dc3545, #c82333);
  color: white;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.report-form .btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.report-form .btn-danger:active {
  transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 600px) {
  .modal-report {
    padding: 10px;
    align-items: flex-start;
    padding-top: 20px;
  }
  
  .modal-report .modal-content {
    width: 100%;
    padding: 20px;
    margin: 0;
    max-height: calc(100vh - 40px);
    transform: translate(-50%, -50%) scale(1);
    top: 50%;
    left: 50%;
  }
  
  .modal-report .modal-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .report-form input[type="text"],
  .report-form input[type="email"],
  .report-form select,
  .report-form textarea {
    padding: 10px 12px;
    font-size: 16px; /* 防止iOS缩放 */
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .report-form .btn {
    width: 100%;
    justify-content: center;
  }
}

/* 举报消息样式 */
.report-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  animation: slideInDown 0.3s ease;
}

.report-message-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.report-message-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.report-message-info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.report-message i {
  font-size: 16px;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.user-avatar-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.user-avatar-box img {
    width: 20px;
    height: 20px;
    border-radius: 100%;
}

.show-more-comments {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.emoji-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.emoji-modal.active {
    opacity: 1;
    visibility: visible;
}

.smile-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.smile-container a {
    flex: 1;
    padding: 10px;
    font-size: 26px;
}
.game-image{margin:20px 0 20px 20px;}
.game-image img{border-radius: 4px;}
.hot-comment{font-size: 12px;
    color: #999;
    width: 100%;
    height: 20px;
    overflow: hidden;}
.search-btn i img.sou-img{width: 20px;height: 20px;}

.infolistbox-bar {
    margin-bottom: 32px;
}
.info-list-row {
    display: flex;
    gap: 24px;
}
.info-list-col {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 18px 20px 12px 20px;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.info-list-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #2d3a4b;
    letter-spacing: 1px;
}
.info-list-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.info-list-ul li {
    font-size: 15px;
    color: #4a5870;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: color 0.2s;
}
.info-list-ul li:last-child {
    border-bottom: none;
}
.info-list-ul li:hover {
    color: #1976d2;
}
@media (max-width: 900px) {
    .info-list-row {
        flex-direction: column;
        gap: 16px;
    }
}
.comment-numbox{
    font-size: 12px;
    color: #666;
    font-weight: normal;
}
.modal-block { background: #f8fafd; border-radius: 8px; margin: 18px 0 0 0; padding: 14px 16px 10px 16px; }
.modal-block-title { font-size: 16px; font-weight: bold; color: #1976d2; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.news-list .news-item { padding: 6px 0; border-bottom: 1px solid #e3e8ee; }
.news-list .news-item:last-child { border-bottom: none; }
.news-title { font-size: 15px; color: #222; font-weight: 500; }
.news-meta { font-size: 12px; color: #888; margin-top: 2px; }
.live-list { display: flex; flex-direction: column; gap: 10px; }
.live-item { display: flex; background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.live-cover { width: 90px; height: 54px; object-fit: cover; }
.live-info { display: flex; align-items: center; padding: 0 0 0 10px; }
.live-avatar { width: 28px; height: 28px; border-radius: 50%; margin-right: 8px; }
.live-meta { display: flex; flex-direction: column; }
.live-title { font-size: 14px; color: #222; font-weight: 500; }
.live-user { font-size: 12px; color: #888; }
.live-viewers { font-size: 12px; color: #e53935; margin-top: 2px; display: flex; align-items: center; gap: 2px; }
.video-list { display: flex; flex-direction: column; gap: 10px; }
.video-item { display: flex; background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.video-thumb-wrap { position: relative; }
.video-thumb { width: 90px; height: 54px; object-fit: cover; }
.video-duration { position: absolute; right: 4px; bottom: 4px; background: rgba(0,0,0,0.7); color: #fff; font-size: 11px; border-radius: 3px; padding: 1px 4px; }
.video-info { display: flex; flex-direction: column; justify-content: center; padding: 0 0 0 10px; }
.video-title { font-size: 14px; color: #222; font-weight: 500; }
.video-meta { font-size: 12px; color: #888; margin-top: 2px; display: flex; align-items: center; gap: 2px; }
.forum-list { display: flex; flex-direction: column; gap: 10px; }
.forum-item { display: flex; background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.forum-avatar { width: 36px; height: 36px; border-radius: 50%; margin: 10px; }
.forum-content { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 8px 10px 8px 0; }
.forum-title { font-size: 15px; color: #1976d2; font-weight: 500; margin-bottom: 2px; }
.forum-detail { font-size: 13px; color: #444; margin-bottom: 6px; max-height: 40px; overflow: hidden; text-overflow: ellipsis; }
.forum-meta { font-size: 12px; color: #888; display: flex; align-items: center; gap: 10px; }
.forum-meta i { font-size: 13px; }
@media (max-width: 900px) {
    .modal-block { padding: 10px 6px; }
    .live-cover, .video-thumb { width: 70px; height: 42px; }
    .forum-avatar { width: 28px; height: 28px; margin: 6px; }
}
.modal-block-title { position: relative; }
.modal-block-action {
    margin-left: auto;
    background: #fff;
    border: 1px solid #1976d2;
    color: #1976d2;
    border-radius: 4px;
    font-size: 13px;
    padding: 2px 10px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    outline: none;
}
.modal-block-action:hover {
    background: #1976d2;
    color: #fff;
}
.modal-block-title { display: flex; align-items: center; gap: 6px; }
.modal-title-action {
    margin-left: 16px;
    vertical-align: middle;
}
@media (max-width: 900px) {
    .modal-title-action { margin-left: 8px; font-size: 12px; padding: 2px 6px; }
}
.modal-tabs {
    display: flex;
    border-bottom: 1px solid #e3e8ee;
    margin: 30px 30px 0 30px;
}
.tab-btn {
    background: none;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 10px 24px;
    cursor: pointer;
    color: #888;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-bottom 0.2s;
}
.tab-btn.active {
    color: #1976d2;
    border-bottom: 2px solid #1976d2;
    font-weight: bold;
}
.tab-panel { display: none; }
.tab-panel.active { display: flex; }
.tab-detail { flex-direction: row; }
.tab-review { flex-direction: row; }
.forum-latest-section {
    background: #f8fafd;
    border-radius: 8px;
    margin-bottom: 18px;
    padding: 14px 16px 10px 16px;
}
.forum-latest-title {
    font-size: 16px;
    font-weight: bold;
    color: #1976d2;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.forum-latest-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.forum-latest-item {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 8px 0px;
}
.forum-latest-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #1976d2;
    font-weight: 500;
    margin-bottom: 2px;
}
.forum-latest-meta {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 10px;
}
.forum-latest-meta i { font-size: 13px; }
.modal-body {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  gap: 24px;
}
.modal-main {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
}
.modal-forum-side {
  width: 340px;
  min-width: 240px;
  max-height: 100%;
  overflow-y: auto;
  flex-shrink: 0;
  margin: 30px 30px 0 0;
}
@media (max-width: 900px) {
  .modal-body { flex-direction: column; }
  .modal-forum-side { width: 100%; margin-left: 0; margin-top: 18px; }
}
.modal-tab-content {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  /* 让tab内容区可滚动 */
}
.modal-content {
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.forum-tab-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.forum-tab-btn {
  flex: 1;
  padding: 6px 0;
  border: none;
  background: none;
  font-size: 15px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  color: #999;
  transition: background 0.2s, color 0.2s;
}
.forum-tab-btn.active {
  background: none;
  color: #1976d2;
  font-weight: bold;
  border-bottom: 1px solid #1976d2;
}
.forum-tab-panel { display: none; }
.forum-tab-panel.active { display: block; }
.forum-post-btn {
    width: 100%;
    margin-bottom: 12px;
    padding: 8px 0;
    background: f0f4fa;
    color: #303031;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
}
.forum-header-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.forum-header-row a.forum-more-link{    padding-left: 10px;}
.forum-title-main {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
}
.forum-more-link {
  font-size: 14px;
  color: #1976d2;
  text-decoration: none;
}
.taptap-comments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 18px 0;
    background: none;
    border-radius: 0;
    padding: 0;
  }
  
  .taptap-comments-grid .taptap-comment-item {
    background: #f1f5f9;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(102,126,234,0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 20px;
    border-bottom: none;
  }
  
  .taptap-comments-grid .taptap-comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 6px;
  }
  
  .taptap-comments-grid .taptap-comment-content {
    flex: 1;
    width: 100%;
  }
  
  .taptap-comments-grid .taptap-comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    flex-wrap: wrap;
  }
  
  .taptap-comments-grid .taptap-comment-username {
    font-weight: 600;
    color: #333;
    font-size: 12px;
  }
  
  .taptap-comments-grid .taptap-comment-stars {
    display: flex;
    gap: 1px;
  }
  
  .taptap-comments-grid .taptap-comment-stars i {
    color: #ffd700;
    font-size: 12px;
  }
  
  .taptap-comments-grid .taptap-comment-score {
    color: #ffb500;
    font-size: 12px;
    font-weight: bold;
    margin-left: 4px;
  }
  
  .taptap-comments-grid .taptap-comment-like {
    color: #888;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 2px;
  }
  
  .taptap-comments-grid .taptap-comment-like i {
    color: #888;
    font-size: 13px;
  }
  
  .taptap-comments-grid .taptap-comment-date {
    color: #aaa;
    font-size: 12px;
    margin-left: 8px;
  }
  
  .taptap-comments-grid .taptap-comment-text {
    color: #444;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 4px;
    word-break: break-all;
  }
  @media (max-width: 900px) {
    .taptap-comments-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  }
  .taptap-comment-footer{display: flex;align-items: center;gap: 10px;}
  .taptap-userbox{    display: flex
    ;
        gap: 15px;
        align-items: center;}
.game-rating .stars i{font-size: 14px;}
.rating-count{font-size: 12px;}
.game-title-detialsbox{display: flex
    ;
        align-items: center;
        justify-content: space-between;
    }
.game-rating-detialsbox{
    display: flex
;
    align-items: center;
    gap: 10px;
}
.modal-details-title{margin-bottom: 0;}