/*
Theme Name:     B2子主题
Theme URI:      http: //7b2.com/
Description:    Child theme for the B2 PRO
Author:         子主题模版
Author URI:     http: //7b2.com/
Template:       b2
Version:        0.1.6
*/

/*下面是您自己DIY的css样式代码*/

/* ============================================
   【粘性Footer】2025-12-14
   确保Footer始终在页面底部，即使内容很少
   ============================================ */

html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ============================================
   【移动端顶部间隙修复】2025-12-14
   移除工具页面顶部的16px间隙
   ============================================ */
@media (max-width: 768px) {
    html body,
    html body.b2dark,
    html body[class*="page-template-tool-"] {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
}

/* B2主题的主容器 */
.site,
#site,
body > .site {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content,
#site-content,
.main-content,
.b2-single-content {
    flex: 1 0 auto;
}

/* Footer固定在底部 */
.footer,
footer.footer,
.site-footer,
#footer {
    flex-shrink: 0;
    margin-top: auto !important;
}

/* ============================================
   【核心居中修复】2025-12-02
   仅调整内容容器的水平居中，不改变任何其他样式
   ============================================ */

/* 主内容区域居中 - 统一所有容器的居中方式 */
.b2-content,
#primary-home.content-area {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 搜索模块wrapper - 与links-modules-container保持一致的padding */
.home_row.module-search > .wrapper {
    max-width: 1600px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    box-sizing: border-box !important;
}

/* 网址导航容器 - 确保居中 */
.links-modules-container {
    max-width: 1600px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    box-sizing: border-box !important;
}

/* 响应式居中 - 移动端 */
@media (max-width: 768px) {
    .home_row.module-search > .wrapper {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    /* 网址导航容器 - 移动端无padding，由卡片容器控制 */
    .links-modules-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* ============================================ */

/* ============================================
   【顶部菜单栏调整】参考 tt123.com 布局
   逐步调整，确保不影响菜单显示
   ============================================ */

/* 1. 顶部导航栏内容全宽，覆盖B2主题的1100px限制 */
.header-banner-content.wrapper {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 105px !important;
    padding-right: 105px !important;
    box-sizing: border-box !important;
}

/* 顶部导航使用B2主题默认样式，不做任何修改 */

/* 隐藏B2主题右侧工具条的扫码打开当前页 */
.sidebar-tool .tool-qrcode {
    display: none !important;
}

/* 私信按钮 - 方形图标+悬停文字 */
.feihe-dm-btn {
    position: fixed;
    right: 20px;
    bottom: 260px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    cursor: pointer;
    z-index: 9998;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feihe-dm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    text-decoration: none;
}

.feihe-dm-btn svg {
    width: 28px;
    height: 28px;
    display: block;
}

/* 私信按钮悬停提示文字 */
.feihe-dm-tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.feihe-dm-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #1d4ed8;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.feihe-dm-btn:hover .feihe-dm-tooltip {
    opacity: 1;
    visibility: visible;
    right: 58px;
}

/* 私信未读数量徽章 */
.feihe-dm-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: #ff4d4f;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(255, 77, 79, 0.4);
    animation: feihe-badge-pulse 2s infinite;
}

@keyframes feihe-badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* 自定义咨询二维码弹窗 - 蓝色风格 */
.consult-qrcode-trigger {
    position: fixed;
    right: 20px;
    bottom: 180px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d47a1 0%, #093290 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(9, 50, 144, 0.4);
    cursor: pointer;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.consult-qrcode-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(9, 50, 144, 0.5);
}

.consult-qrcode-trigger svg {
    width: 26px;
    height: 26px;
    fill: #ffffff;
    display: block;
}

/* 回到顶部按钮 */
.back-to-top-btn {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    cursor: pointer;
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    border: none;
}

.back-to-top-btn.show {
    display: flex;
}

.back-to-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(9, 50, 144, 0.5);
}

.back-to-top-btn svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    display: block;
}

.consult-qrcode-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.consult-qrcode-overlay.active {
    display: flex;
}

.consult-qrcode-popup {
    position: relative;
    width: 380px;
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.consult-qrcode-header {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    padding: 30px 30px 60px;
    position: relative;
    overflow: hidden;
}

.consult-qrcode-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.consult-qrcode-header h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.consult-qrcode-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.consult-qrcode-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.consult-qrcode-close::before,
.consult-qrcode-close::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: #ffffff;
}

.consult-qrcode-close::before {
    transform: rotate(45deg);
}

.consult-qrcode-close::after {
    transform: rotate(-45deg);
}

.consult-qrcode-content {
    padding: 30px;
    text-align: center;
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.consult-qrcode-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    padding: 15px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.consult-qrcode-img img {
    width: 100%;
    height: 100%;
    display: block;
}

.consult-qrcode-text {
    color: #64748b;
    font-size: 14px;
    margin: 15px 0;
    line-height: 1.6;
}

.consult-qrcode-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
    padding: 12px 20px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.consult-qrcode-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.consult-qrcode-phone svg {
    width: 20px;
    height: 20px;
    fill: #dc2626;
    flex-shrink: 0;
}

.consult-qrcode-phone span {
    color: #dc2626;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.consult-qrcode-btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.consult-qrcode-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    color: #ffffff;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .consult-qrcode-trigger {
        right: 15px;
        bottom: 160px;
        width: 50px;
        height: 50px;
    }
    
    .consult-qrcode-trigger svg {
        width: 28px;
        height: 28px;
    }
    
    /* 移动端隐藏回到顶部按钮 */
    .back-to-top-btn {
        display: none !important;
    }
    
    .consult-qrcode-popup {
        width: 90%;
        max-width: 340px;
    }
    
    .consult-qrcode-img {
        width: 180px;
        height: 180px;
    }
}

.newsflash-container {
    background-color: #ffffff; /* 白色背景 */
    border: 1px solid #e0e0e0; /* 浅灰色边框 */
    border-radius: 8px; /* 圆角 */
    padding: 15px 20px; /* 内边距 */
    margin-bottom: 20px; /* 底部外边距 */
    overflow: hidden; /* 隐藏超出部分 */
    position: relative;
    height: 120px; /* 固定高度，用于滚动 */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* 轻微阴影 */
}

.newsflash-list {
    list-style: none; /* 移除列表点 */
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.newsflash-list li {
    margin-bottom: 10px; /* 列表项底部外边距 */
    font-size: 14px;
    line-height: 1.5;
}

.newsflash-list li:last-child {
    margin-bottom: 0;
}

.newsflash-list a {
    color: #333; /* 链接颜色 */
    text-decoration: none;
    display: block;
    white-space: nowrap; /* 不换行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 超出部分显示省略号 */
}

.newsflash-list a:hover {
    color: #007bff; /* 鼠标悬停颜色，蓝色 */
}

.widget-title {
    text-align: center !important;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

/* ============================================
   极主题搜索框美化样式 - 1:1复制
   ============================================ */

/* 搜索模块主容器 - 完全居中 */
.search-module {
    border-radius: 12px;
    padding: 40px 32px 36px 32px !important;
    margin: 0;
    position: relative;
    max-width: 780px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 24px;
}
.search-module-inner {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 48px;
}
.search-module-side {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-module-side:empty {
    display: none;
}
.search-module-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}
.search-module-news {
    flex: 0 0 340px;
    max-width: 340px;
    width: 340px;
    display: flex;
    align-items: stretch;
}

/* 搜索模块样式 */

.search-module.has-bg > div {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.search-module.has-bg .search-module-title {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45) !important;
}

.search-module.has-bg .search-module-desc {
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

.search-module.has-bg .search-module-form {
    background: rgba(255, 255, 255, 0.18) !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(6px);
    height: 68px !important;
    padding: 12px 16px !important;
    display: flex !important;
    align-items: center !important;
}

.search-module.has-bg .search-module-form:hover {
    border-color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3) !important;
}

.search-module.has-bg .search-module-input {
    color: #ffffff !important;
}

.search-module.has-bg .search-module-input::placeholder {
    color: rgba(255, 255, 255, 0.75) !important;
}

.search-module.has-bg .picked-category {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.search-module.has-bg .picked-category:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
}

.search-module.has-bg .search-module-form ul {
    background: rgba(17, 24, 39, 0.82);
    border: none;
    backdrop-filter: blur(6px);
}

.search-module.has-bg .search-module-form ul li {
    color: #ffffff;
}

.search-module.has-bg .search-module-form ul li:hover,
.search-module.has-bg .search-module-form ul li.picked {
    background: rgba(255, 255, 255, 0.14);
}

.search-module.has-bg .search-module-key ul li,
.search-module.has-bg .search-module-key ul li a {
    color: #ffffff !important;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4) !important;
}

.search-module.has-bg .search-module-key ul li.search-key::before {
    background: rgba(255, 255, 255, 0.9);
}

/* 搜索模块标题 - 优雅设计感美化 */
.search-module-title {
    font-size: 40px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    text-align: center !important;
    margin: 20px 0 0 0 !important;
    padding: 0 0 16px 0 !important;
    width: 100% !important;
    max-width: 680px !important;
    line-height: 1.2 !important;
    letter-spacing: 1px !important;
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif !important;
    position: relative !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.08) !important;
}

.search-module-title::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, 
        rgba(21, 101, 192, 0) 0%, 
        rgba(21, 101, 192, 0.3) 15%, 
        #1565c0 35%, 
        #093290 50%, 
        #1565c0 65%, 
        rgba(21, 101, 192, 0.3) 85%, 
        rgba(21, 101, 192, 0) 100%) !important;
    border-radius: 2px !important;
}

.search-module.has-bg .search-module-title,
.home_row.module-search .search-module-title {
    background: none !important;
    background-clip: initial !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: inherit !important;
    text-shadow: none !important;
}

/* 搜索模块描述 - 优雅布局 */
.search-module-desc {
    font-size: 15px !important;
    color: #64748b !important;
    text-align: center !important;
    margin: 14px 0 28px 0 !important;
    max-width: 680px !important;
    width: 100%;
    line-height: 1.6;
    font-weight: 400;
    display: block;
}

