/* ==================== 大气高端传奇版本库首页样式 ==================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Microsoft YaHei", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: #e74c3c;
}

ul, li {
    list-style: none;
}

/* ==================== 动画效果 ==================== */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ==================== 顶部区域 ==================== */
#top {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 0.6s ease-out;
    position: relative;
    z-index: 9999;
}

.top-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

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

.logo img {
    height: 70px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo:hover img {
    transform: scale(1.05);
}

.search {
    flex: 1;
    max-width: 550px;
    margin: 0 50px;
    position: relative;
}

.search form {
    display: flex;
    align-items: center;
}

.search form em {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.search_input {
    width: 100%;
    padding: 16px 24px;
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 14px;
    outline: none;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search_input:focus {
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(102,126,234,0.1), 0 4px 20px rgba(102,126,234,0.2);
}

.search_bot {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(102,126,234,0.3);
    z-index: 10;
}

.search_bot svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.search_bot:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(102,126,234,0.5);
}

.search_bot:hover svg {
    transform: scale(1.1);
}

.LoginStatus {
    font-size: 14px;
    white-space: nowrap;
    position: relative;
    z-index: 100;
}

.LoginStatus a {
    color: #333;
    margin-left: 15px;
   /* padding: 10px 20px;*/
   /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
   /* box-shadow: 0 4px 12px rgba(102,126,234,0.3);*/
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.LoginStatus a:hover {
    color: #fff;
    transform: translateY(-2px);
   /* box-shadow: 0 6px 20px rgba(102,126,234,0.5);*/
}

/* ==================== 全新清爽会员菜单样式 ==================== */
.member-nav-wrapper {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 99999;
}

.member-nav {
    position: relative;
    display: flex;
    align-items: center;
}

/* 会员触发器（显示的头像和用户名） */
.member-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(102,126,234,0.05);
    border: 1px solid rgba(102,126,234,0.1);
}

.member-trigger:hover {
    background: rgba(102,126,234,0.1);
    border-color: rgba(102,126,234,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102,126,234,0.15);
}

.member-avatar-link {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #667eea;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.member-trigger:hover .member-avatar-link {
    border-color: #764ba2;
    transform: scale(1.05);
}

.member-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.member-arrow {
    color: #999;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.member-trigger:hover .member-arrow {
    color: #667eea;
    transform: rotate(180deg);
}

/* 下拉菜单容器 */
.member-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 260px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 99999;
}

.member-nav:hover .member-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 下拉菜单头部 */
.dropdown-header {
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    flex-shrink: 0;
}

.header-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #fff;
}

.header-name {
    font-size: 16px;
    font-weight: 600;
}

.header-id {
    font-size: 12px;
    opacity: 0.9;
}

/* 下拉菜单内容区 */
.dropdown-content {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.balance-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(102,126,234,0.05) 0%, rgba(118,75,162,0.05) 100%);
    border-radius: 12px;
}

.balance-label {
    font-size: 13px;
    color: #666;
}

.balance-value {
    font-size: 16px;
    font-weight: 600;
    color: #e74c3c;
}

.balance-unit {
    font-size: 13px;
    color: #999;
    font-weight: normal;
}

/* 下拉菜单列表 */
.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.menu-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.menu-item:not(.menu-divider):hover {
    background: linear-gradient(135deg, rgba(102,126,234,0.08) 0%, rgba(118,75,162,0.08) 100%);
}

.menu-item a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.2s ease;
}

.menu-item:hover a {
    color: #667eea;
}

.menu-icon {
    color: #999;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.menu-item:hover .menu-icon {
    color: #667eea;
}

/* 分割线 */
.menu-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
    padding: 0;
}

/* 退出登录按钮 */
.menu-item.logout:hover {
    background: linear-gradient(135deg, rgba(231,76,60,0.08) 0%, rgba(192,57,43,0.08) 100%);
}

.menu-item.logout:hover a,
.menu-item.logout:hover .menu-icon {
    color: #e74c3c;
}

/* ==================== 导航栏 ==================== */
#nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 998;
    border-bottom: 1px solid rgba(102,126,234,0.1);
}

#nav ul {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

#nav li {
    flex-shrink: 0;
}

#nav li a {
    display: block;
    padding: 18px 24px;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

#nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

