/* 二维码导航模态框样式 */
.xb-qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.xb-qr-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.xb-qr-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.xb-qr-modal img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}
/* 全局容器样式 */
.xb-nav-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
    min-height: 100vh;
    box-sizing: border-box;
    max-width: 100vw;
    margin: 0;
    position: relative;
    overflow-x: hidden;
    z-index: 1;
}

/* 防止嵌套影响 */
.xb-nav-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 页面标题 */
.entry-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333333;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    font-weight: 700;
}

/* 搜索板块居中容器 */
.xb-nav-search {
    background: #ffffff;
    border-radius: 15px;
    padding: 15px;
    margin: 0 auto 30px;
    max-width: 960px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    box-sizing: border-box;
    width: 100%;
    max-width: calc(1400px - 40px);
    padding-left: 20px;
    padding-right: 20px;
}

/* 调整内部内容居中 */
.xb-nav-search > * {
    max-width: 960px;
    margin: 0 auto;
}

/* 搜索选项卡 */
.xb-search-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

/* 搜索选项卡按钮 */
.xb-search-tab {
    padding: 8px 16px;
    border: none;
    background: #339533;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.xb-search-tab:hover,
.xb-search-tab.active {
    background: #1e90ff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 搜索输入框包裹 */
.xb-search-input-wrapper {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    border-radius: 25px;
    padding: 5px 10px;
    border: 2px solid #1e90ff;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* 搜索输入框 */
#xb-search-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background: transparent;
    color: #333;
    font-size: 16px;
    outline: none;
}

#xb-search-input::placeholder {
    color: #666;
}

/* 搜索按钮 */
#xb-search-btn {
    background: #1e90ff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

#xb-search-btn:hover {
    background: #00bfff;
    transform: scale(1.1);
}

/* 搜索图标 */
.xb-search-icon {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
}

/* 手机端菜单栏 - 浮动显示 */
.xb-mobile-menu {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

/* 菜单图标 */
.menu-icon {
    font-size: 28px;
    cursor: pointer;
    color: #ffffff;
    background: #1e90ff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.menu-icon:hover {
    background: #00b8c4;
    transform: rotate(90deg);
}

/* 手机端菜单内容 */
.xb-mobile-menu-content {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: calc(100% - 90px);
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    z-index: 1001;
    padding: 20px;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
    transition: left 0.3s ease;
    border-right: 1px solid #e0e0e0;
}

.xb-mobile-menu-content.active {
    left: 0;
}

/* 手机端菜单头部 */
.xb-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1e90ff;
}

.xb-mobile-menu-header .xb-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    background: linear-gradient(45deg, #00c6fb, #005bea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-left: none;
    padding-left: 0;
}

/* 菜单关闭按钮 */
.menu-close {
    font-size: 28px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
    background: #f0f0f0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu-close:hover {
    color: #ffffff;
    background: #ff4d4d;
}

/* 主内容布局 */
.xb-nav-main {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 高特异性清除 ul 和 li 默认边距 */
.xb-nav-container .xb-nav-sidebar ul,
.xb-nav-container .xb-mobile-menu-content ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.xb-nav-container .xb-nav-sidebar .xb-category-item,
.xb-nav-container .xb-mobile-menu-content .xb-category-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 5px 0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9f9f9;
    width: 100%;
    box-sizing: border-box;
}

/* 左边分类栏 */
.xb-nav-sidebar {
    width: 150px;
    background: #ffffff;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 分类 */
.xb-category-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 5px 0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.xb-category-item:hover {
    background: #e0e0e0;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 分类图标 */
.xb-category-icon {
    width: 24px !important;
    height: 24px !important;
    margin-right: 10px !important;
    border-radius: 5px !important;
    margin: 0 !important;
}

/* 分类项文字 */
.xb-category-item span {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
}

/* 中间导航内容 */
.xb-nav-content {
    flex: 1;
    max-width: 960px;
}

/* 导航板块 */
.xb-nav-section {
    background: #ffffff;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 导航项容器 */
.xb-nav-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

/* 单个导航项 */
.xb-nav-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none !important;
    color: #333;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    transition: all 0.3s ease;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.9);
    position: relative;
    height: 60px;
    z-index: 10;
}

.xb-nav-item:hover {
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.1), inset -4px -4px 8px rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    z-index: 11;
}

/* 导航图标 */
.xb-nav-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    border-radius: 8px;
    object-fit: cover;
}

/* 导航信息 */
.xb-nav-info {
    flex: 1;
    position: relative;
    margin-left: 10px;
}

/* 导航名称 */
.xb-nav-name {
    font-size: 16px;
    font-weight: 600;
}

/* 导航描述（默认隐藏） */
.xb-nav-desc {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    display: none;
}

