/* 搜索区域样式 - 实现居中布局 */
.search-section {
    display: flex;
    justify-content: center;
    padding: 30px 0; /* 上下间距，可根据页面实际高度微调 */
    width: 100%;
}

/* 搜索表单样式 - 控制内部元素排列和黄金比例宽度 */
.search-form {
    display: flex;
    align-items: center;
    width: 618px; /* 黄金比例宽度 (基于1000px设计稿)，视觉上更舒适 */
    max-width: 100%; /* 确保在小屏幕上不会溢出 */
    box-sizing: border-box;
}

/* 输入框样式 */
.search-input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

/* 输入框聚焦效果 */
.search-input:focus {
    border-color:#0caaa3;
}

/* 按钮样式 */
.search-button {
    padding: 12px 25px;
    background-color:#0caaa3;
    color: white;
    border: none;
    border-radius: 0 6px 6px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* 按钮悬停效果 */
.search-button:hover {
    background-color: #2e71b4;
}