        :root {
            /* 主题色调 - 更专业的配色方案 */
            --primary: #1e88e5;
            --primary-dark: #1565c0;
            --secondary: #43a047;
            --secondary-dark: #2e7d32;
            --accent: #f57c00;
            --accent-light: #ffb74d;
            
            /* 背景和卡片 */
            --bg-light: #f8fafc;
            --bg-dark: #121824;
            --card-light: #ffffff;
            --card-dark: #1e2233;
            --hover-light: rgba(0, 0, 0, 0.03);
            --hover-dark: rgba(255, 255, 255, 0.05);
            
            /* 文本颜色 */
            --text-primary-light: #2c3e50;
            --text-secondary-light: #546e7a;
            --text-primary-dark: #ecf0f1;
            --text-secondary-dark: #b0bec5;
            
            /* 边框和阴影 */
            --border-light: rgba(0, 0, 0, 0.08);
            --border-dark: rgba(255, 255, 255, 0.08);
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
            --shadow-dark-sm: 0 2px 4px rgba(0, 0, 0, 0.15);
            --shadow-dark-md: 0 4px 6px rgba(0, 0, 0, 0.18);
            --shadow-dark-lg: 0 10px 25px rgba(0, 0, 0, 0.25);
            
            /* 圆角 */
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-full: 9999px;
            
            /* 动画 */
            --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
            
            /* 字体 */
            --font-sans: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-family: var(--font-sans);
            -webkit-tap-highlight-color: transparent;
        }

        html, body {
            height: 100%;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-primary-light);
            font-size: 16px;
            line-height: 1.5;
            transition: background-color var(--transition-normal), color var(--transition-normal);
            overflow-x: hidden;
        }

        body.dark-mode {
            background-color: var(--bg-dark);
            color: var(--text-primary-dark);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 顶部导航栏 */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* 主要内容区 */
body {
    padding-top: 80px; /* 关键：避免内容被遮挡 */
}


body.dark-mode .header {
    background-color: rgba(30, 34, 51, 0.9);
    border-bottom: 1px solid var(--border-dark);
    box-shadow: var(--shadow-dark-sm);
}


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

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-full);
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: white;
            font-size: 18px;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 600;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            gap: 24px;
        }

        .nav-link {
            color: var(--text-secondary-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 0;
            position: relative;
            transition: color var(--transition-fast);
        }

        body.dark-mode .nav-link {
            color: var(--text-secondary-dark);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width var(--transition-normal);
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary);
        }

        body.dark-mode .nav-link:hover, 
        body.dark-mode .nav-link.active {
            color: var(--primary);
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .header-btn {
            border: none;
            background: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary-light);
            transition: all var(--transition-fast);
            background-color: var(--hover-light);
        }

        body.dark-mode .header-btn {
            color: var(--text-secondary-dark);
            background-color: var(--hover-dark);
        }

        .header-btn:hover {
            background-color: rgba(0, 0, 0, 0.07);
            color: var(--text-primary-light);
        }

        body.dark-mode .header-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-primary-dark);
        }

        /* 商城按钮 */
        .shop-btn {
            border: none;
            background-color: var(--primary);
            color: white;
            cursor: pointer;
            padding: 8px 16px;
            border-radius: var(--radius-full);
            font-weight: 500;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: background-color var(--transition-fast);
        }

        .shop-btn:hover {
            background-color: var(--primary-dark);
        }

        .mobile-menu-btn {
            display: none;
        }

        /* 主要内容区 */
        .main {
            padding: 40px 0;
            transition: margin-left var(--transition-normal);
        }

        .hero {
            text-align: center;
            margin-bottom: 48px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s forwards 0.3s;
        }

        .hero-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            background: linear-gradient(90deg, var(--primary-dark), var(--secondary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--text-secondary-light);
            max-width: 600px;
            margin: 0 auto;
        }

        body.dark-mode .hero-subtitle {
            color: var(--text-secondary-dark);
        }

        .search-bar {
            max-width: 600px;
            margin: 32px auto 0;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s forwards 0.5s;
            margin-bottom: 36px; /* 增加搜索框与卡片的间距 */
        }

        .search-input {
            width: 100%;
            height: 56px;
            padding: 0 24px;
            border-radius: var(--radius-full);
            border: 1px solid var(--border-light);
            background-color: var(--card-light);
            color: var(--text-primary-light);
            font-size: 16px;
            transition: all var(--transition-normal);
            box-shadow: var(--shadow-md);
        }

        body.dark-mode .search-input {
            border-color: var(--border-dark);
            background-color: var(--card-dark);
            color: var(--text-primary-dark);
            box-shadow: var(--shadow-dark-md);
        }

        .search-input:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.3);
        }

        body.dark-mode .search-input:focus {
            box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.5);
        }

        .search-btn {
            position: absolute;
            right: 8px;
            top: 8px;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-full);
            border: none;
            background-color: var(--primary);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color var(--transition-fast);
        }

        .search-btn:hover {
            background-color: var(--primary-dark);
        }

        /* 工具卡片网格 */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s forwards 0.7s;
        }

        .tool-card {
            background-color: var(--card-light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-normal);
            box-shadow: var(--shadow-md);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid var(--border-light);
        }

        body.dark-mode .tool-card {
            background-color: var(--card-dark);
            box-shadow: var(--shadow-dark-md);
            border-color: var(--border-dark);
        }

        .tool-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        body.dark-mode .tool-card:hover {
            box-shadow: var(--shadow-dark-lg);
        }

        .tool-link {
            display: flex;
            flex-direction: column;
            height: 100%;
            text-decoration: none;
            color: inherit;
            padding: 24px;
        }

        .tool-header {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            gap: 16px;
        }

        .tool-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }

        .tool-icon::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
            z-index: 1;
        }

        .tool-title {
            flex: 1;
        }

        .tool-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text-primary-light);
        }

        body.dark-mode .tool-name {
            color: var(--text-primary-dark);
        }

        .tool-tag {
            display: inline-block;
            padding: 2px 8px;
            border-radius: var(--radius-full);
            background-color: rgba(30, 136, 229, 0.1);
            color: var(--primary);
            font-size: 12px;
            font-weight: 500;
        }

        body.dark-mode .tool-tag {
            background-color: rgba(30, 136, 229, 0.2);
        }

        .tool-description {
            font-size: 14px;
            color: var(--text-secondary-light);
            margin-bottom: 16px;
            line-height: 1.6;
            flex-grow: 1;
        }

        body.dark-mode .tool-description {
            color: var(--text-secondary-dark);
        }

        .tool-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
            color: var(--text-secondary-light);
            padding-top: 16px;
            border-top: 1px solid var(--border-light);
        }

        body.dark-mode .tool-meta {
            color: var(--text-secondary-dark);
            border-top-color: var(--border-dark);
        }

        .tool-status {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: var(--radius-full);
            background-color: var(--secondary);
        }

        .tool-usage {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* 页脚 */
        .footer {
            border-top: 1px solid var(--border-light);
            padding: 32px 0;
            margin-top: 40px;
            transition: margin-left var(--transition-normal);
        }

        body.dark-mode .footer {
            border-top-color: var(--border-dark);
        }

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

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-link {
            color: var(--text-secondary-light);
            text-decoration: none;
            font-size: 14px;
            transition: color var(--transition-fast);
        }

        body.dark-mode .footer-link {
            color: var(--text-secondary-dark);
        }

        .footer-link:hover {
            color: var(--primary);
        }

        .footer-copyright {
            color: var(--text-secondary-light);
            font-size: 14px;
        }

        body.dark-mode .footer-copyright {
            color: var(--text-secondary-dark);
        }

        /* 加载动画 */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--bg-light);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s, visibility 0.5s;
        }

        body.dark-mode .loader {
            background-color: var(--bg-dark);
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(30, 136, 229, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* 背景动效 */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            opacity: 0.5;
        }

        .bg-gradient {
            position: absolute;
            width: 50%;
            height: 60%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(30, 136, 229, 0.07) 0%, rgba(30, 136, 229, 0) 70%);
            transition: all 1s ease;
            opacity: 0;
            animation: fadeIn 1s forwards;
        }

        .bg-gradient:nth-child(1) {
            top: -20%;
            right: -10%;
            animation-delay: 0.2s;
        }

        .bg-gradient:nth-child(2) {
            bottom: -20%;
            left: -10%;
            background: radial-gradient(circle, rgba(67, 160, 71, 0.07) 0%, rgba(67, 160, 71, 0) 70%);
            animation-delay: 0.5s;
        }

        body.dark-mode .bg-gradient:nth-child(1) {
            background: radial-gradient(circle, rgba(30, 136, 229, 0.1) 0%, rgba(30, 136, 229, 0) 70%);
        }

        body.dark-mode .bg-gradient:nth-child(2) {
            background: radial-gradient(circle, rgba(67, 160, 71, 0.1) 0%, rgba(67, 160, 71, 0) 70%);
        }

        /* 主题切换动画 */
        .theme-switch-animation {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 120px;
            height: 120px;
            background-color: rgba(0, 0, 0, 0.4);
            border-radius: 50%;
            z-index: 9998;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: transform 0.3s ease-out, opacity 0.3s ease-out;
        }

        .theme-switch-animation.active {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        .moon-icon, .sun-icon {
            width: 60px;
            height: 60px;
            display: none;
            animation: rotate 1s linear infinite;
        }

        .moon-icon.active, .sun-icon.active {
            display: block;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* 平板响应式设计 */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 28px;
            }
            
            .hero-subtitle {
                font-size: 16px;
            }
            
            .tools-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .nav-links {
                gap: 16px;
            }
        }

        /* 移动端响应式设计 */
        @media (max-width: 768px) {
            .header-inner {
                height: 60px;
            }
            
            .logo-icon {
                width: 36px;
                height: 36px;
            }
            
            .nav-links {
                display: none;
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: var(--bg-light);
                border-bottom: 1px solid var(--border-light);
                padding: 16px 24px;
                flex-direction: column;
                gap: 16px;
                box-shadow: var(--shadow-md);
                z-index: 99;
                opacity: 0;
                transform: translateY(-10px);
                transition: opacity var(--transition-normal), transform var(--transition-normal);
            }
            
            body.dark-mode .nav-links {
                background-color: var(--bg-dark);
                border-bottom-color: var(--border-dark);
                box-shadow: var(--shadow-dark-md);
            }
            
            .nav-links.active {
                display: flex;
                opacity: 1;
                transform: translateY(0);
            }
            
            .mobile-menu-btn {
                display: flex;
                margin-right: 8px;
            }
            
            .hero {
                margin-bottom: 32px;
            }
            
            .hero-title {
                font-size: 24px;
            }
            
            .hero-subtitle {
                font-size: 15px;
            }
            
            .search-input {
                height: 48px;
            }
            
            .search-btn {
                top: 4px;
            }
            
            .tools-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .tool-description {
                margin-bottom: 12px;
            }
            
            .footer-inner {
                flex-direction: column;
                gap: 16px;
            }
            
            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 16px;
            }
            
            .shop-btn span {
                display: none;
            }
        }

        /* 动画 */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

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

        /* 波纹效果 */
        .ripple {
            position: absolute;
            border-radius: 50%;
            transform: scale(0);
            animation: ripple 0.6s linear;
            background-color: rgba(255, 255, 255, 0.7);
        }

        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }
        
