.section-search{
	margin-bottom: 20px;
}
.section-search button{
	background: url("../img/search-icon.png") center  no-repeat #016FFF  !important;
background-size: 24px auto !important;
	border: none !important;
	color: #fff;
	width: 60px;
	height: 40px;
	text-indent: -999em;
	
	opacity: 1 !important;

}
.section-search button:active,.section-search button:hover,.section-search button:focus{
	border-radius: 0px 3px 3px 0 !important;
	outline: none !important;
	box-shadow: none !important;
	z-index: 1;
	
}
.section-search input{
	height: 40px;
		outline: none !important;
			box-shadow: none !important;
}

/* 筛选栏样式 */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-title {
  font-weight: bold;
}

.filter-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s;
}

.filter-btn:hover {
  background-color: #f0f0f0;
}


.filter-btn.active {
  background-color: #007bff;
  color: #fff;
}
/* 筛选结果卡片样式 */
.result-card {

  padding: 20px;
 
  border-radius: 8px;
  background-color: #fff;
  position: relative;
  padding-bottom: 25px;
  height:250px;
}


.result-card::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 7px;
  height: 24px;
  background-color: #007bff;

}
.result-card:hover{
	/* background-color: #f0f0f0; */
	box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.05);
	transition: all .3s; 
	cursor: pointer;
}


.result-card-title {
  font-size: 20px;
  font-weight: bold;
  margin: 30px 0;
  display: block;
  text-align: center;
}


.result-card-info p {
  margin: 0 0 5px;
  font-size: 16px;
  color: #666;
}
.result-card-info p>span{
	color: #333;
}
.result-card-info p:last-child{
	margin-bottom: 20px;
}


.result-card-btn {
  display: block;
  width: 100%;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}

.result-card-btn:hover {
  background-color: #0056b3;
}

