@charset "utf-8";
.banner_box {
  position: relative;
}
.banner_box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
.banner_box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.banner_text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}
.banner_text h1 {
  font-size: 40px;
  color: #333;
}
.crumb_nav {
  padding: 15px 0;
  font-size: 14px;
}
.crumb_item {
  display: inline-block;
  cursor: pointer;
  color: #999;
}
.crumb_item a {
  color: #777;
  transition: all .3s;
}
.crumb_item:after {
  content: ">";
  margin: 0 8px;
}
.crumb_item:last-child:after {
  content: "";
}
.crumb_item.active a, .crumb_item:hover a{
  color: #333;
}
.services_item {
  display: flex;
  width: 100%;
  flex-shrink: 0;
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  transition: all .3s ease;
}
.item_img {
  position: relative;
  width: 250px;
  height: 140px;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 3px;
  flex-shrink: 0;
}
.item_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.item_img img:hover {
  transform: scale(1.03);
}
.item_content {
  position: relative;
  width: 100%;
  flex-basis: auto;
  flex-shrink: 1;
}
.item_title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.46;
  cursor: pointer;
}
.item_title a {
  color: #181818;
  -webkit-line-clamp: 2;
  text-decoration: none;
  transition: all 0.3s ease;
}
.item_title a:hover {
  color: #1664FF;
}
.item_excerpt {
  height:72px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
  color: #666;
  -webkit-line-clamp: 3;
}
.item_excerpt, .item_title a {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.item_bottom {
  color: #999;
  font-size: 14px;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.pagination li {
  color: #666;
  font-size: 14px;
  margin: 0 5px;
  cursor: pointer;
  background-color: rgba(38,38,38,0.05);
  padding: 8px 14px;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.pagination li:hover  {
  color: #fff;
  background-color: rgba(38,38,38,0.3);
}
.pagination li.active {
  color: #fff;
  background-color: #1664FF;
}

.detail_main_content {
  padding: 30px 20px;
}
.news_title {
  position: relative;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: bold;
}
.news_title::after {
  /* content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #1664FF; */
}
.news_subtitle {
  margin-bottom: 20px;
  font-size: 14px;
}
.news_time {
  display: block;
  color: #999;
  margin-top: 10px;
}
.news_content {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}
.news_footer p {
  padding: 5px 0;
}
.news_footer p a {
  color: #666;
}
.news_footer p a:hover {
  color: #1664FF;
}

@media screen and (max-width:767px) {
  .services_item {
    padding: 0 0 15px;
    margin-bottom: 15px;
  }
  .item_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .item_img {
    width: 125px;
    height: 70px;
    margin-right: 10px;
  }
  .item_title {
    font-size: 18px;
    line-height: 1.34;
  }
  .item_excerpt {
    display: none;
  }
  .item_bottom {
    font-size: 12px;
  }
}