/*分页样式*/
/* 重置全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 动态渐变文本样式 */
.waptxt {
    font-weight: 800;
    font-size: clamp(24px, 5vw, 60px); /* 响应式字体大小 */
    letter-spacing: 3px;
    background-image: linear-gradient(to right, var(--accent), var(--secondary) 25%, var(--accent) 50%, var(--secondary) 75%, var(--accent)); /* 使用主题色调 */
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 100%;
    animation: masked-animation 8s infinite linear;
}

/* 悬停时改变渐变颜色 */
.waptxt:hover {
    animation-duration: 6s;
    background-image: linear-gradient(to right, var(--secondary), var(--accent-light) 25%, var(--secondary) 50%, var(--accent-light) 75%, var(--secondary));
}

/* 动态渐变动画 */
@keyframes masked-animation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -100% 0;
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .waptxt {
        font-size: 32px;
        letter-spacing: 2px;
    }
}

@media (min-width: 769px) {
    .waptxt {
        font-size: 60px;
        letter-spacing: 10px;
    }
}

/* 分页样式 */
.pagination .page-item .page-link {
    width: 40px;
    height: 40px;
    padding: 0;
    line-height: 40px;
    text-align: center;
    border-radius: var(--radius-sm); /* 使用主题圆角 */
    margin: 0 2px;
    transition: var(--transition-fast); /* 使用主题动画 */
    position: relative;
    background-color: var(--card-light); /* 使用主题卡片背景 */
    color: var(--text-primary-light); /* 使用主题文本颜色 */
    border: 1px solid var(--border-light); /* 使用主题边框 */
}