/* 导航描述（截断显示） */
.xb-nav-desc-short {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 导航描述（完整浮层显示，由JS控制） */
.xb-nav-desc-full {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    width: 200px;
    font-size: 12px;
    color: #333;
    line-height: 1.5;
}

/* 右边小工具栏 */
.xb-nav-widgets {
    width: 300px;
}

/* 小工具 */
.xb-widget {
    background: #ffffff;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.xb-widget:hover {
    transform: translateY(-5px);
}

/* 日期显示 */
.xb-date {
    font-size: 16px;
    color: #333;
}

/* 公告和广告 */
.xb-announcement,
.xb-ad {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* 广告图片 */
.xb-ad img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* 导航数量 */
.xb-nav-count {
    font-size: 16px;
    color: #1e90ff;
}

/* 申请按钮 */
.xb-apply-btn {
    display: block;
    text-align: center;
    padding: 10px 0;
    width: 150px;
    margin: 0 auto;
    background: linear-gradient(45deg, #00c6fb, #005bea);
    color: #ffffff;
    text-decoration: none !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.xb-apply-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 文章列表 */
.xb-post-list {
    list-style: none;
}

.xb-post-item {
    display: block;
    margin: 10px 0;
    color: #333;
    text-decoration: none !important;
    font-size: 14px;
    position: relative;
    padding-left: 30px;
    transition: transform 0.2s ease;
}

/* 文章编号 */
.xb-post-item::before {
    content: attr(data-index);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #1e90ff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* 移除CSS计数器 */
.xb-widget {
    counter-reset: none;
}

/* 文章hover效果 */
.xb-post-item:hover {
    transform: translateX(5px);
    text-decoration: none;
}

/* 标题样式 */
.xb-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    border-left: 4px solid #1e90ff;
    padding-left: 10px;
    margin-bottom: 15px;
}

/* 提示框 */
.xb-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    display: none;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 电脑端适配（确保一行显示4个导航项） */
@media (min-width: 769px) {
    .xb-nav-items {
        grid-template-columns: repeat(4, 1fr);
    }

    .xb-nav-item {
        min-width: 200px;
    }
}

/* 手机端适配 */
@media (max-width: 768px) {
    .xb-nav-container {
        padding: 10px;
    }

    .entry-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .xb-nav-search {
        padding: 10px;
        margin-bottom: 20px;
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .xb-search-tabs {
        gap: 5px;
    }

    .xb-search-tab {
        padding: 6px 12px;
        font-size: 14px;
    }

    .xb-search-input-wrapper {
        padding: 3px 8px;
    }

    #xb-search-input {
        padding: 8px 12px;
        font-size: 14px;
    }

    #xb-search-btn {
        width: 36px;
        height: 36px;
    }

    .xb-search-icon {
        width: 18px;
        height: 18px;
    }

    .xb-mobile-menu {
        display: block;
    }

    .xb-nav-main {
        flex-direction: column;
        padding: 0 10px;
    }

    .xb-nav-sidebar {
        display: none;
    }

    .xb-mobile-menu-content .xb-category-item {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        margin: 8px 0;
        background: linear-gradient(145deg, #ffffff, #e6e6e6);
        border-radius: 10px;
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease;
        border-left: 4px solid #1e90ff;
    }

    .xb-mobile-menu-content .xb-category-item:hover {
        background: linear-gradient(145deg, #e6e6e6, #ffffff);
        box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.1), inset -4px -4px 8px rgba(255, 255, 255, 0.9);
        transform: translateX(5px);
    }

    .xb-mobile-menu-content .xb-category-icon {
        width: 24px;
        height: 24px;
        margin-right: 12px;
        border-radius: 5px;
        border: 1px solid #e0e0e0;
    }

    .xb-mobile-menu-content .xb-category-item span {
        font-size: 15px;
        font-weight: 500;
        color: #333;
        transition: color 0.3s ease;
    }

    .xb-mobile-menu-content .xb-category-item:hover span {
        color: #1e90ff;
    }

    .xb-nav-content {
        width: 100%;
        max-width: 100%;
    }

    .xb-nav-section {
        padding: 10px;
    }

    .xb-nav-items {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .xb-nav-item {
        padding: 8px;
        height: 50px;
    }

    .xb-nav-icon {
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }

    .xb-nav-name {
        font-size: 14px;
    }

    .xb-nav-desc-short {
        font-size: 11px;
    }

    .xb-nav-desc-full {
        width: 150px;
    }

    .xb-nav-widgets {
        width: 100%;
    }

    .xb-widget {
        padding: 10px;
    }

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

    .xb-date,
    .xb-nav-count {
        font-size: 14px;
    }

    .xb-announcement,
    .xb-ad {
        font-size: 12px;
    }

    .xb-post-item {
        font-size: 12px;
        padding-left: 25px;
    }

    .xb-post-item::before {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
}

/* 数字时钟样式 */
.digital-clock {
    position: relative;
    color: #fff;
    background: #2e2e44;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@keyframes glowing {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

.time {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hours,
.dots,
.minutes {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    padding: 0 10px;
}

.hours,
.minutes {
    font-size: 1.5em;
}

.dots {
    color: #929292;
}

.hours {
    background: -webkit-linear-gradient(90deg, #634dff, #5fd4ff);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.minutes {
    background: -webkit-linear-gradient(90deg, #ff5e9e, #ffb960);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.right-side {
    position: relative;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 10px;
}

.period,
.seconds {
    font-size: 0.75em;
    font-weight: 500;
}

.period {
    transform: translateY(-20px);
    background: -webkit-linear-gradient(90deg, #f7b63f, #faf879);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.seconds {
    transform: translateY(16px);
    background: -webkit-linear-gradient(90deg, #24ff6d, #2f93f1);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.calender {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    background: -webkit-linear-gradient(90deg, #ae4af6, #ff98d1);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.day-name,
.day-num,
.year {
    margin-left: 8px;
}

/* 联系方式样式 */
.xb-contact-items {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.xb-contact-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}

.xb-contact-item .icon {
    font-size: 25px;
    margin-right: 10px;
    color: #00ddeb;
}

.xb-contact-item a {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none !important;
}

.xb-contact-item a:hover {
    color: #00ddeb;
}

.xb-contact-item span {
    line-height: 1.5;
}

.xb-contact-qr {
    position: relative;
}

.xb-qr-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.xb-qr-popup img {
    max-width: 100px !important;
    max-height: 100px !important;
    border-radius: 5px;
}

.xb-contact-row {
    display: flex;
    flex-wrap: wrap;
}

/* 热榜板块样式 */
.xb-hotlist-widget {
    background: #ffffff;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.xb-hotlist-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    /* overflow-x: auto;*/
    padding-bottom: 5px;
}

.xb-hotlist-tab {
    padding: 8px 16px;
    border: none;
    background: #e0e0e0;
    border-radius: 20px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}

.xb-hotlist-tab:hover,
.xb-hotlist-tab.active {
    background: #1e90ff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.xb-hotlist-items {
    list-style: none;
    padding: 0;
    margin: 0 !important;
}

.xb-hotlist-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 8px;
}

.xb-hotlist-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.xb-hotlist-rank {
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background: #e0e0e0;
    color: #333;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.xb-hotlist-rank.top-rank {
    background: linear-gradient(45deg, #ff4d4d, #ff7878);
    color: #ffffff;
}

.xb-hotlist-link {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    color: #333;
    flex: 1;
    overflow: hidden;
}

.xb-hotlist-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    border-radius: 5px;
    object-fit: cover;
    flex-shrink: 0;
}

.xb-hotlist-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xb-hotlist-count {
    font-size: 13px;
    color: #666;
    margin-left: 12px;
    flex-shrink: 0;
}

/* 避免冲突 */
.hot-panel {
    display: none !important;
}

/* 安全提示框模态框 */
.xb-safety-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
    box-sizing: border-box;
}

/* 安全提示框内容 */
.xb-safety-modal-content {
    background: linear-gradient(to bottom right, #e0f7ff, #f0e4ff);
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    margin: auto;
}

/* 提示框表情符号 */
.xb-safety-modal-icon {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

/* 提示标题 */
.xb-safety-modal-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

/* 提示内容 */
.xb-safety-modal-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    word-break: break-all;
}

/* 提示框按钮容器 */
.xb-safety-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* 提示框按钮 */
.xb-safety-modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

/* 取消按钮 */
.xb-safety-modal-btn.cancel {
    background-color: #5cb85c;
    color: #fff;
}

.xb-safety-modal-btn.cancel:hover {
    background-color: #366d36;
}

/* 继续按钮 */
.xb-safety-modal-btn.continue {
    background-color: #1e77ff;
    color: #ffffff;
}

.xb-safety-modal-btn.continue:hover {
    background-color: #00bfff;
}

/* 手机端适配 */
@media (max-width: 768px) {
    .xb-safety-modal-content {
        width: 95%;
        padding: 15px;
    }

    .xb-safety-modal-icon {
        font-size: 20px;
    }

    .xb-safety-modal-title {
        font-size: 14px;
    }

    .xb-safety-modal-text {
        font-size: 12px;
    }

    .xb-safety-modal-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .xb-hotlist-tab {
        padding: 6px 12px;
        font-size: 13px;
    }

    .xb-hotlist-item {
        padding: 8px 10px;
        margin-bottom: 6px;
    }

    .xb-hotlist-rank {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 12px;
        margin-right: 10px;
    }

    .xb-hotlist-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

    .xb-hotlist-name {
        font-size: 14px;
    }

    .xb-hotlist-count {
        font-size: 12px;
        margin-left: 10px;
    }
}

.xb-recommended-section {
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.xb-recommended-section .xb-title {
    color: #d81e06;
    font-size: 1.5em;
}