/* 搜索框容器 - 确保居中 */
.search-module-box {
    position: relative;
    width: 100%;
    max-width: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: nowrap;
}
.search-module-logo {

    width: 220px;
    height: 90px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(9, 50, 144, 0.12), rgba(21, 101, 192, 0.06));
    display: none !important;
}
.search-module-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.search-module-core {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.search-module-form {
    background: rgba(249, 250, 255, 0.9) !important;
    border: 2px solid rgba(9, 50, 144, 0.24) !important;
    border-radius: 42px !important;
    position: relative;
    flex: 1;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 4px;
    box-shadow: 0 10px 24px rgba(9, 50, 144, 0.14), 0 4px 10px rgba(9, 50, 144, 0.12) !important;
    transition: all 0.25s ease;
    max-width: 900px;
}

.search-module-form:hover {
    border-color: rgba(9, 50, 144, 0.45) !important;
    box-shadow: 0 12px 26px rgba(9, 50, 144, 0.2), 0 6px 14px rgba(9, 50, 144, 0.16) !important;
    transform: translateY(-1px);
}

.search-module-form:focus-within {
    border-color: rgba(9, 50, 144, 0.6) !important;
    box-shadow: 0 14px 30px rgba(9, 50, 144, 0.24), 0 8px 18px rgba(9, 50, 144, 0.16) !important;
    transform: translateY(-2px);
}

/* 分类选择下拉菜单 */
.search-module-form ul {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.search-module-form ul li {
    font-size: 14px;
    padding: 10px 16px;
    margin-bottom: 4px;
    cursor: pointer;
    border-radius: 6px;
    color: #121212;
    transition: all 0.2s ease;
}

.search-module-form ul li:hover {
    background: rgba(9, 50, 144, 0.06);
    color: #1d4ed8;
}

.search-module-form ul li.picked {
    background: linear-gradient(135deg, #0d47a1 0%, #093290 100%);
    color: #ffffff;
}

/* 已选择的分类标签 */
.picked-category {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 0 22px;
    background: linear-gradient(135deg, rgba(9, 50, 144, 0.18), rgba(21, 101, 192, 0.1));
    border: none;
    border-radius: 26px;
    margin-right: 12px;
    height: 44px;
    box-sizing: border-box;
    cursor: pointer;
    color: #1d4ed8;
    min-width: 96px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}

.picked-category:hover {
    background: linear-gradient(135deg, rgba(9, 50, 144, 0.24), rgba(96, 165, 250, 0.18));
}

.picked-category.active {
    background: linear-gradient(135deg, #0d47a1 0%, #093290 100%);
    color: #ffffff !important;
}

/* 搜索输入框容器 */
.search-module-form > div {
    display: flex !important;
    flex: 1;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 999px;
    padding: 4px 4px 4px 18px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    position: relative;
    z-index: 1;
}

.search-module-input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    padding: 0 18px !important;
    font-size: 16px !important;
    color: #121212 !important;
    outline: none !important;
    height: 44px;
    line-height: 44px;
}

.search-module-input::placeholder {
    color: #9ca3af !important;
    font-size: 16px;
}

/* 搜索按钮 - 红色圆形按钮 */
.search-module-form .search-button-action {
    background: linear-gradient(135deg, #1d4ed8 0%, #4f46e5 100%);
    border: none !important;
    border-radius: 50% !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    color: #ffffff !important;
    flex-shrink: 0;
    margin-left: 4px;
    position: relative;
    top: 0 !important;
    right: 0 !important;
}

.search-module-form .search-button-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(9, 50, 144, 0.32);
    background: linear-gradient(135deg, #3662ff 0%, #5575ff 100%);
}

.search-module-form .search-button-action:active {
    transform: scale(0.95);
}

.search-module-form .search-button-action i {
    font-size: 18px !important;
    color: #ffffff !important;
}

/* 热门搜索关键词区域 - 确保居中 */
.search-module-key {
    margin-top: 18px !important;
    width: min(900px, 95%) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: flex;
    justify-content: flex-start;
    position: relative;
}

.search-module-key::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    filter: none;
    border-radius: 0;
    z-index: 0;
}

.search-module-key ul {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: none;
    box-shadow: none;
    border-radius: 0;
    white-space: normal;
    overflow: visible;
}

.search-module-key ul li {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: #1d4ed8 !important;
    text-shadow: none !important;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.search-module-key ul li:first-child {
    padding-right: 8px;
    font-weight: 600;
    letter-spacing: 0;
    color: #475569 !important;
}

.search-module-key ul li.search-key {
    border-radius: 999px;
    padding: 6px 14px;
    background: rgba(9, 50, 144, 0.12);
    border: 1px solid rgba(9, 50, 144, 0.18);
    cursor: pointer;
}

.search-module-key ul li.search-key::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #093290;
    margin-right: 6px;
    display: inline-block;
    box-shadow: 0 0 0 4px rgba(9, 50, 144, 0.18);
}

.search-module-key ul li:first-child::before {
    display: none;
}

.search-module-key ul li a {
    color: #1d4ed8 !important;
}

.search-module-key ul li.search-key a {
    color: #1e3a8a !important;
}

.search-module-key ul li.search-key:hover {
    background: linear-gradient(135deg, rgba(9, 50, 144, 0.22), rgba(21, 101, 192, 0.18));
    transform: translateY(-2px);
}

.search-module-key ul li.search-key:hover::before {
    background: rgba(255, 255, 255, 0.75);
}

.search-module-key ul li.search-key:hover a {
    color: #ffffff !important;
}

.home_row.module-links .link-up,
.home_row.module-links .link-up *,
.home_row.module-links .link-tool-type,
.home_row.module-links .type-backend,
.home_row.module-links .type-tool,
.home_row.module-links .type-tutorial,
.home_row.module-links .type-frontend,
.home_row.module-links .type-ad {
    display: none !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .search-module {
        padding: 40px 20px 30px 20px !important;
    }
    
    .search-module-title {
        font-size: 28px !important;
    }
    
    .search-module-desc {
        font-size: 14px !important;
        margin-bottom: 30px !important;
    }
    
    .search-module-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .search-module-side {
        width: 100%;
        justify-content: center;
    }

    .search-module-content {
        gap: 20px;
    }

    .search-module-news {
        width: 100%;
        max-width: 100%;
    }

    .search-module-box {
        max-width: 100%;
    }
    
    .search-module-form {
        border-radius: 40px !important;
    }
    
    .search-module-input {
        font-size: 14px !important;
        padding: 10px 16px !important;
    }
    
    .picked-category {
        font-size: 12px;
        padding: 0 12px;
        height: 40px;
    }

    .search-module-box {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        max-width: 100%;
        flex-wrap: wrap;
    }

    .search-module-logo {
        width: 180px;
        height: 72px;
        margin: 0 auto;
    }

    .search-module-core {
        width: 100%;
        gap: 18px;
    }
}

/* 确保在有背景图片时，文字仍然清晰可见 */
.search-module[style*="background-image"] .search-module-title,
.search-module[style*="background-image"] .search-module-desc {
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

/* ============================================
   核心居中修复 - 覆盖B2主题的默认样式
   ============================================ */

/* 最外层容器 - 确保整个搜索模块区域居中 */
.home_row.module-search {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: transparent !important;
}

/* wrapper容器 - 居中显示 */
.home_row.module-search > div.wrapper,
.home_row.module-search > div[class*="wrapper"],
.home_row.module-search > div[style*="width"] {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 54px !important;
}

/* content-area容器 - 居中显示 */
.home_row.module-search .home-row-left.content-area {
    flex: 1 1 auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    text-align: left !important;
}

/* 搜索模块主容器 - 居中并限制最大宽度 */
.home_row.module-search .search-module {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 60px 40px 50px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.home_row.module-search .search-module.has-bg {
    max-width: 100% !important;
    padding: 120px 0 80px 0 !important;
    border-radius: 0 !important;
}

.home_row.module-search .search-module.has-bg > div {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

/* 覆盖父主题的60%宽度限制 - 搜索表单 */
.home_row.module-search .search-module-form {
    width: 100% !important;
    height: 52px !important;
    padding: 6px 14px !important;
    display: flex !important;
    align-items: center !important;
    border-radius: 40px !important;
    gap: 8px !important;
}

.home_row.module-search .search-module-form > div {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.home_row.module-search .search-module-form input {
    height: 32px !important;
    padding: 0 14px !important;
    color: #1d4ed8 !important;
}

.home_row.module-search .search-module-form input::placeholder {
    color: rgba(29, 78, 216, 0.55) !important;
}

.home_row.module-search .picked-category {
    height: 30px !important;
    line-height: 30px !important;
    padding: 0 16px !important;
    color: #1d4ed8 !important;
    background: rgba(29, 78, 216, 0.08) !important;
    border: 1px solid rgba(29, 78, 216, 0.2) !important;
}

.home_row.module-search .search-module-form .search-button-action,
.home_row.module-search .search-module-form .search-button-action button {
    width: 38px !important;
    height: 38px !important;
}

.home_row.module-search .search-module-form .search-button-action button i {
    font-size: 15px !important;
    color: #1d4ed8 !important;
}

.home_row.module-search .search-module-key {
    width: min(900px, 95%) !important;
    margin: 14px 0 0 0 !important;
    display: flex !important;
    justify-content: flex-start !important;
}

.home_row.module-search .search-module-key li a {
    color: #1d4ed8 !important;
}

.home_row.module-search .widget-area {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 360px;
}

.home_row.module-search .widget-area .widget {
    width: 100% !important;
    margin: 0 !important;
}

.home_row.module-search .widget-area .b2-widget-title {
    display: none !important;
}

.home_row.module-search .widget-newsflashes-box {
    background: rgba(248, 250, 255, 0.96);
    border-radius: 24px;
    border: 1px solid rgba(147, 197, 253, 0.45);
    box-shadow: 0 12px 28px rgba(21, 101, 192, 0.18);
    padding: 16px 18px;
    position: relative;
    width: 360px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home_row.module-search .widget-newsflashes-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.08), rgba(14, 116, 244, 0.04));
    pointer-events: none;
}

.home_row.module-search .widget-newsflashes-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.home_row.module-search .widget-newsflashes-box ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 100%;
    flex-shrink: 0;
}

.home_row.module-search .widget-newsflashes-box ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d47a1 0%, #093290 100%);
    box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.2);
    flex-shrink: 0;
}

.home_row.module-search .widget-newsflashes-box .widget-new-content {
    padding-left: 0 !important;
}

.home_row.module-search .widget-newsflashes-box h2 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    height: auto !important;
    line-clamp: unset !important;
    color: #0f172a !important;
    -webkit-line-clamp: unset !important;
    display: block !important;
}

.home_row.module-search .widget-newsflashes-box h2 a {
    color: inherit !important;
    transition: color 0.2s ease;
}

.home_row.module-search .widget-newsflashes-box h2 a:hover {
    color: #2563eb !important;
}

.home_row.module-search .widget-newsflashes-box .widget-new-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #64748b;
}

.home_row.module-search .widget-newsflashes-box .widget-news-user {
    display: none !important;
}

.home_row.module-search .widget-newsflashes-box .widget-new-header .ps1 {
    color: #94a3b8;
    font-weight: 500;
}

.home_row.module-search .widget-newsflashes-box .widget-mission-footer {
    align-self: flex-end;
    background: rgba(9, 50, 144, 0.12);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #1d4ed8 !important;
    z-index: 1;
}

.home_row.module-search .widget-newsflashes-box .widget-mission-footer a {
    color: inherit !important;
}

.home_row.module-search .widget-newsflashes-box ul {
    transition: transform 0.45s ease;
    will-change: transform;
}

/* 覆盖父主题的60%宽度限制 - 热门搜索关键词 */
.home_row.module-search .search-module-key {
    width: min(680px, 100%) !important;
    margin: 14px 0 0 0 !important;
    display: flex !important;
    justify-content: flex-start !important;
}

/* 覆盖父主题的50%宽度限制 - 描述文字 */
.home_row.module-search .search-module-desc {
    max-width: 680px !important;
    width: 100% !important;
    margin: 0 0 28px 0 !important;
    text-align: left !important;
}

