﻿.news-dashboard {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  overflow: hidden;
}

.left-panel {
  flex: 1.0;
  min-width: 360px;
  background: #fefefe;
  padding: 40px 0;
}

.right-panel {
  flex: 1.2;
  min-width: 320px;
  background: #ffffff;
  padding: 40px 36px 48px 36px;
}

.tab-nav {
  display: flex;
  gap: 12px;
  border-bottom: 2px solid #eef2f6;
  padding-bottom: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-item {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 48px;
  cursor: pointer;
  background: transparent;
  color: #5a6874;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.tab-item:hover {
  background: #eef2fc;
  color: #122a88;
}

.tab-item.active {
  background: #122a88;
  color: white;
  box-shadow: 0 6px 12px -6px rgba(30, 111, 223, 0.25);
}

.news-list-container {
  margin-top: 12px;
}

.news-list {
  list-style: none;
  display: none;
}

.news-list.active {
  display: block;
}

.news-item {
  list-style: none;
  padding: 18px 0 16px 0;
  border-bottom: 1px solid #eef2f6;
  transition: background 0.1s;
  cursor: pointer;
}

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

.news-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  color: #1e2a3a;
}

.news-title-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex: 1;
}

.arrow-icon {
  font-size: 18px;
  color: #122a88;
  font-weight: 500;
  transition: transform 0.1s;
  display: inline-block;
  width: 20px;
  text-align: left;
}

.news-title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  color: #1f2d3d;
  transition: color 0.2s;
}

.news-item:hover .news-title {
  color: #122a88;
}

.news-item:hover .arrow-icon {
  transform: translateX(3px);
}

.news-date {
  font-size: 14px;
  color: #8a99a8;
  white-space: nowrap;
  padding-left: 12px;
}

.news-item.selected {
  background-color: #f0f7ff;
  border-radius: 12px;
  margin: 0 -12px;
  padding-left: 12px;
  padding-right: 12px;
}

.article-image {
  width: 100%;
  border-radius: 13px;
  overflow: hidden;
  margin-bottom: 32px;
  background: #f0f4f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.article-date-block {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eef2f6;
  display: inline-block;
}

.article-date {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  font-family: 'Inter', system-ui;
}

.article-year-month {
  font-size: 19px;
  font-weight: 500;
  color: #5b6e8c;
  letter-spacing: 0.5px;
}

.article-day {
  font-size: 32px;
  font-weight: 800;
  color: #122a88;
  line-height: 1;
  margin-left: 8px;
  margin-right: 6px;
}

.article-main-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0px 0 10px 0;
  color: #0f2b3d;
}

.article-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #4a627a;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-left: 4px solid #122a88;
  padding-left: 20px;
  line-height: 1.45;
}

.article-content-preview {
  font-size: 17px;
  line-height: 1.7;
  color: #2c3f4f;
  background: #fafcff;
  padding: 20px 0;
  border-radius: 16px;
}

.article-content-preview p {
  margin-bottom: 19px;
}

@media (max-width: 1024px) {
  .news-dashboard {
      gap: 32px;
  }
  
  .left-panel {
      padding: 32px 32px 40px 32px;
  }
  
  .right-panel {
      padding: 32px 28px 40px 28px;
  }
  
  .article-main-title {
      font-size: 32px;
  }
}

@media (max-width: 880px) {
  body {
      padding: 24px 20px;
  }

  .news-dashboard {
      flex-direction: column;
      border-radius: 28px;
      gap: 0;
  }

  .right-panel {
      border-left: none;
      border-top: 1px solid #eef2f6;
      padding: 32px 28px;
  }

  .left-panel {
      padding: 32px 28px;
  }

  .article-main-title {
      font-size: 32px;
  }

  .article-day {
      font-size: 45px;
  }
}

@media (max-width: 640px) {
  .left-panel {
      padding: 24px 20px;
  }
  
  .right-panel {
      padding: 24px 20px;
  }
  
  .tab-item {
      padding: 8px 18px;
      font-size: 15px;
  }

  .news-title {
      font-size: 15px;
  }
  
  .article-main-title {
      font-size: 29px;
  }
  
  .article-subtitle {
      font-size: 18px;
  }
}

@media (max-width: 550px) {
  .tab-item {
      padding: 6px 16px;
      font-size: 14px;
  }

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

  .article-main-title {
      font-size: 26px;
  }
  
  .article-day {
      font-size: 38px;
  }
  
  .article-year-month {
      font-size: 16px;
  }
}


/* 公开文件 */
.gk .certificate-dashboard {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  overflow: hidden;
}

.gk .left-panel {
  flex: 1.0;
  min-width: 320px;
  background: #fefefe;
  padding: 40px 0;
}

.gk .right-panel {
  flex: 1.0;
  min-width: 288px;
  background: #ffffff;
  padding: 40px 32px 48px 32px;
}

.gk .section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.gk .section-title {
  font-size: 28px;
  font-weight: 700;
  color: #0a2b3e;
  letter-spacing: -0.02em;
  padding-bottom: 12px;
  border-bottom: 3px solid #122a88;
  display: inline-block;
}

.gk .more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #122a88;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 32px;
  transition: all 0.2s ease;
  background: #f0f7ff;
  text-decoration: none;
}

.gk .more-btn:hover {
  background: #122a88;
  color: white;
  transform: translateX(3px);
}

.gk .more-btn span {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.gk .more-btn:hover span {
  transform: translateX(3px);
}

.gk .file-list {
  list-style: none;
  margin-top: 8px;
}

.gk .file-item {
  list-style: none;
  padding: 18px 0 16px 0;
  border-bottom: 1px solid #eef2f6;
  transition: all 0.2s ease;
  cursor: pointer;
}

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

.gk .file-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  color: #1e2a3a;
}

