.ellipsis {
  white-space:nowrap; 
	text-overflow:ellipsis; 
	-o-text-overflow:ellipsis; 
	overflow: hidden; 
}

.ellipsis-2 {
  overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
/* 暂无数据样式 */
.data_empty {
  text-align: center;
  padding: 30px 0;
}
.data_empty_tip {
  font-size: 20px;
  padding-top: 30px;
  color: #666;
}
/* 搜索结果内容 */
.search_con {
  padding: 30px 0 50px;
  background: #ffffff url(../images/search_bg01.jpg) center center no-repeat;
  background-size: 100% 100%;
  min-height: 480px;
}
.search_con .container {
  padding: 0;
}
/* 搜索标题 */
.search_tit {
  font-size: 24px;
  padding-top: 30px;
  color: #666;
}
.search_key {
  color: #0068bf;
}
/* 搜索tab切换导航 */
.search_nav {
  margin-top: 30px;
  position: relative;
  padding: 26px 30px;
  min-height: 74px;
  background-color: #ffffff;
  box-shadow: 4px 6px 20px 0px rgba(141, 141, 141, 0.2);
}
.search_nav_title {
  color: #333333;
  font-size: 20px;
  padding-left: 20px;
  font-weight: bold;
  float: left;
  position: relative;
}
.search_nav_title:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 22px;
  background-color: #0068bf;
}
.search_nav_tab {
  float: right;
  font-size: 18px;
}
.search_nav_tab_item {
  display: inline-block;
  vertical-align: middle;
  color: #666666;
  cursor: pointer;
}
.search_nav_tab_item:hover {
  color: #b59868;
  position: relative;
}
.search_nav_tab_item:hover:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 45px;
  height: 3px;
  margin-left: -30px;
  background-color: #b59868;
}
.search_nav_tab_item + .search_nav_tab_item {
  margin-left: 40px;
}

.search_nav_tab_item.active {
  color: #b59868;
  position: relative;
}
.search_nav_tab_item.active:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 45px;
  height: 3px;
  margin-left: -30px;
  background-color: #b59868;
}
/* 搜索结果列表 */
.search_list {
  margin-top: 40px;
  font-size: 0;
}
/* 图片在左, 文字在右列表样式 */
.row_list_item_image {
  padding: 20px 0;
  display: inline-block;
  vertical-align: middle;
  width: 48%;
  position: relative;
  min-height: 150px;
}
.row_list_item_image:hover .title {
  color: #b59868 !important;
}
.row_list_item_image:nth-child(2n) {
  margin-left: 4%;
}
.row_list_item_image .image_wrap {
  position: absolute;
  left: 0;
  width: 200px;
  height: 110px;
}
.row_list_item_image .image_wrap img {
  width: 100%;
  height: 100%;
}
.row_list_item_image .list_item_content {
  padding-left: 220px;
}
.row_list_item_image .list_item_content .title {
  font-size: 16px;
  color: #333333;
  font-weight: bold;
  padding: 11px 0;
}
.row_list_item_image .list_item_content .content {
  font-size: 14px;
  line-height: 22px;
  color: #999999;
}
/* 无图片列表样式 */
.row_list_item_image_null {
  display: inline-block;
  padding: 20px 0;
  width: 48%;
  padding: 30px;
  box-sizing: border-box;
  position: relative;
  min-height: 150px;
  background-color: #fafafa;
}
.row_list_item_image_null:hover .title {
  color: #b59868 !important;
}
.row_list_item_image_null:nth-child(n + 3) {
  margin-top: 40px;
}
.row_list_item_image_null:nth-child(2n) {
  margin-left: 4%;
}

