/* 搜索标题样式 - 更大字体 */
.header-slider-search-title {
    position: relative;
    display: block;
    font-size: 2.5em;
    font-weight: 600;
    line-height: 1.4;
    color: white;
    margin: 20px 0 30px 0;
    min-height: 1.4em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* 搜索标题打字光标动画 - 跟随文字 */
.header-slider-search-title .typewriter-text::after {
    content: '|';
    display: inline;
    animation: typewriter-cursor 1s infinite;
    margin-left: 3px;
    font-weight: 300;
    color: white;
    font-size: 0.9em;
}

/* 移除原有的固定光标 */
.header-slider-search-title::after {
    display: none;
}



/* 光标闪烁动画 */
@keyframes typewriter-cursor {
    0%, 50% {
        border-color: var(--focus-color);
    }
    51%, 100% {
        border-color: transparent;
    }
}

/* 打字时光标闪烁 */
@keyframes typewriter-blink {
    0% {
        border-color: var(--focus-color);
    }
    100% {
        border-color: transparent;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-slider-search-title {
        font-size: 1.8em;
        margin: 15px 0 20px 0;
        line-height: 1.3;
        color: white;
    }
    
    .header-slider-search-title .typewriter-text::after {
        margin-left: 2px;
        font-size: 0.8em;
        color: white;
    }
    

}

@media (max-width: 480px) {
    .header-slider-search-title {
        font-size: 1.5em;
        margin: 10px 0 15px 0;
        color: white;
    }
    
    .header-slider-search-title .typewriter-text::after {
        margin-left: 1px;
        font-size: 0.7em;
        color: white;
    }
}

/* 打字效果容器 */
.typewriter-container {
    min-height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}