body {
  background: url(../images/search/bg_img.png) no-repeat;
  background-size: 367px;
  background-position: -100px 50%;
}

.banner {
  min-width: 1200px;
  height: 330px;
  background: url(../images/search/search_banner.png) no-repeat;
  background-size: 100% 100%;
}

.center {
  min-width: 1200px;
}

.search_box {
  width: 1000px;
  height: 60px;
  margin: auto;
  background-color: #fff;
  border-radius: 6px 6px 6px 6px;
  box-shadow: 0px 0px 40px 1px rgba(93, 112, 107, 0.12);
  transform: translateY(-30px);
  display: flex;
  justify-content: space-between;
}
.search_input {
  width: 100%;
  height: 60px;
  padding: 16px 0 16px 27px;
  border: none;
  border-radius: 6px 6px 6px 6px;
  box-sizing: border-box;
  color: #7a889b;
  line-height: 29px;
  font-size: 16px;
}
.search_button {
border:0;
  width: 60px;
  height: 60px;
  background: url(../images/search/search_icon.png) no-repeat;
  background-size: 24px;
  background-position: 50%;
  background-color: rgba(46,175,104,1);
  border-radius: 0px 6px 6px 0px;
}

.result {
  width: 1000px;
  height: 251px;
  margin: auto;
  margin-top: 15px;
  background: #ffffff;
  box-shadow: 0px 0px 26px 1px rgba(93, 112, 107, 0.12);
  border-radius: 10px 10px 10px 10px;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 222px;
  display: flex;
}
.result_img img {
  width: 332px;
  height: 210px;
  border-radius: 6px 6px 6px 6px;
  margin-right: 34px;
}
.result_desc {
  display: flex;
  flex-direction: column;
}
.result_desc_title {
  color: #292d2c;
  line-height: 36px;
  font-size: 20px;
  margin-bottom: 14px;
}
.result_desc_content {
  width: 573px;
  height: 162px;
  color: #7a889b;
  line-height: 38px;
}

.result_desc_content a{
	color:rgba(46,175,104,1);
}
.result_desc_content a:hover{
	text-decoration:underline;
}