.gk .file-title-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex: 1;
}

.gk .arrow-icon {
  font-size: 18px;
  color: #122a88;
  font-weight: 500;
  transition: transform 0.2s ease;
  display: inline-block;
  width: 20px;
  text-align: left;
}

.gk .file-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #1f2d3d;
  transition: color 0.2s ease;
}

.gk .file-item:hover .file-title {
  color: #122a88;
}

.gk .file-item:hover .arrow-icon {
  transform: translateX(3px);
}

.gk .file-date {
  font-size: 13px;
  color: #8a99a8;
  white-space: nowrap;
  padding-left: 12px;
  /* font-family: monospace; */
}

.gk .cert-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.gk .cert-carousel-container {
  position: relative;
  overflow: hidden;
}

.gk .cert-slides {
  position: relative;
}

.gk .cert-slide {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.gk .cert-slide.active {
  display: grid;
}

.gk .cert-card {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #eef2f6;
}

.gk .cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 24px -8px rgba(30, 111, 223, 0.15);
  border-color: #d0e2ff;
}

.gk .cert-card.active {
  border: 2px solid #122a88;
  box-shadow: 0 8px 20px rgba(30, 111, 223, 0.2);
}

.gk .cert-image {
  width: 100%;
  background: #f8fafd;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  min-height: 176px;
}

.gk .cert-image img {
  max-width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.gk .cert-card:hover .cert-image img {
  transform: scale(1.02);
}

.gk .cert-title {
  padding: 14px 12px 16px 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #1e2f3e;
  border-top: 1px solid #eef2f6;
  background: #fefefe;
  line-height: 1.4;
}

.gk .carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.gk .carousel-btn {
  background: #f0f4fa;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 48px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  color: #2c5a8c;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gk .carousel-btn:hover {
  background: #122a88;
  color: white;
  transform: scale(1.05);
}

.gk .carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.gk .dot {
  width: 8px;
  height: 8px;
  border-radius: 16px;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gk .dot.active {
  width: 24px;
  background: #122a88;
}

@media (max-width: 1024px) {
  body {
    padding: 24px;
  }
  
  .gk .cert-slide {
    gap: 16px;
  }
  
  .gk .left-panel {
    padding: 32px;
  }
  
  .gk .right-panel {
    padding: 32px 24px;
  }
}

@media (max-width: 880px) {
  .gk .certificate-dashboard {
    flex-direction: column;
    border-radius: 24px;
    gap: 0;
  }

  .gk .right-panel {
    border-left: none;
    border-top: 1px solid #eef2f6;
    padding: 32px;
  }

  .gk .left-panel {
    padding: 32px;
  }
  
  .gk .cert-slide {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  body {
    padding: 16px;
  }
  
  .gk .section-title {
    font-size: 24px;
  }
  
  .gk .cert-slide {
    gap: 14px;
  }
  
  .gk .cert-title {
    font-size: 12px;
    padding: 10px 8px;
  }
  
  .gk .cert-image {
    padding: 16px 12px;
    min-height: 128px;
  }
  
  .gk .file-title {
    font-size: 14px;
  }
  
  .gk .file-date {
    font-size: 11px;
  }
  
  .gk .more-btn {
    font-size: 13px;
    padding: 6px 14px;
  }
}

@media (max-width: 550px) {
  .gk .cert-slide {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .gk .cert-image img {
    max-height: 80px;
  }
  
  .gk .file-title-wrap {
    gap: 8px;
  }
  
  .gk .arrow-icon {
    font-size: 14px;
  }
  
  .gk .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .gk .cert-header {
    flex-direction: column;
    align-items: flex-start;
  }
}












 /* 友情链接 */
.yqlj .carousel-wrapper {
  max-width: 1400px;
  width: 100%;
  background: #ffffff;
  border-radius: 28px;
  padding: 40px 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
  margin: 40px 0;
}

/* 简洁标题 */
.yqlj .simple-title {
  text-align: center;
  margin-bottom: 32px;
}
.yqlj .simple-title h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1e293b;
}
.yqlj .simple-title p {
  color: #64748b;
  margin-top: 6px;
  font-size: 0.85rem;
}

/* Swiper 容器 */
.yqlj .swiper {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}

.yqlj .swiper-wrapper {
  display: flex;
  align-items: center;
}

.yqlj .swiper-slide {
  margin-left: 20px;
  flex-shrink: 0;
  min-width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 8px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

/* 悬浮效果 */
.yqlj .swiper-slide:hover {
  border-color: #cbd5e1;
  background: #fefefe;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

/* Logo图片样式 */
.yqlj .logo-img {
  max-width: 85%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* 文字后备样式 */
.yqlj .logo-fallback {
  font-weight: 600;
  font-size: 1rem;
  color: #475569;
  background: #f1f5f9;
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-block;
}

/* 响应式调整 */
@media (max-width: 1000px) {
  .yqlj .swiper-slide {
      min-width: 85px;
      padding: 18px 6px;
  }
  .yqlj .logo-img {
      max-height: 52px;
  }
}

@media (max-width: 800px) {
  .yqlj .swiper-slide {
      min-width: 75px;
      padding: 16px 4px;
  }
  .yqlj .logo-img {
      max-height: 46px;
  }
}

@media (max-width: 680px) {
  .yqlj .swiper-slide {
      min-width: 70px;
      padding: 14px 3px;
  }
  .yqlj .logo-img {
      max-height: 40px;
  }
}

/* 隐藏Swiper自带的所有多余元素 */
.yqlj .swiper-pagination,
.yqlj .swiper-scrollbar,
.yqlj .swiper-button-next,
.yqlj .swiper-button-prev {
  display: none !important;
}