/* 激活状态的分页按钮 */
.pagination .page-item.active .page-link {
    background-color: var(--primary); /* 使用主题主色调 */
    border-color: var(--primary);
    color: white;
}

/* 禁用状态的分页按钮 */
.pagination .page-item.disabled .page-link {
    opacity: 0.6;
}

/* 悬停效果 */
.pagination .page-item:not(.disabled):not(.active) .page-link:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-sm); /* 使用主题阴影 */
    background-color: var(--hover-light); /* 使用主题悬停背景 */
}

/* 分页跳转区域样式 */
.pagination-jump {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pagination-jump span {
    margin-right: 10px;
    font-size: 16px;
    color: var(--text-secondary-light); /* 使用主题次要文本颜色 */
    font-weight: bold;
}

.pagination-jump input {
    width: auto;
    text-align: center;
    margin: 0 10px;
    border: 1px solid var(--border-light); /* 使用主题边框 */
    border-radius: var(--radius-sm); /* 使用主题圆角 */
    padding: 8px;
    font-size: 16px;
    transition: var(--transition-fast); /* 使用主题动画 */
}

.pagination-jump input:focus {
    border-color: var(--primary); /* 使用主题主色调 */
    outline: none;
}

.pagination-jump button {
    background-color: var(--primary); /* 使用主题主色调 */
    color: white;
    border: none;
    border-radius: var(--radius-sm); /* 使用主题圆角 */
    padding: 8px 16px;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-fast); /* 使用主题动画 */
}

