.news_banner {
  width: 100%;
  margin: 0 auto 32px auto;
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
}
.news_banner img {
  width: 100%;
  max-width: 900px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  background: #f4f8ff;
}
.news_main_area {
  padding-top: 95px;
  padding-bottom: 30px;
}
.news_tabs {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 18px;
  color: #888;
  margin-bottom: 18px;
  padding-left: 12px;
  background: none;
  border: none;
}
.news_tabs_title {
  font-size: 16px;
  font-weight: 500;
  margin-right: 18px;
  margin-bottom: 0;
  display: inline-block;
  white-space: nowrap;
}
.news_tabs_btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.news_tabs .tab {
  display: inline-block;
  margin-right: 16px;
  font-size: 15px;
  color: #333;
  background: none;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
}
.news_tabs .tab.active {
  background: #0c3eb9;
  color: #fff;
  font-weight: 600;
}
.news_tabs .tab:not(.active):hover {
  background: none;
  color: #333;
}
.news_tabs .tab:last-child {
  margin-right: 0;
}
.news_list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 2.5%;
  justify-content: flex-start;
  margin-top: 32px;
  min-height: 500px;
  align-items: flex-start;
}
.news_list a.news_item {
  text-decoration: none;
  color: inherit;
  display: flex;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(12,62,185,0.08);
  transition: box-shadow 0.2s, border 0.2s;
  border: 1.5px solid #e3eaff;
  padding: 0;
  align-items: center;
  margin-bottom: 0;
}
.news_list a.news_item:hover {
  box-shadow: 0 2px 12px rgba(12,62,185,0.08);
  border: 1.5px solid #e3eaff;
  background: #fff;
}
.news_list a.news_item:visited {
  color: inherit;
}
.news_item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
  overflow: hidden;
  width: 31%;
  min-width: 320px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
  text-decoration: none;
  border: none;
  height: 360px;
}
.news_item:hover {
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
  text-decoration: none;
}
.news_thumb {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: #f4f8ff;
}
.news_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 1s;
}
.news_thumb:hover img {
  transform: scale(1.2);
}
.news_content {
  background: #fff;
  padding: 23px 24px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  box-sizing: border-box;
}
.news_date {
  color: #4b4e6d;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
}
.news_content h2 {
  font-size: 18px;
  color: #23255a;
  font-weight: 500;
  margin: 5px 0;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.news_content p {
  color: #6c6f7c;
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  width: 100%;
}
.news_pagination {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 32px 0 0 0;
}
.news_pagination button {
  min-width: 120px;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #0c3eb9;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.news_pagination button:hover {
  background: #1856e0;
}
@media (max-width: 900px) {
  .news_banner img {
    height: 120px;
    max-width: 100%;
  }
  .news_item {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 8px;
  }
  .news_thumb {
    min-width: 100%;
    max-width: 100%;
    height: 80px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .news_content h2 {
    font-size: 18px;
  }
  .news_pagination {
    gap: 20px;
  }
}
#news-detail-container{
  min-height: 700px;
}
.news_detail_banner {
  width: 100%;
  margin: 0 auto 32px auto;
  display: flex;
  justify-content: center;
}
.news_detail_banner img {
  width: 100%;
  max-width: 1100px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  background: #f4f8ff;
}
.news_detail_breadcrumb {
  border: 1px solid #fff;
  background: #fff;
  color: #888;
  font-size: 14px;
  box-shadow: 0px 0px 17px 0px #e8f0fd;
  border-radius: 4px 4px 4px 4px;
  margin: 37px 0 20px;
  padding: 9px 14px;
}
.news_detail_title {
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: #232323;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.news_detail_content_card {
  background: #fff;
  border: 1.5px solid #fff;
  min-height: 600px;
  padding: 20px 24px 32px 24px;
  margin-bottom: 60px;
  box-shadow: 0px 0px 17px 0px #e8f0fd;
  border-radius: 4px 4px 4px 4px;
}
.news_detail_time{
  font-size: 12px;
}
.news_detail_pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 32px 0 0 0;
}
.news_detail_pagination button {
  min-width: 120px;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #0c3eb9;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin: 0 10px;
}
.news_detail_pagination button:hover {
  background: #1856e0;
  color: #fff;
}
.news_detail_pagination_links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 32px 0 0 0;
  gap: 30px;
}
.news_detail_prev_link {
  text-align: left;
  font-size: 17px;
  color: #232323;
  flex: 1;
}
.news_detail_next_link {
  text-align: right;
  font-size: 17px;
  color: #232323;
  flex: 1;
}
.news_detail_prev_link:hover,
.news_detail_next_link:hover {
  color: #0c3eb9;
  cursor: pointer;
}
@media (max-width: 700px) {
  .news_detail_pagination_links {
    flex-direction: column;
    gap: 10px;
  }
  .news_detail_prev_link, .news_detail_next_link {
    text-align: left;
    font-size: 15px;
  }
}
@media (max-width: 900px) {
  .news_detail_banner img {
    height: 120px;
    max-width: 100%;
  }
  .news_detail_content_card {
    padding: 16px 6px 16px 6px;
    min-height: 200px;
  }
  .news_detail_title {
    font-size: 20px;
  }
  .news_detail_pagination button {
    min-width: 80px;
    font-size: 15px;
    padding: 8px 0;
  }
}
.news_detail_area{
  padding-bottom: 70px;
}
.news_detail_meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 18px;
  display: flex;
  gap: 32px;
}
.news_detail_img {
  display: block;
  margin: 24px auto;
  max-width: 100%;
  box-shadow: 0 2px 8px rgba(12,62,185,0.08);
}
.news_detail_content_card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0c3eb9;
  text-align: left;
}
.news_detail_content_card p {
  font-size: 16px;
  color: #232323;
  line-height: 2;
  margin-bottom: 16px;
}
#template_news_detail_desc p{
  text-wrap: wrap;
}
#template_news_detail_desc p span{
  text-wrap: wrap;
}
@media (max-width: 1100px) {
  .news_item { width: 48%; min-width: 0; }
}
@media (max-width: 700px) {
  .news_list { gap: 18px 0; }
  .news_item { width: 100%; min-width: 0; }
  .news_thumb { height: 230px; }
  .news_content { padding: 16px 12px 12px 12px; }
}