/* 顶部搜索栏通用样式 */
.top-search-bar {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
}

.search-box {
    width: 300px;
    position: relative;
}

.search-input {
    width: 100%;
    height: 40px;
    padding: 0 40px 0 20px;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    background: #f7f7f7;
    outline: none;
    font-size: 14px;
    transition: all 0.3s;
}

.search-input:focus {
    background: #fff;
    border-color: #ff2e4d;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    cursor: pointer;
}

/* 内容区包装器 */
.content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}

/* 移动端隐藏桌面版搜索栏 */
@media (max-width: 768px) {
    .top-search-bar {
        display: none !important;
    }
}