.pagination-jump button:hover {
    background-color: var(--primary-dark); /* 使用主题深色主色调 */
}

/* 工具提示样式 */
.page-link .tooltip {
    visibility: hidden;
    width: 120px;
    background-color: var(--card-dark); /* 使用主题深色卡片背景 */
    color: var(--text-primary-dark); /* 使用主题深色文本颜色 */
    text-align: center;
    border-radius: var(--radius-sm); /* 使用主题圆角 */
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: var(--transition-normal); /* 使用主题动画 */
}

.page-link .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--card-dark) transparent transparent transparent; /* 使用主题深色卡片背景 */
}

.page-link:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

/*分页样式结束*/

/*搜索*/
/* 无结果提示容器 */
.no-results {
    text-align: center;
    padding: 30px 0;
    color: var(--text-secondary-light); /* 使用主题次要文本颜色（浅色模式） */
    font-size: 16px;
    background-color: var(--card-light); /* 使用主题卡片背景（浅色模式） */
    border-radius: var(--radius-lg); /* 使用主题大圆角 */
    margin-top: 20px;
    box-shadow: var(--shadow-md); /* 使用主题中等阴影（浅色模式） */
}

/* 深色模式下的无结果提示 */
body.dark-mode .no-results {
    color: var(--text-secondary-dark); /* 使用主题次要文本颜色（深色模式） */
    background-color: var(--card-dark); /* 使用主题卡片背景（深色模式） */
    box-shadow: var(--shadow-dark-md); /* 使用主题中等阴影（深色模式） */
}

/* 无结果提示中的按钮 */
.no-results button {
    background-color: var(--primary); /* 使用主题主色调 */
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-full); /* 使用主题全圆角 */
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--transition-fast); /* 使用主题快速动画 */
}

/* 按钮悬停效果 */
.no-results button:hover {
    background-color: var(--primary-dark); /* 使用主题深色主色调 */
}

/* 提示信息的标题样式 */
.no-results .h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* 提示信息的次要文本 */
.no-results .text-muted {
    color: var(--text-secondary-light); /* 使用主题次要文本颜色（浅色模式） */
    margin-bottom: 15px;
}

/* 深色模式下的次要文本 */
body.dark-mode .no-results .text-muted {
    color: var(--text-secondary-dark); /* 使用主题次要文本颜色（深色模式） */
}

/*搜索结束*/