
    /* 按钮点击动画效果 */
    .mdui-btn.mdui-text-color-theme-accent {
        position: relative;
        transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
        transform-origin: center;
    }

    /* PC端：鼠标悬停效果 */
    @media (min-width: 769px) {
        .mdui-btn.mdui-text-color-theme-accent:hover {
            background: rgba(255, 255, 255, 0.95) !important;
            border-color: #ff69b4 !important;
            transform: translateY(-2px) scale(0.98) !important;
            box-shadow: 
                0 8px 20px rgba(255, 105, 180, 0.25),
                inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
        }
    }

    /* 移动端：点击动画效果 */
    .mdui-btn.mdui-text-color-theme-accent:active {
        transform: scale(0.95) !important;
        box-shadow: 
            0 4px 8px rgba(255, 105, 180, 0.15),
            inset 0 3px 6px rgba(0, 0, 0, 0.15) !important;
        background: rgba(255, 255, 255, 0.85) !important;
        border-color: rgba(255, 182, 193, 0.7) !important;
    }

    /* 为所有状态下的按钮添加内阴影效果 */
    .mdui-btn.mdui-text-color-theme-accent::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50px;
        box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8);
        pointer-events: none;
        transition: box-shadow 0.2s ease;
    }

    /* 点击时内阴影加深 */
    .mdui-btn.mdui-text-color-theme-accent:active::after {
        box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.2);
    }

    /* 确保搜索对话框中的按钮也有同样效果 */
    #search .mdui-btn {
        transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    }

    #search .mdui-btn:active {
        transform: scale(0.95) !important;
        box-shadow: 
            0 4px 8px rgba(255, 105, 180, 0.15),
            inset 0 3px 6px rgba(0, 0, 0, 0.15) !important;
    }

    /* 淡粉色波纹效果 */
    .mdui-ripple-wave {
        background: rgba(255, 182, 193, 0.6) !important; /* 淡粉色 #ffb6c1 */
        animation: mdui-ripple-pink 0.6s ease-out !important;
    }

    /* 淡粉色涟漪动画 */
    @keyframes mdui-ripple-pink {
        0% {
            opacity: 0.8;
            transform: scale(0);
        }
        50% {
            opacity: 0.6;
        }
        100% {
            opacity: 0;
            transform: scale(2);
        }
    }

    /* 针对粉色主题按钮的特殊波纹效果 */
    .mdui-btn.mdui-text-color-theme-accent .mdui-ripple-wave,
    .mdui-btn.mdui-color-theme-accent .mdui-ripple-wave {
        background: rgba(255, 105, 180, 0.5) !important; /* 更淡的粉色 #ff69b4 */
        animation: mdui-ripple-pink-accent 0.5s ease-out !important;
    }

    @keyframes mdui-ripple-pink-accent {
        0% {
            opacity: 0.7;
            transform: scale(0);
        }
        50% {
            opacity: 0.5;
        }
        100% {
            opacity: 0;
            transform: scale(2.2);
        }
    }

    /* 搜索按钮的波纹效果 */
    #search .mdui-btn .mdui-ripple-wave {
        background: rgba(255, 182, 193, 0.5) !important;
    }

    /* 浮动按钮的波纹效果 */
    .mdui-fab .mdui-ripple-wave {
        background: rgba(255, 255, 255, 0.4) !important; /* 白色半透明 */
    }

    /* 确保波纹效果不被遮挡 */
    .mdui-btn {
        position: relative;
        overflow: hidden;
    }

    /* 为粉色主题按钮添加更明显的涟漪 */
    .mdui-btn.mdui-text-color-theme-accent:active .mdui-ripple-wave-filled {
        background: rgba(255, 105, 180, 0.3) !important;
        animation: mdui-ripple-pink-filled 0.4s ease-out !important;
    }

    @keyframes mdui-ripple-pink-filled {
        0% {
            opacity: 0.4;
            transform: scale(0);
        }
        70% {
            opacity: 0.2;
        }
        100% {
            opacity: 0;
            transform: scale(1.8);
        }
    }

    /* 鼠标悬停时的预涟漪效果 */
    .mdui-btn.mdui-text-color-theme-accent:hover .mdui-ripple-wave {
        background: rgba(255, 182, 193, 0.2) !important;
    }



    /* 统一粉色毛玻璃主题 */
    :root {
        --primary-color: #ff4081;
        --primary-light: #ff79b0;
        --primary-dark: #c60055;
        --secondary-color: #ff80ab;
        --glass-bg: rgba(255, 255, 255, 0.15);
        --glass-border: rgba(255, 255, 255, 0.2);
        --glass-shadow: 0 8px 32px rgba(255, 64, 129, 0.2);
    }

    body {
    
        background: linear-gradient(135deg, rgba(255, 225, 230, 0.95) 0%, rgba(255, 240, 245, 0.95) 100%) !important;
        background-attachment: fixed;
        min-height: 100vh;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    /* 毛玻璃效果基础类 */
    .glass-effect {
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        box-shadow: 0 8px 32px rgba(255, 105, 180, 0.2) !important;
        border-radius: 20px;
    }

    .glass-card {
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        box-shadow: 0 15px 35px rgba(255, 105, 180, 0.15) !important;
        border-radius: 20px !important;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    }

    .glass-card:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 20px 40px rgba(255, 105, 180, 0.25) !important;
        border-color: rgba(255, 255, 255, 0.6) !important;
    }

    /* 顶部背景区域 - 毛玻璃效果 */
    .background {
        position: relative;
        height: 40vh;
        overflow: hidden;
        border-radius: 25px;
        margin: 20px 15px;
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2) !important;
    }

    .highlight {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
        max-width: 90%;
        z-index: 1;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.7) sepia(0.3) hue-rotate(320deg) saturate(1.5);
        border-radius: 25px;
    }

    /* 标题打字机效果 */
    #typewriter {
        font-size: 3.5rem;
        font-weight: 800;
        background: linear-gradient(45deg, #ff1493, #ff69b4);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 10px;
        letter-spacing: 1px;
        text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    }

    /* 统计信息区域 - 毛玻璃卡片 */
    #admin {
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-radius: 16px !important;
        padding: 20px !important;
        margin-top: 20px;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        box-shadow: 0 8px 24px rgba(255, 105, 180, 0.15) !important;
        display: inline-block;
    }

    #admin p {
        margin: 10px 0;
        color: #ff69b4 !important;
        font-size: 1.1rem;
        font-weight: 500;
    }

    #sitetime, #api, #access {
        color: #ff1493 !important;
        font-weight: bold;
        margin: 0 5px;
    }

    /* 跑马灯样式 - 毛玻璃卡片 */
    .mdui-chip {
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border: 1px solid rgba(255, 182, 193, 0.5) !important;
        border-radius: 50px !important;
        padding: 10px 20px !important;
        margin: 0 10px !important;
        box-shadow: 0 4px 12px rgba(255, 105, 180, 0.1) !important;
        transition: all 0.3s ease !important;
    }

    .mdui-chip:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 20px rgba(255, 105, 180, 0.2) !important;
        border-color: #ff69b4 !important;
    }

    .mdui-chip-icon {
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.8) !important;
        padding: 5px;
    }

    .mdui-chip-title {
        color: #ff1493 !important;
        font-weight: 600;
    }

    /* 主内容区域 */
    #main {
        padding: 20px;
    }

    /* 接口卡片样式 - 毛玻璃卡片 */
    .mdui-card {
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        border-radius: 20px !important;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
        margin: 15px 0 !important;
        box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15) !important;
    }

    .mdui-card:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 20px 40px rgba(255, 105, 180, 0.25) !important;
        border-color: rgba(255, 255, 255, 0.6) !important;
    }

    .mdui-card-primary {
        padding: 20px !important;
        background: linear-gradient(45deg, rgba(255, 105, 180, 0.1), rgba(255, 182, 193, 0.1)) !important;
    }

    .mdui-card-primary-title {
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        color: #ff1493 !important;
        margin-bottom: 10px !important;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    }

    .mdui-card-primary-subtitle {
        color: #ff69b4 !important;
        font-size: 0.95rem !important;
        font-weight: 500;
    }

    .mdui-card-content {
        padding: 0 20px 20px !important;
        color: #ff69b4 !important;
        line-height: 1.6;
    }

    /* 徽章样式 - 毛玻璃效果 */
    .mdui-badge {
        padding: 6px 14px !important;
        border-radius: 50px !important;
        font-size: 0.8rem !important;
        font-weight: 600;
        letter-spacing: 0.5px;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }

    /* 置顶徽章样式 - 紫色 */
    .mdui-color-purple-400 {
        background: linear-gradient(45deg, rgba(156, 39, 176, 0.8), rgba(186, 104, 200, 0.8)) !important;
    }

    .mdui-color-green-400 {
        background: linear-gradient(45deg, rgba(0, 230, 118, 0.8), rgba(0, 200, 83, 0.8)) !important;
    }

    .mdui-color-red-700 {
        background: linear-gradient(45deg, rgba(255, 82, 82, 0.8), rgba(255, 23, 68, 0.8)) !important;
    }

    .mdui-color-yellow-700 {
        background: linear-gradient(45deg, rgba(255, 215, 64, 0.8), rgba(255, 171, 0, 0.8)) !important;
    }

    /* 按钮样式 - 毛玻璃效果 */
    .mdui-btn {
        border-radius: 50px !important;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    }

    .mdui-text-color-theme-accent {
        color: #ff1493 !important;
    }

    .mdui-btn.mdui-text-color-theme-accent {
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(15px) !important;
        border: 1px solid rgba(255, 182, 193, 0.5) !important;
        box-shadow: 0 5px 15px rgba(255, 105, 180, 0.15) !important;
    }

    .mdui-btn.mdui-text-color-theme-accent:hover {
        background: rgba(255, 255, 255, 0.95) !important;
        border-color: #ff69b4 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 20px rgba(255, 105, 180, 0.25) !important;
    }

    /* 浮动按钮 - 毛玻璃效果 */
    .mdui-fab {
        background: linear-gradient(45deg, #ff1493, #ff69b4) !important;
        box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4) !important;
        border-radius: 50% !important;
        width: 56px !important;
        height: 56px !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    }

    .mdui-fab:hover {
        transform: scale(1.1) !important;
        box-shadow: 0 12px 30px rgba(255, 105, 180, 0.5) !important;
        border-color: rgba(255, 255, 255, 0.5) !important;
    }

    /* 对话框样式 - 毛玻璃效果 */
    .mdui-dialog {
        border-radius: 25px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(30px) !important;
        -webkit-backdrop-filter: blur(30px) !important;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        box-shadow: 0 25px 50px rgba(255, 105, 180, 0.3) !important;
    }

    .mdui-dialog-title {
        background: linear-gradient(45deg, #ff1493, #ff69b4) !important;
        color: white !important;
        border-radius: 25px 25px 0 0 !important;
        padding: 20px !important;
        font-weight: 700;
        backdrop-filter: blur(10px) !important;
    }

    /* 输入框样式 - 毛玻璃效果 */
    .mdui-textfield-input {
        border-radius: 12px !important;
        border: 1px solid rgba(255, 182, 193, 0.5) !important;
        padding: 12px 16px !important;
        transition: all 0.3s ease !important;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px) !important;
    }

    .mdui-textfield-input:focus {
        border-color: #ff69b4 !important;
        box-shadow: 0 0 0 2px rgba(255, 105, 180, 0.2) !important;
        background: rgba(255, 255, 255, 0.2) !important;
    }

    /* 空状态 - 毛玻璃效果 */
    .mc-empty {
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(20px) !important;
        border-radius: 20px;
        padding: 50px 20px !important;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15) !important;
        color: #ff69b4 !important;
    }

    /* 列表项 - 毛玻璃效果 */
    .mdui-list-item {
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-radius: 16px !important;
        margin: 8px 0 !important;
        padding: 0 20px !important;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        box-shadow: 0 4px 12px rgba(255, 105, 180, 0.1) !important;
        color: #ff69b4 !important;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    }

    .mdui-list-item:hover {
        transform: translateX(8px) !important;
        border-color: #ff69b4 !important;
        box-shadow: 0 8px 20px rgba(255, 105, 180, 0.2) !important;
        background: rgba(255, 255, 255, 0.95) !important;
    }

    .mdui-list-item-title {
        color: #ff1493 !important;
        font-weight: 600;
    }

    /* 菜单滚动条美化 */
    .mdui-list::-webkit-scrollbar {
        width: 6px;
    }

    .mdui-list::-webkit-scrollbar-track {
        background: rgba(255, 240, 245, 0.5);
        border-radius: 10px;
    }

    .mdui-list::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #ffb6c1, #ff69b4);
        border-radius: 10px;
        border: 2px solid rgba(255, 255, 255, 0.8);
    }

    .mdui-list::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #ff69b4, #ff1493);
    }

    /* 全局滚动条美化 */
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-track {
        background: rgba(255, 240, 245, 0.8);
        border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #ffb6c1, #ff69b4);
        border-radius: 10px;
        border: 2px solid rgba(255, 255, 255, 0.8);
    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #ff69b4, #ff1493);
    }

    /* 响应式调整 */
    @media (max-width: 768px) {
        #typewriter {
            font-size: 2.5rem;
        }
        
        .background {
            height: 35vh;
            margin: 15px 10px;
        }
        
        .mdui-card-primary-title {
            font-size: 1.2rem !important;
        }
        
        .mdui-chip {
            padding: 8px 16px !important;
            margin: 0 5px !important;
        }
        
        #admin {
            padding: 15px !important;
        }
    }

    /* 新增：搜索弹窗样式 */
    .search-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 9999;
        display: none;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .search-modal-overlay.show {
        display: flex;
        opacity: 1;
    }
