@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    line-height: 1.5;
    overflow-x: hidden;
    overflow-y: scroll;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    width: 100%;
    max-width: 100%;
    position: relative;
    background-attachment: fixed;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

.container {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    min-height: 100vh;
    height: auto !important;
    padding-top: 60px;
    padding-bottom: 60px;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
    min-width: 0;
}

@media (max-width: 650px) {
    .container {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
        padding-top: 56px;
    }
}

/* 顶部头部导航 */
.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #1e1616;
    flex-wrap: nowrap;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 650px;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
}

.site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;   
    border-radius: 5px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.site-logo h1 {
    font-size: 25px;
    font-weight: 600;
    color: #4fb3efb8;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 10px;
    flex: 1;
    max-width: 280px;
    min-width: 80px;
    margin-left: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

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

.search-icon {
    color: #999;
    font-size: 13px;
    cursor: pointer;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon:hover {
    color: #666;
}

/* 移动端响应式优化 */
@media (max-width: 480px) {
    .header-nav {
        padding: 8px 10px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .site-logo h1 {
        font-size: 25px;
    }

    .search-box {
        padding: 4px 8px;
        max-width: 180px;
        min-width: 60px;
        margin-left: 8px;
    }

    .search-input {
        font-size: 11px;
        min-width: 0;
    }

    .search-icon {
        font-size: 12px;
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
}

@media (max-width: 360px) {
    .site-logo h1 {
        display: none;
    }

    .search-box {
        max-width: 150px;
        min-width: 50px;
        margin-left: 8px;
    }

    .search-input {
        font-size: 10px;
    }

    .search-icon {
        font-size: 11px;
        width: 13px;
        height: 13px;
    }
}

/* 底部导航菜单 */
.nav-menu {
    display: flex;
    justify-content: space-around;
    background-color: #fff;
    padding: 8px 0;
    border-top: 1px solid #eee;
    position: fixed;
    bottom: 0;
    z-index: 999;
    width: 100%;
    max-width: 650px;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
}

.nav-item {
    color: #666;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.nav-item i {
    font-size: 18px;
}

.nav-item.active {
    color: #ffd700;
}

.nav-item:active {
    opacity: 0.7;
}

.nav-item:not(.active):hover {
    color: #999;
}

/* Banner */
.banner {
    position: relative;
    margin-top: 0;
    margin-bottom: 15px;
    overflow: hidden;
    height: 225px;
    padding: 0 !important;
}

.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

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

.slide p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: #fff;
    font-size: 15px;
}

.banner-indicators {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #fff;
}

.banner-prev, .banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-prev {
    left: 10px;
}

.banner-next {
    right: 10px;
}

.banner-prev:hover, .banner-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* 今日推荐 */
.today-recommend {
    padding: 15px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.recommend-badge {
    background-color: #e74c3c;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    margin-bottom: 8px;
    display: inline-block;
}

.recommend-info {
    flex: 1;
}

.recommend-info h3 {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 5px 0;
    padding: 0;
}

.recommend-info p {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
    padding: 0;
}

.recommend-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    overflow: hidden;
}

.recommend-link {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
}

.recommend-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    padding: 0;
    margin: 0;
    border: none;
}

/* 统一板块间距 */
.section-title,
.news-section,
.welfare-section,
.game-list-container,
.today-recommend,
.banner {
    padding: 0 15px;
    margin-bottom: 15px;
    /*margin-top: 15px;*/
}

/* 游戏列表 */
/* .section-title {
} */

/* 游戏内容页 - 礼包板块上间距 */
.libao {
    margin-top: 15px;
}

.section-title .section-content {
    padding-bottom: 15px;
}

.section-title .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.section-title .section-header h2 {
    text-decoration: none;
    color: inherit;
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: bold;
}

/* 通用更多链接样式 */
.section-title .more,
.welfare-title .more,
.gift-header .more {
    font-size: 14px;
    font-weight: normal;
    color: #999;
    text-decoration: none;
}

.game-list {
    padding: 0;
    list-style: none;
    margin: 0;
}

.game-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.game-icon {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
}

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

.game-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.game-list .game-item .game-info h3 {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 0 0 5px 0;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: calc(100% - 10px);
    position: relative;
}

.game-list .game-item .game-info h3 a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* 省略号容器样式 */
/* .ellipsis-container 已弃用，使用 game-info h3 替代 */

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 5px;
}

.tag {
    padding: 2px 6px;
    background-color: #f5f5f5;
    border-radius: 3px;
    font-size: 11px;
    color: #666;
}

.tag.tag-1 {
    background-color: #00b894;
    color: #fff;
}

.tag.tag-2 {
    background-color: #a29bfe;
    color: #fff;
}

.tag.tag-3 {
    background-color: #fdcb6e;
    color: #2d3436;
}

.game-desc {
    font-size: 12px;
    color: #999;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.download-btn {
    padding: 10px 20px;
    background-color: #fdcb6e;
    color: #2d3436;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
}

/* 新游预约 */
.new-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-items: center;
}