#nav li a:hover,
#nav li a#accountnav:hover,
#nav li a#indexnav:hover {
    color: #667eea;
    background: linear-gradient(135deg, rgba(102,126,234,0.05) 0%, rgba(118,75,162,0.05) 100%);
}

#nav li a:hover::after,
#nav li a#accountnav:hover::after,
#nav li a#indexnav::after {
    width: 80%;
}

/* ==================== 广告区域 ==================== */
.show, .adma, .agentqq {
    /*display: none;*/
}

/* ==================== 筛选区域 - 全新设计 ==================== */
.screen-list {
    width: 100%;
    max-width: 1400px;
    margin: 25px auto;
   /* padding: 0 20px;*/
}

.screen-list ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f7;
}

/* 筛选组 */
.screen-list ul li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 20px;
    background: #fafbff;
    border-radius: 12px;
    border: 1px solid #e6ebf5;
    transition: all 0.3s ease;
}

.screen-list ul li:hover {
    border-color: #667eea;
    background: #f0f4ff;
    box-shadow: 0 4px 15px rgba(102,126,234,0.1);
}

/* 筛选标签组标题 */
.screen-list .filter-title {
    font-weight: 600;
    color: #2d3748;
    min-width: 80px;
    font-size: 14px;
    flex-shrink: 0;
}

/* 筛选选项容器 */
.screen-list .filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

/* 单个筛选标签 */
.screen-list .filter-tag {
    position: relative;
    padding: 8px 18px;
    background: #ffffff;
    border-radius: 25px;
    font-size: 13px;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

/* 标签渐变背景效果 */
.screen-list .filter-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

/* 标签文字 */
.screen-list .filter-tag span {
    position: relative;
    z-index: 1;
    display: block;
}

/* 标签悬停效果 */
.screen-list .filter-tag:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102,126,234,0.2);
}

.screen-list .filter-tag:hover::before {
    width: 100%;
}

.screen-list .filter-tag:hover span {
    color: #ffffff;
}

/* 激活状态标签 */
.screen-list .filter-tag.active,
.screen-list .filter-tag.on {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102,126,234,0.35);
}

.screen-list .filter-tag.active span,
.screen-list .filter-tag.on span {
    color: #ffffff;
    font-weight: 600;
}

/* 激活状态下取消渐变动画 */
.screen-list .filter-tag.active::before,
.screen-list .filter-tag.on::before {
    width: 100%;
}

/* 链接样式 */
.screen-list .filter-tag a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

/* 激活链接样式 */
.screen-list .filter-tag a.active,
.screen-list .filter-tag a.on {
    color: #ffffff !important;
    font-weight: 600;
}

/* ==================== 每个筛选标签的独立背景样式 ==================== */

/* 购买类型标签 */
.screen-list .filter-tag.tag-unlimited {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #ffffff;
    border-color: #ff6b6b;
}

.screen-list .filter-tag.tag-free {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: #ffffff;
    border-color: #4ecdc4;
}