/* 修改搜索弹窗样式 - 修复高度问题 */
.search-modal {
    width: 290px !important;
    max-width: 290px !important;
    max-height: 320vh !important; /* 使用最大高度而不是固定高度 */
    height: auto !important; /* 改为自适应高度 */
    min-height: 320px !important; /* 设置最小高度 */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 5px;
    box-shadow: 
        0 25px 50px rgba(255, 105, 180, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(255, 255, 240, 0.5);
    padding: 20px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
}

/* 修改搜索结果容器，使其可以滚动 */
.search-results {
    flex: 1;
    overflow-y: auto;
    max-height: calc(80vh - 180px) !important; /* 计算可用高度 */
    padding-right: 5px;
    padding-left: 5px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .search-modal {
        width: 90% !important;
        max-height: 85vh !important;
        min-height: 300px !important;
    }
    
    .search-results {
        max-height: calc(85vh - 150px) !important;
    }
}
    .search-modal.show {
        transform: translateY(0);
    }



    /* 修改搜索标题样式 - 调大字体 */
    .search-title {
        text-align: center;
        margin-bottom: 15px;
        color: #ff1493;
        font-size: 28px !important; /* 调大字体 */
        font-weight: 800;
        background: linear-gradient(45deg, #ff1493, #ff69b4);
        -webkit-background-clip: text;
        background-clip: text;
        text-shadow: 0 2px 10px rgba(255, 105, 180, 0.3);
        position: relative;
        padding: 0 10px;
        margin-top: 0;
    }

    /* 副标题 */
    .search-subtitle {
        text-align: center;
        margin-bottom: 0px;
        color: #ff69b4;
        font-size: 16px;
        font-weight: 500;
        opacity: 0.9;
    }

    .search-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ff69b4, transparent);
        border-radius: 3px;
    }



    /* 搜索输入框 */
    .search-input-wrapper {
        position: relative;
        margin-bottom: 20px;
        padding: 0 5px;
    }

    .search-input {
        width: 100%;
        padding: 12px 45px 12px 15px;
        font-size: 14px;
        border: none;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        box-shadow: 
            inset 0 2px 6px rgba(0, 0, 0, 0.1),
            0 4px 12px rgba(255, 105, 180, 0.15);
        transition: all 0.3s ease;
        color: #ff1493;
        border: 1px solid rgba(255, 182, 193, 0.3);
        box-sizing: border-box;
    }

    .search-input:focus {
        outline: none;
        box-shadow: 
            inset 0 2px 6px rgba(0, 0, 0, 0.1),
            0 4px 15px rgba(255, 105, 180, 0.25);
        border-color: #ff69b4;
        background: rgba(255, 255, 255, 1);
    }

    .search-input::placeholder {
        color: rgba(255, 105, 180, 0.6);
        font-size: 13px;
    }


    /* 搜索图标 */
    .search-icon {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #ff69b4;
        font-size: 18px;
        pointer-events: none;
    }

    /* 提示文字 */
    .search-hint {
        text-align: center;
        color: #ff69b4;
        font-size: 12px;
        margin-top: 8px;
        opacity: 0.8;
        margin-bottom: 10px;
        padding: 0 5px;
    }



    /* 搜索结果列表 */
    .search-results {
        flex: 1;
        overflow-y: auto;
        padding-right: 5px;
        padding-left: 5px;
    }

    /* 修改搜索结果项样式 - 卡片式布局 */
    .search-result-item {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 182, 193, 0.3);
        border-radius: 15px;
        padding: 15px;
        margin-bottom: 10px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        color: #ff1493;
        text-decoration: none;
        display: block;
        overflow: hidden;
        word-wrap: break-word;
        box-sizing: border-box;
        box-shadow: 0 5px 15px rgba(255, 105, 180, 0.1);
    }

    .search-result-item:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 8px 20px rgba(255, 105, 180, 0.2);
        border-color: #ff69b4;
    }

    .search-result-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .search-result-title {
        font-weight: 700;
        font-size: 15px;
        color: #ff1493;
        flex: 1;
        margin-right: 10px;
    }

    /* 访问量样式 - 右边显示 */
    .search-result-access {
        background: rgba(255, 105, 180, 0.1);
        color: #ff1493;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 4px;
        flex-shrink: 0;
        border: 1px solid rgba(255, 105, 180, 0.2);
        backdrop-filter: blur(5px);
    }

    .search-result-desc {
        color: #ff69b4;
        font-size: 12px;
        opacity: 0.9;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-top: 5px;
    }


    /* 空状态 */
    .search-empty {
        text-align: center;
        padding: 40px 15px;
        color: #ff69b4;
        opacity: 0.6;
        font-size: 14px;
    }

    

    /* 自定义滚动条 */
    .search-results::-webkit-scrollbar {
        width: 4px;
    }

    .search-results::-webkit-scrollbar-track {
        background: rgba(255, 240, 245, 0.3);
        border-radius: 10px;
    }

    .search-results::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #ffb6c1, #ff69b4);
        border-radius: 10px;
    }



    /* 移动端适配 */
    @media (max-width: 768px) {
        .search-modal {
            width: 90%;
            height: 70vh;
        }
        
        .search-title {
            font-size: 24px !important;
        }
        
        .search-subtitle {
            font-size: 14px;
        }
        
        .search-result-title {
            font-size: 14px;
        }
        
        .search-result-desc {
            font-size: 11px;
        }
        
        .search-result-access {
            font-size: 11px;
            padding: 3px 8px;
        }
    }