.tag-search-form {
    position: relative;
    display: flex;
    align-items: center;
    height: auto;  /* 设置一个固定高度 */
}

.tag-search-input {
    padding: 0px 35px 0px 15px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    width: 220px;
    font-size: 14px;
    color: #333;
    transition: all 0.3sease;
    background-color: #f5f5f5;
    height: 30px;
    line-height: 30px;
    margin-bottom: 0px;
}

.tag-search-input:focus {
    border-color: #d5d5d5;
    outline: none;
}

.tag-search-button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #333;
    font-size: 16px;
    transition: color 0.3sease;
    display: flex;
    align-items: center;
}

.tag-search-button:hover {
    color: var(--primary-color);
}

.tag-search-input::placeholder {
    color: #999;
}

/* 兼容不同浏览器 */
.tag-search-input::-webkit-input-placeholder {
    color: #999;
}

.tag-search-input::-moz-placeholder {
    color: #999;
}

.tag-search-input:-ms-input-placeholder {
    color: #999;
}

/* 移动端样式 */
@media (max-width: 768px) {
    .ceo_home_tuimainstitle_wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .tag-search-form {
        width: 96%;
        margin: 10px 2% 0;
    }

    .tag-search-input {
        width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .ceo_home_tuimainstitle {
        font-size: 17px !important;
        margin-bottom: 5px;
        margin-top: 10px;
    }
    .tag-search-button {
        transform: translateY(-110%);
    }
} 