/* ===== 模拟搜索组件样式 ===== */
.cbi-search-widget {
    background: #ffffff;
    border: 2px solid #001a35;
    border-radius: 12px;
    padding: 30px;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(0, 26, 53, 0.1);
    text-align: center;
}

.cbi-search-widget__title {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #001a35 !important;
    margin: 0 0 10px 0 !important;
}

.cbi-search-widget__desc {
    font-size: 0.95rem;
    color: #667c99;
    margin-bottom: 25px !important;
}

/* 搜索框容器 */
.cbi-search-box {
    display: flex;
    gap: 10px;
    background: #f4f7f9;
    padding: 8px;
    border-radius: 50px;
    border: 1px solid #e1e8ed;
    transition: all 0.3s ease;
}

.cbi-search-box:focus-within {
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    background: #fff;
}

.cbi-search-box input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    padding: 10px 20px !important;
    font-size: 1rem !important;
    outline: none !important;
    color: #001a35;
}

.cbi-search-box button {
    background: #001a35 !important;
    color: #FFD700 !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    min-width: 140px;
    transition: all 0.3s ease;
}

.cbi-search-box button:hover {
    background: #FFD700 !important;
    color: #001a35 !important;
}

/* 加载动画补丁 */
.cbi-loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-top-color: #FFD700;
    border-radius: 50%;
    animation: cbiSpin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes cbiSpin {
    to { transform: rotate(360deg); }
}

.cbi-search-widget__meta {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.75rem;
    color: #8899a6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cbi-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
    margin-right: 5px;
}

/* 移动端适配 */
@media (max-width: 600px) {
    .cbi-search-box {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }
    .cbi-search-box input {
        background: #f4f7f9 !important;
        border-radius: 50px !important;
        margin-bottom: 10px;
    }
}