.main .news_list a {
  display: flex;
  margin-bottom: 30px;
}
.main .news_list a .news_left {
  width: 30%;
  margin-right: 40px;
}
.main .news_list a .news_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.main .news_list a .news_right {
  flex: 1;
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
}
.main .news_list a .news_right .ti {
  font-size: 20px;
  color: #333;
  font-weight: Medium;
}
.main .news_list a .news_right p {
  transition: all 0.3s;
  margin: 15px 0;
  color: #888;
}
.main .news_list a .news_right .bottom {
  color: #999;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main .news_list a .news_right .bottom .link {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.main .news_list a .news_right .bottom .link .iconfont {
  font-size: 24px;
}
.main .news_list a:hover .news_right {
  border-color: #93B4FC;
}
.main .news_list a:hover .news_right .ti,
.main .news_list a:hover .news_right .bottom,
.main .news_list a:hover .news_right p {
  color: var(--themeColor);
}
/* 详情页面 */
.main .des_title {
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.main .just {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  color: #999;
}
.main .just .left,
.main .just .right {
  color: #999;
}
.main .just .left:hover,
.main .just .right:hover {
  color: var(--themeColor);
}
.main .des_main {
  margin: 20px auto 40px;
}
.main .des_main img {
  max-width: 100% !important;
  height: auto !important;
  margin: 10px auto !important;
  display: block !important;
}
.main .des_main .img_warp {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
}
.main .des_main .img_warp img {
  width: 46% !important;
}
.main .des_main .text_warp {
  margin-bottom: 40px;
}
.main .des_main .text_warp h6 {
  line-height: 3;
}
@media (max-width: 780px) {
  .main .news_list a {
    display: block;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #eee;
  }
  .main .news_list a .news_left {
    width: 100%;
  }
  .main .news_list a .news_left img {
    border-radius: 0;
  }
  .main .news_list a .news_right {
    padding: 20px;
    border-bottom: none;
  }
}
