@font-face {
  font-family: Regular;
  src: url(font/SourceHanSansCN-Regular.otf);
}
html,body{
    font-family: Regular !important;
}
.news_list {
  margin: 40px auto;
}
.news_list .news_item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.news_list .news_item .news_item_left {
  width: 35%;
  margin: 20px 0;
  overflow: hidden;
  z-index: 9;
}
.news_list .news_item .news_item_left img {
  width: 100%;
  transition: all 1.5s;
}
.news_list .news_item .nes_item_right {
  width: 65%;
  margin-left: -120px;
  padding: 20px 10px 20px 140px;
  border-radius: 3px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 0;
  border: 1px solid transparent;
  position: relative;
}
.news_list .news_item .nes_item_right:hover .title {
    color: var(--themeColor);
}
.news_list .news_item .nes_item_right svg {
  position: absolute;
  top: 0;
  left: 0;
}
.news_list .news_item .nes_item_right svg path {
  stroke: var(--themeColor);
  transition: 1s;
  stroke-dashoffset: 2400;
  stroke-dasharray: 2400;
}
.news_list .news_item .nes_item_right:hover path {
  stroke-dashoffset: 0;
}
.news_list .news_item .nes_item_right .title {
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  color: #333;
}
.news_list .news_item .nes_item_right .title::after {
  content: "";
  width: 2em;
  height: 2px;
  border-radius: 2px;
  background: #333;
  display: block;
  transition: all 0.3s;
  position: absolute;
  top: 3.7em;
}
.news_list .news_item .nes_item_right .des {
  transition: all 0.3s;
}
.news_list .news_item .nes_item_right .date {
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
  transform: translateY(20px);
}
.news_list .news_item:hover .news_item_left img {
  transform: scale(1.1);
}
.news_list .news_item:hover .nes_item_right {
  border-color: var(--themeColor);
}
.news_list .news_item:hover .nes_item_right .title::after {
  background: var(--themeColor);
}
.news_list .news_item:hover .nes_item_right .date {
  border-color: transparent;
}
.news_list .news_item:hover .nes_item_right .des {
  color: var(--themeColor);
}
/* 新闻详情 */
.news_des .des_title {
  text-align: center;
}
.news_des .just {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  color: #999;
}
.news_des .just .left,
.news_des .just .right {
  color: #999;
  max-width: 45%;
}
.news_des .just .left:hover,
.news_des .just .right:hover {
  color: var(--themeColor);
}
.news_des .des_main {
  margin: 40px auto;
}
.news_des .des_main img {
  max-width: 1000px !important;
  width: 100% !important;
  height: auto !important;
  margin: 10px auto !important;
  display: block !important;
}
.news_des .des_main .img_warp {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
}
.news_des .des_main .img_warp img {
  width: 49% !important;
}
.news_des .des_main .text_warp {
  margin-bottom: 40px;
}
.news_des .des_main .text_warp h6 {
  line-height: 3;
}
/* Brand video */
.news_video {
  margin-bottom: 40px;
}
.video_warp {
  position: relative;
}
.video_warp video {
  display: block;
}
.video_warp .cover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s;
}
.video_warp .cover i.iconfont {
  color: #ccc;
  opacity: 0.6;
  font-size: 150px;
  cursor: pointer;
  transition: all 0.3s;
}
.video_warp .cover i.iconfont:hover {
  color: var(--themeColor);
  opacity: 1;
}
.video_warp .cover.op0 {
  opacity: 0;
}
@media (max-width: 1450px) {
  .news_list .news_item .news_item_left {
    width: 40%;
  }
   .news_list .news_item .nes_item_right .title::after{
      top: auto;
  }
}
@media (max-width: 1000px) {
  .news_list .news_item .news_item_left img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .news_list .news_item .news_item_left {
    width: 50%;
  }
  .news_list .news_item .nes_item_right {
    width: 50%;
    flex: none;
  }
  .video_warp .cover i.iconfont {
    font-size: 15vw;
  }
}
@media (max-width: 850px) {
  .news_list .news_item {
    flex-wrap: wrap;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .news_list .news_item:last-child {
    margin-bottom: 0;
  }
  .news_list .news_item .news_item_left {
    width: 100%;
    margin-top: 0;
  }
  .news_list .news_item .nes_item_right {
    width: calc(100% - 20px);
    padding: 0 10px;
    margin: 0;
  }
  .news_list .news_item .nes_item_right .date {
    padding-bottom: 15px;
    border-bottom: none;
    transform: translate(0);
    font-size: 12px;
  }
  .news_list .news_item .nes_item_right .title {
    margin-bottom: 5px;
    font-size: 15px;
  }
  .news_list .news_item .nes_item_right .title::after {
    display: none;
  }
  .news_list .news_item .nes_item_right .des.dh_text3 {
    -webkit-line-clamp: 1;
  }
}
@media (max-width: 680px) {
  .news_des .des_title {
    font-size: 20px;
  }
  .news_des .just {
    margin-top: 7px;
    padding-top: 7px;
  }
  .news_des .just .for,
  .news_des .just .date {
    font-size: 13px;
  }
  .news_des .just .left,
  .news_des .just .right {
    width: 45%;
    font-size: 13px;
  }
  .news_des .just .left {
    text-align: left;
  }
  .news_des .just .right {
    text-align: right;
  }
}
@media (max-width: 540px) {
  .news_des .des_title {
    font-size: 16px;
  }
}
