/*头部图片区域*/
.service-header {
  position: relative;
  width: 100%;
  height: 360px;
}

.service-header img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/*头部搜索区域*/
.service-search {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  /*height: 100%;*/
}

.search-content {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 186px 0 130px 122px;
  color: #fff;
  font-size: 36px;
  line-height: 44px;
}

.search-block {
  position: relative;
  margin-left: 50px;
  border-radius: 3px;
  overflow: hidden;
}

.search-input {
  width: 630px;
  height: 44px;
  padding-left: 40px;
  padding-bottom: 4px;
  font-size: 20px;
  color: #5F6464;
  background: #FFFFFF;
  border: none;
}

.icon-sousuo {
  position: absolute;
  display: inline-block;
  left: 16px;
  top: 0;
  bottom: 0;
  color: #C0C4CC;
}

.search-block input::-webkit-input-placeholder {
  color: #C0C4CC;
  font-size: 16px;
}

.search-btn {
  position: relative;
  width: 90px;
  line-height: 44px;
  font-size: 18px;
  text-align: center;
  color: #fff;
  background: linear-gradient(27deg, #FF9E35, #FFBC35);
  border: none;
}
.search-btn:hover:before {
  opacity: 1;
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.06);
  transition: all 0.4s;
}