     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #f5f5f5;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        /* 顶部导航栏 */
        .top-nav {
            height: 60px;
            background-color: #222;
            line-height: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 15%;
            position: relative;
            z-index: 1000;
            top: 0;
            position: sticky;
        }
        .news-list{
            padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
        }
        .top-nav .logo {
            color: #ff4500;
            font-size: 24px;
            font-weight: bold;
        }
        
        .top-nav .logo img {
            height: 40px;
            vertical-align: middle;
        }
        
        .top-nav .nav-container {
            display: flex;
            align-items: center;
        }
        
        .top-nav .nav-links {
            margin-right: 20px;
        }
        
        .top-nav .nav-links a {
            color: #fff;
            margin-left: 25px;
            text-decoration: none;
            font-size: 14px;
        }
        
        .top-nav .nav-links a:hover {
            color: #ff4500;
        }
        
        /* 顶部搜索框 */
        .search-box {
            display: flex;
            align-items: center;
            height: 36px;
            position: relative;
        }
        
        .search-input {
            width: 200px;
            height: 100%;
            border: none;
            border-radius: 4px 0 0 4px;
            padding: 0 12px;
            font-size: 14px;
            outline: none;
        }
        
        .search-btn {
            width: 40px;
            height: 100%;
            background-color: #ff4500;
            border: none;
            border-radius: 0 4px 4px 0;
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        
        .search-btn:hover {
            background-color: #e63e00;
        }
        
        .search-btn i {
            font-size: 18px;
        }
        
        /* 搜索下拉菜单 */
        .search-dropdown {
            position: absolute;
            top: 40px;
            left: 0;
            width: 240px;
            background-color: #fff;
            border: 1px solid #eee;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: none;
            z-index: 1001;
        }
        
        .search-dropdown.show {
            display: block;
        }
        
        .search-dropdown-item {
            padding: 10px 15px;
            border-bottom: 1px solid #f5f5f5;
        }
        
        .search-dropdown-item:last-child {
            border-bottom: none;
        }
        
        .search-dropdown-title {
            font-size: 12px;
            color: #999;
            margin-bottom: 8px;
        }
        
        .hot-search-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .hot-search-tag {
            background-color: #f5f5f5;
            color: #666;
            padding: 4px 8px;
            border-radius: 3px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .hot-search-tag:hover {
            background-color: #ff4500;
            color: #fff;
        }
        
        .history-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
            cursor: pointer;
        }
        
        .history-item:hover {
            background-color: #f5f5f5;
        }
        
        .history-text {
            font-size: 14px;
            color: #333;
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .history-delete {
            font-size: 12px;
            color: #999;
            cursor: pointer;
        }
        
        .history-delete:hover {
            color: #ff4500;
        }
        
        .clear-history {
            text-align: center;
            font-size: 12px;
            color: #999;
            cursor: pointer;
            padding: 8px 0;
        }
        
        .clear-history:hover {
            color: #ff4500;
        }
        
        /* 搜索结果提示 */
        .search-result-tip {
            background-color: #fff3cd;
            border: 1px solid #ffeeba;
            color: #856404;
            padding: 10px 15px;
            border-radius: 4px;
            margin-bottom: 20px;
            display: none;
        }
        
        .search-result-tip .clear-search {
            color: #ff4500;
            cursor: pointer;
            margin-left: 10px;
        }
        
        .search-result-tip .clear-search:hover {
            text-decoration: underline;
        }
        
        /* 自动刷新提示 */
        .auto-refresh-tip {
            text-align: right;
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        /* 横幅区域 */
        .banner {
            height: 120px;
                background-color: #2087d0;
            text-align: center;
            color: #fff;
            padding-top: 25px;
                margin-bottom: 6px;
        }
        
        .banner h1 {
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        .banner p {
            font-size: 16px;
            opacity: 0.9;
        }
        .layui-table td, .layui-table th, .layui-table-col-set, .layui-table-fixed-r, .layui-table-grid-down, .layui-table-header, .layui-table-page, .layui-table-tips-main, .layui-table-tool, .layui-table-total, .layui-table-view, .layui-table[lay-skin=line], .layui-table[lay-skin=row] {
    border-width: 1px;
    border-style: solid;
    border-color: #2190e44a;
}
        /* 主内容区 */
        .main-content {
            width: 70%;
    margin: 0px auto;
        background-color: #ffffff;
    padding: 0px;
    border-radius: 0px;
    box-shadow: 0 2px 5px rgb(0 0 0);
        }
        
        /* 当前时间 */
        .current-time {
            text-align: right;
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        /* 标题样式 */
        .section-title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 0px;
            padding-left: 5px;
            border-left: 4px solid #ff4500;
        }
        
        /* 表格样式 */
        .layui-table {
            /*text-align: center;*/
        }
        
         .layui-table th {
    text-align: center;
    font-weight: 400;
}  
        .layui-table th {
          font-size: 14px;
    height: 28px;
    line-height: 28px;
    background: linear-gradient(to bottom, #2196F3, #1f6c8f);
    color: #FFFFFF;
    border: solid 1px #2190e4;
    font-weight: bold;
        }
        
        .game-name {
            color: #ff4500;
            font-weight: bold;
        }
        
        .download-btn, .enter-btn {
            color: #ff4500;
            text-decoration: none;
        }
        
        .download-btn:hover, .enter-btn:hover {
            text-decoration: underline;
        }
        
        /* 星级评分 */
        .stars {
            color: #ffb800;
        }
        
        /* 文章卡片样式 */
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .article-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .card-cover {
            width: 100%;
            height: 160px;
            object-fit: cover;
            display: block;
        }
        
        .card-content {
            padding: 15px;
        }
        
        .card-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            line-height: 1.4;
            height: 44px;
            overflow: hidden;
        }
        
        .card-title a {
            color: #333;
            text-decoration: none;
        }
        
        .card-title a:hover {
            color: #ff4500;
        }
        
        .card-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
            height: 67px;
            overflow: hidden;
        }
        
        .card-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #999;
        }
        
        /* 分页样式 */
        .pagination-container {
            margin-top: 30px;
            text-align: center;
        }
        
        /* 友情链接样式 */
        .friend-links {
            margin-top: 0px;
            padding: 20px;
            background-color: #f8f8f8;
            border-radius: 0px;
            border-width: 1px;
    border-style: solid;
    border-color: #2190e44a;
        }
        
        .friend-links .section-title {
            font-size: 18px;
            margin-bottom: 15px;
        }
        
        .friendlink-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            border-bottom: 1px dashed #c6cdc7;
        }
        
        .friendlink-header h3 {
            font-size: 16px;
            font-weight: bold;
            color: #333;
        }
        
        .apply-btn {
            background-color: #ff4500;
            color: #fff;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .apply-btn:hover {
            background-color: #e63e00;
        }
        
        .friendlink ul {
            list-style: none;
            line-height: 2.2;
        }
        
        .friendlink ul li {
            display: inline-block;
            margin-right: 20px;
        }
        
        .friendlink ul li a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
        }
        
        .friendlink ul li a:hover {
            color: #ff4500;
        }
        
        /* 友情链接申请弹窗 */
        .apply-mask {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 9998;
            display: none;
        }
        
        .apply-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 450px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            z-index: 9999;
            display: none;
        }
        
        .apply-popup-header {
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .apply-popup-header h4 {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }
        
        .apply-close {
            font-size: 24px;
            color: #999;
            cursor: pointer;
            line-height: 1;
        }
        
        .apply-close:hover {
            color: #ff4500;
        }
        
        .apply-popup-body {
            padding: 20px;
        }
        
        .apply-form-item {
            margin-bottom: 15px;
        }
        
        .apply-form-item label {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
            color: #333;
        }
        
        .apply-form-item input,
        .apply-form-item textarea {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            outline: none;
        }
        
        .apply-form-item input:focus,
        .apply-form-item textarea:focus {
            border-color: #ff4500;
        }
        
        .apply-form-item textarea {
            height: 80px;
            resize: vertical;
        }
        
        .apply-submit {
            width: 100%;
            background-color: #ff4500;
            color: #fff;
            border: none;
            padding: 10px;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .apply-submit:hover {
            background-color: #e63e00;
        }
        
        /* 底部区域 */
        .footer {
            background-color: #222;
            color: #999;
            padding: 40px 0;
            text-align: center;
            font-size: 14px;
            line-height: 2;
        }
        
        .footer a {
            color: #999;
            text-decoration: none;
            margin: 0 10px;
        }
        
        .footer a:hover {
            color: #ff4500;
        }
        
        .footer .copyright {
            margin-top: 15px;
            font-size: 13px;
        }
        
        /* 右侧悬浮工具栏通用样式 */
.float-toolbar {
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 9999; /* 层级拉高，防止被遮挡 */
}
.toolbar-item {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}
.toolbar-tip {
    position: absolute;
    right: 60px;
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    white-space: nowrap;
    display: none;
}
.toolbar-item:hover .toolbar-tip {
    display: block;
}

/* 回到顶部按钮：默认隐藏 */
#backToTop {
    display: none;
}
        /* 快速导航下拉菜单 */
        .nav-dropdown {
            position: absolute;
            right: 60px;
            top: 0;
            background-color: #fff;
            border: 1px solid #eee;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            width: 150px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .nav-dropdown a {
            display: block;
            padding: 10px 15px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            border-bottom: 1px solid #f5f5f5;
        }
        
        .nav-dropdown a:last-child {
            border-bottom: none;
        }
        
        .nav-dropdown a:hover {
            background-color: #ff4500;
            color: #fff;
        }
        
        .toolbar-item:hover .nav-dropdown {
            opacity: 1;
            visibility: visible;
        }
        
        /* 背景图片 */
        .backDiv {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-attachment: fixed;
        }
        
        /* 表格行颜色 */
        .th {background: #ffff99;}
        .th:hover {background: #ffffff;}
        .qtth {background: #ffff99;}
        .qtth:hover {background: #ffffff;}
        .fz {background: #fbf1fc;}
        .fz:hover {background: #ffffff;}
        .jp {background: #fef4f4;}
        .jp:hover {background: #ffffff;}
        .gd {background: #ffff00;}
        .gd:hover {background: #ffffff;}
        .tx {background: #ffff00;}
        .tx:hover {background: #ffffff;}
        .wk {background: #ffff00;}
        .wk:hover {background: #ffffff;}
        td:nth-of-type(8),
        td:nth-of-type(3),
        td:nth-of-type(4),
        td:nth-of-type(5),
        td:nth-of-type(7),
        td:nth-of-type(2) {text-align: center;}
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .top-nav {
                padding: 0 5%;
            }
            
            .main-content {
                width: 100%;
            }
        }
        
        @media (max-width: 992px) {
            .search-box {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .top-nav .nav-links {
                display: none;
            }
            
            .banner h1 {
                font-size: 24px;
            }
            
            .main-content {
                width: 95%;
                padding: 15px;
            }
            
            .layui-table {
                font-size: 12px;
            }
            
            .article-grid {
                grid-template-columns: 1fr;
            }
            
            .friendlink ul li {
                margin-right: 10px;
                font-size: 13px;
            }
            
            .float-toolbar {
                right: 10px;
                bottom: 20px;
            }
            
            .toolbar-item {
                width: 45px;
                height: 45px;
            }
            
            .toolbar-tip {
                display: none;
            }
            
            .nav-dropdown {
                right: 55px;
            }
            
            .apply-popup {
                width: 90%;
            }
        }
        .mqi1{
    position: fixed;
    left:10px;
    top:78px;
    z-index:9999999;
}
.mqi2{
    background: rgba(0,0,0,0.5);color:#fff;padding: 5px 10px;border-radius: 50px;font-size: 12px;font-family: '微软雅黑';
}
.mqi3{
    background: rgba(0,0,0,0.5);color:#fff;padding: 5px 10px;border-radius: 50px;font-size: 12px;font-family: '微软雅黑';margin-top: 10px;
} 
.sjxs{
    display: flex;
    gap: 8px;}
.sjxs a{
    border: 1px solid rgb(47 168 223);
    padding: 4px 10px;
    font-size: 12px;
    color: #03A9F4;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s ease 0s;
    background-color: transparent;}
 .sjxs a:hover {
            background-color: #ff4500;
            color: #fff;
        }
 .layui-table td, .layui-table th {
    position: relative;
    padding: 5px 8px;
    min-height: 20px;
    line-height: 20px;
    font-size: 14px;
}       