/* 搜索框容器 - 确保居中 */
.home_row.module-search .search-module-box {
    width: min(680px, 100%) !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

/* 优化搜索框内部元素间距 */
.search-module-form .picked-category + .search-module-input {
    margin-left: 0;
}

/* 确保搜索按钮图标居中 */
.search-module-form .search-button-action i,
.search-module-form .search-button-action svg {
    display: block;
    margin: 0 auto;
}

/* 优化热门搜索关键词的显示 */
.search-module-key ul li.search-key a:hover {
    color: #1e3a8a !important;
}

/* 确保搜索框在不同屏幕尺寸下都正常显示 */
@media (min-width: 1200px) {
    .search-module-box {
        max-width: 900px;
    }
    
    .search-module-form {
        max-width: 900px;
    }
}

/* 优化移动端显示 */
@media (max-width: 480px) {
    .search-module {
        padding: 30px 15px 25px 15px !important;
        border-radius: 8px;
    }
    
    .search-module-title {
        font-size: 24px !important;
    }
    
    .search-module-desc {
        font-size: 13px !important;
        margin-bottom: 25px !important;
    }
    
    .search-module-form {
        border-radius: 30px !important;
        padding: 3px;
    }
    
    .search-module-input {
        font-size: 14px !important;
        padding: 8px 12px !important;
        height: 38px;
        line-height: 38px;
    }
    
    .picked-category {
        font-size: 11px;
        padding: 0 10px;
        height: 38px;
        margin-right: 6px;
    }
    
    .search-module-form .search-button-action {
        width: 38px !important;
        height: 38px !important;
    }
    
    .search-module-key ul li.search-key {
        font-size: 11px;
        padding: 4px 10px !important;
    }
}

/* ============================================
   网址导航模块 - 长条卡片布局
   ============================================ */

.home_row.module-links .link-list ul,
.links-home .link-list ul,
.tax-link_cat .link-list ul {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: -12px !important;
    padding: 0 !important;
    list-style: none !important;
}

.home_row.module-links .link-list li,
.links-home .link-list li,
.tax-link_cat .link-list li {
    padding: 12px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.home_row.module-links .link-in,
.links-home .link-in,
.tax-link_cat .link-in {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 18px 20px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    border: 1px solid #eef2f8 !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06) !important;
    text-align: left !important;
    min-height: 104px !important;
    transition: all 0.28s ease !important;
    overflow: hidden !important;
    width: 100% !important;
}

.home_row.module-links .link-in:hover,
.links-home .link-in:hover,
.tax-link_cat .link-in:hover {
    transform: translateY(-3px) !important;
    border-color: #dbeafe !important;
    box-shadow: 0 18px 36px rgba(21, 101, 192, 0.16) !important;
    background: #f9fbff !important;
}

.home_row.module-links .link-img,
.links-home .link-img,
.tax-link_cat .link-img {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    border-radius: 50% !important;
    padding: 8px !important;
    background: #f8fafc !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8fafc !important;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.18) !important;
    padding: 10px !important;
    object-fit: contain !important;
    transition: transform 0.25s ease !important;
}

.home_row.module-links .link-in:hover .link-img,
.links-home .link-in:hover .link-img,
.tax-link_cat .link-in:hover .link-img {
    transform: translateY(-2px) scale(1.04) !important;
}

.home_row.module-links .link-info,
.links-home .link-info,
.tax-link_cat .link-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    text-align: left !important;
}

.home_row.module-links .link-top,
.links-home .link-top,
.tax-link_cat .link-top {
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 6px !important;
}

.home_row.module-links .link-top a,
.links-home .link-top a,
.tax-link_cat .link-top a {
    display: block !important;
    width: 100% !important;
}

.home_row.module-links .link-top h2,
.links-home .link-top h2,
.tax-link_cat .link-top h2 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 !important;
    line-height: 1.35 !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    word-break: break-word !important;
}

.home_row.module-links .link-in:hover h2,
.links-home .link-in:hover h2,
.tax-link_cat .link-in:hover h2 {
    color: #2563eb !important;
}

.home_row.module-links .link-desc,
.links-home .link-desc,
.tax-link_cat .link-desc {
    font-size: 12px !important;
    line-height: 1.5 !important;
    color: #64748b !important;
    margin: 0 !important;
    display: block !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    max-height: none !important;
    /* 强制覆盖B2主题的截断样式 */
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    overflow: visible !important;
    text-overflow: clip !important;
}

.home_row.module-links .link-footer,
.links-home .link-footer,
.tax-link_cat .link-footer {
    display: none !important;
}

.home_row.module-links .link-summary,
.links-home .link-summary,
.tax-link_cat .link-summary {
    color: #94a3b8 !important;
    font-size: 12px !important;
    text-align: left !important;
    line-height: 1.45 !important;
}

@media (max-width: 1200px) {
    .home_row.module-links .link-list ul,
    .links-home .link-list ul,
    .tax-link_cat .link-list ul {
        margin: -10px !important;
    }

    .home_row.module-links .link-list li,
    .links-home .link-list li,
    .tax-link_cat .link-list li {
        padding: 10px !important;
    }
}

@media (max-width: 768px) {
    .home_row.module-links .link-list li,
    .links-home .link-list li,
    .tax-link_cat .link-list li {
        padding: 8px !important;
    }
}

@media (max-width: 576px) {
    .link-box {
        padding: 46px 16px 26px 16px !important; /* 大幅增加顶部内边距，让标题往下拉 */
        border-radius: 18px !important;
    }

    .home_row.module-links .link-in,
    .links-home .link-in,
    .tax-link_cat .link-in {
        padding: 16px 18px !important;
        min-height: 96px !important;
    }
}

/* 搜索分类弹窗样式 */
.search-category-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    z-index: 9999;
}

.search-category-modal__content {
    width: 100%;
    max-width: 540px;
    background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
    border-radius: 26px;
    box-shadow: 0 28px 48px rgba(15, 23, 42, 0.22);
    padding: 28px 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.search-category-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.2px;
}

.search-category-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
    color: #94a3b8;
    transition: color 0.2s ease, transform 0.2s ease;
}

.search-category-modal__close:hover {
    color: #093290;
    transform: scale(1.08);
}

.search-category-modal__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.search-category-modal__list li {
    padding: 14px 18px;
    border-radius: 18px;
    background: #f3f6fc;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.search-category-modal__list li:hover {
    background: #e7f1ff;
    color: #0f172a;
    border-color: rgba(9, 50, 144, 0.35);
}

