/* 搜索页面 */
.search-page {
    min-height: 600px;
    padding-top: 120px;
    background: #fff;
}
.search-container {
    width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-height: 600px;
}
.main-search-form {
    display: flex;
    align-items: stretch;
    gap: 15px;
}
.category-select {
    width: 160px;
    position: relative;
}
.category-select::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: #666 transparent transparent transparent;
    pointer-events: none;
}
.search-category {
    width: 100%;
    height: 50px;
    padding: 0 35px 0 15px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    background: #fff;
    color: #333;
    font-size: 15px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}
.search-category:hover, 
.search-category:focus {
    border-color: #40b4f7;
}
.search-input-group {
    flex: 1;
    position: relative;
    display: flex;
}
.main-search-input {
    flex: 1;
    height: 50px;
    padding: 0 120px 0 20px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}
.main-search-input:hover {
    border-color: #40b4f7;
}
.main-search-input:focus {
    border-color: #1890ff;
    box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.1);
}
.main-search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 100px;
    height: 40px;
    border: none;
    background: #1890ff;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.main-search-btn:hover {
    background: #40b4f7;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2);
}
.main-search-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* 响应式设计 */
@media screen and (max-width: 900px) {
    .search-container {
        width: 90%;
        padding: 30px;
    }
}

@media screen and (max-width: 640px) {
    .main-search-form {
        flex-direction: column;
    }
    .category-select {
        width: 100%;
    }
    .search-input-group {
        width: 100%;
    }
} 