.new-game-item {
    text-align: center;
    width: 140px;
}

.new-game-icon {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    margin: 0 auto 8px;
    overflow: hidden;
    text-decoration: none;
}

.new-game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-game-item h3 {
    margin: 0;
    padding: 0;
}

.new-game-link {
    text-decoration: none;
    color: inherit;
    font-size: 15px;
    color: #333;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 8px;
}

.new-game-count {
    font-size: 10px;
    color: #999;
    margin: 0 auto 8px;
    padding: 0;
    width: fit-content;
}

.reserve-link {
    text-decoration: none;
    display: block;
    text-align: center;
}

.reserve-btn {
    padding: 4px 12px;
    background-color: #fff;
    color: #e74c3c;
    border: 1px solid #e74c3c;
    border-radius: 15px;
    font-size: 11px;
    cursor: pointer;
}

/* 福利网游 */
.welfare-section {
    background: linear-gradient(135deg, #fdcb6e 0%, #f39c12 100%);
    padding: 15px !important;
}

.welfare-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2d3436;
    margin-bottom: 15px;
}

.welfare-title h2 {
    font-size: 20px;
    margin: 0;
    padding: 0;
}

.welfare-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 10px 15px;
    gap: 15px;
}

.welfare-grid::-webkit-scrollbar {
    height: 6px;
}

.welfare-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.welfare-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.welfare-grid::-webkit-scrollbar-thumb:hover {
    background: #999;
}

@media (max-width: 480px) {
    .welfare-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding: 10px 15px;
        gap: 5px;
    }
    
    .welfare-item {
        flex-shrink: 0;
        width: 90px;
    }
    
    .new-game-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        justify-items: center;
        padding: 0 5px;
    }
    
    .new-game-item {
        width: 75px;
    }
    
    .top-item {
        width: 110px !important;
    }
    
    .top-item h3 {
        font-size: 12px !important;
    }
}

.welfare-item {
    flex-shrink: 0;
    text-align: center;
    width: 120px;
}

a.welfare-icon {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    margin: 0 auto 6px;
    overflow: hidden;
    text-decoration: none;
}

a.welfare-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welfare-item h3 {
    font-size: 15px;
    font-weight: normal;
    color: #2d3436;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.welfare-link {
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}

.gift-count {
    display: block;
    font-size: 12px;
    color: #d63031;
    margin-top: 4px;
}

.play-btn {
    padding: 4px 14px;
    background-color: #2d3436;
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 11px;
    cursor: pointer;
}

/* 独家礼包 */
.gift-section {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    padding: 15px;
    position: relative;
    box-sizing: border-box;
    margin-bottom: 15px;
}

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

.gift-header h2 {
    font-size: 20px;
    margin: 0;
    padding: 0;
}

