*{
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.isPc {
  display: block;
}
.isMobile {
  display: none;
}
body {
  background-color: #F8F9FC;
}
.two_lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
}
.three_lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
}
.banner {
  height: 350px;
  position: relative;
  margin-bottom: 40px;
}
.banner_img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.banner_text {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.banner h1 {
  font-size: 60px;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
  font-weight: bold;
  font-family: "NotoSansExtraBold", "notosansbold","Noto Sans","Helvetica","Arial",sans-serif;
}
.banner p {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}
.recommend {
  display: flex;
  gap: 35px;
  margin-bottom: 40px;
}
.recommend_item {
  padding: 24px;
  background-color: #fff;
  border-radius: 8px;
  flex: 1;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recommend_img {
  margin-bottom: 20px;
  height: 300px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}
.recommend_title {
  font-size: 20px;
  line-height: normal;
  color: #222;
  font-weight: bold;
  font-family: "NotoSansExtraBold", "notosansbold","Noto Sans","Helvetica","Arial",sans-serif;
  margin-bottom: 20px;
}
.recommend_description {
  font-size: 14px;
  line-height: normal ;
  color: #666;
  margin-bottom: 24px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;	
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.recommend_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news_tag {
  display: inline-block;
  background: #F5F8FF;
  border-radius: 6px;
  border: 1px solid #DEE7F3;
  font-size: 14px;
  color: #222;
  padding: 4px 16px;
}
.news_tag.isMobile {
  display:none;
}
.recommend_date {
  font-size: 14px;
  color: #666;
}
.news {
  display: flex;
  gap: 20px;
  margin-bottom: 100px;
}
.news_left {
  width: 260px;
  margin-bottom: 45px;
}
.news_filter {
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
}
.news_left_header {
  padding: 19px 20px 16px;
  font-size: 18px;
  font-weight: bold;
  font-family: "NotoSansExtraBold", "notosansbold","Noto Sans","Helvetica","Arial",sans-serif;
  color: #000;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 0;
}
.news_left .news_left_content {
  padding: 14px 10px;
}
.news_filter_ul li {
  padding: 13px 10px;
  cursor: pointer;
  color: #4F4F4F;
  border-radius: 4px;
}
.news_filter_ul li.active, .news_filter_ul li.active:hover {
  background-color: #EFF8FF;
  color: #000;
  font-weight: bold;
  font-family: "NotoSansExtraBold", "notosansbold","Noto Sans","Helvetica","Arial",sans-serif;
}
.news_filter_ul li:hover {
  background-color: #F5F5F5;
}
.news_link {
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
}
.news_link .news_left_content {
  display: flex;
  justify-content: space-between;
  padding: 20px 20px 25px;

}
.news_link .news_left_content img {
  cursor: pointer;
}

.news_form .news_left_content {
  padding: 30px 20px;
}
.news_form {
  background-color: #fff;
  border-radius: 8px;
}
.news_right {
  flex: 1;
}
.news_empty {
  height: 630px;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 8px;
}
.news_empty_icon {
  width: 64px;
  margin-bottom: 12px;
}
.news_empty_text {
  font-size: 14px;
  color: #000;
}
.news_ul {
  margin-top: 0;
}
.news_item {
  padding: 30px 40px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  gap: 50px;
  margin-bottom: 20px;
  cursor: pointer;
}

.news_item_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.news_item_left .news_tag {
  margin-bottom: 16px;
}
.news_item_title {
  font-size: 20px;
  color: #222;
  font-weight: bold;
  font-family: "NotoSansExtraBold", "notosansbold","Noto Sans","Helvetica","Arial",sans-serif;
  margin-bottom: 16px;
}
.news_item_describe,
.news_item_date {
  font-size: 14px;
  color: #666;
}
.news_item_right {
  flex-shrink: 0;
}
.news_item_right img {
  width: 281px;
  height: 177px;
  object-fit: cover;
  object-position:center;
  border-radius: 4px;
  display: block;
  border: 1px solid #eee;
}
.pagination_box {
  padding: 24px;
  text-align: center;
  background-color: #fff;
  display: flex;
  justify-content: center;
  border-radius: 8px;
}

@media(min-width:992px){
  .recommend_item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 30px 0px rgba(0,0,0,0.1);
  }
  .news_item:hover .news_item_title {
    color: #005BFE;
    transition: all 0.3s;
  }
  .news_item:hover .news_item_right img {
    opacity: 0.8;
    transition: all 0.3s;
  }
}
@media(max-width:992px) {
  .banner {
    height: 210px;
    margin-bottom: 24px;
  }
  .banner_img {
    height: 210px;
  }
}
@media(max-width:992px){
  .isPc {
    display: none;
  }
  .isMobile {
    display: block;
  }
  .banner {
    height: 210px;
    margin-bottom: 24px;
  }
  .banner_img {
    height: 210px;
  }
  .banner_text {
    width: 92%;
  }
  .banner h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .recommend {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
  }
  .recommend_img {
    height: auto;
    aspect-ratio: 16/9;
    margin-bottom: 24px;
  }
  .recommend_title {
    font-size: 18px;
    margin-bottom: 20px;

  }
  .recommend_description {
    font-size: 14px;
    color: #666;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    margin-bottom: 60px;
  }
  .news {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .news_link {
    display: none;
  }
  .news_left {
    width: 100%;
    margin-bottom: 0;
  }
  .news_left_header {
    padding: 19px 20px 16px;
  }
  .news_left .news_left_content {
    padding: 16px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
  }
  .news_filter {
    margin-bottom: 0;
  }
  .news_filter_ul li {
    margin-right: 10px;
    padding: 13px 8px;
  }
  .news_item {
    padding: 20px;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .news_item_right img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .news_item_title {
    font-size: 16px;
    line-height: normal;
  }
  .news_item_describe {
    font-size: 14px;
    line-height: normal;
    color: #666;
    margin-bottom: 52px;
  }
  .news_item_date_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .news_item_left .news_tag {
    margin-bottom: 0;
  }
  .news_item_date {
    margin-bottom: 0;
  }
  .pagination_box {
    margin: 0 -4%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    background-color: #fff;
    padding: 24px;
  }

  .news_form {
    border: 1px solid #E4E6F0;
    border-radius: 16px;
    margin-bottom: 30px;
  }
}