.row_list_item_image_null .list_item_content .title {
  font-size: 16px;
  color: #333333;
  font-weight: bold;
  padding: 0;
  padding-bottom: 11px;
}
.row_list_item_image_null .list_item_content .content {
  font-size: 14px;
  line-height: 22px;
  color: #999999;
}
/* 图片在上, 文案在下列表 */
.column_list_item_image {
  width: 23%;
  display: inline-block;
  margin-left: 2.66%;
}
.column_list_item_image:hover .title {
  color: #b59868 !important;
}
.column_list_item_image:nth-child(n + 5) {
  margin-top: 30px;
}
.column_list_item_image:nth-child(4n + 1) {
  margin-left: 0;
}
.column_list_item_image .image_wrap {
  width: 100%;
  height: 156px;
}
.column_list_item_image .image_wrap img {
  width: 100%;
  height: 100%;
}
.column_list_item_image .list_item_content .title {
  font-size: 18px;
  color: #333333;
  font-weight: bold;
  padding: 11px 0;
}
.column_list_item_image .list_item_content .content {
  font-size: 14px;
  line-height: 22px;
  color: #999999;
}
/* 移动端样式兼容 */
@media (min-width: 200px) and (max-width: 991px) {
  .search_con {
    padding: 20px 0 30px;
    min-height: auto;
    background: #fff;
  }
  .search_con .container {
    padding: 0 15px;
  }
  /* 暂无数据样式 */
  .data_empty {
    text-align: center;
  }
  .data_empty_tip {
    font-size: 17px;
  }
  /* 搜索标题 */
  .search_tit {
    font-size: 17px;
    padding-top: 0;
    color: #666;
  }
  .search_key {
    color: #0068bf;
  }
  /* 搜索tab切换导航 */
  .search_nav {
    margin-top: 20px;
    padding: 18px 15px;
  }
  .search_nav_title {
    color: #333333;
    font-size: 17px;
    text-align: center;
    float: none;
    margin-bottom: 15px;
  }
  .search_nav_title:after {
    content: "";
    display: none;
  }
  .search_nav_tab {
    float: none;
    white-space: nowrap;
    font-size: 18px;
    overflow: auto;
    text-align: center;
  }
  .search_nav_tab::-webkit-scrollbar {
    width: 0px;
  }
  .search_nav_tab_item {
    padding: 11px 15px;
    border-radius: 2px;
    font-size: 13px;
    background-color: #f7f7f7;
    color: #666666;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
  }
  .search_nav_tab_item + .search_nav_tab_item {
    margin-left: 15px;
  }
  .search_nav_tab_item:hover {
    color: #666666;
    background-color: #f7f7f7;
  }
  .search_nav_tab_item.active {
    color: #fff;
    background-color: #0068bf;
    position: relative;
  }
  .search_nav_tab_item:hover:after,
  .search_nav_tab_item.active:after {
    content: "";
    display: none;
  }
  /* 搜索结果列表 */
  .search_list {
    margin-top: 20px;
  }
  /* 图片在左, 文字在右列表样式 */
  .row_list_item_image {
    padding: 0;
    width: 100%;
    min-height: 69px;
  }
  .row_list_item_image + .row_list_item_image {
    margin-top: 20px;
  }
  .row_list_item_image:nth-child(2n) {
    margin-left: 0;
  }
  .row_list_item_image .image_wrap {
    width: 110px;
    height: 69px;
  }
  .row_list_item_image .image_wrap img {
    width: 100%;
    height: 100%;
  }
  .row_list_item_image .list_item_content {
    padding-left: 140px;
  }
  .row_list_item_image .list_item_content .title {
    font-size: 14px;
    font-weight: normal;
    padding: 0 0 11px 0;
  }
  .row_list_item_image .list_item_content .content {
    font-size: 12px;
    line-height: 19px;
  }
  /* 无图片列表样式 */
  .row_list_item_image_null {
    display: inline-block;
    padding: 0;
    width: 100%;
    padding: 20px 0;
    background-color: #fff;
    min-height: auto;
    border-bottom: 1px solid #e6e6e6;
  }
  .row_list_item_image_null:nth-child(n + 3) {
    margin-top: 0;
  }
  .row_list_item_image_null:nth-child(2n) {
    margin-left: 0;
  }

  .row_list_item_image_null .list_item_content .title {
    font-size: 15px;
    font-weight: normal;
    padding: 0;
    padding-bottom: 11px;
  }
  .row_list_item_image_null .list_item_content .content {
    font-size: 13px;
    line-height: 20px;
  }
  /* 图片在上, 文案在下列表 */
  .column_list {
    display: flex;
    flex-wrap: wrap;
  }
  .column_list_item_image {
    margin: 0;
    padding: 0;
    width: 46%;
    display: block;
  }
  .column_list_item_image:nth-child(n + 3) {
    margin-top: 20px;
  }
  .column_list_item_image:nth-child(2n) {
    margin-left: 8%;
  }
  .column_list_item_image:nth-child(2n + 1) {
    margin-left: 0;
  }

  .column_list_item_image .image_wrap {
    width: 100%;
    height: 94px;
  }
  .column_list_item_image .image_wrap img {
    width: 100%;
    height: 100%;
  }
  .column_list_item_image .list_item_content .title {
    font-size: 15px;
    font-weight: normal;
    color: #333333;
    padding: 11px 0;
  }
  .column_list_item_image .list_item_content .content {
    font-size: 12px;
    font-weight: normal;
    color: #999999;
  }
}
