/* ========== 卡片容器 ========== */
.cs-35bb8ed3-card {
    border-radius: 28px;
    padding: 30px 28px 28px;
    background: linear-gradient(145deg, #1e1b4b, #2d2a5e); /* 深紫渐变 */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    color: #ffffff;
    font-family: system-ui, -apple-system, sans-serif;
    box-sizing: border-box;
    width: 100%;
    display: block;
    height: fit-content;
    transition: transform 0.2s;
}

/* ========== 头部（标题 + 图标） ========== */
.cs-35bb8ed3-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.cs-35bb8ed3-pulse-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0.8;
    font-size: 22px; /* 假设用字体图标，可调整 */
}

.cs-35bb8ed3-title {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

/* ========== 输入框区域 ========== */
.cs-35bb8ed3-form {
    width: 100%;
    margin: 0 !important;
}

.cs-35bb8ed3-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #ffffff !important;
    border-radius: 60px !important;  /* 更圆润 */
    padding: 4px 4px 4px 22px !important;
    box-sizing: border-box !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    height: 56px !important;         /* 更高一些 */
    transition: box-shadow 0.3s;
}

.cs-35bb8ed3-input-wrapper:focus-within {
    box-shadow: 0 4px 20px rgba(92, 84, 148, 0.4) !important;
}

.cs-35bb8ed3-input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    font-size: 16px !important;
    color: #1e1b4b !important;       /* 深色文字 */
    padding: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    height: 100% !important;
    line-height: normal !important;
    width: 100%;
}

.cs-35bb8ed3-input::placeholder {
    color: #9aa3b5 !important;
    opacity: 1 !important;
}

/* ========== 搜索按钮 ========== */
.cs-35bb8ed3-submit {
    border: none !important;
    box-shadow: none !important;
    background-color: #5C5494 !important;
    width: 46px !important;          /* 稍大 */
    height: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 0 0 auto !important;
    transition: transform 0.2s ease, background 0.2s ease !important;
}

.cs-35bb8ed3-submit:hover {
    transform: scale(1.06);
    background-color: #6d64a8 !important;
}

.cs-35bb8ed3-submit svg {
    display: block !important;
    width: 20px;
    height: 20px;
}