* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            list-style: none;
            text-decoration: none;
            font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
        }
        body {
            background: linear-gradient(to bottom, #e0f0ff 0%, #f5f7fa 100%);
            color: #333;
            line-height: 1.6;
        }
        .top-nav {
            background: linear-gradient(135deg, #1a2035 0%, #2d3748 100%);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-wrap {
            width: 1360px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
            color: #fff;
        }
        .logo {
            font-size: 18px;
            font-weight: bold;
            letter-spacing: 1px;
        }
        .nav-menu {
            display: flex;
            gap: 20px;
        }
        .nav-menu a {
            color: #cbd5e0;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-menu a:hover {
            color: #ff6700;
            border-bottom-color: #ff6700;
        }
        .container {
            width: 1480px;
            margin: 0 auto 30px;
        }
        .block {
            background: #fff;
            padding: 25px;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 2px 8px 0 rgb(0 0 0);
        }
        .top-banner {
            width: 100%;
            height: 120px;
           background: linear-gradient(180deg, #ffffff 0%, #ffffffb8);
            position: relative;
            margin-bottom: -1px;
        }
        .banner-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
               color: #174f52;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .banner-text h1 {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .banner-text p {
            font-size: 14px;
            opacity: 0.9;
        }
        .filter-bar {
            background: #fff;
            padding: 15px 25px;
            border-bottom: 1px dashed #e2e8f0;
        }
        .filter-row {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }
        .filter-row:last-child {
            margin-bottom: 0;
        }
        .filter-label {
            color: #666;
            margin-right: 15px;
            font-size: 14px;
        }
        .filter-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .filter-links a {
            color: #333;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        .filter-links a:hover, .filter-links a.active {
            color: #ff6700;
        }
        .sub-filter {
            margin: 0;
            padding: 15px 25px;
            background: #fff;
            border-bottom: 1px dashed #e2e8f0;
        }
        .sub-filter .nav {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .sub-filter a {
            color: #333;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .sub-filter a:hover, .sub-filter a.active {
            color: #ff6700;
        }
        .sort-bar {
            background: #fff;
            padding: 5px 25px;
            border-bottom: 1px solid #e2e8f0;
        }
        .sort-bar .nav {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .sort-bar a {
            color: #333;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .sort-bar a:hover, .sort-bar a.active {
            color: #ff6700;
            font-weight: bold;
        }
        .version-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        .version-item {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            border: 1px solid #e2e8f0;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .version-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .hot-tag {
            position: absolute;
            top: 0;
            left: 0;
            background: linear-gradient(135deg, #ff4d4f 0%, #ff7875 100%);
            color: #fff;
            padding: 2px 8px;
            font-size: 12px;
            font-weight: bold;
            z-index: 10;
            border-radius: 0 0 8px 0;
        }
        .item-pic {
            width: 100%;
            height: 180px;
            min-height: 180px;
            max-height: 180px;
            background: #f7fafc;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a0aec0;
            overflow: hidden;
            flex-shrink: 0;
        }
        .item-pic img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.5s ease;
        }
        .version-item:hover .item-pic img {
            transform: scale(1.05);
        }
        .item-info {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .item-title {
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: #2d3748;
            margin-bottom: 8px;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
            flex-shrink: 0;
        }
        .version-item:hover .item-title {
            color: #ff6700;
        }
        .item-desc {
            color: #718096;
            font-size: 13px;
            line-height: 1.5;
            height: 40px;
            overflow: hidden;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            flex-shrink: 0;
        }
        .item-tags {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: #999;
            margin-top: auto;
        }
        .tag-left {
            display: flex;
            gap: 10px;
        }
        .tag {
            padding: 2px 6px;
            border-radius: 10px;
            background: #f7fafc;
            border: 1px solid #e2e8f0;
        }
        .tag.vip {
            background: #fff7e6;
            border-color: #ffd591;
            color: #fa8c16;
            font-weight: bold;
        }
        .page-box {
            text-align: center;
            margin-top: 40px;
        }
        .page-box a, .page-box span {
            padding: 8px 16px;
            border: 1px solid #e2e8f0;
            margin: 0 4px;
            border-radius: 6px;
            font-size: 14px;
            color: #4a5568;
            transition: all 0.3s ease;
        }
        .page-box a:hover {
            border-color: #ff6700;
            color: #ff6700;
        }
        .page-box .curr {
            background: linear-gradient(135deg, #ff6700 0%, #ff8533 100%);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 4px 12px rgba(255, 103, 0, 0.3);
        }
        .none {
            text-align: center;
            padding: 80px 0;
            color: #a0aec0;
            font-size: 16px;
        }
        .none::before {
            content: '📭';
            display: block;
            font-size: 48px;
            margin-bottom: 15px;
        }

        /* ======================================
           ✅ 手机端专属样式（和首页完全一致）
           ====================================== */
        @media (max-width: 768px) {
            /* ✅ 核心修复：覆盖cms.css的min-width限制 */
            html, body {
                min-width: 100% !important;
                width: 100% !important;
                overflow-x: hidden !important;
                position: relative !important;
            }
            
            /* ✅ 隐藏PV/UV统计条 */
            body > div:first-child:not(.mobile-header) {
                display: none !important;
            }
            
            /* 隐藏电脑端顶部导航 */
            .ui-fixed-warp {
                display: none !important;
            }
            
            /* 手机端顶部导航 */
            .mobile-header {
                display: flex !important;
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                width: 100% !important;
                height: 60px !important;
                background: #1677ff !important;
                align-items: center !important;
                justify-content: space-between !important;
                padding: 0 15px !important;
                z-index: 100001 !important;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
            }
            .mobile-logo {
                display: flex !important;
                align-items: center !important;
                gap: 10px !important;
                color: #fff !important;
                font-size: 24px !important;
                font-weight: bold !important;
            }
            .mobile-logo img {
                height: 40px !important;
            }
            .mobile-search {
                flex: 1 !important;
                margin: 0 15px !important;
            }
            .mobile-search input {
                width: 100% !important;
                height: 36px !important;
                border: none !important;
                border-radius: 18px !important;
                padding: 0 15px !important;
                font-size: 14px !important;
            }
            .mobile-menu-btn {
                width: 50px !important;
                height: 50px !important;
                display: flex !important;
                flex-direction: column !important;
                justify-content: center !important;
                align-items: center !important;
                gap: 6px !important;
                cursor: pointer !important;
                z-index: 100002 !important;
                pointer-events: all !important;
                padding: 10px !important;
                position: relative !important;
            }
            .mobile-menu-btn span {
                width: 28px !important;
                height: 3px !important;
                background: #fff !important;
                transition: all 0.3s !important;
                border-radius: 2px !important;
            }
            
            /* 手机端侧边菜单 */
            .mobile-sidebar-overlay {
                display: none !important;
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                bottom: 0 !important;
                width: 100% !important;
                background: rgba(0,0,0,0.5) !important;
                z-index: 99999 !important;
            }
            .mobile-sidebar-overlay.active {
                display: block !important;
            }
            .mobile-sidebar {
                display: block !important;
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                width: 80% !important;
                max-width: 300px !important;
                height: 100% !important;
                background: #fff !important;
                z-index: 100000 !important;
                transform: translateX(-100%) !important;
                transition: transform 0.3s ease-in-out !important;
                overflow-y: auto !important;
            }
            .mobile-sidebar.active {
                transform: translateX(0) !important;
            }
            .mobile-nav-list {
                padding: 20px 0 !important;
            }
            .mobile-nav-item {
                padding: 15px 20px !important;
                border-bottom: 1px solid #f5f5f5 !important;
                cursor: pointer !important;
            }
            .mobile-nav-item:hover {
                background: #f5f5f5 !important;
            }
            .mobile-nav-item a {
                color: #333 !important;
                font-size: 16px !important;
                text-decoration: none !important;
                display: block !important;
                width: 100% !important;
            }
            
            /* 手机端主体内容 */
            body {
                padding-top: 60px !important;
                padding-bottom: 60px !important;
                background: #f5f5f5 !important;
            }
            .container {
                width: 95% !important;
            }
            .block {
                padding: 15px !important;
            }
            .top-banner {
                height: 80px !important;
            }
            .banner-text h1 {
                font-size: 24px !important;
            }
            .banner-text p {
                font-size: 12px !important;
            }
            .filter-bar, .sort-bar {
                padding: 10px 15px !important;
            }
            .filter-links, .sort-bar .nav {
                gap: 12px !important;
            }
            .version-list {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 10px !important;
            }
            .item-pic {
                height: 120px !important;
                min-height: 120px !important;
                max-height: 120px !important;
            }
            .item-info {
                padding: 10px !important;
            }
            .item-title {
                font-size: 14px !important;
            }
            .item-desc {
                font-size: 12px !important;
                height: 34px !important;
            }
            .item-tags {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 5px !important;
            }
            .page-box {
                margin-top: 20px !important;
            }
            .page-box a, .page-box span {
                padding: 6px 12px !important;
                margin: 0 2px !important;
                font-size: 12px !important;
            }
            
            /* 手机端底部tab栏 */
            .mobile-footer {
                display: flex !important;
                position: fixed !important;
                bottom: 0 !important;
                left: 0 !important;
                right: 0 !important;
                width: 100% !important;
                height: 60px !important;
                background: #fff !important;
                border-top: 1px solid #eee !important;
                z-index: 99999 !important;
            }
            .mobile-tab-item {
                flex: 1;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                color: #666;
                text-decoration: none;
                font-size: 12px;
            }
            .mobile-tab-item.active {
                color: #1677ff;
            }
            .mobile-tab-item i {
                font-size: 24px;
                margin-bottom: 5px;
            }
        }

        /* ✅ 电脑端默认隐藏所有手机端元素 */
        .mobile-header, .mobile-sidebar, .mobile-sidebar-overlay, .mobile-footer {
            /*display: none !important;*/
        }