.banner1 .pic img{
	min-height: 309px;
	object-fit: cover;
}
.banner1 .banner-box{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.banner1 .banner-box .search{
	max-width: 100%;
	margin: 0 auto;
}

/* 外层搜索容器 */
.search-wrap {
	display: flex;
	align-items: center;
	background: #288FF0; /* 外层蓝色边框底色 */
	border-radius: 10px;
	padding: 8px;
	max-width: 100%;
	width: 720px;
	gap: 8px;
	margin-top: -25px;
}
/* 输入框 */
.search-input {
	flex: 1;
	border: none;
	border-radius: 22px;
	padding: 14px 18px;
	color: #333;
	outline: none;
	font-size: 16px;
}
.search-input::placeholder {
	color: #888;
}
/* 放大镜按钮 */
.search-btn {
	width: 40px;
	height: 40px;
	background: #288FF0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
/* 放大镜图标简易svg */
.search-icon {
	width: 70px;
	height: 70px;
	fill: #fff;
}