/* 移动端样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

/* 头部搜索栏 */
.header {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    height: 60px;
    align-items: center;
    gap: 10px;
}

.logo {
    font-size: 16px;
    font-weight: bold;
    color: white;
    white-space: nowrap;
    flex-shrink: 0;
}

.search-box {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-input {
    flex: 1;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    outline: none;
    background: transparent;
}

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

.search-btn {
    background: none;
    border: none;
    padding: 8px 12px;
    color: #2196F3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* 导航菜单 */
.nav-menu {
    background: white;
    display: flex;
    align-items: center;
    padding: 0 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-item {
    flex-shrink: 0;
    padding: 12px 15px;
    text-decoration: none;
    color: #666;
    font-size: 15px;
    position: relative;
    transition: color 0.3s;
}

.nav-item.active {
    color: #2196F3;
    font-weight: bold;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #2196F3;
    border-radius: 3px 3px 0 0;
}

.nav-more {
    background: none;
    border: none;
    padding: 12px 8px;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-left: auto;
}

/* 轮播图区域 */
.banner-container {
    position: relative;
    margin: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.banner-item.active {
    opacity: 1;
}

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

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

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

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: white;
}

/* 应用分类区域 */
.app-section {
    padding: 0 15px;
    margin-bottom: 20px;
}

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

.section-title2 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.more-link {
    font-size: 14px;
    color: #999;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.more-link::after {
    content: '›';
    margin-left: 4px;
    font-size: 18px;
}

/* 应用网格布局 */
.app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.app-card {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s;
}

.app-card:active {
    transform: scale(0.95);
}

.app-icon-square {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin-bottom: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.app-name {
    width: 6em;
    font-size: 12px;
    color: #333;
    text-align: center;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.app-stats {
    font-size: 11px;
    color: #999;
    text-align: center;
}

/* 专题推荐区域 */
.topic-section {
    padding: 20px;
    margin-bottom: 20px;
}

.topic-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* 隐藏Firefox滚动条 */
    padding: 0 15px 10px;
    scroll-snap-type: x mandatory; /* 滑动吸附 */
}

/* 隐藏Chrome/Safari滚动条 */
.topic-container::-webkit-scrollbar {
    display: none;
}

.topic-item {
    display: block;
    flex-shrink: 0;
    width: 85%;
    max-width: 200px;
    min-width: 100px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    scroll-snap-align: start; /* 滑动吸附到起点 */
}

.topic-item:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.topic-item img {
    width: 200px;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 120px;
}

/* 横幅广告 */
.ad-banner {
    display: flex;
    gap: 10px;
    padding: 0 15px;
    margin-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.ad-banner::-webkit-scrollbar {
    display: none;
}

.ad-item {
    flex-shrink: 0;
    width: calc(50% - 5px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ad-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* 排行榜区域 */
.ranking-section {
    padding: 0 15px 20px;
    margin-bottom: 20px;
}

.ranking-tabs {
    display: flex;
    gap: 8px;
}

.ranking-tab {
    background: #f5f5f5;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.ranking-tab.active {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
    color: white;
    font-weight: bold;
}

.ranking-list {
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-top: 15px;
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    gap: 12px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

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

.ranking-item:active {
    background: #f9f9f9;
}

.ranking-num {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    border-radius: 4px;
    flex-shrink: 0;
}

.ranking-num.top3 {
    background: #f5f5f5;
    color: #999;
}

.ranking-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.ranking-info {
    flex: 1;
    min-width: 0;
}

.ranking-name {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

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

.ranking-meta {
    display: flex;
    gap: 10px;
    font-size: 11px;
}

.ranking-tag {
    background: #f5f5f5;
    color: #666;
    padding: 2px 8px;
    border-radius: 10px;
}

.ranking-size {
    color: #999;
}

.ranking-btn {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(76, 217, 100, 0.3);
    transition: all 0.2s;
    flex-shrink: 0;
}

.ranking-btn:active {
    transform: scale(0.95);
    box-shadow: 0 1px 3px rgba(76, 217, 100, 0.3);
}

/* 资讯板块 */
.news-section {
    padding: 0 15px 20px;
    margin-bottom: 20px;
}

.news-list {
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.news-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 15px;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: background 0.2s;
}

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

.news-item:active {
    background: #f8f8f8;
}

.news-thumb {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.news-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-title {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #999;
}

.news-time {
    font-size: 12px;
    color: #999;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制行数为2 */
    -webkit-box-orient: vertical;
    overflow: hidden; /* 隐藏超出部分 */
}

.news-views {
    color: #999;
}

/* 响应式优化 */
@media screen and (max-width: 375px) {
    .logo {
        font-size: 14px;
    }

    .news-thumb {
        width: 80px;
        height: 80px;
    }

    .news-title {
        font-size: 14px;
    }

    .news-meta {
        font-size: 11px;
        gap: 8px;
    }

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

    .app-icon-square {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .app-name {
        font-size: 11px;
    }

    .app-stats {
        font-size: 10px;
    }

    .app-grid {
        gap: 10px;
        padding: 12px;
    }

    .ranking-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .ranking-name {
        font-size: 14px;
    }

    .ranking-desc {
        font-size: 11px;
    }
}

@media screen and (min-width: 768px) {
    .banner-slider {
        height: 300px;
    }

    .app-section,
    .topic-section,
    .ranking-section,
    .news-section {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .ad-banner {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .news-thumb {
        width: 100px;
        height: 100px;
    }

    .news-title {
        font-size: 16px;
    }

    .news-meta {
        font-size: 13px;
    }
}

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

.app-section {
    animation: fadeIn 0.5s ease forwards;
}

.ranking-section {
    animation: fadeIn 0.8s ease forwards;
}

/* ============ 应用列表页面样式 ============ */

/* 分类标签栏 */
.category-tabs {
    display: flex;
    background: white;
    padding: 12px 0;
    gap: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    top: 98px;
    z-index: 90;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* 隐藏Firefox滚动条 */
}

/* 隐藏Chrome/Safari滚动条 */
.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #666;
    font-size: 15px;
    transition: all 0.3s;
    flex-shrink: 0;
    white-space: nowrap;
    position: relative;
}

.category-tab:first-child {
    margin-left: 15px;
}

.category-tab:last-child {
    margin-right: 15px;
}

.category-tab.active {
    color: #2196F3;
    font-weight: bold;
}

.category-tab:active {
    transform: scale(0.95);
}

/* 分类标签样式 - 兼容category-tag类名 */
.category-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #666;
    font-size: 15px;
    transition: all 0.3s;
    flex-shrink: 0;
    white-space: nowrap;
    position: relative;
}

.category-tag:first-child {
    margin-left: 15px;
}

.category-tag:last-child {
    margin-right: 15px;
}

.category-tag.active {
    color: #2196F3;
    font-weight: bold;
}

.category-tag:active {
    transform: scale(0.95);
}

/* 应用列表容器 */
.app-list-container {
    background: #f5f5f5;
    min-height: calc(100vh - 160px);
    padding-bottom: 20px;
}

.app-list {
    padding: 0;
}

/* 应用列表项 */
.app-list-item {
    background: white;
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 1px;
    gap: 12px;
    transition: background 0.2s;
}

.app-list-item:active {
    background: #f9f9f9;
}

/* 应用图标 */
.app-list-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 应用信息区 */
.app-list-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* 应用名称 */
.app-list-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 评分星星 */
.app-list-rating {
    display: flex;
    align-items: center;
}

.stars {
    color: #FFA500;
    font-size: 14px;
    letter-spacing: 2px;
}

/* 应用元信息 */
.app-list-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #999;
    flex-wrap: wrap;
}

.app-install-info {
    color: #999;
}

.app-version {
    color: #999;
}

.app-size {
    color: #999;
}

/* 评论按钮 */
.app-comment-btn {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(76, 217, 100, 0.3);
    transition: all 0.2s;
}

.app-comment-btn:active {
    transform: scale(0.95);
    box-shadow: 0 1px 3px rgba(76, 217, 100, 0.3);
}

/* 分页 */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 20px 5px;
    background: #f5f5f5;
}

.pagination a {
    text-decoration: none;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-btn {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e0e0e0;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0 12px;
}

.page-btn.active {
    background: #2196F3;
    color: white;
    border-color: #2196F3;
}

.page-btn:hover:not(:disabled) {
    border-color: #2196F3;
    color: #2196F3;
}

.page-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.page-btn:disabled {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
}

.prev-btn,
.next-btn {
    font-weight: 500;
}

/* 响应式优化 - 应用列表 */
@media screen and (max-width: 375px) {
    .category-tab {
        padding: 10px 16px;
        font-size: 14px;
    }

    .app-list-icon {
        width: 55px;
        height: 55px;
    }

    .app-list-name {
        font-size: 14px;
    }

    .stars {
        font-size: 13px;
    }

    .app-list-meta {
        font-size: 11px;
    }

    .app-comment-btn {
        padding: 6px 14px;
        font-size: 13px;
    }
}

@media screen and (min-width: 768px) {
    .app-list-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .category-tabs {
        max-width: 600px;
        margin: 0 auto;
        justify-content: center;
    }
}

/* ============ 专题页面样式 ============ */

/* 专题分类标签 */
.zt-tabs {
    display: flex;
    background: white;
    padding: 0;
    gap: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    top: 98px;
    z-index: 90;
    border-bottom: 1px solid #f0f0f0;
}

.zt-tab {
    flex: 1;
    padding: 14px 10px;
    background: none;
    border: none;
    font-size: 15px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    font-weight: 500;
}

.zt-tab.active {
    color: #2196F3;
    font-weight: 600;
}

.zt-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #2196F3;
    border-radius: 2px 2px 0 0;
}

.zt-tab:active {
    background: #f5f5f5;
}

/* 专题容器 */
.zt-container {
    padding: 12px 10px;
    background: #f5f5f5;
    min-height: calc(100vh - 150px);
}

/* 专题网格布局 */
.zt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* 专题卡片 */
.zt-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}

.zt-card:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* 专题图片容器 */
.zt-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 比例 */
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.zt-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.zt-card:active .zt-image img {
    transform: scale(1.05);
}

/* 红色标签 */
.zt-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #ff4444, #ff6666);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(255, 68, 68, 0.3);
    z-index: 1;
}

/* 专题标题 */
.zt-title {
    padding: 10px 12px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 响应式优化 - 专题页面 */
@media screen and (max-width: 375px) {
    .zt-container {
        padding: 10px 8px;
    }

    .zt-grid {
        gap: 8px;
    }

    .zt-tab {
        padding: 12px 8px;
        font-size: 14px;
    }

    .zt-title {
        font-size: 13px;
        padding: 8px 10px;
    }

    .zt-badge {
        font-size: 10px;
        padding: 2px 6px;
    }
}

@media screen and (min-width: 768px) {
    .zt-container {
        max-width: 600px;
        margin: 0 auto;
        padding: 15px;
    }

    .zt-tabs {
        max-width: 600px;
        margin: 0 auto;
    }

    .zt-grid {
        gap: 15px;
    }

    .zt-title {
        font-size: 15px;
    }
}

/* ============ 排行榜页面样式 ============ */

/* 排行榜分类标签 - 统一人气精品榜样式 */
.top-tabs {
    display: flex;
    background: white;
    padding: 12px 0;
    gap: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.top-tabs::-webkit-scrollbar {
    display: none;
}

.top-tab {
    flex-shrink: 0;
    padding: 12px 20px;
    text-decoration: none;
    color: #666;
    font-size: 15px;
    transition: all 0.3s;
    white-space: nowrap;
    position: relative;
    font-weight: 500;
    border-radius: 20px;
    margin: 0 5px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.top-tab:first-child {
    margin-left: 15px;
}

.top-tab:last-child {
    margin-right: 15px;
}

.top-tab.active {
    color: #2196F3;
    font-weight: 600;
    background: #e8f5e8;
    border-color: #2196F3;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.top-tab:active {
    transform: scale(0.95);
    background: #e8f5e8;
}

/* 排行榜容器 */
.top-container {
    padding: 0;
    background: #f5f5f5;
    min-height: calc(100vh - 150px);
}

/* 排行榜列表 */
.top-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 排行榜项 */
.top-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
    transition: background 0.2s;
}

.top-item:active {
    background: #f8f8f8;
}

/* 排名序号 */
.top-rank {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #999;
    flex-shrink: 0;
}

/* 前三名特殊样式 */
.top-rank-1 {
    color: #ff4444;
    font-size: 16px;
}

.top-rank-2 {
    color: #ff6644;
    font-size: 16px;
}

.top-rank-3 {
    color: #ff8844;
    font-size: 16px;
}

/* 排行榜图标 */
.top-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* 排行榜信息 */
.top-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* 排行榜名称 */
.top-name {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
}

/* 排行榜评分 */
.top-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-rating .stars {
    color: #ffaa00;
    font-size: 13px;
    letter-spacing: 1px;
}

/* 排行榜元信息 */
.top-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #999;
    flex-wrap: wrap;
}

.top-category {
    color: #2196F3;
    font-weight: 500;
}

.top-size {
    color: #666;
}

.top-version {
    color: #999;
}

/* 详情按钮 */
.top-detail-btn {
    padding: 8px 18px;
    background: linear-gradient(135deg, #2196F3, #64B5F6);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(76, 217, 100, 0.3);
}

.top-detail-btn:active {
    transform: scale(0.95);
    box-shadow: 0 1px 3px rgba(76, 217, 100, 0.3);
}

/* 响应式优化 - 排行榜页面 */
@media screen and (max-width: 375px) {
    .top-tab {
        padding: 12px 8px;
        font-size: 14px;
    }

    .top-item {
        padding: 10px 12px;
        gap: 10px;
    }

    .top-icon {
        width: 55px;
        height: 55px;
    }

    .top-name {
        font-size: 14px;
    }

    .top-rating .stars {
        font-size: 12px;
    }

    .top-meta {
        font-size: 11px;
        gap: 6px;
    }

    .top-detail-btn {
        padding: 6px 14px;
        font-size: 13px;
    }

    .top-rank {
        width: 20px;
        font-size: 13px;
    }

    .top-rank-1,
    .top-rank-2,
    .top-rank-3 {
        font-size: 15px;
    }
}

@media screen and (min-width: 768px) {
    .top-tabs {
        max-width: 600px;
        margin: 0 auto;
    }

    .top-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .top-item {
        padding: 15px 20px;
    }

    .top-icon {
        width: 70px;
        height: 70px;
    }

    .top-name {
        font-size: 16px;
    }
}

/* ============ 详情页面样式 ============ */

/* 详情页容器 */
.detail-container {
    padding: 15px;
    background: #f5f5f5;
    min-height: calc(100vh - 98px);
}

/* 应用头部信息 */
.detail-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 15px;
    flex-direction: column;
}

.detail-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.detail-header-info {
    display: flex;
    flex: 1;
    min-width: 0;
    gap: 10px;
}

.detail-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-rating {
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.detail-rating .stars {
    color: #999;
    font-size: 14px;
    letter-spacing: 1px;
}

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

.detail-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #999;
}

.detail-download-btn {
    width: 80%;
    margin: auto;
    padding: 10px 24px;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.ios {
    margin: auto;
    padding: 10px 24px;
    background-color: #ccc;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.detail-download-btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 6px rgba(76, 217, 100, 0.3);
}

/* 应用截图 */
.detail-screenshots {
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.detail-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 10px 0 12px 0;
}

.screenshots-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 5px;
}

.screenshots-scroll::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    width: 365px;
    height: 180px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.screenshot-item:active {
    transform: scale(0.98);
}

/* 应用信息 */
.detail-info-section {
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.detail-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.detail-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.info-label {
    font-size: 14px;
    color: #666;
}

.info-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* 应用介绍 */
.detail-description {
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.detail-description p {
    text-indent: 4ch;
    line-height: 2.5;
}

.detail-description p img {
    display: block;
    width: 80%;
    margin: 20px auto;
}
.description-content {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.description-content p {
    margin: 0 0 10px 0;
}

.description-content p:last-child {
    margin-bottom: 0;
}

/* 相关推荐 */
.detail-recommend {
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.recommend-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.recommend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s;
}

.recommend-item:active {
    transform: scale(0.95);
}

.recommend-icon {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.recommend-name {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    margin-bottom: 2px;
}

.recommend-desc {
    font-size: 11px;
    color: #999;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

/* 详情页资讯推荐 */
.news-recommend {
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.news-recommend .news-list {
    background: transparent;
    box-shadow: none;
    margin-top: 15px;
}

.news-recommend .news-item {
    padding: 15px;
    background: #f8f9fa;
    margin-bottom: 10px;
    border-radius: 8px;
    border-bottom: none;
    transition: all 0.3s;
}

.news-recommend .news-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.news-recommend .news-thumb {
    width: 80px;
    height: 80px;
    border-radius: 6px;
}

.news-recommend .news-title {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.news-recommend .news-meta {
    font-size: 12px;
    gap: 15px;
}

.news-recommend .news-views {
    color: #999;
    font-weight: 500;
}

/* 响应式优化 - 详情页面 */
@media screen and (max-width: 375px) {
    .detail-container {
        padding: 12px;
    }

    .detail-header {
        padding: 12px;
    }

    .detail-icon {
        width: 70px;
        height: 70px;
    }

    .detail-title {
        font-size: 16px;
    }

    .detail-download-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .screenshot-item {
        width: 160px;
        height: 280px;
    }

    .recommend-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .recommend-name {
        font-size: 12px;
    }

    .recommend-desc {
        font-size: 10px;
    }
}

@media screen and (min-width: 768px) {
    .detail-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .detail-icon {
        width: 90px;
        height: 90px;
    }

    .detail-title {
        font-size: 20px;
    }

    .screenshot-item {
        width: 200px;
        height: 360px;
    }

    .recommend-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ============ 专题详情页面样式 ============ */

/* 专题详情容器 */
.zt-detail-container {
    padding: 0;
    background: #f5f5f5;
    min-height: calc(100vh - 98px);
}

/* 专题头部 */
.zt-detail-header {
    background: white;
    margin-bottom: 10px;
}

.zt-detail-banner {
    padding: 10px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.zt-detail-info {
    padding: 15px;
}

.zt-detail-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.zt-detail-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 6; /* 限制行数为6 */
    -webkit-box-orient: vertical;
    overflow: hidden; /* 隐藏超出部分 */
}

.zt-detail-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #999;
}

/* 专题应用列表 */
.zt-detail-apps {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
}

.zt-detail-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.zt-detail-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 专题应用项 */
.zt-detail-app-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: background 0.2s;
}

.zt-detail-app-item:last-child {
    border-bottom: none;
}

.zt-detail-app-item:active {
    background: #f8f8f8;
}

.zt-app-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.zt-app-info {
    flex: 1;
    min-width: 0;
}

.zt-app-name {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    margin: 0 0 4px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zt-app-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.zt-app-rating .stars {
    color: #ffaa00;
    font-size: 12px;
    letter-spacing: 1px;
}

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

.zt-app-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #999;
}

.zt-app-download-btn {
    padding: 8px 20px;
    background: linear-gradient(135deg, #2196F3, #64B5F6);
    color: white;
    border: none;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(76, 217, 100, 0.3);
}

.zt-app-download-btn:active {
    transform: scale(0.95);
    box-shadow: 0 1px 3px rgba(76, 217, 100, 0.3);
}

/* 相关专题推荐 */
.zt-detail-recommend {
    background: white;
    padding: 15px;
}

.zt-recommend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.zt-recommend-item {
    display: block;
    text-decoration: none;
    transition: transform 0.2s;
}

.zt-recommend-item:active {
    transform: scale(0.98);
}

.zt-recommend-img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.zt-recommend-title {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 响应式优化 - 专题详情页面 */
@media screen and (max-width: 375px) {
    .zt-detail-banner {
        height: 180px;
    }

    .zt-detail-info {
        padding: 12px;
    }

    .zt-detail-title {
        font-size: 18px;
    }

    .zt-detail-desc {
        font-size: 13px;
    }

    .zt-app-icon {
        width: 55px;
        height: 55px;
    }

    .zt-app-name {
        font-size: 14px;
    }

    .zt-app-download-btn {
        padding: 6px 16px;
        font-size: 13px;
    }

    .zt-recommend-grid {
        gap: 10px;
    }
}

@media screen and (min-width: 768px) {
    .zt-detail-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .zt-detail-banner {
        height: 240px;
    }

    .zt-app-icon {
        width: 70px;
        height: 70px;
    }

    .zt-recommend-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============ 资讯页面样式 ============ */

/* 资讯分类标签 */
.zx-tabs {
    display: flex;
    background: white;
    padding: 0;
    gap: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    top: 98px;
    z-index: 90;
    border-bottom: 1px solid #f0f0f0;
}

.zx-tab {
    flex: 1;
    padding: 14px 10px;
    background: none;
    border: none;
    font-size: 15px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    font-weight: 500;
}

.zx-tab.active {
    color: #2196F3;
    font-weight: 600;
}

.zx-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #2196F3;
    border-radius: 2px 2px 0 0;
}

.zx-tab:active {
    background: #f5f5f5;
}

/* 资讯容器 */
.zx-container {
    padding: 0;
    background: #f5f5f5;
    min-height: calc(100vh - 150px);
}

/* 资讯列表 */
.zx-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 资讯项 */
.zx-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 15px;
    background: white;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
    transition: background 0.2s;
    text-decoration: none;
}

.zx-item:active {
    background: #f8f8f8;
}

/* 资讯缩略图 */
.zx-thumb {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* 资讯内容 */
.zx-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

/* 资讯标题 */
.zx-title {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 资讯时间 */
.zx-time {
    font-size: 12px;
    color: #999;
    margin-top: auto;
}

/* 响应式优化 - 资讯页面 */
@media screen and (max-width: 375px) {
    .zx-item {
        padding: 10px 12px;
        gap: 10px;
    }

    .zx-thumb {
        width: 80px;
        height: 80px;
    }

    .zx-title {
        font-size: 14px;
        line-height: 1.4;
    }

    .zx-time {
        font-size: 11px;
    }

    .zx-tab {
        padding: 12px 8px;
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) {
    .zx-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .zx-tabs {
        max-width: 600px;
        margin: 0 auto;
    }

    .zx-item {
        padding: 15px 20px;
    }

    .zx-thumb {
        width: 100px;
        height: 100px;
    }

    .zx-title {
        font-size: 16px;
    }

    .zx-time {
        font-size: 13px;
    }
}

/* ============ 资讯详情页面样式 ============ */

/* 资讯详情容器 */
.zxgl-detail-container {
    padding: 15px;
    background: #f5f5f5;
    min-height: calc(100vh - 98px);
}

/* 文章头部 */
.article-header {
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.article-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #999;
    flex-wrap: wrap;
}

.article-author {
    color: #2196F3;
    font-weight: 500;
}

.article-date {
    color: #999;
}

.article-views {
    color: #999;
}

/* 文章封面图 */
.article-cover {
    background: white;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.article-cover img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

/* 文章内容 */
.article-content {
    background: white;
    padding: 20px 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    line-height: 1.8;
}

.article-content p {
    text-indent: 4ch;
    line-height: 2.5;
}

.article-content p img {
    display: block;
    width: 80%;
    margin: auto;
}

.article-content p {
    margin: 0 0 15px 0;
    font-size: 15px;
    color: #333;
    text-align: justify;
}

.article-content p:last-child {
    margin-bottom: 0;
}

.article-content h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 25px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #4CD964;
}

.article-content h2:first-child {
    margin-top: 0;
}

/* 游戏推荐 */
.game-recommend {
    margin-bottom: 20px;
    background: white;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.game-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.game-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.game-icon {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
}

.game-info {
    flex: 1;
}

.game-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
}

.game-rating {
    margin-bottom: 8px;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.game-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #666;
}

.game-version {
    color: #999;
}

.game-size {
    color: #2196F3;
    font-weight: 500;
}

.game-download-btn {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.game-download-btn:hover {
    background: #45c85a;
    transform: scale(1.05);
}

.game-download-btn:active {
    transform: scale(0.95);
}

/* 相关推荐 */
.article-recommend {
    background: white;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.recommend-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.recommend-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.recommend-article {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: background 0.2s;
}

.recommend-article:last-child {
    border-bottom: none;
}

.recommend-article:active {
    background: #f8f8f8;
}

.recommend-thumb {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.recommend-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.recommend-article-title {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recommend-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #999;
}

.recommend-time {
    color: #999;
}

.recommend-views {
    color: #999;
}

/* 响应式优化 - 资讯详情页面 */
@media screen and (max-width: 375px) {
    .zxgl-detail-container {
        padding: 12px;
    }

    .article-header {
        padding: 12px;
    }

    .article-title {
        font-size: 18px;
    }

    .article-meta {
        font-size: 12px;
        gap: 10px;
    }

    .article-content {
        padding: 15px 12px;
    }

    .article-content p {
        font-size: 14px;
    }

    .article-content h2 {
        font-size: 16px;
    }

    .action-btn span {
        font-size: 12px;
    }

    .recommend-thumb {
        width: 80px;
        height: 80px;
    }

    .recommend-article-title {
        font-size: 14px;
    }

    .recommend-meta {
        font-size: 11px;
        gap: 8px;
    }
}

@media screen and (min-width: 768px) {
    .zxgl-detail-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .article-title {
        font-size: 22px;
    }

    .article-content p {
        font-size: 16px;
    }

    .article-content h2 {
        font-size: 20px;
    }

    .recommend-thumb {
        width: 100px;
        height: 100px;
    }

    .recommend-article-title {
        font-size: 16px;
    }
}