.gift-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.gift-item {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.gift-icon-link {
    display: block;
    text-decoration: none;
    flex-shrink: 0;
}

.gift-icon {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    flex-shrink: 0;
    object-fit: cover;
}

.gift-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.gift-info h3 {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
    margin: 0 0 4px 0;
}

.gift-info h3 a {
    text-decoration: none;
    color: inherit;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gift-info a:has(.gift-btn) {
    text-decoration: none;
}

.gift-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gift-btn {
    padding: 5px 15px;
    background-color: #fff;
    border: none;
    border-radius: 4px;
    color: #6c5ce7;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
    width: 100%;
    align-self: flex-start;
}

.gift-btn:hover {
    background-color: #f0f0f0;
}

@media (max-width: 480px) {
    .gift-grid {
        grid-template-columns: 1fr;
    }
}

/* 页脚 */
.footer {
    margin-top: 15px;
    padding: 20px 15px 5px;
    text-align: center;
}

.friend-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
}

.friend-links h2 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.friend-links .links-container {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.friend-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: none;
    -webkit-transition: none;
}

.footer p {
    font-size: 12px;
    color: #999;
    margin: 0;
    padding: 0;
}

/* 手游攻略 */
.guide-list {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.guide-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

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

.guide-date {
    background-color: #a8cf45;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 4px;
    margin-right: 12px;
    flex-shrink: 0;
}

.guide-item h3 {
    color: #333;
    font-size: 14px;
    margin: 0;
    padding: 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.guide-item h3 a {
    text-decoration: none;
    color: inherit;
}

.guide-item h3 a:hover {
    color: #e74c3c;
}

/* 热门合集 */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (max-width: 480px) {
    .collection-grid {
        grid-template-columns: 1fr;
    }
}

.collection-item {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.collection-image {
    display: block;
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

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

.collection-image:hover img {
    transform: scale(1.1);
}

.collection-count {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 12px;
    color: #666;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 6px;
    border-radius: 4px;
}

.collection-item h3 {
    padding: 10px;
    font-size: 15px;
    font-weight: normal;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.collection-item h3 a {
    text-decoration: none;
    color: inherit;
}

/* 人气排行 */
.top-three-row {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.top-item {
    text-align: center;
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.top-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-badge.top1 {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #8b6914;
}

.top-badge.top2 {
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
    color: #555;
}

.top-badge.top3 {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
    color: #6b4423;
}

.top-icon {
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 8px;
}

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

.top-item h3 {
    font-size: 15px;
    color: #333;
    margin: 0 auto 4px;
    padding: 0;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    box-sizing: border-box;
}

.top-item h3 a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.top-item a:last-child {
    display: inline-block;
}

.top-tag {
    font-size: 10px;
    color: #999;
    margin-bottom: 8px;
}

.download-btn-small {
    padding: 5px 15px;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 11px;
    cursor: pointer;
    flex-shrink: 0;
}

.ranking-row a {
    display: inline-block;
    text-decoration: none;
}

.ranking-list {
    padding-top: 10px;
}

.ranking-row {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.ranking-row:last-child {
    border-bottom: none;
}

.rank-num {
    width: 20px;
    height: 20px;
    background-color: #f5f5f5;
    color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
}

.rank-icon {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 10px;
    flex-shrink: 0;
}

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

.rank-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.rank-info h3 {
    font-size: 15px;
    color: #333;
    margin: 0 0 3px 0;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
}

.rank-info h3 a {
    text-decoration: none;
    color: inherit;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
}

.rank-desc {
    font-size: 11px;
    color: #999;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.hot-badge {
    display: inline-block;
    background-color: #ff6b6b;
    color: #fff;
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 9px;
    margin-right: 4px;
}

/* 悬浮按钮 */
.float-btn {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #e74c3c;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* 响应式 */
@media (max-width: 480px) {
    .search-box {
        max-width: 200px;
    }

    .nav-item {
        padding: 0 12px;
        font-size: 14px;
    }

    .game-icon {
        width: 60px;
        height: 60px;
    }

    .download-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .game-info h3 {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    
    .game-info h3 a {
        font-size: 13px;
        display: block;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .welfare-item h3 a,
    .new-game-item h3 a,
    .gift-info h3 a,
    .guide-item h3 a {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* 游戏分类导航 */
.section-title .category-list {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}

.section-title .category-all {
    flex-shrink: 0;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 15px 6px 0;
    position: relative;
    white-space: nowrap;
}

.section-title .category-all.active {
    color: #d63031;
    font-weight: bold;
}

.section-title .category-all.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #d63031;
}

.section-title .category-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    flex: 1;
}

.section-title .category-scroll::-webkit-scrollbar {
    display: none;
}

.section-title .category-scroll .category-item {
    flex-shrink: 0;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    position: relative;
    white-space: nowrap;
}

.section-title .category-scroll .category-item.active {
    color: #d63031;
    font-weight: bold;
}

.section-title .category-scroll .category-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #d63031;
}

/* 游戏列表页面样式 */
.game-list-section {
    padding: 0;
    padding-bottom: 15px;
}

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

/* 礼包列表页样式 - 覆盖原有样式 */
.section-title .section-content .gift-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-title .section-content .gift-list .gift-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
    background-color: transparent;
    border-radius: 0;
}

.section-title .section-content .gift-list .gift-item:last-child {
    border-bottom: none;
}

.section-title .section-content .gift-list .gift-item .gift-icon {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.section-title .section-content .gift-list .gift-item .gift-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title .section-content .gift-list .gift-item .gift-info {
    flex: 1;
    min-width: 0;
    display: block;
}

.section-title .section-content .gift-list .gift-item .gift-info h3 {
    margin: 0 0 5px 0;
    font-size: 15px;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section-title .section-content .gift-list .gift-item .gift-info h3 a {
    color: inherit;
    text-decoration: none;
}

.section-title .section-content .gift-list .gift-item .gift-info .gift-desc {
    margin: 0 0 4px 0;
    font-size: 13px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.section-title .section-content .gift-list .gift-item .gift-info .gift-time {
    margin: 0;
    font-size: 12px;
    color: #999;
}

.section-title .section-content .gift-list .gift-item .receive-btn {
    padding: 10px 20px;
    background-color: #fdcb6e;
    color: #2d3436;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    flex-shrink: 0;
}

/* 新闻列表页面样式 */
.news-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    background-color: #f5f5f5;
    margin: 0 -15px;
}

.news-categories .category-item {
    padding: 8px 20px;
    background-color: #fff;
    color: #666;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    flex-shrink: 0;
}

.news-categories .category-item.active {
    background-color: #d63031;
    color: #fff;
}

.news-list {
    padding: 15px 0;
}

.news-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 15px;
}

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

.news-content {
    flex: 1;
    min-width: 0;
}

.news-content h3 {
    margin: 0 0 10px 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.news-content h3 a {
    color: inherit;
    text-decoration: none;
}

.news-desc {
    margin: 6px 0;
    font-size: 12px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin: 0;
}

.news-date,
.news-author {
    flex-shrink: 0;
}

.news-meta a {
    text-decoration: none;
    color: #999;
}

.news-image {
    width: 120px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.news-image:hover img {
    transform: scale(1.1);
}

/* 应用下载页面样式 */
.app-container {
    background: linear-gradient(180deg, #3280d3 0%, #a933cf 100%);
    position: relative;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 650px) {
    .app-container {
        background: linear-gradient(180deg, #3280d3 0%, #a933cf 100%);
    }
}

/* 装饰圆形背景 */
.circle-bg {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.circle-1 {
    width: 220px;
    height: 220px;
    top: 100px;
    left: -40px;
    background-color: rgba(150, 200, 180, 0.4);
}

.circle-2 {
    width: 180px;
    height: 180px;
    top: 200px;
    right: -30px;
    background-color: rgba(180, 220, 150, 0.4);
}

.circle-3 {
    width: 160px;
    height: 160px;
    top: 380px;
    left: 30%;
    background-color: rgba(160, 200, 200, 0.4);
}

/* 顶部标题区域 */
.app-header-title {
    position: relative;
    z-index: 10;
    padding: 20px 20px 10px;
    text-align: center;
}

.header-main-title {
    font-size: 28px;
    font-weight: bold;
    color: #f7931e;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.header-main-title i {
    color: #ff6b35;
}

.header-subtitle {
    font-size: 14px;
    color: #f7931e;
    margin: 5px 0 0 0;
    padding: 0;
}

/* 主内容区域 */
.app-main {
    position: relative;
    z-index: 10;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo区域 */
.app-logo-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
}

.app-logo-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.4);
}

.app-logo-box .logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* 标题区域 - 应用下载页 */
.app-container .app-title {
    font-size: 38px;
    font-weight: bold;
    color: #f7931e;
    margin: 0 0 8px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.app-subtitle {
    font-size: 18px;
    color: #f7931e;
    margin: 0 0 25px 0;
    font-weight: bold;
}

/* 标签区域 */
.app-tags-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.app-tag {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.app-tag.tag-yellow {
    background: linear-gradient(135deg, #f7931e 0%, #f3b61f 100%);
}

.app-tag.tag-orange {
    background: linear-gradient(90deg, #ff7b33 0%, #ff9f43 100%);
    border-radius: 8px;
    transform: rotate(-10deg);
    display: inline-block;
}

.app-tag.tag-orange span {
    display: inline-block;
    transform: rotate(10deg);
}

.app-tag.tag-green {
    background: linear-gradient(90deg, #2dd869 0%, #5be88a 100%);
    border-radius: 8px;
    transform: rotate(5deg);
    display: inline-block;
}

.app-tag.tag-green span {
    display: inline-block;
    transform: rotate(-5deg);
}

.app-tag.tag-blue {
    background: linear-gradient(90deg, #38a1f3 0%, #6ec6ff 100%);
    border-radius: 8px;
    transform: rotate(-5deg);
    display: inline-block;
}

.app-tag.tag-blue span {
    display: inline-block;
    transform: rotate(5deg);
}

/* 下载按钮区域 */
.app-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* margin-top: 15px; */
}

.app-download-btn {
    padding: 12px 40px;
    background: linear-gradient(135deg, #f7931e 0%, #f3b61f 100%);
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 5px 15px rgba(247, 147, 30, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}

/* 底部大下载按钮 */
.app-big-download {
    margin-top: 20px;
    width: 100%;
    padding: 0 20px;
}

.big-download-btn {
    display: block;
    width: 70%;
    margin: 0 auto;
    padding: 10px 0;
    background: linear-gradient(135deg, #f7931e 0%, #f3b61f 100%);
    border: none;
    border-radius: 40px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* 应用截图展示区域 */
.app-screenshots {
    width: 100%;
    margin-top: 25px;
    padding: 0 15px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.screenshots-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 0 0 25px 0;
    padding: 0;
}

.screenshots-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: #f7931e rgba(0, 0, 0, 0.2);
    justify-content: flex-start;
}

.screenshots-scroll::-webkit-scrollbar {
    height: 8px;
}

.screenshots-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.screenshots-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f7931e 0%, #f3b61f 100%);
    border-radius: 4px;
}

.screenshots-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f3b61f 0%, #f7931e 100%);
}

.screenshot-item {
    flex-shrink: 0;
    width: 170px;
    height: 260px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 4px solid #ffd700;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 移动端响应式 */
@media (max-width: 480px) {
    .screenshot-item {
        width: 140px;
        height: 220px;
    }
    
    .screenshots-title {
        font-size: 18px;
    }
    
    .screenshots-scroll {
        gap: 10px;
    }
}

/* 面包屑导航样式 */
.breadcrumb {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #f5f5f5;
    font-size: 14px;
    color: #666;
    margin: 0 0 15px 0;
    border-radius: 4px;
}

.breadcrumb-item {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item:hover {
    color: #f7931e;
}

.breadcrumb-item.active {
    color: #999;
    pointer-events: none;
}

.breadcrumb-arrow {
    margin: 0 8px;
    color: #ccc;
    font-size: 14px;
}

/* 游戏信息板块样式 */
.game-info-section {
    padding: 15px;
    /* margin-bottom: 20px; */
}

/* 图标和标题区域 */
.app-header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.app-icon-wrap {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 15px;
    margin: 0 0 8px 0;
}

.app-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-info {
    flex: 1;
}

/* 标题区域 - 游戏详情页 */
.game-info-section .app-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
}

/* 顶部按钮区域 */
.header-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.header-btn {
    width: auto;
    min-width: 80px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
}

.header-btn i {
    margin-right: 4px;
    font-size: 14px;
}

.header-btn.android {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: #fff;
}

.header-btn.android:hover {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
}

.header-btn.ios {
    background: linear-gradient(135deg, #666 0%, #444 100%);
    color: #fff;
}

.header-btn.ios:hover {
    background: linear-gradient(135deg, #444 0%, #333 100%);
}

.header-btn.gift {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #fff;
}

.header-btn.gift:hover {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

/* 详细信息区域 */
.app-details-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.detail-item {
    flex: 0 0 33.33%;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    min-width: 120px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-size: 13px;
    color: #999;
    margin-right: 4px;
    white-space: nowrap;
}

.detail-value {
    font-size: 13px;
    color: #999;
}

@media (max-width: 480px) {
    .detail-item {
        flex: 0 0 50%;
        min-width: auto;
    }
}

/* 应用简介 */
.app-intro {
    padding: 15px;
    margin: 15px 0;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.app-intro p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* 应用展示区域 */
.app-showcase {
    margin-top: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
}

/* 专题推荐板块 */
.special-section {
    margin-top: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
}

/* 新闻详情页的专题推荐 - 单独添加边距 */
.news-detail-section ~ .special-section {
    margin-top: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
}

/* 用户评价板块 */
.user-review-section {
    margin-top: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
}

/* 最近更新板块 */
.recent-update-section {
    margin-top: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
}

.showcase-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
    padding-left: 10px;
    border-left: 4px solid #4a90d9;
}

.showcase-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 10px;
}

.showcase-scroll::-webkit-scrollbar {
    height: 4px;
}

.showcase-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.showcase-scroll::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
}

.showcase-item {
    flex-shrink: 0;
    width: 180px;
    position: relative;
}

.showcase-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(74, 144, 217, 0.9);
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    z-index: 1;
}

.showcase-tag i {
    margin-right: 4px;
    font-size: 10px;
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 新闻详情页面样式 */
.news-detail-section {
    padding: 15px;
    
    h1 {
        font-size: 20px;
        font-weight: bold;
        color: #333;
        line-height: 1.5;
        margin: 0 0 15px 0;
        padding: 0;
        text-align: center;
    }
    
    .news-date,
    .news-author {
        flex: 1;
        text-align: center;
        white-space: nowrap;
    }
}

.news-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    font-size: 13px;
    color: #999;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    width: 70%;
    margin: 0 auto;
}

.news-meta-bar .gift-receive-btn {
    flex: none;
    width: auto;
    justify-content: center;
    margin-left: 0;
}

.gift-receive-btn {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-left: auto;
    flex-shrink: 0;
}

.gift-receive-btn i {
    margin-right: 4px;
    font-size: 12px;
}

.gift-receive-btn:hover {
    opacity: 0.9;
}

/* 正文内容样式 */
.news-content-body {
    padding: 20px 15px;
    line-height: 1.8;
    font-size: 14px;
    color: #333;
    background-color: #f9f9f9;
}

.news-content-body p {
    margin: 0 0 15px 0;
    text-align: justify;
}

.news-content-body h2 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 20px 0 10px 0;
    padding-left: 10px;
    border-left: 4px solid #4a90d9;
}

/* 上下篇导航样式 */
.news-nav-section {
    padding: 15px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    
    .news-nav-prev,
    .news-nav-next {
        display: flex;
        align-items: center;
        gap: 5px;
        max-width: 50%;
    }
    
    .nav-label {
        font-size: 13px;
        color: #999;
        flex-shrink: 0;
    }
    
    .nav-link {
        font-size: 13px;
        color: #4a90d9;
        line-height: 1.5;
        text-decoration: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 480px) {
    .news-detail-section h1 {
        font-size: 15px;
    }
    
    .news-meta-bar {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .news-content-body {
        padding: 15px;
        font-size: 13px;
        line-height: 1.6;
    }
    
    .news-content-body h2 {
        font-size: 15px;
    }
    
    .news-nav-section {
        padding: 12px 15px;
        flex-direction: column;
        gap: 10px;
        
        .news-nav-prev,
        .news-nav-next {
            max-width: 100%;
        }
        
        .nav-label {
            font-size: 12px;
        }
        
        .nav-link {
            font-size: 13px;
        }
    }
}

/* ==================== 专题详情页样式 ==================== */
.zt-detail {
    padding: 0 15px;
}

/* 横幅图片区域 */
.zt-banner {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.zt-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 内容区域 */
.zt-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.zt-content h1 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
    padding: 0;
}

.zt-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e0e0e0;
}

.zt-count {
    font-size: 13px;
    color: #666;
}

.zt-time {
    font-size: 12px;
    color: #999;
}

.zt-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.zt-desc p {
    margin: 0 0 15px 0;
    text-indent: 2em;
}

.zt-desc p:last-child {
    margin-bottom: 0;
}

/* 专题详情页响应式 */
@media (max-width: 480px) {
    .zt-content {
        padding: 15px;
    }
    
    .zt-content h1 {
        font-size: 16px;
    }
    
    .zt-meta {
        gap: 10px;
    }
    
    .zt-desc {
        font-size: 13px;
    }
}

/* 领取礼包弹窗样式 */
.gift-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gift-modal.show {
    opacity: 1;
    visibility: visible;
}

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

.modal-content {
    position: relative;
    width: 90%;
    max-width: 320px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.gift-modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: #f8f8f8;
}

.modal-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.modal-close {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #666;
}

.modal-body {
    padding: 30px 20px;
    text-align: center;
}

.modal-body p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.download-link {
    display: inline-block;
    font-size: 14px;
    color: #1677ff;
    text-decoration: none;
}

.download-link:hover {
    text-decoration: underline;
}

/* 评论样式 */
.user-review-section {
    padding: 20px 15px;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.user-review-section .showcase-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1677ff;
    position: relative;
}

.user-review-section .showcase-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #1677ff, #096dd9);
}

.review-list {
    margin-bottom: 25px;
}

.review-item {
    padding: 15px;
    background-color: #fafafa;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
}

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

.review-avatar {
    margin-right: 12px;
    flex-shrink: 0;
}

.review-avatar .avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #eee;
    object-fit: cover;
}

.review-meta {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.review-author {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.review-time {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.review-content {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 12px;
    padding: 14px 16px;
    background-color: #fafafa;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.review-content p {
    margin: 0;
    word-break: break-word;
}

.review-actions {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    padding: 5px 10px;
    border-radius: 4px;
}

.action-btn:hover {
    background-color: #f0f5ff;
    color: #1677ff;
}

.action-btn i {
    margin-right: 5px;
    font-size: 13px;
}

.action-btn.support:hover {
    color: #52c41a;
    background-color: #f6ffed;
}

.action-btn.oppose:hover {
    color: #f5222d;
    background-color: #fff2f0;
}

.action-btn.reply:hover {
    color: #1677ff;
    background-color: #f0f5ff;
}

/* 回复列表样式 */
.reply-list {
    margin-top: 15px;
    padding-left: 56px;
    border-left: 2px solid #eee;
}

.reply-item {
    padding: 12px 15px;
    background-color: #fff;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 13px;
    border: 1px solid #f0f0f0;
}

.reply-item:last-child {
    margin-bottom: 0;
}

.reply-author {
    font-weight: 600;
    color: #333;
    margin-right: 8px;
}

.reply-content {
    color: #555;
}

.reply-time {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 6px;
}

/* 暂无评论提示 */
.no-review {
    text-align: center;
    padding: 45px 20px;
    color: #999;
    font-size: 14px;
    background-color: #fafafa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.no-review p {
    margin: 0;
}

/* 评论表单样式 */
.comment-form-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.comment-form-section .form-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.comment-textarea {
    width: 100%;
    height: 120px;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    resize: none;
    box-sizing: border-box;
    transition: all 0.3s;
    font-family: inherit;
}

.comment-textarea:focus {
    outline: none;
    border-color: #1677ff;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.1);
}

.comment-textarea::placeholder {
    color: #bbb;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1677ff 0%, #096dd9 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(22, 119, 255, 0.3);
}

.submit-btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 119, 255, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    margin-right: 8px;
    font-size: 15px;
}

/* 评论分页 */
.comment-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 8px;
}

.comment-pagination a {
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #666;
    font-size: 13px;
    transition: all 0.3s;
}

.comment-pagination a:hover {
    background-color: #1677ff;
    color: #fff;
    border-color: #1677ff;
}

.comment-pagination span.current {
    padding: 8px 14px;
    background-color: #1677ff;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
}

.comment-pagination span.disabled {
    color: #ccc;
    pointer-events: none;
}