/* 游戏版本库BBK005主题样式 */
/*
* Version - 1.1.0
* 作者 - Tanw
* 作者官网 - https://www.tanw.cc  https://bbk.tanz.cn
* Copyright (c) 2025 Tanw
*/

/* 首页布局样式 - 修复推荐文章位置 */
.main-content-wrapper {
    display: flex !important;
    gap: 10px;
    align-items: stretch;
    width: 100%;
    margin-top: 20px;
}

/* 通用的布局样式，不依赖特定的style属性 */
.line .main-content-wrapper {
    display: flex !important;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.filter-container {
    flex: 1;
    min-width: 0;
}

.sidebar-content {
    width: 320px !important;
    flex-shrink: 0;
    margin-left: 8px;
}

/* 通用的筛选容器和侧边栏样式 */
.line .filter-container {
    flex: 1 !important;
    min-width: 0 !important;
}

.line .sidebar-content {
    width: 320px !important;
    flex-shrink: 0 !important;
    margin-left: 8px !important;
}

/* 确保筛选区域和推荐文章在同一行 */
.filter-container .filter-box {
    height: auto;
    width: 100%;
}

/* 推荐文章模块在筛选右侧的特殊样式 */
.sidebar-content .sidebar-widget {
    width: 100%;
    max-width: 320px;
    margin-top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 确保推荐文章模块不会超出容器 */
.sidebar-content {
    max-width: 320px;
    min-width: 320px;
    margin-top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 确保筛选功能和推荐文章顶部对齐 */
.filter-container .filter-box,
.sidebar-content .sidebar-widget {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* 移除可能影响对齐的padding和margin */
.filter-container,
.sidebar-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* 特别针对首页筛选功能的对齐 */
.main-content-wrapper .filter-container .filter-box {
    margin: 0 !important;
}

.main-content-wrapper .sidebar-content .sidebar-widget {
    margin: 0 !important;
}

/* 覆盖可能的冲突样式 */
.line .main-content-wrapper {
    display: flex !important;
    flex-direction: row !important;
}

/* 确保容器不受其他样式影响 */
.layout .container .line .main-content-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
}

/* 强制对齐样式 */
.container .line .main-content-wrapper {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
    align-items: flex-start !important;
    width: 100% !important;
}

.container .line .filter-container {
    flex: 1 !important;
    min-width: 0 !important;
}

.container .line .sidebar-content {
    width: 320px !important;
    flex-shrink: 0 !important;
    margin-left: 8px !important;
}

/* 防止clearfix影响flex布局 */
.main-content-wrapper::after {
    display: none !important;
}

.filter-container::after {
    display: none !important;
}

/* 强制布局样式 */
.layout .container .line[style*="background: #F7F7F7"] .main-content-wrapper {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
    align-items: flex-start !important;
    width: 100% !important;
}

.layout .container .line[style*="background: #F7F7F7"] .filter-container {
    flex: 1 !important;
    min-width: 0 !important;
}

.layout .container .line[style*="background: #F7F7F7"] .sidebar-content {
    width: 280px !important;
    flex-shrink: 0 !important;
    margin-left: 15px !important;
}

/* 额外的强制样式 */
div[style*="display: flex"][style*="gap: 20px"] {
    display: flex !important;
    flex-direction: row !important;
}

div[style*="display: flex"][style*="gap: 20px"] > div[style*="flex: 1"] {
    flex: 1 !important;
}

div[style*="display: flex"][style*="gap: 10px"] > div[style*="width: 320px"] {
    width: 320px !important;
    flex-shrink: 0 !important;
    margin-left: 8px !important;
}

/* 强制对齐 - 针对内联样式的容器 */
div[style*="display: flex"] .filter-container {
    flex: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

div[style*="display: flex"] .sidebar-content {
    width: 320px !important;
    margin: 0 0 0 8px !important;
    padding: 0 !important;
}

div[style*="display: flex"] .filter-container .filter-box {
    margin: 0 !important;
}

div[style*="display: flex"] .sidebar-content .sidebar-widget {
    margin: 0 !important;
}

/* 确保筛选功能和推荐文章高度一致 */
.main-content-wrapper {
    align-items: stretch !important;
    min-height: 150px;
}

.filter-container,
.sidebar-content {
    display: flex !important;
    flex-direction: column !important;
}

.filter-container .filter-box,
.sidebar-content .sidebar-widget {
    flex: 1 !important;
    height: 100% !important;
    min-height: 150px;
}

/* 侧边栏组件样式 */
.sidebar-widget {
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    height: 200px;
    min-height: 200px;
}

.widget-header {
    background: #f8f9fa;
    padding: 10px 12px;
    border-bottom: 1px solid #e8e8e8;
}

.widget-title {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.widget-title i {
    font-size: 13px;
    color: #ff6b35;
}



.widget-content {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 带序号的推荐文章列表样式 */
.recommend-list-numbered {
    margin: 0;
    padding: 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 125px;
    height: 125px;
    overflow: hidden;
}

.recommend-item-numbered {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    padding: 4px 0px;
    background: transparent;
    border-radius: 0px;
    transition: none;
    border: none;
}

/* 移除悬停效果 */

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

.recommend-number {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: white;
    margin-right: 6px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* 序号颜色 */
.recommend-item-numbered:nth-child(1) .recommend-number {
    background: #ff6b35;
}

.recommend-item-numbered:nth-child(2) .recommend-number {
    background: #4ecdc4;
}

.recommend-item-numbered:nth-child(3) .recommend-number {
    background: #45b7d1;
}

.recommend-item-numbered:nth-child(4) .recommend-number {
    background: #96ceb4;
}

.recommend-item-numbered:nth-child(5) .recommend-number {
    background: #feca57;
}

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

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

.recommend-title {
    font-size: 11px;
    line-height: 1.2;
    color: #333;
    margin: 0;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommend-content a:hover .recommend-title {
    color: #ff6b35;
}

/* 公告列表样式 */
.notice-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notice-item {
    border-bottom: 1px solid #f0f0f0;
}

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

.notice-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.notice-item a:hover,
.notice-item.hover-effect a {
    background-color: #f8f9fa;
    color: #667eea;
    transform: translateX(3px);
}

.notice-title {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice-date {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
    flex-shrink: 0;
}

/* 推荐文章列表样式 */
.recommend-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recommend-item {
    border-bottom: 1px solid #f0f0f0;
}

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

.recommend-item a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.recommend-item a:hover,
.recommend-item.hover-effect a {
    background-color: #f8f9fa;
    color: #667eea;
    transform: translateX(3px);
}

.recommend-title {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.recommend-date {
    color: #999;
}

.recommend-hits {
    color: #667eea;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .sidebar-content {
        width: 280px;
    }
}

@media (max-width: 992px) {
    .main-content-wrapper,
    .layout .container .line[style*="background: #F7F7F7"] .main-content-wrapper {
        flex-direction: column !important;
    }

    .sidebar-content,
    .container .line .sidebar-content {
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 20px !important;
    }

    .sidebar-widget {
        margin-bottom: 15px;
    }
}

/* ========== 重写的筛选和推荐文章样式 ========== */

/* 主容器 */
.filter-recommend-wrapper {
    background: #cce0ea;
    padding: 15px 0 5px 0;
}

.filter-recommend-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 120px;
}

.filter-recommend-content {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

/* 筛选区域 */
.filter-section {
    flex: 1;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    padding: 30px 15px 25px 30px;
}

.filter-list {
    margin: 0;
}

.filter-ul {
    list-style: none;
    margin: 0;
    padding: 5px 0 0 0;
    font-size: 13px;
}

.filter-item {
    margin: 0 auto;
    position: relative;
    padding-left: 130px;
    list-style: none;
    margin-bottom: 15px;
}

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

.filter-label {
    position: absolute;
    left: 0;
    display: inline-block;
    min-width: 70px;
    color: #fff;
    text-align: center;
    border: 1px solid #5b9bbb;
    border-radius: 5px;
    background: #5b9bbb;
    height: 28px;
    line-height: 24px;
    padding: 1px 10px;
    font-size: 13px;
    font-family: "微软雅黑", Arial, sans-serif;
}

.filter-options {
    display: inline-block;
}

.filter-btn {
    display: inline-block;
    text-align: center;
    min-width: 70px;
    color: #555;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 28px;
    line-height: 28px;
    padding: 0 10px;
    margin-bottom: 0;
    margin-right: 5px;
    text-decoration: none;
    background: #fff;
    transition: all 0.3s ease;
    font-size: 13px;
    font-family: "微软雅黑", Arial, sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    color: #ffffff;
    border: 1px solid #5b9bbb;
    background: #5b9bbb;
    text-decoration: none;
}

/* 推荐文章区域 */
.recommend-section {
    width: 320px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 140px !important;
    min-height: 140px !important;
}

.recommend-header {
    background: #f8f9fa;
    padding: 6px 12px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 13px;
    font-weight: bold;
    color: #333;
    flex-shrink: 0;
}

.recommend-header i {
    color: #ff6b35;
    margin-right: 6px;
}

.recommend-section .recommend-content {
    padding: 10px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    box-sizing: border-box;
}

.recommend-section .recommend-item {
    padding: 8px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    min-height: 20px;
    margin-bottom: 6px;
}

.recommend-section .recommend-item:last-child {
    border-bottom: none !important;
}

.recommend-section .recommend-item a {
    color: #333 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    display: inline !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
    padding: 0 !important;
    background: none !important;
    transform: none !important;
    word-break: break-all !important;
}

.recommend-section .recommend-item a:hover {
    color: #ff6b35 !important;
    background: none !important;
    transform: none !important;
}

/* 响应式样式 */
@media (max-width: 1200px) {
    .filter-recommend-container {
        padding: 0 60px;
    }
}

@media (max-width: 992px) {
    .filter-recommend-content {
        flex-direction: column;
    }

    .recommend-section {
        width: 100%;
        margin-top: 20px;
    }

    .filter-item {
        padding-left: 0;
        padding-top: 40px;
        position: relative;
    }

    .filter-label {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: auto;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .filter-recommend-container {
        padding: 0 20px;
    }

    .filter-section {
        padding: 15px;
    }

    .filter-btn {
        min-width: 60px;
        padding: 0 8px;
        margin-right: 3px;
        margin-bottom: 8px;
    }
}

/* 内联样式的推荐文章悬停效果 */
div[style*="padding: 4px 0"] a:hover {
    color: #ff6b35 !important;
}

/* 简化的推荐文章悬停效果 */
a[style*="color: #333"]:hover {
    color: #ff6b35 !important;
}

/* 筛选按钮悬停效果 */
a[style*="color: #555"]:hover {
    color: #ffffff !important;
    border: 1px solid #5b9bbb !important;
    background: #5b9bbb !important;
    text-decoration: none !important;
}

/* 选中状态的筛选按钮 */
a.on[style*="color: #555"] {
    color: #ffffff !important;
    border: 1px solid #5b9bbb !important;
    background: #5b9bbb !important;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .sidebar-content {
        margin-top: 15px;
    }

    .sidebar-widget {
        margin-bottom: 15px;
    }

    .widget-header {
        padding: 12px 15px;
    }

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

    .recommend-item a {
        padding: 10px 15px;
    }

    .recommend-title {
        font-size: 13px;
    }

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

    /* 筛选功能在移动端的调整 */
    .filter-container .screen-list ul li {
        margin-bottom: 10px;
    }

    .filter-container .screen-list ul li span {
        display: block;
        margin-bottom: 5px;
    }

    /* 推荐文章在移动端的调整 */
    .recommend-list-numbered {
        padding: 8px;
    }

    .recommend-item-numbered {
        padding: 6px;
        margin-bottom: 6px;
    }

    .recommend-number {
        width: 18px;
        height: 18px;
        font-size: 11px;
        margin-right: 8px;
    }

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

/* 空状态样式 */
.empty-state {
    text-align: center;
    padding: 30px 20px;
    color: #999;
    font-size: 14px;
}

.empty-state i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
    color: #ddd;
}




/* 布局控制 */
.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 120px;
    box-sizing: border-box;
}

body {
    font-family: "微软雅黑", Helvetica Neue, sans-serif, Arial;
    height: 100%;
    position: relative;
    background-color: #cce0ea;
    margin: 0;
    padding: 0;
}

/* 通用样式 */
* {
    font-family: Tahoma, "Microsoft Yahei", Arial;
    box-sizing: border-box;
}

a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* 头部样式 */
.header-simple {
    background-color: #cce0ea;
    padding: 15px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: relative;
    z-index: 999;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-simple {
    height: 50px;
}

.logo-simple img {
    height: 100%;
    max-width: 100%;
}

.user-area-simple {
    display: flex;
    align-items: center;
    position: relative;
}

/* 会员下拉菜单 */
.member-dropdown {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    margin-right: 0;
}

.member-dropdown:hover .dropdown-menu {
    display: block;
}

.member-info {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 4px;
}

.member-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
}

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

.member-text {
    font-size: 14px;
    color: #333;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 5px 0;
    min-width: 150px;
    z-index: 1000;
    display: none;
    margin-top: 10px;
}

/* 添加一个空白区域确保鼠标可以正常移动到下拉菜单上 */
.member-dropdown:after {
    content: '';
    position: absolute;
    height: 15px;
    bottom: -15px;
    left: 0;
    right: 0;
    z-index: 990;
    display: none;
}

.member-dropdown:hover:after {
    display: block;
}

.dropdown-menu:before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    border-width: 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent #fff;
}

.dropdown-menu li {
    list-style: none;
    position: relative;
    z-index: 1001;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 15px;
    color: #333;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-menu li a i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #5b9bbb;
}

/* 登录注册区域 */
.login-register-simple {
    display: flex;
    align-items: center;
}

.login-register-simple i {
    font-size: 18px;
    margin-right: 5px;
    color: #5b9bbb;
}

.login-register-simple a {
    color: #333;
    margin: 0 5px;
}

.login-register-simple a:hover {
    color: #5b9bbb;
}

.login-register-simple .divider {
    color: #ddd;
}

/* 导航样式 */
.layout.navbar {
    background: #5b9bbb;
    position: relative;
}

.layout.navbar .container {
    position: relative;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.nav-inline {
    display: flex;
}

.nav-menu li {
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: block;
    color: #fff;
    padding: 15px 20px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.nav-menu li a:hover {
    color: #ff9600;
}

.nav-menu li.active a {
    color: #ff9600;
    font-weight: bold;
}

/* 搜索框样式 */
.nav-search-container {
    position: absolute;
    top: 50%;
    right: 120px;
    transform: translateY(-50%);
}

.nav-search-form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    overflow: hidden;
}

.nav-search-input {
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: #fff;
    width: 220px;
    outline: none;
}

.nav-search-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.nav-search-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    padding: 10px 15px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-search-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* 搜索页面样式 */
.highlight-keyword {
    background-color: yellow;
    color: red;
    font-weight: bold;
    padding: 0 2px;
}

.no-search-result {
    padding: 50px 0;
    text-align: center;
    color: #666;
}

.no-search-result i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-search-result p {
    font-size: 18px;
    margin: 10px 0;
}

.no-search-result .tips {
    font-size: 16px;
    margin-top: 30px;
    color: #333;
}

.no-search-result ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    text-align: center;
}

.no-search-result ul li {
    font-size: 14px;
    color: #888;
    line-height: 24px;
}

/* 返回顶部按钮样式 */
.back-to-top {
    position: fixed;
    right: 50px;
    bottom: 120px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: rgb(141, 185, 207);
    color: white;
    font-size: 20px;
    border-radius: 4px;
    cursor: pointer;
    display: none;
    z-index: 999;
}

.back-to-top:hover {
    background-color: rgb(121, 165, 187);
}

/* 筛选功能样式 */
.filter-box {
    background: #fff;
    margin: 1rem 0;
}

.screen-list {
    margin: 0 auto;
    border: 1px solid #ccc;
    padding: 10px 30px;
    font-size: 13px;
    color: #333;
}

.screen-list2 {
    border: none;
    padding: 5px 0;
}

.screen-list li {
    margin: 0 auto;
    position: relative;
    padding-left: 130px;
    list-style: none;
}

.screen-list span {
    position: absolute;
    left: 0;
    display: inline-block;
    min-width: 70px;
    color: #fff;
    text-align: center;
    border: 1px solid #5b9bbb;
    border-radius: 5px;
    background: #5b9bbb;
    height: 30px;
    line-height: 26px;
    padding: 1px 10px;
}

.screen-list a {
    display: inline-block;
    text-align: center;
    min-width: 70px;
    color: #555;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    margin-bottom: 10px;
    margin-right: 8px;
}

.screen-list a:hover, .screen-list .on {
    color: #ffffff;
    border: 1px solid #5b9bbb;
    background: #5b9bbb;
    text-decoration: none;
}

/* 数据表格样式 */
.data-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 20px 0;
    background: #fff;
}

.data-table th {
    padding: 10px 8px;
    background: #3066a6;
    color: #fff;
    font-weight: bold;
    border: 1px solid #3066a6;
}

.data-table tr {
    background: #ffffcc;
}

.data-table tr:hover {
    background: #eaeaea;
}

.data-table td {
    padding: 8px;
    border: 1px solid #ddd;
    vertical-align: middle;
}

.data-table .free-text {
    color: #4CAF50;
    font-weight: bold;
}

.data-table .btn {
    padding: 5px 10px;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.data-table .btn-free {
    background: #4CAF50;
}

.data-table .btn-buy {
    background: #FF5722;
}

.data-table .btn-contact {
    background: #2196F3;
}

/* 表格列样式 - 独立控制每一列 */

/* 版本名称列 */
.col-title {
    width: 55%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: #ffffff;
    font-family: "微软雅黑", Arial, sans-serif;
    font-size: 15px;
    color: #333333;
    text-align: left;
    padding-left: 15px;
}

.col-title a {
    color: #333333;
    text-decoration: none;
    font-weight: normal;
}

.col-title a:hover {
    color: #0066cc;
    text-decoration: none;
}

/* 引擎类型列 */
.col-engine {
    width: 6%;
    text-align: center;
    white-space: nowrap;
    background-color: #f9f9f9;
    font-family: "微软雅黑", Arial, sans-serif;
    font-size: 13px;
    color: #555555;
    font-weight: normal;
}

/* 版本类型列 */
.col-version {
    width: 6%;
    text-align: center;
    white-space: nowrap;
    background-color: #ffffff;
    font-family: "微软雅黑", Arial, sans-serif;
    font-size: 13px;
    color: #555555;
    font-weight: normal;
}

/* 价格列 */
.col-price {
    width: 6%;
    text-align: center;
    white-space: nowrap;
    background-color: #ffffff;
    font-family: "微软雅黑", Arial, sans-serif;
    font-size: 13px;
    color: #555555;
    font-weight: normal;
}

/* 免费下载文本样式 */
.free-text {
    color: #059d05;
    font-weight: normal;
    font-size: 13px;
}

/* 演示网站列 */
.col-demo {
    width: 7%;
    text-align: center;
    white-space: nowrap;
    background-color: #f0f8ff;
    font-family: "微软雅黑", Arial, sans-serif;
    font-size: 13px;
    color: #0066cc;
}

.col-demo a {
    color: #0066cc;
    text-decoration: none;
}

.col-demo a:hover {
    text-decoration: underline;
}

/* 更新日期列 */
.col-date {
    width: 7%;
    text-align: center;
    white-space: nowrap;
    background-color: #f9f9f9;
    font-family: "微软雅黑", Arial, sans-serif;
    font-size: 13px;
    color: #777777;
    font-weight: normal;
}

/* 在线获取列 */
.col-buy {
    width: 7%;
    text-align: center;
    white-space: nowrap;
    background-color: #ffffff;
    font-family: "微软雅黑", Arial, sans-serif;
    font-size: 13px;
    padding: 8px 5px;
}

/* 表格头部样式 - 每一列单独控制 */
.data-table th.col-title {
    background-color: #5b9bbb;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    text-align: left;
    padding-left: 15px;
}

.data-table th.col-engine,
.data-table th.col-version,
.data-table th.col-price,
.data-table th.col-demo,
.data-table th.col-date,
.data-table th.col-buy {
    background-color: #5b9bbb;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}

/* 表格行交替颜色 */
.data-table tr:nth-child(even) td.col-title,
.data-table tr:nth-child(even) td.col-version,
.data-table tr:nth-child(even) td.col-price,
.data-table tr:nth-child(even) td.col-buy {
    background-color: #f5f5f5;
}

.data-table tr:nth-child(even) td.col-engine,
.data-table tr:nth-child(even) td.col-date {
    background-color: #efefef;
}

.data-table tr:nth-child(even) td.col-demo {
    background-color: #e8f4ff;
}

/* 表格行悬停效果 */
.data-table tr:hover td {
    background-color: #f0f0f0;
}

.data-table tr:hover td.col-demo {
    background-color: #e0f0ff;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 3px;
    color: #ffffff !important;
    text-align: center;
    text-decoration: none !important;
    white-space: nowrap;
    font-weight: normal;
    min-width: 70px;
    transition: all 0.2s ease;
    box-shadow: none;
    font-size: 13px;
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "微软雅黑", Tahoma, Arial, sans-serif;
    border: none;
    line-height: 1.4;
    cursor: pointer;
}

.btn:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.85;
}

.btn-free {
    background: #059d05;
}

.btn-buy {
    background: #FF5722;
}

.btn-contact {
    background: #ff9600;
}

/* 栏目按钮样式 */
.btn-free-version {
    background: #059d05;
}

.btn-vip-version {
    background: #9c27b0;
}

.btn-exclusive-version {
    background: #f70606;
}

.btn-forum-version {
    background: #03a9f4;
}

/* 颜色定义 */
.color-free {
    color: #059d05 !important;
}

.color-buy {
    color: #f70606 !important;
}

.color-contact {
    color: #ff9600 !important;
}

.color-vip {
    color: #9c27b0 !important;
}

.color-forum {
    color: #03a9f4 !important;
}

/* 分页样式 */
.text-center {
    text-align: center;
}

.pagination {
    display: inline-flex;
    justify-content: center;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination li {
    margin: 0 5px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    display: inline-block;
}

.pagination li a {
    border-radius: 4px;
    color: #6e6e6e;
    background: #fff;
    padding: 12px 16px;
    border: 1px solid #DCDCDC;
    text-decoration: none;
    display: inline-block;
}

.pagination li.active a, .pagination li a:hover {
    background: #ff9600;
    color: #fff;
    border: 1px solid #ff9600;
}

/* 页脚样式 */
.footer {
    padding: 20px 0;
    background-color: #5b9bbb;
    color: #fff;
}

.footer-simple {
    padding: 15px 0;
    background-color: #5b9bbb;
    color: #fff;
    text-align: center;
}

.footer-simple a {
    color: #fff;
}

/* 简单分页样式 - 与图二完全一致 */
.simple-pagination-wrapper {
    background-color: #ffffff;
    padding: 20px 0;
    margin: 0;
    text-align: center;
    border-bottom: none;
    clear: both;
}

.simple-pagination {
    display: inline-block;
    position: relative;
}

/* 显示总条数 */
.pagination-total {
    display: inline-block;
    margin-right: 20px;
    color: #666;
    font-size: 14px;
    vertical-align: middle;
}

/* 自定义分页容器 */
#custom-pagination {
    display: inline-block;
    vertical-align: middle;
}

/* 完全覆盖系统分页样式 */
.simple-pagination .pagination {
    display: inline-block !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    vertical-align: middle;
    opacity: 0;
    position: absolute;
    left: -9999px;
}

/* 自定义分页样式 */
.simple-pagination a.page-num,
.simple-pagination span.current-page {
    display: inline-block;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 0 5px;
    padding: 0;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    text-decoration: none;
    border-radius: 3px;
    vertical-align: middle;
}

.simple-pagination span.current-page {
    background-color: #ff9600;
    color: #fff;
    border-color: #ff9600;
}

.simple-pagination a.page-num:hover {
    background-color: #ff9600;
    color: #fff;
    border-color: #ff9600;
    text-decoration: none;
}

/* 上一页和下一页按钮样式 */
.simple-pagination a.page-prev,
.simple-pagination a.page-next {
    background-color: #f8f8f8;
}

/* 禁用状态 */
.simple-pagination a.page-num.disabled {
    background-color: #f8f8f8;
    color: #999;
    cursor: not-allowed;
    border-color: #ddd;
}

.simple-pagination a.page-num.disabled:hover {
    background-color: #f8f8f8;
    color: #999;
    border-color: #ddd;
}

/* 友情链接样式 - 与分页分开 */
.friend-links {
    background-color: #edf3f5;
    padding: 15px 0;
    color: #333;
    border-top: 1px solid #e0e0e0;
    margin-top: 0;
}

.friend-links .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.friend-links span {
    font-weight: bold;
    margin-right: 15px;
}

.friend-links a {
    color: #333;
    margin-right: 15px;
    line-height: 1.8;
}

.friend-links a:hover {
    color: #5b9bbb;
}

/* 响应式调整 */
@media screen and (max-width: 1200px) {
    .nav-search-container {
        position: absolute;
        top: 50%;
        right: 80px;
        transform: translateY(-50%);
    }
    
    .nav-search-form {
        justify-content: center;
    }
    
    .user-area-simple {
        right: 0;
    }
}

@media screen and (max-width: 1200px) {
    .container {
        padding: 0 60px;
    }


}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .side-btns {
        right: 30px;
    }

    .back-to-top {
        right: 30px;
    }

    .nav-search-container {
        position: absolute;
        top: 50%;
        right: 50px;
        transform: translateY(-50%);
    }

    .screen-list li {
        padding-left: 0;
        padding-top: 30px;
    }

    .screen-list span {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* 表格中的按钮样式 */
.data-table .btn {
    padding: 5px 10px;
    min-width: 65px;
    font-size: 13px;
    margin: 0;
    border-radius: 3px;
}

/* 产品详情页样式 */
/* 导航面包屑 */
.nav-bread {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
}

.nav-bread a {
    color: #333;
    text-decoration: none;
}

.nav-bread a:hover {
    color: #5b9bbb;
}

/* 产品详情区域 */
.product-detail-wrapper {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
}

/* 产品图片 */
.product-image-wrapper {
    width: 50%;
    float: left;
    box-sizing: border-box;
    padding-right: 30px;
}

.product-image-container {
    padding: 0;
    background-color: #fff;
    text-align: center;
    border: none;
    box-shadow: none;
}

.product-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 产品信息 */
.product-info-wrapper {
    width: 50%;
    float: left;
    box-sizing: border-box;
}

.product-info-container {
    padding: 0;
}

.product-header h1 {
    font-size: 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: #333;
}

.btn-copy {
    background-color: #5b9bbb;
    margin-left: 15px;
}

/* 产品属性列表 */
.product-attr-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.attr-item {
    margin-bottom: 15px;
    display: flex;
    float: left;
    width: 46%;
    margin-right: 4%;
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
    height: 38px;
    line-height: 38px;
}

.attr-item.full-width {
    width: 96%;
}

.attr-label {
    flex: 0 0 154px;
    background-color: #5b9bbb;
    color: #fff;
    padding: 0 15px;
    text-align: center;
    font-size: 14px;
}

.attr-value {
    flex: 1;
    padding: 0 15px;
    font-size: 14px;
    text-align: center;
}

.demo-link {
    flex: 1;
    padding: 0 15px;
    text-align: center;
    color: #333;
}

.demo-link:hover {
    color: #5b9bbb;
}

/* 下载按钮 */
.download-btn-wrapper {
    width: 96%;
    margin-top: 20px;
    border: none;
    height: auto;
    clear: both;
}

.download-btn {
    display: block;
    width: 100%;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    background-color: #059d05;
}

/* 产品介绍区域 */
.product-content-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* 选项卡导航 */
.tab-nav-wrapper {
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.tab-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.tab-nav li {
    margin-right: 10px;
}

.tab-nav li a {
    display: block;
    padding: 12px 25px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.tab-nav li.active a {
    color: #5b9bbb;
    font-weight: bold;
    border-bottom: 2px solid #5b9bbb;
}

/* 选项卡内容 */
.tab-content-container {
    border: 1px solid #ddd;
    border-top: none;
    background-color: #fff;
    padding: 20px;
}

.product-description {
    text-align: center;
}

.description-section {
    margin-bottom: 30px;
}

.description-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
}

.description-content {
    line-height: 1.8;
}

.product-content img {
    max-width: 100%;
    height: auto;
}

.bg-white {
    background: #cce0ea;
}

/* 筛选区域保持白色背景 */
.filter-box.bg-white {
    background: #fff !important;
}

.screen-list {
    background: #fff !important;
}

.bbk-content {
    background: #fff;
}

.bbk-content-nobg {
    /* 不包含背景色 */
    background: transparent;
}

.layout.bbk-content, .layout.bbk-content-nobg {
    width: 100%;
}

.layout.bbk-content .container, .layout.bbk-content-nobg .container {
    padding: 0 120px;
}

/* 响应式产品详情页 */
@media screen and (max-width: 992px) {
    .product-image-wrapper,
    .product-info-wrapper {
        width: 100%;
        float: none;
    }
    
    .product-info-container {
        padding: 20px 0 0 0;
    }
    
    .product-header h1 {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-copy {
        margin: 10px 0 0 0;
    }
    
    .product-image-wrapper {
        padding-right: 0;
    }
}

@media screen and (max-width: 768px) {
    .attr-item {
        width: 100%;
        margin-right: 0;
    }
}

/* 侧边栏按钮样式 */
.side-btns {
    position: fixed;
    right: 50px;
    bottom: 180px;
    z-index: 999;
}
.side-btn {
    display: block;
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
    border-radius: 4px;
    color: #fff;
    text-align: center;
    line-height: 45px;
    position: relative;
    cursor: pointer;
}
.side-btn:hover {
    color: #fff;
}
.side-btn i {
    font-size: 20px;
}
.side-btn-qq {
    background-color: #12b7f5;
}
.side-btn-qq:hover {
    background-color: #0e9fd9;
}
.side-btn-group {
    background-color: #ff6c00;
}
.side-btn-group:hover {
    background-color: #e56100;
}
/* 已删除.side-btn-top相关样式，使用.back-to-top代替 */

/* 提示框样式 */
.tooltip {
    position: absolute;
    top: 50%;
    right: 55px;
    transform: translateY(-50%);
    background-color: rgb(61, 137, 175);
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

/* 提示框小三角 */
.tooltip:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgb(61, 137, 175);
}

/* 鼠标悬停时显示提示框 */
.side-btn:hover .tooltip {
    visibility: visible;
    opacity: 1;
} 