.screen-list .filter-tag.tag-welfare {
    background: linear-gradient(135deg, #45b7d1 0%, #96c93d 100%);
    color: #ffffff;
    border-color: #45b7d1;
}

.screen-list .filter-tag.tag-exclusive {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    border-color: #f093fb;
}

.screen-list .filter-tag.tag-forum {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
    border-color: #4facfe;
}

/* 版本类型标签 */
.screen-list .filter-tag.tag-single {
    background: linear-gradient(135deg, #94eb84 0%, #ffaa89 100%);
    color: #ffffff;
    border-color: #80ea66;
}

.screen-list .filter-tag.tag-three {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    border-color: #f093fb;
}

.screen-list .filter-tag.tag-silence {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: #ffffff;
    border-color: #43e97b;
}

.screen-list .filter-tag.tag-fire {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #ffffff;
    border-color: #fa709a;
}

.screen-list .filter-tag.tag-ice {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333333;
    border-color: #a8edea;
}

.screen-list .filter-tag.tag-combo {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: #333333;
    border-color: #ff9a9e;
}

.screen-list .filter-tag.tag-premium {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    color: #333333;
    border-color: #a18cd1;
}

.screen-list .filter-tag.tag-exclusive2 {
    background: linear-gradient(135deg, #fad0c4 0%, #ffd1ff 100%);
    color: #333333;
    border-color: #fad0c4;
}

.screen-list .filter-tag.tag-176 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #333333;
    border-color: #ffecd2;
}

.screen-list .filter-tag.tag-180 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: #333333;
    border-color: #ff9a9e;
}

.screen-list .filter-tag.tag-mobile {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    color: #333333;
    border-color: #a1c4fd;
}

.screen-list .filter-tag.tag-artifact {
    background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
    color: #333333;
    border-color: #d4fc79;
}

.screen-list .filter-tag.tag-lost {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    color: #333333;
    border-color: #84fab0;
}

.screen-list .filter-tag.tag-170 {
    background: linear-gradient(135deg, #cfd9df 0%, #e2ebf0 100%);
    color: #333333;
    border-color: #cfd9df;
}

.screen-list .filter-tag.tag-185 {
    background: linear-gradient(135deg, #a6c0fe 0%, #f68084 100%);
    color: #ffffff;
    border-color: #a6c0fe;
}

.screen-list .filter-tag.tag-retro {
    background: linear-gradient(135deg, #fccb90 0%, #d57eeb 100%);
    color: #333333;
    border-color: #fccb90;
}

.screen-list .filter-tag.tag-micro {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    color: #333333;
    border-color: #e0c3fc;
}

.screen-list .filter-tag.tag-super {
    background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
    color: #333333;
    border-color: #fbc2eb;
}

/* 引擎类型标签 */
.screen-list .filter-tag.tag-gom {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: #ffffff;
    border-color: #43e97b;
}

.screen-list .filter-tag.tag-newgom {
    background: linear-gradient(135deg, #eae666 0%, #eb80b6 100%);
    color: #ffffff;
    border-color:#eae666;
}

.screen-list .filter-tag.tag-blueleg {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
    border-color: #4facfe;
}

.screen-list .filter-tag.tag-hge {
    background: linear-gradient(135deg, #43e97b 0%, #4facfe 100%);
    color: #ffffff;
    border-color: #43e97b;
}

.screen-list .filter-tag.tag-dragon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #ffffff;
    border-color: #fa709a;
}

.screen-list .filter-tag.tag-gee {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    border-color: #f093fb;
}

.screen-list .filter-tag.tag-linfeng {
    background: linear-gradient(135deg, #45b7d1 0%, #96c93d 100%);
    color: #ffffff;
    border-color: #45b7d1;
}

.screen-list .filter-tag.tag-996 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #ffffff;
    border-color: #ff6b6b;
}

.screen-list .filter-tag.tag-other {
    background: linear-gradient(135deg, #cfd9df 0%, #e2ebf0 100%);
    color: #333333;
    border-color: #cfd9df;
}

/* ==================== 每个筛选标签的独立背景样式 ==================== */

/* 购买类型标签背景 */
.screen-list .filter-tag:contains('不限') {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #ffffff;
    border-color: #ff6b6b;
}

.screen-list .filter-tag:contains('免费版本') {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: #ffffff;
    border-color: #4ecdc4;
}

.screen-list .filter-tag:contains('福利版本') {
    background: linear-gradient(135deg, #45b7d1 0%, #96c93d 100%);
    color: #ffffff;
    border-color: #45b7d1;
}

.screen-list .filter-tag:contains('独家版本') {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    border-color: #f093fb;
}

.screen-list .filter-tag:contains('论坛版本') {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
    border-color: #4facfe;
}

/* 版本类型标签背景 */
.screen-list .filter-tag:contains('单职业') {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-color: #667eea;
}

.screen-list .filter-tag:contains('三职业') {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    border-color: #f093fb;
}

.screen-list .filter-tag:contains('沉默') {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: #ffffff;
    border-color: #43e97b;
}

.screen-list .filter-tag:contains('火龙') {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #ffffff;
    border-color: #fa709a;
}

.screen-list .filter-tag:contains('冰雪') {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333333;
    border-color: #a8edea;
}

.screen-list .filter-tag:contains('合击') {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: #333333;
    border-color: #ff9a9e;
}

.screen-list .filter-tag:contains('极品') {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    color: #333333;
    border-color: #a18cd1;
}

.screen-list .filter-tag:contains('专属') {
    background: linear-gradient(135deg, #fad0c4 0%, #ffd1ff 100%);
    color: #333333;
    border-color: #fad0c4;
}

.screen-list .filter-tag:contains('1.76') {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #333333;
    border-color: #ffecd2;
}

.screen-list .filter-tag:contains('1.80') {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: #333333;
    border-color: #ff9a9e;
}

.screen-list .filter-tag:contains('手游') {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    color: #333333;
    border-color: #a1c4fd;
}

.screen-list .filter-tag:contains('神器') {
    background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
    color: #333333;
    border-color: #d4fc79;
}

.screen-list .filter-tag:contains('迷失') {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    color: #333333;
    border-color: #84fab0;
}

.screen-list .filter-tag:contains('1.70') {
    background: linear-gradient(135deg, #cfd9df 0%, #e2ebf0 100%);
    color: #333333;
    border-color: #cfd9df;
}

.screen-list .filter-tag:contains('1.85') {
    background: linear-gradient(135deg, #a6c0fe 0%, #f68084 100%);
    color: #ffffff;
    border-color: #a6c0fe;
}

.screen-list .filter-tag:contains('复古') {
    background: linear-gradient(135deg, #fccb90 0%, #d57eeb 100%);
    color: #333333;
    border-color: #fccb90;
}

.screen-list .filter-tag:contains('微变') {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    color: #333333;
    border-color: #e0c3fc;
}

.screen-list .filter-tag:contains('超变') {
    background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
    color: #333333;
    border-color: #fbc2eb;
}

/* 引擎类型标签背景 */
.screen-list .filter-tag:contains('GOM') {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: #ffffff;
    border-color: #43e97b;
}

.screen-list .filter-tag:contains('新GOM') {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-color: #667eea;
}

.screen-list .filter-tag:contains('BLUE/LEG') {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
    border-color: #4facfe;
}

.screen-list .filter-tag:contains('HGE') {
    background: linear-gradient(135deg, #43e97b 0%, #4facfe 100%);
    color: #ffffff;
    border-color: #43e97b;
}

.screen-list .filter-tag:contains('龙族') {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #ffffff;
    border-color: #fa709a;
}

.screen-list .filter-tag:contains('GEE') {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    border-color: #f093fb;
}

.screen-list .filter-tag:contains('翎风引擎') {
    background: linear-gradient(135deg, #45b7d1 0%, #96c93d 100%);
    color: #ffffff;
    border-color: #45b7d1;
}

.screen-list .filter-tag:contains('996') {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #ffffff;
    border-color: #ff6b6b;
}

.screen-list .filter-tag:contains('其他') {
    background: linear-gradient(135deg, #cfd9df 0%, #e2ebf0 100%);
    color: #333333;
    border-color: #cfd9df;
}

/* ==================== 公告栏 ==================== */
.announcement {
    width: 100%;
    max-width: 1400px;
    margin: 25px auto;
   /* padding: 0 20px;*/
}

.announcement marquee {
    background: #fff8e1;
    padding: 16px 24px;
    border-radius: 12px;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #ffe082;
}

/* ==================== 主内容区 ==================== */
.main-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 35px;
    /*padding: 0 20px;*/
}

/* 表格头 */
.mzon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    margin: 0;
    box-shadow: 0 8px 32px rgba(102,126,234,0.3);
}

.mzon ul {
    display: flex;
    padding: 0;
}

.mzon ul li {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 18px 12px;
    text-align: center;
    flex-shrink: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.mzon .t1 { width: 110px; }
.mzon .t2 { flex: 1; }
.mzon .t49 {width: 100px;}
.mzon .t0 { width: 130px; }
.mzon .t51 { width: 140px; }
.mzon .t50 { width: 100px; }
.mzon .t52 { width: 130px; }

/* 数据行 */
.mzon_star {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 16px 16px;
    margin: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.5s ease-out;
}

.mzon_star:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.mzon_star ul {
    display: flex;
    padding: 0;
}

.mzon_star ul li {
    padding: 18px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mzon_star ul li:last-child {
    border-bottom: none;
}

/* 各列样式 */
.st1 { width: 110px; }
.st1 span {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.xzlx0 { background: #090; }
.xzlx1 { background: #090; }
.xzlx2 { background: #A846FC; }
.xzlx3 { background: #f00; }
.xzlx4 { background: #09f; }
.xzlx5 { background: #f97c55; }
.xzlx6 { background: #fd718b; }
.xzlx7 { background: #615858; }
.xzlx8 { background: #af6161; }
.xzlx9 { background: #75aef5; }
.xzlx10 { background: #3ecf5d; }
.xzlx11 { background: #ffc800; }
.xzlx12 { background: #FFA500; }

.main .mzon_star li.st1 span.xzlx1 {
    line-height: 18px;
    padding: 0px 12px;
    background: #090;
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    font-size: 15px;
    line-height: 26px;
}

.main .mzon_star li.st1 span.xzlx2 {
    line-height: 18px;
    padding: 0px 12px;
    background: #A846FC;
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    font-size: 15px;
    line-height: 26px;
}

.main .mzon_star li.st1 span.xzlx3 {
    line-height: 18px;
    padding: 0px 12px;
    background: #f00;
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    font-size: 15px;
    line-height: 26px;
}

.main .mzon_star li.st1 span.xzlx4 {
    line-height: 18px;
    padding: 0px 12px;
    background: #09f;
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    font-size: 15px;
    line-height: 26px;
}

.main .mzon_star li.st1 span.xzlx5 {
    line-height: 18px;
    padding: 0px 12px;
    background: #f97c55;
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    font-size: 15px;
    line-height: 26px;
}

.main .mzon_star li.st1 span.xzlx6 {
    line-height: 18px;
    padding: 0px 12px;
    background: #d7a5ae;
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    font-size: 15px;
    line-height: 26px;
}

.main .mzon_star li.st1 span.xzlx7 {
    line-height: 18px;
    padding: 0px 12px;
    background: #615858;
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    font-size: 15px;
    line-height: 26px;
}

.main .mzon_star li.st1 span.xzlx8 {
    line-height: 18px;
    padding: 0px 12px;
    background: #af6161;
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    font-size: 15px;
    line-height: 26px;
}

.main .mzon_star li.st1 span.xzlx9 {
    line-height: 18px;
    padding: 0px 12px;
    background: #75aef5;
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    font-size: 15px;
    line-height: 26px;
}

.main .mzon_star li.st1 span.xzlx10 {
    line-height: 18px;
    padding: 0px 12px;
    background: #3ecf5d;
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    font-size: 15px;
    line-height: 26px;
}

.main .mzon_star li.st1 span.xzlx11 {
    line-height: 18px;
    padding: 0px 12px;
    background: #ffc800;
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    font-size: 15px;
    line-height: 26px;
}

.main .mzon_star li.st1 span.xzlx12 {
    line-height: 18px;
    padding: 0px 12px;
    background: #FFA500;
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    font-size: 15px;
    line-height: 26px;
}

.st2 { flex: 1; text-align: left; }
.st2 a {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.st2 a:hover {
    color: #667eea;
    text-shadow: 0 0 20px rgba(102,126,234,0.3);
}

.st49 { width: 120px; }
.st49 a {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 12px;
    background: rgba(102,126,234,0.1);
    border-radius: 20px;
    display: inline-block;
}

.st0 { width: 130px; color: #666; font-size: 14px; font-weight: 500; }

.st51 { width: 140px; }
.st51 a {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 25px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.st51 .sta { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.st51 .sta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(102,126,234,0.4);
}

.st50 { width: 100px; color: #e74c3c; font-weight: 700; font-size: 16px; }

.st52 { width: 130px; }
.st52 a {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 25px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: pulse 2s infinite;
}

.yzgwc { background: linear-gradient(135deg, #e74c3c 0%, #f39725 100%); }
.yzgwc:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(231,76,60,0.4);
}

.djxzbtn { background: linear-gradient(135deg, #52c41a 0%, #389e0d 100%); }
.djxzbtn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(82,196,26,0.4);
}

/* ==================== 分页样式 ==================== */
.page {
    width: 100%;
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
    text-align: center;
}

.page a {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #333;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102,126,234,0.3);
}

.page .current {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(102,126,234,0.3);
}

/* ==================== 底部区域 ==================== */
.footer {
    background: #c2c5c9;
    color: #333;
    padding: 40px 0 20px;
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.footpage {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footpage p {
    margin: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footpage a {
    color: #667eea;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.footpage a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* ==================== 返回顶部按钮 ==================== */
#top2 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102,126,234,0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

#top2.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#top2:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(102,126,234,0.6);
}

#top2:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(102,126,234,0.6);
}

#top2 img {
    width: 24px;
    height: 24px;
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1200px) {
    .top-inner { padding: 0 15px; }
    .search { margin: 0 30px; max-width: 450px; }
    .mzon ul li, .mzon_star ul li { padding: 15px 10px; font-size: 14px; }
    .st2 a { font-size: 15px; }
}

@media (max-width: 992px) {
    .top-inner { flex-direction: column; gap: 20px; }
    .search { margin: 0; max-width: 100%; width: 100%; }
    .search_input { padding: 14px 20px; }
    #nav ul { flex-wrap: wrap; justify-content: center; }
    #nav li a { padding: 15px 18px; font-size: 14px; }
    .mzon ul, .mzon_star ul { flex-wrap: wrap; }
    .mzon ul li, .mzon_star ul li { width: 100%; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .mzon ul li:last-child, .mzon_star ul li:last-child { border-bottom: none; }
    .mzon .t1, .st1 { width: 100%; }
    .mzon .t2, .st2 { width: 100%; }
    .mzon .t49, .st49 { width: 100%; }
    .mzon .t0, .st0 { width: 100%; }
    .mzon .t51, .st51 { width: 100%; }
    .mzon .t50, .st50 { width: 100%; }
    .mzon .t52, .st52 { width: 100%; }
}

@media (max-width: 768px) {
    #top { padding: 15px 0; }
    .logo img { height: 45px; }
    .search_input { padding: 12px 16px; font-size: 13px; }
    .search_bot { width: 36px; height: 36px; }
    .LoginStatus a { padding: 8px 15px; font-size: 13px; }
    #nav li a { padding: 12px 15px; }
    .screen-list ul { padding: 15px; }
    .screen-list ul li { padding: 6px 15px; font-size: 13px; }
    .announcement marquee { padding: 12px 18px; font-size: 14px; }
    .mzon ul li, .mzon_star ul li { padding: 12px 15px; }
    .st2 a { font-size: 14px; }
    .page a { padding: 8px 15px; margin: 0 3px; font-size: 13px; }
    #top2 { width: 45px; height: 45px; bottom: 20px; right: 20px; }
}

@media (max-width: 576px) {
    .top-inner { padding: 0 10px; }
    .logo img { height: 40px; }
    .search_input { padding: 10px 14px; }
    .search_bot { width: 32px; height: 32px; right: 4px; }
    .LoginStatus { font-size: 12px; }
    .LoginStatus a { padding: 6px 12px; margin-left: 10px; }
    #nav li a { padding: 10px 12px; font-size: 13px; }
    .screen-list { margin: 15px auto; padding: 0 10px; }
    .screen-list ul { padding: 12px; gap: 8px; }
    .screen-list ul li { padding: 5px 12px; font-size: 12px; }
    .announcement { margin: 15px auto; padding: 0 10px; }
    .announcement marquee { padding: 10px 15px; font-size: 13px; }
    .main-container { padding: 0 10px; margin-bottom: 25px; }
    .mzon ul li, .mzon_star ul li { padding: 10px 12px; font-size: 13px; }
    .st1 span { padding: 4px 12px; font-size: 11px; }
    .st2 a { font-size: 13px; }
    .st51 a { padding: 6px 15px; font-size: 12px; }
    .st52 a { padding: 8px 20px; font-size: 13px; }
    .page { margin: 20px auto; padding: 0 10px; }
    .page a { padding: 6px 12px; margin: 0 2px; font-size: 12px; }
    .footer { padding: 30px 0 15px; }
    .footpage { padding: 0 10px; }
    .footpage p { font-size: 13px; }
    #top2 { width: 40px; height: 40px; }
    #top2 img { width: 20px; height: 20px; }
}

/* ==================== 登录注册按钮 ==================== */
.actions {
    display: block;
}

.actions .login-btn.navbar-button {
    width: 120px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    list-style: none;
}

.actions .login-btn.navbar-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.actions .login-btn.navbar-button span {
    color: #fff;
    font-size: 14px;
}

.actions .login-btn.navbar-button .login-button,
.actions .login-btn.navbar-button .register-button {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.actions .login-btn.navbar-button .login-button:hover,
.actions .login-btn.navbar-button .register-button:hover {
    color: #fff;
    text-decoration: none;
}
}