.search-category-modal__list li.picked {
    background: linear-gradient(135deg, #0d47a1 0%, #093290 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 14px 24px rgba(9, 50, 144, 0.25);
}

.search-category-modal__list li.picked::after {
    background: rgba(255, 255, 255, 0.25);
    mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpolyline points="20 6 9 17 4 12"/%3E%3C/svg%3E') center / 12px 12px no-repeat;
}

.search-category-fade-enter-active,
.search-category-fade-leave-active {
    transition: opacity 0.2s ease;
}

.search-category-fade-enter-from,
.search-category-fade-leave-to {
    opacity: 0;
}

@media (max-width: 768px) {
    .search-category-modal__content {
        max-width: 90vw;
        padding: 24px 20px 16px;
    }
    .search-category-modal__list {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

@media (max-width: 480px) {
    .search-category-modal__list li::after {
        display: none;
    }
    .search-category-modal__list {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

/* 世界时间小工具 */
/* 世界时钟样式 - 横向排列，按时区分组 */
.b2child-world-clock-wrapper {
    width: 100%;
    margin: 16px 0 20px;
    padding: 0;
}

.b2child-world-clock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
}

.b2child-world-clock__group {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    flex-shrink: 0;
}

.b2child-world-clock__flags {
    display: flex;
    align-items: center;
    gap: 3px;
}

.b2child-world-clock__flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.b2child-world-clock__names {
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
}

.b2child-world-clock__time {
    font-size: 12px;
    font-weight: 700;
    font-family: 'SFMono-Regular', Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    color: #093290;
    letter-spacing: -0.5px;
    white-space: nowrap;
    padding: 2px 6px;
    background: rgba(9, 50, 144, 0.08);
    border-radius: 4px;
}

/* 响应式 */
@media (max-width: 1200px) {
    .b2child-world-clock {
        gap: 24px;
        padding: 12px 16px;
    }
    .b2child-world-clock__group {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .b2child-world-clock {
        gap: 16px;
        padding: 10px 14px;
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(148, 163, 184, 0.5) transparent;
    }
    .b2child-world-clock__group {
        flex: 0 0 auto;
    }
    .b2child-world-clock__flag {
        width: 24px;
        height: 17px;
    }
    .b2child-world-clock__names {
        font-size: 12px;
    }
    .b2child-world-clock__time {
        font-size: 14px;
        padding: 3px 10px;
    }
}

@media (max-width: 600px) {
    .b2child-world-clock {
        gap: 12px;
        padding: 8px 12px;
    }
    .b2child-world-clock::-webkit-scrollbar {
        height: 6px;
    }
    .b2child-world-clock::-webkit-scrollbar-thumb {
        background: rgba(148, 163, 184, 0.45);
        border-radius: 999px;
    }
    .b2child-world-clock::-webkit-scrollbar-track {
        background: transparent;
    }
}

.home_row.module-search.has-newsbar 

.home_row.module-search.has-newsbar .widget-newsflashes-box {
    width: 100% !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 22px;
    border-radius: 20px;
    border: 1px solid rgba(147, 197, 253, 0.45);
    box-shadow: 0 12px 28px rgba(21, 101, 192, 0.12);
    background: rgba(248, 250, 255, 0.96);
    position: relative;
}

.home_row.module-search.has-newsbar .widget-newsflashes-box ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.home_row.module-search.has-newsbar .widget-newsflashes-box ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 32px;
}

.home_row.module-search.has-newsbar .widget-newsflashes-box ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d47a1 0%, #093290 100%);
    box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.18);
    flex-shrink: 0;
    margin-top: 6px;
}

.home_row.module-search.has-newsbar .widget-newsflashes-box h2 {
    font-size: 14px !important;
    line-height: 1.45 !important;
    margin: 0 !important;
    font-weight: 600;
    color: #0f172a !important;
    display: block !important;
}

.home_row.module-search.has-newsbar .widget-newsflashes-box h2 a {
    color: inherit !important;
    text-decoration: none;
}

.home_row.module-search.has-newsbar .widget-newsflashes-box .widget-new-header,
.home_row.module-search.has-newsbar .widget-newsflashes-box .widget-news-user,
.home_row.module-search.has-newsbar .widget-newsflashes-box .widget-mission-footer {
    display: none !important;
}

/* 清理 */

/* TKFFF样式 - 已移至 tkfff-exact-clone.php */
/* 这里不再定义任何TKFFF样式，避免冲突 */

/* TKFFF原样CSS - data-v-3b5c3812 */
.column[data-v-3b5c3812]{color:rgb(51 51 51)}
.column .column-head[data-v-3b5c3812]{display:flex;align-items:center;margin-bottom:12px;font-size:20px}
.column .column-title[data-v-3b5c3812]{display:flex;flex-shrink:0;align-items:center;font-weight:700}
.column .column-content[data-v-3b5c3812]{margin-top:12px}

/* 强制统一所有网址导航为grid布局 - TKFFF标准 */
/* 注意：不要在这里设置grid-template-columns，使用内联样式或tkfff-exact-clone.php */
.home_row.module-links .column-itemBox[data-v-9dfa5621],
.home_row.module-links .column-itemBox[data-v-3b5c3812],
.home_row.module-links .link-list ul,
.home_row.module-links ul.link-list,
.home_row.module-links .compact-grid,
.home_row.module-links .erp-cards-grid,
.home_row.module-links .huopan-grid {
    display: grid !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    align-items: start !important; /* 防止Grid子元素被拉伸到相同高度 */
}

/* ============================================
   TKFFF搜索模块样式 - 照抄原样
   ============================================ */
.home_row.module-search {
    background: linear-gradient(to right, #d990f5, #9f5dfb);
    border-radius: 8px;
    padding: 24px;
}

@media (min-width: 768px) {
    .home_row.module-search {
        padding: 24px 10%;
    }
}

.home_row.module-search .search-box {
    display: flex;
    height: 44px;
    align-items: center;
    border-radius: 8px;
    background-color: #ffffff;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .home_row.module-search .search-box {
        height: 48px;
    }
}

.home_row.module-search .search-box input {
    width: 100%;
    border: 0;
    background-color: transparent;
    outline: none;
    font-size: 14px;
}

.home_row.module-search .search-box input::placeholder {
    font-size: 14px;
    color: #c0c4ce;
}

/* ============================================
   世界时钟小工具样式
   ============================================ */

/* ============================================
   强制修复：世界时钟小工具在TikTok Shop东南亚模块侧边栏显示
   ============================================ */

/* 第一个导航模块的侧边栏 - 强制禁用固定定位 */
.home_row.module-links:first-of-type .widget-area .sidebar-innter,
.home_row.module-links:first-of-type .widget-area .sidebar-innter.widget-ffixed {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: none !important;
    z-index: auto !important;
}

/* 第一个导航模块的侧边栏容器 */
.home_row.module-links:first-of-type .widget-area .sidebar {
    position: static !important;
    width: 100% !important;
    height: auto !important;
}

/* 世界时钟小工具 - 在第一个导航模块侧边栏中 */
.home_row.module-links:first-of-type .widget_b2child_world_clock {
    position: static !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* inner-wrapper-sticky 也要重置 */
.home_row.module-links:first-of-type .widget-area .inner-wrapper-sticky {
    position: static !important;
    top: auto !important;
    width: 100% !important;
    transform: none !important;
}

/* ============================================
   终极修复：直接覆盖所有可能的固定定位源
   ============================================ */

/* 直接针对世界时钟小工具的所有父元素 */
#b2child_world_clock-3,
.widget_b2child_world_clock {
    position: static !important;
}

/* 世界时钟所在的sidebar-innter */
.widget_b2child_world_clock ~ *,
.widget_b2child_world_clock,
.sidebar-innter:has(.widget_b2child_world_clock) {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
}

/* 强制重置所有相关容器 */
.sidebar:has(.widget_b2child_world_clock),
.widget-area:has(.widget_b2child_world_clock) {
    position: static !important;
}

/* 如果有is-affixed类，也要重置 */
.is-affixed.sidebar-innter:has(.widget_b2child_world_clock) {
    position: static !important;
    top: auto !important;
    transform: translateY(0) !important;
}

.b2child-widget-world-clock {
    padding: 12px 16px;
}

.b2child-world-clock {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.b2child-world-clock__group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.b2child-world-clock__group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.b2child-world-clock__group:first-child {
    padding-top: 0;
}

.b2child-world-clock__flags {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.b2child-world-clock__flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.b2child-world-clock__names {
    font-size: 12px;
    color: #64748b;
    margin-left: 6px;
    white-space: nowrap;
}

.b2child-world-clock__time {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    font-family: 'SFMono-Regular', Menlo, Monaco, Consolas, monospace;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

/* TKFFF模板 - 简洁世界时钟横条（仿TKFFF顶部时间条） */
.tkfff-inline-widgets {
    width: 100%;
    margin: 0 0 16px 0;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.tkfff-inline-widgets .widget {
    margin: 0;
    padding: 0;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.tkfff-inline-widgets .widget-title {
    display: none;
}

.tkfff-inline-widgets .box,
.tkfff-inline-widgets .b2-radius {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
}

.tkfff-inline-widgets .b2child-widget-world-clock {
    padding: 0;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    margin: 0 !important;
}

/* 横条主容器 - 透明背景，简洁风格，与网址导航对齐 */
.tkfff-inline-widgets {
    width: 100%;
    margin: 14px 0 18px;
    padding: 0;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    box-sizing: border-box !important;
}

.tkfff-inline-widgets .b2child-world-clock {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important; /* 均匀分布，与网址导航边缘对齐 */
    gap: 0 !important;
    width: 100% !important;
    padding: 12px 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow-x: visible !important;
    overflow-y: hidden !important;
    scrollbar-width: none !important;
    box-sizing: border-box !important;
}

.tkfff-inline-widgets .b2child-world-clock::-webkit-scrollbar {
    display: none;
}

/* 每个时区分组 - 均匀分布，与网址导航边缘对齐 */
.tkfff-inline-widgets .b2child-world-clock__group {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    border: none !important;
    width: auto !important;
    min-width: 0 !important;
}

.tkfff-inline-widgets .b2child-world-clock__group:first-child {
    padding-left: 0 !important;
}

.tkfff-inline-widgets .b2child-world-clock__group:last-child {
    padding-right: 0 !important;
}

/* 国旗区域 */
.tkfff-inline-widgets .b2child-world-clock__flags {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 5px !important;
    flex-shrink: 0 !important;
}

.tkfff-inline-widgets .b2child-world-clock__flag {
    width: 22px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

/* 地区名称 - 优化字体大小 */
.tkfff-inline-widgets .b2child-world-clock__names {
    font-size: 15px;
    font-weight: 400;
    color: #64748b;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 时间显示 - 优化字体和内边距 */
.tkfff-inline-widgets .b2child-world-clock__time {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    font-family: 'SFMono-Regular', Menlo, Monaco, Consolas, monospace;
    padding: 4px 8px;
    background: #dbeafe;
    border-radius: 4px;
    box-shadow: none;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 响应式 */
@media (max-width: 768px) {
    .tkfff-inline-widgets .b2child-world-clock {
        padding: 10px 0;
        overflow-x: auto;
    }
    .tkfff-inline-widgets .b2child-world-clock__group {
        padding: 0 16px;
        gap: 8px;
    }
    .tkfff-inline-widgets .b2child-world-clock__flag {
        width: 20px;
        height: 14px;
    }
    .tkfff-inline-widgets .b2child-world-clock__names {
        font-size: 14px;
    }
    .tkfff-inline-widgets .b2child-world-clock__time {
        font-size: 15px;
        padding: 3px 8px;
    }
}

/* 侧边栏中的世界时钟 - 强制隐藏，等待JavaScript移动 */
.home_row.module-links .widget-area .widget_b2child_world_clock,
.home_row .widget-area .widget_b2child_world_clock:not([data-moved="1"]) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

/* 已移动的世界时钟 - 完全隐藏 */
.home_row.module-links .widget-area .widget_b2child_world_clock[data-moved="1"] {
    display: none !important;
}

/* 显示已移动到横条的世界时钟 */
.tkfff-inline-widgets .widget_b2child_world_clock {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    position: static !important;
    left: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.tkfff-inline-widgets .b2child-world-clock {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    visibility: visible !important;
    height: auto !important;
    position: static !important;
    left: auto !important;
}


/* ============================================
   全局网址导航布局修复 - 对标TKFFF左右对称
   ============================================ */

/* 所有网址导航模块的wrapper */
.home_row.module-links > .wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 0 !important;
    box-sizing: border-box !important;
}

/* 左侧边栏 - 在容器内使用时隐藏原有侧边栏 */
.links-modules-container .home_row.module-links .widget-area {
    display: none !important;
}

/* 主内容区 - 填充剩余空间 */
.home_row.module-links .content-area,
.home_row.module-links .home-row-left {
    flex: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    min-width: 0 !important;
}

/* 没有侧边栏时，内容区域居中并限制最大宽度 */
.home_row.module-links:not(.have-widget) .content-area,
.home_row.module-links:not(.have-widget) .home-row-left {
    max-width: 100% !important;
    margin: 0 !important;
}

/* 清除B2主题默认的float布局 */
.home_row.module-links .widget-area,
.home_row.module-links .content-area,
.home_row.module-links .home-row-left {
    float: none !important;
}

/* 侧边栏内部样式 */
.home_row.module-links .sidebar {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 12px 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.home_row.module-links .widget-area {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.home_row.module-links .sidebar-innter {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* ============================================
   侧边栏长条背景 - 延伸到所有网址导航分类
   ============================================ */

/* 侧边栏背景元素 - 不再需要 */
.links-sidebar-background {
    display: none !important;
}

/* 侧边栏容器 - 对标TKFFF 152px */
.links-category-sidebar {
    width: 152px !important;
    min-width: 152px !important;
    max-width: 152px !important;
}

/* 对标TKFFF - 在容器内的wrapper不需要额外padding */
.links-modules-container .home_row.module-links .wrapper,
.links-modules-container div[id^="home-row-"] .wrapper {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* 对标TKFFF - 强制所有content-area使用统一间距 */
.links-modules-container .home_row.module-links .content-area,
.links-modules-container .home_row.module-links .home-row-left,
.links-modules-container div[id^="home-row-"] .content-area,
.links-modules-container div[id^="home-row-"] .home-row-left {
    flex: 1 !important;
    margin-left: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

/* ============================================
   修复作者面板样式 - 恢复B2主题原生样式
   确保文章页面的作者面板正确显示
   ============================================ */

/* 文章页面侧边栏 - 恢复正常宽度 */
.single .widget-area,
.single #secondary {
    width: 300px !important;
    min-width: 300px !important;
    max-width: 300px !important;
    flex-direction: column !important;
}

/* 作者面板容器 */
.b2-widget-author .author-widget-content {
    padding: 10px 16px !important;
}

/* 作者信息区域 - 水平布局 */
.b2-widget-author .w-a-info {
    display: flex !important;
    flex-direction: row !important;
    position: relative !important;
    align-items: center !important;
}

/* 作者头像 */
.b2-widget-author .w-a-info img.avatar {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    display: block !important;
    margin-right: 8px !important;
    flex-shrink: 0 !important;
}

/* 作者名字区域 */
.b2-widget-author .w-a-name {
    flex: 1 !important;
    min-width: 0 !important;
}

/* 作者名字 */
.b2-widget-author .w-a-name p {
    font-size: 17px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* 等级标签容器 */
.b2-widget-author .w-a-lv {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    margin-top: 4px !important;
}

/* 统计数据区域 */
.b2-widget-author .w-a-count {
    display: flex !important;
    flex-flow: wrap !important;
    margin: 16px -16px 8px !important;
    background: #f5f6f7 !important;
}

.b2-widget-author .w-a-count > div {
    width: 25% !important;
    text-align: center !important;
    margin: 10px 0 !important;
    font-size: 12px !important;
}

.b2-widget-author .w-a-count > div span {
    font-size: 16px !important;
    font-weight: 600 !important;
    display: block !important;
}

/* 作者面板 - 最近文章列表修复 (增强优先级) */
.b2-widget-author .author-widget .w-a-post-list,
.b2-widget-author .w-a-post-list,
.author-widget .w-a-post-list,
.w-a-post-list {
    padding: 0 !important;
}

.b2-widget-author .author-widget .w-a-post-list > div,
.b2-widget-author .w-a-post-list > div,
.author-widget .w-a-post-list > div,
.w-a-post-list > div {
    padding: 4px 2px !important;
    font-size: 13px !important;
    position: relative !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    display: block !important;
    -webkit-box-orient: unset !important;
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    box-sizing: border-box !important;
    line-height: 1.6 !important;
    margin: 10px 0 !important;
    white-space: normal !important;
    text-overflow: clip !important;
}

.b2-widget-author .author-widget .w-a-post-list > div a,
.b2-widget-author .w-a-post-list > div a,
.author-widget .w-a-post-list > div a,
.w-a-post-list > div a {
    display: block !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    overflow: visible !important;
    text-overflow: clip !important;
    line-height: 1.6 !important;
    color: #333 !important;
    transition: color 0.2s ease !important;
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    height: auto !important;
    max-height: none !important;
}

.b2-widget-author .w-a-post-list > div a:hover,
.author-widget .w-a-post-list > div a:hover,
.w-a-post-list > div a:hover {
    color: #2563eb !important;
}

.b2-widget-author .w-a-post-list span.b2-color,
.author-widget .w-a-post-list span.b2-color,
.w-a-post-list span.b2-color {
    opacity: 0.6 !important;
    margin-right: 4px !important;
    font-size: 12px !important;
    display: inline !important;
}

/* ========================================
   节日倒计时横条样式（首页）
   ======================================== */

/* 节日倒计时横条容器 */
.holiday-countdown-bar {
    width: 100% !important;
    background: linear-gradient(135deg, #fff9f0 0%, #fff5eb 100%) !important;
    border-radius: 10px !important;
    padding: 14px 24px !important;
    margin-bottom: 16px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(255, 107, 53, 0.1) !important;
    box-sizing: border-box !important;
    display: block !important;
}

.holiday-countdown-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;
    width: 100% !important;
}

/* 每个倒计时项目 */
.holiday-countdown-item {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

/* 图标 */
.holiday-countdown-item .holiday-icon {
    font-size: 18px !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
}

/* 节日名称 */
.holiday-countdown-item .holiday-name {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #333 !important;
}

/* 分隔文字 "还有" */
.holiday-countdown-item .holiday-separator {
    font-size: 14px !important;
    color: #888 !important;
}

/* 天数 */
.holiday-countdown-item .holiday-days {
    font-size: 18px !important;
    font-weight: 700 !important;
    font-family: 'SFMono-Regular', Menlo, Monaco, Consolas, monospace !important;
}

/* 单位 "天" */
.holiday-countdown-item .holiday-unit {
    font-size: 14px !important;
    color: #666 !important;
}

/* 响应式 - 平板 */
@media (max-width: 1200px) {
    .holiday-countdown-wrapper {
        gap: 16px !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
    }
    
    .holiday-countdown-wrapper::-webkit-scrollbar {
        display: none !important;
    }
    
    .holiday-countdown-item {
        flex-shrink: 0 !important;
    }
}

/* 响应式 - 移动端 */
@media (max-width: 768px) {
    .holiday-countdown-bar {
        padding: 12px 16px !important;
        margin-bottom: 12px !important;
    }
    
    .holiday-countdown-wrapper {
        gap: 20px !important;
    }
    
    .holiday-countdown-item .holiday-icon {
        font-size: 16px !important;
    }
    
    .holiday-countdown-item .holiday-name {
        font-size: 13px !important;
    }
    
    .holiday-countdown-item .holiday-days {
        font-size: 16px !important;
    }
    
    .holiday-countdown-item .holiday-separator,
    .holiday-countdown-item .holiday-unit {
        font-size: 12px !important;
    }
}

/* ========================================
   节日倒计时小工具样式
   ======================================== */

/* 节日倒计时主容器 */
.b2child-widget-holiday-countdown {
    padding: 0;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    margin: 0 !important;
}

.b2child-holiday-countdown {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;
    width: 100% !important;
    padding: 12px 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: none !important;
    box-sizing: border-box !important;
}

.b2child-holiday-countdown::-webkit-scrollbar {
    display: none;
}

/* 每个倒计时项目 */
.b2child-holiday-countdown__item {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    border: none !important;
    width: auto !important;
    min-width: 0 !important;
}

/* 图标 */
.b2child-holiday-countdown__icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* 节日名称 */
.b2child-holiday-countdown__name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 分隔文字 "还有" */
.b2child-holiday-countdown__separator {
    font-size: 14px;
    color: #999;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 天数 */
.b2child-holiday-countdown__days {
    font-size: 18px;
    font-weight: 700;
    font-family: 'SFMono-Regular', Menlo, Monaco, Consolas, monospace;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 单位 "天" */
.b2child-holiday-countdown__unit {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
    flex-shrink: 0;
}

/* TKFFF模板中的节日倒计时样式 */
.tkfff-inline-widgets .b2child-widget-holiday-countdown {
    padding: 0;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    margin: 0 !important;
}

.tkfff-inline-widgets .b2child-holiday-countdown {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;
    width: 100% !important;
    padding: 12px 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.tkfff-inline-widgets .b2child-holiday-countdown__item {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

.tkfff-inline-widgets .b2child-holiday-countdown__icon {
    font-size: 18px;
}

.tkfff-inline-widgets .b2child-holiday-countdown__name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.tkfff-inline-widgets .b2child-holiday-countdown__separator {
    font-size: 14px;
    color: #999;
}

.tkfff-inline-widgets .b2child-holiday-countdown__days {
    font-size: 18px;
    font-weight: 700;
    font-family: 'SFMono-Regular', Menlo, Monaco, Consolas, monospace;
}

.tkfff-inline-widgets .b2child-holiday-countdown__unit {
    font-size: 14px;
    color: #666;
}

/* 响应式 */
@media (max-width: 768px) {
    .b2child-holiday-countdown {
        padding: 10px 0;
        overflow-x: auto;
        justify-content: flex-start !important;
        gap: 20px !important;
    }
    
    .b2child-holiday-countdown__item {
        padding: 0 10px;
    }
    
    .b2child-holiday-countdown__icon {
        font-size: 16px;
    }
    
    .b2child-holiday-countdown__name {
        font-size: 13px;
    }
    
    .b2child-holiday-countdown__days {
        font-size: 16px;
    }
}

/* ============================================
   世界时钟横条样式 - 带背景（仿节日倒计时）
   ============================================ */

div.world-clock-bar,
.tkfff-inline-widgets > div.world-clock-bar,
.world-clock-bar[style] {
    width: 100% !important;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%) !important;
    border-radius: 10px !important;
    padding: 14px 24px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(59, 130, 246, 0.15) !important;
    box-sizing: border-box !important;
    display: block !important;
    margin: 0 !important;
}

.world-clock-wrapper {
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
}

.world-clock-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 12px !important;
    background: rgba(255, 255, 255, 0.7) !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.world-clock-item:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15) !important;
}

.world-clock-flags {
    display: flex !important;
    align-items: center !important;
    gap: 3px !important;
}

.world-clock-flag {
    width: 22px !important;
    height: 15px !important;
    object-fit: cover !important;
    border-radius: 2px !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
}

.world-clock-names {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #374151 !important;
    margin-left: 4px !important;
}

.world-clock-time {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #3b82f6 !important;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    min-width: 75px !important;
    text-align: center !important;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* 世界时钟响应式 */
@media (max-width: 768px) {
    .world-clock-bar {
        padding: 12px 16px !important;
    }
    .world-clock-wrapper {
        gap: 10px !important;
    }
    .world-clock-item {
        padding: 4px 8px !important;
        gap: 6px !important;
    }
    .world-clock-flag {
        width: 18px !important;
        height: 12px !important;
    }
    .world-clock-names {
        font-size: 12px !important;
    }
    .world-clock-time {
        font-size: 14px !important;
        min-width: 65px !important;
    }
}

/* ============================================
   个人主页 - 认证图标与文字间距修复
   ============================================ */
.user-verify span b {
    margin-right: 0 !important;
}

.user-verify span b i {
    margin-right: 0 !important;
}

/* 确保认证图标和文字紧密排列 */
.user-verify span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0 !important;
}

/* 网址导航分类描述样式 - 放在标题最右侧 */
.column-title-desc {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

/* 标题区域flex布局 - 支持子分类在下方 */
.column .column-head[data-v-3b5c3812] {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
}

/* 标题和描述在第一行 */
.column .column-title[data-v-3b5c3812] {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}
@media (max-width: 768px) {
    .column-title-desc {
        display: none;
    }
    /* 移动端网址导航标题加粗 */
    .column .column-title,
    .column .column-title[data-v-3b5c3812],
    .home_row.module-links .column-title {
        font-weight: 700 !important;
        font-size: 14px !important;
    }
}

/* 分类描述图标样式 */
.column-title-desc-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
    flex-shrink: 0;
}
.column-title-desc {
    display: inline-flex;
    align-items: center;
}

/* 调整分类标题和描述的位置 - 描述靠近下方卡片 */
.column .column-head[data-v-3b5c3812] {
    margin-bottom: 0 !important;
    padding-bottom: 8px !important;
}
.column-title-desc {
    position: relative;
    top: 2px;
}

/* 分类标题：与上方间距大，与下方卡片0间距 */
.column.observeColunm.main-content-column {
    margin-top: 25px !important;
}
.column .column-head[data-v-3b5c3812] {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 10px !important;
}
.column .IMG_DESC.column-content[data-v-3b5c3812] {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* 第一个分类不需要顶部间距 */
.column.observeColunm.main-content-column:first-child {
    margin-top: 0 !important;
}

/* 修复所有分类的间距一致性 */
.column.observeColunm.main-content-column .column-content,
.column.observeColunm.main-content-column .column-content[data-v-3b5c3812] {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* 货盘模块间距修复 */
.column.huopan-module {
    margin-top: 25px !important;
}
.column.huopan-module .column-head {
    margin-bottom: 0 !important;
    padding-bottom: 10px !important;
}
.column.huopan-module .huopan-grid {
    margin-top: 0 !important;
}

/* 首页网址导航模块间距修复 */
.home_row.module-links {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
.home_row.module-links .column.observeColunm.main-content-column {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.home_row.module-links .column-head[data-v-3b5c3812] {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 10px !important;
}
/* 首页模块之间的间距由home_row控制，不需要column额外间距 */
.home_row.module-links + .home_row.module-links {
    margin-top: 20px !important;
}

/* ============================================
   【子分类标签】对标TKFFF样式
   ============================================ */

/* 子分类标签容器 - 在标题和描述之间 */
.column-child-tags {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
    padding: 0;
    flex: 1;
}

/* 标题区域布局 - 标题左、子分类中、描述右 */
.column .column-head[data-v-3b5c3812] {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
}

/* 标题不占满一行 */
.column .column-title[data-v-3b5c3812] {
    width: auto !important;
    flex: none !important;
    flex-shrink: 0 !important;
    margin-bottom: 0 !important;
}

/* 单个标签样式 */
.column-child-tags .child-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    background: #f5f5f5;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

/* 标签悬停效果 */
.column-child-tags .child-tag:hover {
    color: #6366f1;
    background: #eef2ff;
    border-color: #c7d2fe;
}

/* 激活状态标签 - 紫色渐变 */
.column-child-tags .child-tag.active {
    color: #fff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.3);
}

/* 卡片隐藏/显示动画 */
.column-itemBox-item {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* 子分类筛选隐藏 - 简洁版 */
.hidden-by-filter {
    display: none !important;
}

/* 响应式 - 移动端子分类放标题下方，支持横向滚动 */
@media (max-width: 768px) {
    /* 标题区域改为纵向布局 */
    .column .column-head[data-v-3b5c3812] {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    /* 子分类标签容器 - 标题下方，横向滚动 */
    .column-child-tags {
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 10px !important;
        padding-bottom: 5px !important;
        gap: 8px !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important; /* Firefox */
    }
    
    /* 隐藏滚动条 - Webkit */
    .column-child-tags::-webkit-scrollbar {
        display: none !important;
    }
    
    /* 单个标签样式 - 不换行 */
    .column-child-tags .child-tag {
        padding: 6px 12px !important;
        font-size: 12px !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }
}

/* ============================================
   【修复】侧边栏遮挡顶部导航栏问题
   ============================================ */

/* 提高顶部导航栏的层级 */
#header,
.header,
.public-header,
.b2-header,
.site-header,
.header-banner {
    z-index: 99999 !important;
    position: relative;
}

/* 如果 Header 是 fixed 的 */
.header.fixed-header,
.public-header.fixed-header,
.b2-header-fixed,
.header-fixed,
.page-header.sticky {
    z-index: 99999 !important;
}

/* 降低侧边栏层级，确保不遮挡Header */
.sidebar,
.aside,
.widget-area,
.sidebar-innter,
.b2-widget-box,
.links-category-sidebar {
    z-index: 99 !important;
}

/* 特别针对固定定位的侧边栏 */
.sidebar-innter.widget-ffixed,
.is-affixed.sidebar-innter,
.sticky-sidebar {
    z-index: 99 !important;
}

/* ============================================
   【增强修复】强制固定顶部导航 & 防止遮挡
   2025-12-08 更新：覆盖之前的设置
   ============================================ */

/* 1. 强制顶部导航栏始终固定显示，不随滚动隐藏 */
.header .top-style.animateIn,
.header .top-style.animateOut,
.header .top-style {
    transform: none !important; /* 禁止通过位移隐藏 */
    position: fixed !important; /* 强制固定定位 */
    top: 0 !important;
    width: 100% !important;
    z-index: 99999 !important; /* 最高层级 */
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: #fff !important; /* 确保背景不透明 */
}

/* 2. 确保 Header 容器本身也是高层级（作为占位符） */
#header,
.header {
    z-index: 99999 !important;
    position: relative;
}

/* 3. 再次强调降低侧边栏层级 */
.sidebar,
.aside,
.widget-area,
.sidebar-innter,
.b2-widget-box,
.links-category-sidebar {
    z-index: 99 !important;
}

/* 特别针对固定定位的侧边栏 */
.sidebar-innter.widget-ffixed,
.is-affixed.sidebar-innter,
.sticky-sidebar,
.widget-area .sidebar-innter {
    z-index: 99 !important;
}

/* ============================================
   【强制固定顶部导航 - 终极版】
   覆盖所有可能的隐藏逻辑
   ============================================ */

/* 1. 强制所有类型的 header 容器固定 */
.header-banner.top-style,    /* Social Top 模式 */
.header .top-style,          /* 普通模式 */
.top-style.animateIn,
.top-style.animateOut {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    transform: none !important; /* 禁止位移 */
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
    background-color: #fff !important; /* 确保有背景色 */
}

/* 2. 占位符处理：防止内容被遮挡 */
/* 强制 .site-header 保持高度，因为它内部的元素 fixed 了 */
.site-header {
    min-height: 60px !important; /* 保持高度 */
    display: block !important;
    position: relative !important;
    z-index: 99998 !important; /* 略低于 fixed header */
}

/* 3. 针对移动端可能的差异 */
@media (max-width: 768px) {
    .site-header {
        min-height: 50px !important; /* 移动端高度可能不同 */
    }
}

/* ============================================
   【真正修复】禁止顶部导航栏滚动隐藏
   覆盖 B2 主题 JavaScript 添加的隐藏类
   ============================================ */

/* 1. 禁止 .header-banner-left 透明度隐藏 */
.header-banner-left.hidden {
    opacity: 1 !important;
    visibility: visible !important;
}

/* 2. 禁止 .site-header-in 向上位移隐藏 */
.site.up .site-header-in,
.site.action.up .site-header-in {
    transform: none !important;
    transform: translate(0, 0) !important;
}

/* 3. 社交顶部模式也禁止位移 */
.social-top .site.up .site-header-in,
.social-top.site.up .site-header-in {
    transform: none !important;
    transform: translate(0, 0) !important;
}

/* 4. 确保 .top-style 的 animateOut 也无效 */
.top-style.animateOut,
.header .top-style.animateOut,
.header-banner.top-style.animateOut {
    transform: none !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* 5. 确保 site-header-in 始终可见 */
.site-header-in {
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* 6. 确保侧边栏吸附时不被向上位移 */
.site.up .is-side-sticky {
    transform: none !important;
}

/* ============================================
   【圈子页面标签布局修复】
   修复 /all-circles 页面标签垂直排列问题
   ============================================ */

/* 圈子分类标签容器 - 强制水平排列 */
.all-circles .all-circle-tags ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    padding: 15px !important;
    gap: 10px !important;
    list-style: none !important;
    margin: 0 !important;
}

/* 单个标签项 */
.all-circles .all-circle-tags ul li {
    display: inline-flex !important;
    margin: 5px !important;
}

/* 标签样式 */
.all-circles .all-circle-tags ul li span {
    display: inline-block !important;
    height: 40px !important;
    min-width: 80px !important;
    line-height: 40px !important;
    text-align: center !important;
    cursor: pointer !important;
    padding: 0 16px !important;
    background: #f5f6f7 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: #333 !important;
    transition: all 0.2s ease !important;
}

.all-circles .all-circle-tags ul li span:hover {
    background: #e0e7ff !important;
    color: #4f46e5 !important;
}

/* 圈子列表项 */
.all-circles .all-circles-item-list {
    display: flex !important;
    flex-wrap: wrap !important;
}

.all-circles .all-circles-item-list li {
    width: 33.33333% !important;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .all-circles .all-circles-item-list li {
        width: 50% !important;
    }
}

@media (max-width: 480px) {
    .all-circles .all-circles-item-list li {
        width: 100% !important;
    }
}

/* ============================================
   【头像上传按钮修复】2025-12-09
   强制显示个人主页顶部的头像上传按钮
   ============================================ */

/* 强制显示顶部头像编辑按钮（鼠标悬停时） */
.author-header .user-panel .avatar:hover .editor-avatar {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* 确保label可以被点击 */
.author-header .editor-avatar {
    z-index: 100 !important;
}

/* 修复Vue的v-show可能导致的隐藏问题 */
body.logged-in .author-header .editor-avatar[style*="display: none"] {
    display: flex !important;
}

/* ============================================
   【隐藏用户中心网址字段】2025-12-10
   隐藏个人中心右侧资料区的网址显示
   ============================================ */

/* 隐藏个人中心右侧的"网址"字段 - 使用 :has() 选择器 */
.user-index-content .user-info p.b2-pd:has(.user-info-title:first-child) {
    /* 通过JS隐藏含有"网址"的元素 */
}

/* 备用：添加隐藏类 */
.feihe-hide-url {
    display: none !important;
}

/* ============================================
   【移动端头部布局优化】2025-12-11
   布局: [ ☰ 三横线 ] --- [ Logo居中 ] --- [ 用户图标 ]
   参考: PPT世界移动端布局
   ============================================ */

@media (max-width: 768px) {
    
    /* === 1. 头部容器基础设置 === */
    .site-header {
        height: auto !important;
        min-height: 64px !important;
    }
    
    .header-banner {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 99999 !important;
        background: #fff !important;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08) !important;
        height: 64px !important;
    }
    
    /* === 2. header-banner-content 主容器布局 === */
    .header-banner-content.wrapper {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 64px !important;
        padding: 0 24px !important;
        max-width: 100% !important;
        position: relative !important;
        box-sizing: border-box !important;
    }
    
    /* 确保所有子元素垂直居中 */
    .header-banner-content.wrapper > * {
        display: flex !important;
        align-items: center !important;
    }
    
    /* === 3. 左侧区域完全隐藏 === */
    .header-banner-left,
    .header-banner .header-banner-left,
    .header-banner-content .header-banner-left,
    .site-header .header-banner-left {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
    }
    
    /* 隐藏PC端顶部导航菜单 */
    .ym-menu,
    #ym-menu,
    .header-banner .ym-menu,
    .header-banner-left .ym-menu {
        display: none !important;
    }
    
    /* 隐藏移动端不需要的Logo元素 */
    .site-logo-wrapper,
    .logo-hover-tip,
    .search-module-logo-wrapper-container,
    .login-logo,
    .mobile-box .header-logo,
    .mobile-box .logo,
    .header-tools .header-logo,
    .header-banner-left .header-logo,
    .header-banner-left .logo,
    .header-banner-left .site-logo-wrapper {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* 强制隐藏搜索模块上方的Logo区域 */
    #home-row-sousuo .search-module-logo-wrapper,
    .module-search .search-module-logo-wrapper,
    div.search-module-logo-wrapper {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* === 4. 使用伪元素在中间显示Logo === */
    .header-banner-content.wrapper::before {
        content: '' !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 160px !important;
        height: 48px !important;
        background-image: url('https://feihe-sea.oss-ap-southeast-1.aliyuncs.com/wp-content/uploads/2025/11/1bb87d41d15fe27b500a4bfcde01bb0e.png') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }
    
    /* === 5. 右侧区域 === */
    .header-banner-right {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        width: 100% !important;
        justify-content: space-between !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 64px !important;
    }
    
    /* === 6. 菜单图标 - 移到最左边，垂直居中 === */
    .header-banner-right .top-style-menu.mobile-show {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        order: -1 !important;
        position: static !important;
        bottom: auto !important;
        right: auto !important;
        margin: 0 !important;
        height: 64px !important;
        width: 40px !important;
        background: transparent !important;
        box-sizing: border-box !important;
    }
    
    .header-banner-right .menu-icon,
    .header-banner-right #mobile-menu-button {
        display: block !important;
        width: 32px !important;
        height: 26px !important;
        padding: 0 !important;
        margin: 0 !important;
        cursor: pointer !important;
        background-color: transparent !important;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1356 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M216.9 222.6c0 15.3 6.3 30.5 17.1 41.3 10.8 10.8 26 17.1 41.3 17.1s30.5-6.3 41.3-17.1c10.8-10.8 17.1-26 17.1-41.3s-6.3-30.5-17.1-41.3c-10.8-10.8-26-17.1-41.3-17.1s-30.5 6.3-41.3 17.1C223.2 192.2 216.9 207.4 216.9 222.6L216.9 222.6zM209.5 512.4c0 15.3 6.3 30.6 17.1 41.4 10.8 10.8 26 17.1 41.4 17.1 15.3 0 30.6-6.3 41.4-17.1 10.8-10.8 17.1-26 17.1-41.4 0-15.3-6.3-30.6-17.1-41.4-10.8-10.8-26-17.1-41.4-17.1-15.3 0-30.6 6.3-41.4 17.1C215.8 481.8 209.5 496.9 209.5 512.4L209.5 512.4zM209.5 803.4c0 15.3 6.3 30.6 17.1 41.4 10.8 10.8 26 17.1 41.4 17.1 15.3 0 30.6-6.3 41.4-17.1 10.8-10.8 17.1-26 17.1-41.4 0-15.3-6.3-30.6-17.1-41.4-10.8-10.8-26-17.1-41.4-17.1-15.3 0-30.6 6.3-41.4 17.1C215.8 772.9 209.5 788.1 209.5 803.4L209.5 803.4zM1145.4 220c0 30.8-22.9 55.8-51.2 55.8l-606.6 0c-28.3 0-51.2-24.9-51.2-55.8l0 0c0-30.8 22.9-55.8 51.2-55.8l606.6 0C1122.5 164.2 1145.4 189.2 1145.4 220L1145.4 220 1145.4 220zM1145.4 509.7c0 30.7-22.9 55.8-51.2 55.8l-606.6 0c-28.3 0-51.2-24.9-51.2-55.8l0 0c0-30.8 22.9-55.8 51.2-55.8l606.6 0C1122.5 453.8 1145.4 478.9 1145.4 509.7L1145.4 509.7 1145.4 509.7zM1145.4 800.6c0 30.8-22.9 55.8-51.2 55.8l-606.6 0c-28.3 0-51.2-24.9-51.2-55.8l0 0c0-30.7 22.9-55.6 51.2-55.6l606.6 0C1122.5 744.9 1145.4 769.9 1145.4 800.6L1145.4 800.6 1145.4 800.6z' fill='%23333333'/%3E%3C/svg%3E") !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        border: none !important;
        box-shadow: none !important;
        position: relative !important;
        top: 0 !important;
    }
    
    /* 隐藏原来的三条线 */
    .header-banner-right .menu-icon .line-1,
    .header-banner-right .menu-icon .line-2,
    .header-banner-right .menu-icon .line-3 {
        display: none !important;
    }
    
    /* === 7. 用户区域 - 保持右边 === */
    .header-banner-right .header-user {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        order: 10 !important; /* 大数字确保在最后 */
        margin: 0 !important;
        gap: 12px !important;
        height: 64px !important;
    }
    
    /* 隐藏PC端搜索框 */
    .header-banner-right .top-search.mobile-hidden {
        display: none !important;
    }
    
    /* 隐藏移动端搜索图标 */
    .header-banner-right .change-theme .mobile-show,
    .header-banner-right .change-theme .search-icon,
    .header-banner-right .change-theme [class*="search"] {
        display: none !important;
    }
    
    /* 用户区域内的布局 */
    .header-banner-right .change-theme {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        height: 64px !important;
    }
    
    /* 隐藏PC端发布按钮 */
    .header-banner-right .change-theme .mobile-hidden {
        display: none !important;
    }
    
    /* 移动端搜索按钮 */
    .header-banner-right .change-theme .mobile-show {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 64px !important;
    }
    
    /* 用户头像区域 */
    .header-banner-right .top-user-info {
        display: flex !important;
        align-items: center !important;
        height: 64px !important;
    }
    
    .header-banner-right .top-user-avatar .avatar {
        width: 36px !important;
        height: 36px !important;
    }
    
    /* 图标大小和对齐 */
    .header-banner-right .change-theme button,
    .header-banner-right .change-theme a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        height: 64px !important;
        width: 40px !important;
    }
    
    .header-banner-right .change-theme i,
    .header-banner-right .change-theme svg {
        font-size: 24px !important;
        width: 24px !important;
        height: 24px !important;
    }
    
    /* 登录按钮对齐 */
    .header-banner-right .login-button {
        display: flex !important;
        align-items: center !important;
        height: 64px !important;
    }
    
    .header-banner-right .login-button .mobile-show {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 64px !important;
    }
    
    .header-banner-right .login-button .mobile-show i {
        font-size: 32px !important;
    }
    
    /* 未登录时的用户图标放大 */
    .header-banner-right .login-button .mobile-show svg {
        width: 32px !important;
        height: 32px !important;
    }
    
    /* === 8. 隐藏二级头部（工具箱、圈子那一行） === */
    .site-header .header {
        display: none !important;
    }
    
    /* === 9. 内容区域顶部间距 === */
    /* 移动端内容区顶部间距 - 导航栏是relative定位，不需要额外padding */
    body .site-content,
    body.home .site-content,
    .site-header-in + .site-content,
    body .b2-content,
    body #primary-home {
        padding-top: 0 !important;
    }
    
    /* === 移动端搜索模块间距优化 === */
    .search-module-desc,
    .home_row.module-search .search-module-desc,
    #home-row-sousuo .search-module-desc {
        margin-bottom: 5px !important;
    }
    
    /* 隐藏移动端热门搜索 */
    .search-module-key,
    .home_row.module-search .search-module-key,
    #home-row-sousuo .search-module-key {
        display: none !important;
    }
    
    /* === 移动端搜索框尺寸优化 === */
    .search-module-box,
    .home_row.module-search .search-module-box,
    #home-row-sousuo .search-module-box {
        max-width: 368px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .search-module-form,
    .home_row.module-search .search-module-form,
    #home-row-sousuo .search-module-form {
        max-width: 368px !important;
        width: 100% !important;
        height: 44px !important;
        min-height: 44px !important;
        max-height: 44px !important;
        margin: 0 auto !important;
        padding: 2px 3px 2px 2px !important;
        box-sizing: border-box !important;
        gap: 0 !important;
    }
    
    /* 分类选择器"全部"按钮 */
    .search-module-form .picked-category,
    .search-module-form .search-module-cate {
        width: 88px !important;
        max-width: 88px !important;
        min-width: 88px !important;
        height: 30px !important;
        min-height: 30px !important;
        padding: 0 8px !important;
        font-size: 12px !important;
        border-radius: 16px !important;
        justify-content: center !important;
    }
    
    /* 输入框容器 */
    .search-module-form > div {
        padding: 0 2px !important;
        gap: 2px !important;
    }
    
    /* 输入框 */
    .search-module-form .search-module-input,
    .search-module-form input {
        height: 36px !important;
        font-size: 12px !important;
        padding: 0 4px 0 2px !important;
        margin-left: 0 !important;
        text-align: left !important;
    }
    
    /* 输入框 placeholder 文字 */
    .search-module-form .search-module-input::placeholder,
    .search-module-form input::placeholder {
        font-size: 12px !important;
        color: rgba(100, 116, 139, 0.7) !important;
        text-align: left !important;
    }
    
    /* 搜索按钮 */
    .search-module-form .search-button-action,
    .home_row.module-search .search-module-form .search-button-action,
    #home-row-sousuo .search-module-form .search-button-action {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        max-width: 36px !important;
        border-radius: 50% !important;
    }
    
    .search-module-form .search-button-action i {
        font-size: 14px !important;
    }
    
    /* site-header-in 占位 */
    .site-header-in {
        min-height: 64px !important;
    }
    
    /* === 10. 移动端侧滑菜单样式 === */
    
    /* 遮罩层 - 默认隐藏，点击关闭菜单 */
    .feihe-mobile-menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 999998 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity 0.3s ease !important;
        cursor: pointer !important;
    }
    
    .feihe-mobile-menu-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    /* 侧滑菜单容器 - 默认完全隐藏在屏幕外 */
    .feihe-mobile-menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 240px !important;
        max-width: 75vw !important;
        height: 100vh !important;
        background: #fff !important;
        z-index: 999999 !important;
        transform: translateX(0) !important;
        transition: left 0.3s ease !important;
        display: flex !important;
        flex-direction: column !important;
        box-shadow: none !important;
        visibility: hidden !important;
    }
    
    .feihe-mobile-menu.active {
        left: 0 !important;
        visibility: visible !important;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15) !important;
    }
    
    /* 菜单头部 - Logo区域 */
    .feihe-mobile-menu-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 15px !important;
        background: #fff !important;
        border-bottom: 1px solid #eee !important;
        flex-shrink: 0 !important;
    }
    
    .feihe-mobile-menu-logo {
        display: flex !important;
        align-items: center !important;
    }
    
    .feihe-mobile-menu-logo img {
        height: 32px !important;
        width: auto !important;
    }
    
    .feihe-mobile-menu-close {
        font-size: 24px !important;
        line-height: 1 !important;
        cursor: pointer !important;
        color: #999 !important;
        transition: color 0.2s !important;
        padding: 5px !important;
    }
    
    .feihe-mobile-menu-close:hover {
        color: #333 !important;
    }
    
    /* 菜单内容区域 */
    .feihe-mobile-menu-content {
        flex: 1 !important;
        overflow-y: auto !important;
        padding: 8px 10px !important;
    }
    
    /* 菜单项 - 紧凑样式 */
    .feihe-mobile-menu-item {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 10px 12px !important;
        color: #333 !important;
        text-decoration: none !important;
        border-radius: 8px !important;
        margin-bottom: 2px !important;
        transition: all 0.2s ease !important;
        font-size: 14px !important;
    }
    
    .feihe-mobile-menu-item:hover,
    .feihe-mobile-menu-item:active {
        background: #f5f7fa !important;
        color: #1a73e8 !important;
    }
    
    /* 常用工具特殊样式 */
    .feihe-mobile-menu-tools {
        background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%) !important;
        color: #fff !important;
        margin-bottom: 8px !important;
        font-weight: 500 !important;
    }
    
    .feihe-mobile-menu-tools:hover,
    .feihe-mobile-menu-tools:active {
        background: linear-gradient(135deg, #1557b0 0%, #0d47a1 100%) !important;
        color: #fff !important;
    }
    
    /* 图标 - 更小 */
    .feihe-mobile-menu-icon {
        font-size: 16px !important;
        width: 22px !important;
        text-align: center !important;
        flex-shrink: 0 !important;
    }
    
    /* 文字 */
    .feihe-mobile-menu-text {
        flex: 1 !important;
        font-weight: 400 !important;
    }
    
    /* 滚动条美化 */
    .feihe-mobile-menu-content::-webkit-scrollbar {
        width: 4px !important;
    }
    
    .feihe-mobile-menu-content::-webkit-scrollbar-track {
        background: transparent !important;
    }
    
    .feihe-mobile-menu-content::-webkit-scrollbar-thumb {
        background: #ddd !important;
        border-radius: 2px !important;
    }
    
    /* === 11. 移动端跨境快讯小工具 === */
    /* 目标尺寸: 368×124px，显示4条内容 */
    
    /* 小工具外层容器 */
    .home_row.module-search .widget-area .widget_newsflash_widget,
    .sidebar-innter .widget_newsflash_widget,
    section.widget_newsflash_widget,
    #newsflash_widget-3.widget_newsflash_widget {
        width: 368px !important;
        max-width: calc(100vw - 32px) !important;
        height: 124px !important;
        min-height: 124px !important;
        max-height: 124px !important;
        margin: 0 auto 15px !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        border-radius: 12px !important;
    }
    
    /* 快讯头部 - 标题行 */
    .home_row.module-search .widget-area .widget_newsflash_widget .newsflash-widget-header,
    .widget_newsflash_widget .newsflash-widget-header {
        padding: 0 16px !important;
        margin-bottom: 0 !important;
        height: 27px !important;
        min-height: 27px !important;
        max-height: 27px !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .home_row.module-search .widget-area .widget_newsflash_widget .newsflash-widget-header .widget-title,
    .widget_newsflash_widget .newsflash-widget-header .widget-title {
        font-size: 15px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
    }
    
    .home_row.module-search .widget-area .widget_newsflash_widget .newsflash-widget-header .newsflash-icon,
    .widget_newsflash_widget .newsflash-widget-header .newsflash-icon {
        font-size: 15px !important;
    }
    
    .home_row.module-search .widget-area .widget_newsflash_widget .newsflash-widget-header .newsflash-more-link,
    .widget_newsflash_widget .newsflash-widget-header .newsflash-more-link {
        font-size: 11px !important;
        padding: 2px 8px !important;
    }
    
    /* 快讯内容区 - 剩余高度100px (124-24) */
    .home_row.module-search .widget-area .widget_newsflash_widget .newsflash-container,
    .widget_newsflash_widget .newsflash-container {
        height: 100px !important;
        max-height: 100px !important;
        min-height: 100px !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* 快讯列表 */
    .home_row.module-search .widget-area .widget_newsflash_widget .newsflash-list,
    .widget_newsflash_widget .newsflash-list {
        padding: 2px 12px !important;
        margin: 0 !important;
    }
    
    /* 列表项样式 - 每条高度18px（参考TKFFF） */
    .home_row.module-search .widget-area .widget_newsflash_widget .newsflash-list li,
    .widget_newsflash_widget .newsflash-list li {
        padding: 0 !important;
        margin: 0 !important;
        border-bottom: none !important;
        height: 18px !important;
        max-height: 18px !important;
        line-height: 18px !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        overflow: hidden !important;
    }
    
    .home_row.module-search .widget-area .widget_newsflash_widget .newsflash-list .newsflash-time,
    .widget_newsflash_widget .newsflash-list .newsflash-time {
        font-size: 10px !important;
        padding: 2px 6px !important;
        margin-right: 8px !important;
        min-width: 42px !important;
        max-width: 50px !important;
        line-height: 14px !important;
        flex-shrink: 0 !important;
        text-align: center !important;
    }
    
    .home_row.module-search .widget-area .widget_newsflash_widget .newsflash-list li a,
    .widget_newsflash_widget .newsflash-list li a,
    .newsflash-list li a {
        font-size: 12px !important;
        line-height: 18px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        flex: 1 !important;
        display: block !important;
        min-width: 0 !important;
    }
    
    /* === 12. 移动端隐藏世界时钟和侧边栏 === */
    /* 隐藏世界时钟小工具 */
    .widget_b2child_world_clock,
    .world-clock-bar,
    .tkfff-inline-widgets,
    .b2child-world-clock,
    .b2child-widget-world-clock {
        display: none !important;
    }
    
    /* 隐藏首页网址导航模块的侧边栏 */
    .home_row.module-links .widget-area,
    .home_row.module-links .sidebar,
    .home_row.module-links .sidebar-innter,
    .home_row.module-links .links-category-sidebar,
    .home_row.module-links .inner-wrapper-sticky,
    .module-links .widget-area,
    .module-links .sidebar,
    .module-links .links-category-sidebar {
        display: none !important;
    }
    
    /* 隐藏网址导航模块标题描述 */
    .home_row.module-links .column-title-desc,
    .module-links .column-title-desc {
        display: none !important;
    }
    
    /* ============================================
       移动端网址导航卡片样式 - 参考TKFFF
       ============================================ */
    
    /* 模块标题 - 加粗 */
    .home_row.module-links .column-title {
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #333 !important;
    }
    
    /* 卡片容器 - 2列布局（高优先级选择器） */
    .home_row.module-links .column-itemBox,
    .home_row.module-links .column-itemBox[data-v-9dfa5621],
    .home_row.module-links .column-content .column-itemBox,
    .home_row.module-links .IMG_DESC .column-itemBox,
    .home_row.module-links .IMG_TAG .column-itemBox {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        padding: 0 12px !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* 单个卡片 - 不带按钮（6列布局） */
    .home_row.module-links .column-itemBox.layout-6col .column-itemBox-item,
    .home_row.module-links .IMG_DESC .column-itemBox-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        padding: 8px !important;
        background: #fff !important;
        border-radius: 8px !important;
        border: none !important;
        box-shadow: none !important;
        min-height: 80px !important;
        height: auto !important;
    }
    
    /* 单个卡片 - 带按钮（5列布局） */
    .home_row.module-links .column-itemBox.layout-5col .column-itemBox-item,
    .home_row.module-links .IMG_TAG .column-itemBox-item {
        display: grid !important;
        grid-template-columns: 26px 1fr !important;
        grid-template-rows: auto auto auto !important;
        gap: 4px 8px !important;
        padding: 10px !important;
        background: #fff !important;
        border-radius: 8px !important;
        border: none !important;
        box-shadow: none !important;
        min-height: auto !important;
        height: auto !important;
        position: relative !important;
    }
    
    /* 5列布局 - 图标位置（对齐标题） */
    .home_row.module-links .column-itemBox.layout-5col .column-itemBox-item .column-itemBox-item-h-i,
    .home_row.module-links .IMG_TAG .column-itemBox-item .column-itemBox-item-h-i {
        grid-column: 1 !important;
        grid-row: 1 !important;
        width: 26px !important;
        height: 26px !important;
        border-radius: 9999px !important;
        margin: 0 !important;
        align-self: start !important;
    }
    
    /* 5列布局 - 标题位置（与图标同行） */
    .home_row.module-links .column-itemBox.layout-5col .column-itemBox-item .column-itemBox-item-h,
    .home_row.module-links .IMG_TAG .column-itemBox-item .column-itemBox-item-h {
        grid-column: 2 !important;
        grid-row: 1 !important;
        display: flex !important;
        align-items: center !important;
    }
    
    /* 5列布局 - 描述位置（跨两列） */
    .home_row.module-links .column-itemBox.layout-5col .column-itemBox-item .column-itemBox-item-d,
    .home_row.module-links .IMG_TAG .column-itemBox-item .column-itemBox-item-d {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
        margin-top: 4px !important;
    }
    
    /* 5列布局 - 按钮位置（跨两列） */
    .home_row.module-links .column-itemBox.layout-5col .column-itemBox-item .link-buttons-wrapper,
    .home_row.module-links .IMG_TAG .column-itemBox-item .link-buttons-wrapper {
        grid-column: 1 / -1 !important;
        grid-row: 3 !important;
        margin-top: 4px !important;
    }
    
    /* 图标 - 26x26圆形（高优先级选择器） */
    .home_row.module-links .column-itemBox .column-itemBox-item .column-itemBox-item-h-i,
    .home_row.module-links .column-itemBox .column-itemBox-item img.column-itemBox-item-h-i,
    .home_row.module-links .column-itemBox-item[data-v-9dfa5621] .column-itemBox-item-h-i,
    .home_row.module-links img.column-itemBox-item-h-i[data-v-9dfa5621] {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        max-width: 26px !important;
        min-height: 26px !important;
        max-height: 26px !important;
        border-radius: 9999px !important;
        margin-right: 8px !important;
        flex-shrink: 0 !important;
        object-fit: cover !important;
        align-self: flex-start !important;
    }
    
    /* 文字容器 */
    .home_row.module-links .column-itemBox-item-h {
        flex: 1 !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
    }
    
    /* 标题 - 加粗 */
    .home_row.module-links .column-itemBox-item-h-t {
        font-size: 14px !important;
        font-weight: 600 !important;
        color: #333 !important;
        line-height: 21px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* 描述 */
    .home_row.module-links .column-itemBox-item-d {
        font-size: 12px !important;
        color: #8b8b99 !important;
        line-height: 20px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    
    /* 按钮区域（5列布局专用） */
    .home_row.module-links .column-itemBox-item-t {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        margin-top: 6px !important;
    }
    
    /* 单个按钮 */
    .home_row.module-links .column-itemBox-item-t-i,
    .home_row.module-links .column-itemBox-item-t-i a,
    .home_row.module-links .column-itemBox-item-t-i div {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 6px !important;
        height: 26px !important;
        background: #edf3fb !important;
        border-radius: 8px !important;
        font-size: 12px !important;
        color: #6e6e86 !important;
        text-decoration: none !important;
        border: none !important;
    }
    
    /* 置顶标签（移动端显示） */
    .home_row.module-links .link-sticky-badge {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        z-index: 10 !important;
    }
    .home_row.module-links .link-sticky-badge .sticky-text {
        font-size: 9px !important;
        padding: 2px 5px !important;
    }
    
    /* 内容区域全宽 */
    .home_row.module-links .home-row-left.content-area {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 12px !important;
    }
    
    /* 模块容器 - 移除多余padding */
    .home_row.module-links .wrapper,
    .home_row.module-links > .wrapper,
    .links-modules-container .wrapper,
    .links-content-wrapper .wrapper {
        padding: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }
    
    /* links相关容器移动端无padding */
    .links-modules-container,
    .links-content-wrapper {
        padding: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* site-content移动端无margin */
    .site-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* 列头部 */
    .home_row.module-links .column-head {
        padding: 12px 12px 8px !important;
    }
    
    /* 搜索模块侧边栏：保留快讯，重置布局 */
    .home_row.module-search .widget-area {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
    }
    
    .home_row.module-search .widget-area .sidebar,
    .home_row.module-search .widget-area .sidebar-innter {
        display: block !important;
        position: static !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
    }
    
    /* 隐藏搜索模块侧边栏中除快讯外的所有小工具 */
    .home_row.module-search .widget-area .sidebar-innter > .widget:not(.widget_newsflash_widget) {
        display: none !important;
    }
    
    /* 隐藏悬浮按钮：私信消息 + 客服弹窗 */
    #feiheDmBtn,
    .feihe-dm-btn,
    #consultQrcodeTrigger,
    .consult-qrcode-trigger {
        display: none !important;
    }
    
    /* 底部导航栏始终固定显示，不随滚动隐藏 */
    #mobile-footer-menu,
    .mobile-footer-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translate(0, 0) !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
    }
    .mobile-footer-menu.footer-down {
        transform: translate(0, 0) !important;
    }
}
