/* 新闻内容区域样式 */
.news-content-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 标签页导航 */
.news-tabs {
  margin-bottom: 40px;
  background: #fff;
  border-radius: 8px;
  padding: 0;
}

.tab-nav {
  display: flex;
  justify-content: flex-start;
  gap: 0;
  padding: 0 20px;
  position: relative;
}

.tab-nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #e0e0e0;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 20px 10px;
  font-size: 16px;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  margin-right: 60px;
}

.tab-btn:hover {
  color: #2e2cfe;
}

.tab-btn.active {

  color: #2e2cfe;
  border: none;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: #2e2cfe;
  z-index: 1;
}

/* 主要内容区域 */
.news-main-content {
  width: 1200px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  background: #f5f7fa;
  overflow: hidden;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  gap: 40px;
  padding: 40px;
}

/* 左侧内容 */
.left-content {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* 文章列表 */
.news-list {
  margin-bottom: 40px;
  padding: 0 20px;
}

.news-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #f3f4f6;
}
.news-item:hover .news-title{
  color: #2e2cfe !important
 }

.news-item:last-child {
  border-bottom: none;
}

.news-image {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.news-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.news-meta {
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.news-date {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 5px;
}

.icon-clock::before {
  content: "🕐";
}

.news-category {
  font-size: 14px;
  color: #4f46e5;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(79, 70, 229, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

.icon-tag::before {
  content: "🏷️";
}

.news-excerpt {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 15px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 3;
}

.news-actions {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-detail {
  color: #4f46e5;
  text-decoration: underline;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-detail:hover {
  color: #4f46e5;
}

.pagination {
  padding: 0 0 60px 0;
}

.pagination ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination ul strong {
  color: #4f46e5;
  font-weight: normal;
  padding: 0 2px;
}

.pagination ul li {
}

.pagination ul li a {
  display: block;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-left: 15px;
}

.pagination ul li a i {
  width: 100%;
  height: 100%;
  display: block;
}

.pagination ul li a i.pre {
  background: url(../images/ico_jt9l.png) no-repeat 50%;
}

.pagination ul li a i.next {
  background: url(../images/ico_jt9l.png) no-repeat 50%;
  transform: scaleX(-1);
}

.pagination ul li.active a {
  border-radius: 6px;
  background: #e3e5f9;
  color: #4f46e5;
}


/* 分页 */
/* .pagination {
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding: 20px;
			border-top: 1px solid #f3f4f6;
		}

		.pagination-info {
			font-size: 14px;
			color: #6b7280;
		}

		.pagination-nav {
			display: flex;
			align-items: center;
			gap: 8px;
			flex-wrap: wrap;
		}

		.page-btn,
		.page-number {
			display: flex;
			align-items: center;
			justify-content: center;
			min-width: 36px;
			height: 36px;
			border: 1px solid #e5e7eb;
			border-radius: 6px;
			text-decoration: none;
			color: #374151;
			font-size: 14px;
			transition: all 0.3s ease;
			padding: 0 8px;
		}

		.page-number.active {
			background: #6b17ff;
			color: #fff;
			border-color: #6b17ff;
		}

		.page-btn:hover,
		.page-number:hover {
			border-color: #6b17ff;
			color: #6b17ff;
		}

		.page-ellipsis {
			padding: 0 8px;
			color: #6b7280;
			display: flex;
			align-items: center;
			height: 36px;
		} */

/* 问答列表 */
.qa-list {
  margin-bottom: 40px;
}

.qa-item {
  padding: 20px 0;
  border-bottom: 1px solid #f3f4f6;
}

.qa-item:last-child {
  border-bottom: none;
}

.qa-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.qa-question h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.qa-date {
  font-size: 12px;
  color: #6b7280;
}

.qa-answer {
  margin-bottom: 15px;
}

.qa-answer p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.qa-actions {
  text-align: right;
}

.bottom-border {
  border-bottom: 1px solid #f3f4f6;
}

.bottom-border:hover {
  border-bottom: 1px solid #f3f4f6;
}

/* 右侧边栏 */
.right-sidebar {
  width: 300px;
  flex-shrink: 0;
}

.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
}

.widget-header {
  background: linear-gradient(270deg, #a202ff 0%, #6b17ff 49%, #2430fe 100%);
  color: #fff;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-header-pc {
  display: block;
}
.widget-header-mobile {
  
  display: none;
}

.widget-header img {
  width: 20px;
}

.widget-header h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.icon-dot::before {
  content: "●";
  font-size: 12px;
}

.widget-content {
  padding: 20px;
}

/* 热门资讯列表 */
.hot-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hot-news-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}

.hot-news-list li:last-child {
  border-bottom: none;
}

.list-dot {
  width: 24px;
  height: 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  flex-shrink: 0;
 
}

.hot-news-list li:nth-child(1) .list-dot {
  background: url(/template/pc/skin/images/nw_01.png) no-repeat center center;
}

.hot-news-list li:nth-child(2) .list-dot {
  background: url(/template/pc/skin/images/nw_02.png) no-repeat center center;
}

.hot-news-list li:nth-child(3) .list-dot {
  background: url(/template/pc/skin/images/nw_03.png) no-repeat center center;
}

.hot-news-list li:nth-child(4) .list-dot {
  background: url(/template/pc/skin/images/nw_04.png) no-repeat center center;
}

.hot-news-list li:nth-child(5) .list-dot {
  background: url(/template/pc/skin/images/nw_05.png) no-repeat center center;
}

.hot-news-list li:nth-child(6) .list-dot {
  background: url(/template/pc/skin/images/nw_06.png) no-repeat center center;
}

.hot-news-list li:nth-child(7) .list-dot {
  background: url(/template/pc/skin/images/nw_07.png) no-repeat center center;
}

.hot-news-list li:nth-child(8) .list-dot {
  background: url(/template/pc/skin/images/nw_08.png) no-repeat center center;
}

.hot-news-list a {
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.hot-news-list a:hover {
  color: #6b17ff;
}

/* 标签列表 */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  background: rgba(79, 70, 229, 0.1);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #4f46e5;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag-item:hover {
  background: #5a14e6;
}

/* FAQ样式 */
.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.q-icon {
  background: #2e2cfe;
}

.a-icon {
  background: #10b981;
}

.faq-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  flex: 1;
}
.dqlm {
  width: 1200px;
  margin: 0 auto;
  line-height: 50px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  color: rgba(3, 2, 41, 0.4);
}

.dqlm a {
  color: rgba(3, 2, 41, 0.4);
  padding: 0 5px;
}
.dqlm a:last-child {
  color: #030229;
}
.dqlm i {
  background: url(../images/ico_dq.png) no-repeat center;
  width: 16px;
  display: block;
  height: 16px;
  margin-right: 5px;
  cursor: pointer;
}

.dqlm a img {
  padding-top: 5px;
}

.news-content-section {
  background: #f8f9fa;
  padding: 30px 0 60px 0;
}

.left-detail-content {
  background: none;
  box-shadow: none;
}
.newxbt {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin: 15px 0 30px;
}
.newxbt span {
  text-align: center;
  height: 23px;
  line-height: 23px;
  background: #ff4f4f;
  border-radius: 0 12px 0 12px;
  font-size: 12px;
}
.newxbt span.hydc {
  background: linear-gradient(270deg, #A202FF 0%, #6B17FF 49%, #2430FE 100%);
}
.newxbt span.cpzs {
  background: #f88e23;
}
.newxbt span a {
  color: #fff;
  display: block;
  padding: 0 12px;
}
.newxbt em {
  color: #9e9e9e;
  margin-left: 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.newxbt em i {
  height: 15px;
  display: inline-block;
  width: 1px;
  background: #9e9e9e;
  margin: 0 8px;
}
.newbody img {
  max-width: 100% !important;
  height: auto !important;
  padding: 4px 0;
}
.newnext {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin: 50px 0;
  justify-content: center;
}
.newnext a {
  border: 1px solid rgba(79, 70, 229, 0.1);
  border-radius: 12px;
  line-height: 48px;
  width: 168px;
  text-align: center;
  color: #7f8695;
  margin-right: 20px;
  font-size: 18px;
}
.newnext a:hover {
  color: #333;
  border: 1px solid #4f46e5;
}
.xgwztj h3 {
  font-size: 24px;
  color: #4f46e5;
  padding-left: 30px;
  background: url(../images/ns_08.png) no-repeat 0;
}
.xgwztj ul li {
  border-bottom: 1px dashed #d8d8d8;
  line-height: 50px;
}
.xgwztj ul li a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  font-size: 18px;
  align-items: center;
  justify-content: space-between;
}
.xgwztj ul li a span {
  font-size: 18px;
  font-weight: 500;
  width: 506px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.xgwztj ul li a em {
  font-size: 16px;
  opacity: 0.4;
}
/* 移动端响应式 */
@media (max-width: 768px) {
  .news-content-section {
    padding: 20px;
  }

  .news-main-content {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .left-content {
    width: 100%;
    border-radius: 8px;
  }

  .right-sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .sidebar-widget {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
  }

  .widget-header {
    background: #fff;
    color: #374151;
    padding: 15px 20px;
    border-bottom: 1px solid #f3f4f6;
  }
  .widget-header-pc {
    display: none;
  }
  .widget-header-mobile {
    
    display: block;
  }
  

  .widget-header img {
    width: 16px;
  }

  .widget-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
  }

  .widget-content {
    padding: 15px 20px;
  }

  .hot-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .hot-news-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
  }

  .hot-news-list li:last-child {
    border-bottom: none;
  }

  .list-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    flex-shrink: 0;
  }

  

  .hot-news-list a {
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
  }

  .hot-news-list a:hover {
    color: #2e2cfe;
    text-decoration: underline;
  }

  .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .tag-item {
    background: #e3f2fd;
    color: #1976d2;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .tag-item:hover {
    background: #bbdefb;
    color: #1565c0;
  }

  .news-tabs {
    margin-bottom: 0px;
  }

  .tab-nav {
    justify-content: space-between;
    padding: 0 15px;
  }

  .tab-btn {
    padding: 15px 20px;
    font-size: 16px;
    margin-right: 0;
    flex: 1;
    text-align: center;
  }

  .news-item {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
  }
 
  .news-image {
    width: 100%;
    height: 200px;
  }

  .news-title {
    font-size: 16px;
  }

  .news-excerpt {
    font-size: 13px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .pagination {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 15px;
  }

  .pagination-info {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .pagination-nav {
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .page-btn,
  .page-number {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
    padding: 0 6px;
  }

  .page-ellipsis {
    height: 32px;
    font-size: 13px;
  }

  .faq-item {
    margin-bottom: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .faq-question {
    margin-bottom: 10px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .faq-text {
    font-size: 13px;
  }
  .xgwztj{margin-bottom: 20rem;}
.xgwztj h3{line-height: 20rem;font-size: 16rem;    background: url(../images/ns_08.png) no-repeat 0;background-size: 20rem;color: #1A2233;margin-bottom: 16rem;}
.xgwztj ul li{margin-bottom: 5.7rem;padding-bottom: 5.9rem}
.xgwztj ul li a{line-height: 20rem;height: 20rem;font-size: 12rem;}

.xgwztj ul li a span{font-size:12rem;width: calc(100% - 125rem)}
.xgwztj ul li a em{font-size:13rem;width: 100rem;}
}

@media (max-width: 480px) {
  .news-content-section {
    padding: 16px;
  }

  .news-main-content {
    padding: 0px;
  }

  .tab-btn {
    padding: 12px 15px;
    font-size: 14px;
  }

  .news-title {
    font-size: 15px;
  }

  .news-excerpt {
    font-size: 12px;
  }

  .widget-content {
    padding: 15px;
  }

  .tag-list {
    gap: 6px;
  }

  .tag-item {
    font-size: 11px;
    padding: 4px 8px;
  }

  .faq-item {
    padding: 12px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .faq-icon {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .faq-text {
    font-size: 12px;
  }

  .sidebar-widget {
    margin-bottom: 15px;
  }

  .widget-header {
    padding: 12px 15px;
  }

  .widget-header img {
    width: 14px;
  }

  .widget-header h3 {
    font-size: 14px;
  }

  .widget-content {
    padding: 12px 15px;
  }

  .hot-news-list li {
    padding: 10px 0;
    gap: 10px;
  }

  .list-dot {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .hot-news-list a {
    font-size: 13px;
  }

  .tag-item {
    font-size: 11px;
    padding: 5px 10px;
  }

  .pagination {
    padding: 12px;
  }

  .pagination-info {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .pagination-nav {
    gap: 4px;
  }

  .page-btn,
  .page-number {
    min-width: 28px;
    height: 28px;
    font-size: 12px;
    padding: 0 4px;
  }

  .page-ellipsis {
    height: 28px;
    font-size: 12px;
    padding: 0 4px;
  }
}
