@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Microsoft YaHei", Arial, sans-serif;
  font-size: 14px;
  color: #333;
  background: #f5f5f5;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

body:not(.home-page) {
  background: #ffffff;
  min-height: 100vh;
  position: relative;
}

.page-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.page-bg-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1100px;
  background: url(../images/top_bg.png) no-repeat top center;
  background-size: 100% auto;
}

.page-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1100px;
  background: url(../images/down_bg.png) no-repeat bottom center;
  background-size: 100% auto;
}

div#userArea {
  padding: 0 20px
}

.dqyd-page .page-bg-top,
.dqyd-page .page-bg-bottom {
  display: none;
}

/* 新闻滚动轮播区域 */
.news-marquee-section {
  height: 58px;
  background: #EBEDF7;
  overflow: hidden;
  position: relative;
}

.news-marquee-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.news-marquee-icon {
  flex-shrink: 0;
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.news-marquee-icon img {
  height: 24px;
  width: auto;
}

.news-marquee-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.news-marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
}

.news-marquee-content:hover {
  animation-play-state: paused;
}

.news-marquee-item {
  display: inline-block;
  padding: 0 40px;
  font-weight: 400;
  font-size: 18px;
  color: #0A2A6A;
  text-decoration: none;
  transition: color 0.3s;
}

.news-marquee-item:hover {
  color: #216ccf;
  text-decoration: underline;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 新闻滚动轮播 - 移动端适配 */
@media (max-width: 768px) {
  .news-marquee-section {
    height: 44px;
  }
  
  .news-marquee-container {
    padding: 0 15px;
  }
  
  .news-marquee-icon {
    margin-right: 10px;
  }
  
  .news-marquee-icon img {
    height: 20px;
  }
  
  .news-marquee-item {
    padding: 0 30px;
    font-size: 14px;
  }
}

.dqyd-page .page-bg-container {
  background: url(../images/dqyd/dqbg.png) no-repeat center center;
  background-size: cover;
}

.clear::after {
  content: "";
  display: table;
  clear: both;
}

.clear {
  clear: both;
}

.contact-info{
  text-align: right;
}

a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #0066cc;
}

.clear::after {
  content: "";
  display: block;
  clear: both;
}

.wrap {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
.wrap-content {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* 头部 */
.top-header {
  background: transparent;
  position: relative;
  z-index: 9999;
}

.header-top {
  padding: 18px 0;
  background: transparent;
}

.header-main {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.logo-section {
  float: left;
}

.logo {
  float: left;
  margin-right: 8px;
}

.logo img {
  height: 82px;
  width: auto;
}

.site-name {
  float: left;
  padding-top: 10px;
}

.site-name h1 {
  font-size: 19px;
  color: #333;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 2px;
}

.site-name h2 {
  font-size: 17px;
  color: #333;
  font-weight: normal;
  line-height: 1.2;
}

.header-right {
  float: right;
  display: flex;
  flex-direction: column;
}

.top-row {
  text-align: right;
  margin-bottom: 8px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 20px;
  padding: 4px 0;
  flex-wrap: nowrap;
  gap: 12px;
}

.top-tags {
  display: inline-block;
  margin-right: 16px;
  vertical-align: middle;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  color: #fff;
  border-radius: 3px;
  margin-left: 4px;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
}

.tag-red{
  background: rgba(240,155,146,0.5);
  border-radius: 18px;
  border: 1px solid #892E16;
  font-weight: 400;
  color: #892E16;
}

.tag-green{
  background: rgba(37,159,140,0.22);
  border-radius: 18px;
  border: 1px solid #02917B;
  font-weight: 400;
  color: #02917B;
}

.tag-blue {
  background: linear-gradient(180deg, #bcceff, #1771EC, #54A0FF);
  border-radius: 4px;
  font-weight: 400;
  color: #EBF4FF;
}


.tag-red:hover {
    color: #e53935;
  background:rgba(229, 56, 53, 0.1);
}

.tag-green:hover {
    color: #43a047;
  background:#43a04810;
}

.tag-blue:hover {
    color: #1771ec;
  background:#1770ec49;
}

.search-links-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.search-links-top a {
  font-size: 12px;
  color: #333;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s;
  font-weight: 500;
}

.search-links-top a:hover {
  color: #166db7;
}

.search-links-top .divider {
  color: #333;
}

.bottom-row {
  text-align: right;
}

.top-links {
  display: inline-block;
  margin-right: 8px;
  font-size: 12px;
  vertical-align: middle;
}

.top-links a {
  color: #666;
}

.top-links a:hover {
  color: #166db7;
}

.search-wrapper {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.search-box {
  display: flex;
  align-items: center;
}

.search-box input {
  width: 140px;
  height: 28px;
  border: 1px solid #eee;
  padding: 0 8px;
  outline: none;
  font-size: 12px;
  vertical-align: middle;
  border-radius: 3px 0 0 3px;
  transition: all 0.3s;
}

.search-box input:focus {
  border-color: #166db7;
}

.search-box button {
  width: 50px;
  height: 28px;
  background: #1771ec;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  vertical-align: middle;
  border-radius: 0 3px 3px 0;
  font-weight: 400;
  transition: all 0.3s;
}

.search-box button:hover {
  background: #0d47a1;
}

/* 导航 */
.main-nav {
  height: 45px;
  clear: none;
  float: right;
  position: relative;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

.nav-list > li {
  position: relative;
  flex-shrink: 0;
}

.nav-list > li > a {
  display: inline-block;
  padding: 0 0.8rem;
  height: 45px;
  line-height: 45px;
  font-weight: 600;
  font-size: 24px;
  color: #333;
  position: relative;
}

.nav-list > li > a:hover,
.nav-list > li.current > a {
  font-weight: 700;
  font-size: 24px;
  color: #0c4cb1;
}

.nav-list > li > a:hover::after,
.nav-list > li.current > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 1.6rem);
  height: 4px;
  background: #0c4cb1;
}

.nav-list > li .gdlt {
  position: absolute;
  min-width: 130px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  margin-top: 0;
  display: none;
  background: #fff;
  text-align: center;
  z-index: 9999;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #e8e8e8;
  overflow: hidden;
  white-space: nowrap;
}

.nav-list > li:hover .gdlt {
  display: block;
  animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.nav-list > li .gdlt li {
  list-style: none;
  border-bottom: 1px solid #f5f5f5;
}

.nav-list > li .gdlt li:last-child {
  border-bottom: none;
}

.nav-list > li .gdlt a {
  display: block;
  padding: 14px 20px;
  color: #4a4f59;
  font-size: 17px;
  transition: all 0.2s ease;
}

.nav-list > li .gdlt a:hover {
  color: #0c4cb1;
  background: #f5f8fc;
}

.mobile-menu-btn {
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px 0;
}

.mobile-menu-btn span {
  display: block;
  width: 30px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px) translateX(8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px) translateX(8px);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: #fff;
  z-index: 999;
  transition: right 0.3s;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-search-box {
  padding: 20px;
  background: #f5f5f5;
  display: flex;
  gap: 10px;
}

.mobile-search-box input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
}

.mobile-search-box button {
  padding: 10px 20px;
  background: #0c4cb1;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li a {
  display: block;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  font-size: 16px;
}

.mobile-nav-list li a:hover {
  background: #f5f5f5;
}

.mobile-dropdown-toggle {
  position: relative;
}

.mobile-dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #999;
  transition: transform 0.3s;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
  transform: translateY(-50%) rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f9f9f9;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-menu li a {
  padding-left: 40px;
  font-size: 14px;
  color: #666;
}

.mobile-links {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}

.mobile-links a {
  color: #0c4cb1;
  margin: 0 10px;
}

.mobile-links .divider {
  color: #ccc;
}

/* Banner */
.main-banner {
  background: #ffffff;
  height: auto;
  overflow: hidden;
}

.banner-container {
  width: 100%;
  height: 560px;
  position: relative;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-slogan {
  position: absolute;
  top: 204px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.banner-slogan img {
  max-width: 1004px;
  height: auto;
}

.banner-subtitle {
  position: absolute;
  top: 290px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 0 40px;
  height: 60px;
  line-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #093269;
  background: #f7fbff;
  border-radius: 26px;
  font-size: 22px;
  min-width: 600px;
  max-width: 800px;
  box-sizing: border-box;
}

/* 服务入口区域 */
.service-section {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 10;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  background: #216ccfac;
  padding: 6px 30px;
  border-radius: 20px;
  margin: 0 auto;
  max-width: 1200px;
}

.service-item {
  width: 146px;
  text-align: center;
}

.service-item a {
  display: block;
  padding: 4px 10px;
  border-radius: 20px;
  transition: all 0.3s;
  color: #fff;
}

.service-item a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.95);
}
.service-item:hover a span {
  color: #0e377a !important ;
}

.service-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 4px;
  object-fit: contain;
}

.service-item span {
  display: block;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

/* 内容区域 */
.main-content {
  background: #fff;
  display: block;
  overflow: visible;
  position: relative;
  z-index: 1;
}

/* 新闻动态区域 */
.news-section {
  background: #fff;
  padding: 20px 0;
}

.news-header {
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-title {
  display: flex;
  align-items: center;
}

.title-icon {
  width: 30px;
  height: 30px;
  background: url("../images/nav_bg.png") no-repeat center center;
  background-size: contain;
  margin-right: 10px;
  flex-shrink: 0;
}

.title-text {
  font-weight: bold;
  font-size: 24px;
  color: #1e3066;
  line-height: 50px;
}

.more-btn {
  background: linear-gradient(
    90deg,
    rgba(10, 42, 106, 0.96),
    rgba(16, 70, 153, 0.96)
  );
  color: #fff;
  padding: 10px 30px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
}

#news-more-btn-pc {
  display: block;
  margin: 0 10px 10px auto;
  padding: 6px 20px;
  font-size: 13px;
  white-space: nowrap;
}

.more-btn:hover {
  opacity: 0.9;
}

.tech-more-btn,
.journal-more-btn {
  background: transparent;
  padding: 6px 20px;
  font-weight: 800;
  font-size: 18px;
  white-space: nowrap;
  color: rgba(10, 42, 106, 0.96);
}

.news-content {
  display: flex;
  gap: 20px;
}

.news-left {
  width: 680px;
  flex: 0 0 680px;
}

.news-big-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.news-big-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.news-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 15px;
}

.news-right {
  width: 650px;
  flex: 0 0 650px;
}

.news-tabs-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.news-tabs {
  border-bottom: 2px solid #f0f0f0;
  background: #F8F9FE;
  border-radius: 10px;
  padding: 4px 4px 0 4px;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

#news-more-btn-mobile {
  display: none;
  margin-left: 10px;
}

.news-tabs .tab {
  float: left;
  padding: 12px 24px;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  font-size: 18px;
  color: #79889D;;
}

.news-tabs .tab.active {
  color: #0A2A6A;
  font-weight: 500;
}

.news-tabs .tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: #1677ff;
  margin: 0 24px;
}

.news-tab-content {
  display: none;
}

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

.news-tab-content ul {
  list-style: none;
}

.news-tab-content li {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.news-tab-content .dot {
  width: 6px;
  height: 6px;
  background: #1677ff;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

.news-tab-content a {
  flex: 1;
  color: #333;
  font-size: 18px;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-tab-content a:hover {
  color: #1677ff;
}

.news-tab-content .news-date {
  color: #999;
  font-size: 18px;
  flex-shrink: 0;
  margin-left: 10px;
}

.news-tab-content .no-data {
  text-align: center;
  color: #999;
  font-size: 16px;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 底部区域 - 科技创新和期刊杂志 */
.bottom-section {
  margin-top: 30px;
  background: url("../images/chuangxin_bg.png") no-repeat center center;
  background-size: cover;
  padding: 40px 0;
}

.wrap-content {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}

.bottom-section-inner {
  display: flex;
}

/* 科技创新 */
.tech-innovation {
  flex: 0 0 52%;
  border-radius: 10px;
  margin-right: 25px;
}

/* 期刊杂志 */
.journal-magazine {
  flex: 1;
  border-radius: 10px;
}

/* 科技创新内容 */
.tech-content {
  width: 100%;
  max-width: 680px;
  position: relative;
}

.tech-carousel {
  position: relative;
}

.tech-carousel .owl-stage {
  display: flex;
}

.tech-carousel .owl-item {
  float: left;
}

.tech-carousel .article {
  width: 100%;
}

.tech-image-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.tech-image-box img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.tech-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  color: #fff;
  padding: 60px 20px 25px;
  font-size: 15px;
  line-height: 1.6;
}

.tech-dots {
  position: absolute;
  bottom: 20px;
  right: 25px;
  display: flex;
  gap: 10px;
}

.tech-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
}

.tech-dots .dot.active {
  background: #fff;
}

/* 期刊杂志内容 */
.journal-content {
  display: flex;
  justify-content: space-between;
}

.journal-item {
  flex: 1;
  text-align: center;
  margin-right: 25px;
}

.journal-item:last-child {
  margin-right: 0;
}

.journal-item img {
  width: 100%;
  height: 450px;
  object-fit: fill;
  border-radius: 5px;
  margin-bottom: 15px;
}

.journal-item-link {
  display: block;
  flex: 1;
  margin-right: 25px;
  text-decoration: none;
  color: inherit;
}

.journal-item-link:last-child {
  margin-right: 0;
}

.journal-item-link:hover .journal-item img {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.journal-date {
font-weight: 500;
font-size: 18px;
color: #242424;
}

/* 技术服务区域 */
.tech-service-section {
  margin-top: 20px;
  background: #fff;
  padding: 30px 0 50px 0;
  clear: both;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.tech-service-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  clear: both;
  position: relative;
  z-index: 1;
}

.tech-service-item {
  width: 180px;
  text-align: center;
  padding:30px 20px;
  border-radius: 12px;
  border: 2px solid #e8f0ff;
  cursor: pointer;
  transition: all 0.3s;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tech-service-item:hover,
.tech-service-item.active {
  border-color: #1677ff;
  box-shadow: 0 6px 20px rgba(22, 119, 255, 0.18);
}

.tech-service-item img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 15px;
}

.service-name {
  font-size: 22px;
  color: #333;
  font-weight: 500;
}

/* 科技成果区域 */
.tech-achievements-section {
  margin-top: 40px;
  background: #f8f9fe url("../images/keji_bg.png") no-repeat center center;
  background-size: cover;
  padding: 40px 0 100px 0;
  position: relative;
  z-index: 10;
  display: block;
  overflow: visible;
  clear: both;
}



.achievements-list {
  display: flex;
  gap: 25px;
  clear: both;
  position: relative;
  z-index: 1;
}

.achievement-card {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.achievement-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.achievement-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 18px;
}

.achievement-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.5;
}

.achievement-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.detail-btn {
  display: inline-block;
  background: linear-gradient(90deg, rgba(43,129,249,0.96), rgba(43,157,249,0.96));
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 16px;
  text-decoration: none;
  align-self: flex-end;
  transition: all 0.3s;
}

.detail-btn:hover {
  background: #3d8cff;

}
a.detail-btn:hover {
    color: #fff;
}

/* 底部 */
.main-footer {
  background: #0c4cb1 url("../images/footer_bg.png") center center;
  background-size: cover;
  color: #fff;
  margin-top: 0;
  position: relative;
  z-index: 999;
}

.footer-content {
  padding: 40px 0;
}

.footer-info-left,
.footer-info-middle,
.footer-info-right {
  float: left;
}

.footer-info-left {
  width: 16%;
  float: left;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-col a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links-col a:hover {
  text-decoration: underline;
}

.footer-info-middle {
  width: 35%;
  float: left;
  margin-left: 120px;
}

.footer-info-right {
  width: 35%;
  float: right;
  padding-top: 35px;
}

.dqyd-footer .footer-info-right {
    padding-top: 0;
}

.footer-logo-contact {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-logo-contact .logo-text {
  flex-shrink: 0;
}

.footer-logo-contact .logo-text img {
  max-height: 60px;
  width: auto;
}

.footer-logo-contact .contact-info a {
  color: #fff !important;
  text-decoration: none;
}

.footer-logo-contact .contact-info a:hover {
  text-decoration: underline;
}

.footer-title {
      width: 120px;
    text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.qrcode-box {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 4px;
  display: inline-block;
}

.qrcode-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  margin-bottom: 20px;
}

.logo-text img {
  max-height: 60px;
  width: auto;
}

.contact-info p {
  font-size: 14px;
  line-height: 2;
  margin: 0;
}
}

/* 响应式 */
@media (max-width: 1200px) {
  .banner-container {
    height: 500px;
  }

  .banner-slogan img {
    max-width: 90%;
  }

  .banner-subtitle {
    max-width: 800px;
    min-width: auto;
    width: 90%;
    font-size: 22px;
  }

  .news-left {
    width: 400px;
    flex: 0 0 400px;
  }

  .bottom-section-inner {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .tech-innovation {
    flex: none;
    margin-right: 0;
    margin-bottom: 25px;
    width: 100%;
  }

  .tech-content {
    max-width: 100%;
  }

  .tech-image-box img {
    width: 100%;
    object-fit: cover;
  }

  .journal-magazine {
    flex: none;
  }


  .journal-item {
    margin-bottom: 15px;
  }

  .journal-item:not(:last-child) {
    margin-right: 6px;
  }

  .tech-service-item {
    width: 140px;
    padding: 20px 15px;
  }

  .tech-service-item img {
    width: 70px;
    height: 70px;
  }

  .achievements-list {
    flex-wrap: wrap;
  }

  .achievement-card {
    flex: none;
    width: calc(33.33% - 20px);
  }
}

@media (max-width: 992px) {
  .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .header-right {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .service-list {
    margin: 0 20px;
    padding: 4px 15px;
  }

  .service-item {
    width: 120px;
  }

  .service-item img {
    width: 60px;
    height: 60px;
  }

  .news-content {
    flex-direction: column;
  }

  .news-left {
    width: 100%;
    flex: none;
    margin-bottom: 20px;
  }

  .bottom-section-inner {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .news-big-image img {
    height: 280px;
  }

  .news-right {
    width: 100%;
    flex: none;
  }

  .tech-service-list {
    flex-wrap: wrap;
    gap: 15px;
  }

  .tech-service-item {
    width: calc(33.33% - 15px);
  }

  .journal-item img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .banner-subtitle, .banner-slogan{
    display: none;
  }
  .banner-container {
    height: 160px;
    padding-bottom: 20px;
    margin-bottom: 100px;
  }
  .header-top {
    padding: 5px 0;
  }

  .logo img {
    height: 50px;
  }

  .site-name h1 {
    font-size: 14px;
  }

  .site-name h2 {
    font-size: 12px;
  }

  .main-nav {
    display: none;
  }



  .banner-img {
    height: auto;
    min-height: 440px;
  }

  .banner-slogan {
    top: 60px;
  }

  .banner-slogan img {
    max-width: 90%;
  }

  .banner-subtitle {
    top: 140px;
    font-size: 16px;
    min-height: 45px;
    line-height: 1.4;
    padding: 10px 20px;
    min-width: auto;
    width: 90%;
  }

  .service-section {
    position: relative;
    bottom: auto;
    padding: 20px 0;
    position: absolute;
    bottom: -160px;
  }

  .service-list {
    margin: 0 15px;
    flex-wrap: wrap;
    gap: 10px;
    padding: 4px 12px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 150px;
  }

  .service-item {
    width: 100px;
  }

  .service-item img {
    width: 50px;
    height: 50px;
  }

  .service-item span {
    font-size: 14px;
  }

  .news-section {
    padding: 15px 0;
  }

  .news-header {
    margin-bottom: 15px;
  }

  .tech-more-btn,
  .journal-more-btn {
    padding: 6px 16px;
    font-size: 12px;
  }

  #news-more-btn-pc {
    display: none;
  }

  #news-more-btn-mobile {
    display: block;
    margin-left: 10px;
    white-space: nowrap;
  }

  .news-tabs-wrap {
    display: flex;
    align-items: center;
  }

  .news-tabs {
    flex: 1;
  }

  .tech-innovation{
    margin-right: 0;
  }

  .title-text {
    font-size: 24px;
  }

  .news-tabs .tab {
    padding: 10px 16px;
    font-size: 14px;
  }

  .news-tab-content li {
    padding: 10px 0;
  }

  .news-tab-content a {
    font-size: 14px;
  }

  .bottom-section {
    padding: 30px 0;
  }

  .tech-innovation {
    margin-bottom: 20px;
        width: 100%;
  }

  .tech-content {
    max-width: 100%;
  }

  .tech-image-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
  }


  .journal-item {
    margin-bottom: 15px;
  }

  .journal-item:not(:last-child) {
    margin-right: 6px;
  }

  .journal-item img {
    width: 100%;
    height: 400px;
    object-fit: fill;
  }

  .tech-service-section {
    padding: 20px 0 40px 0;
  }

  .tech-service-list {
    gap: 12px;
  }

  .tech-service-item {
    width: calc(33.33% - 12px);
    padding: 15px 10px;
  }

  .tech-service-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  .service-name {
    font-size: 16px;
  }

  .tech-achievements-section {
    padding: 30px 0 60px 0;
  }

  .achievements-list {
    flex-direction: column;
    gap: 15px;
  }

  .achievement-card {
    width: 100%;
  }

  .achievement-card img {
    height: 180px;
  }

  .main-footer {
    padding: 30px 0;
  }

  .footer-content {
    padding: 20px 0;
  }

  .footer-info-left,
  .footer-info-middle,
  .footer-info-right {
    float: none !important;
    width: 100% !important;
    text-align: center !important;
    margin-left: 0 !important;
    margin-bottom: 20px;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-title {
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
    display: block !important;
  }

  .qrcode-box {
    margin: 0 auto !important;
    float: none !important;
  }

  .contact-info p {
    font-size: 13px;
  }

  .dqyd-footer .footer-content {
    flex-direction: column !important;
  }
}

@media (max-width: 576px) {
    .banner-subtitle, .banner-slogan{
    display: none;
  }
    .banner-container {
    height: 60px;
    padding-bottom: 20px;
    margin-bottom: 160px;
  }

  .logo img {
    height: 45px;
  }

  .site-name {
    display: none;
  }

  .header-right {
    display: none;
  }

  .bottom-row {
    display: none;
  }

  .banner-slogan {
    top: 50px;
  }

  .banner-slogan img {
    max-width: 95%;
  }

  .banner-subtitle {
    top: 110px;
    font-size: 14px;
    min-height: 40px;
    line-height: 1.4;
    padding: 8px 15px;
    min-width: auto;
    width: 95%;
  }

  .service-list {
    margin: 0 20px;
    gap: 8px;
    padding: 4px 10px;
    position: absolute;
    bottom: 10px;
  }

  .service-item {
    width: 80px;
  }

  .service-item img {
    width: 40px;
    height: 40px;
  }

  .service-item span {
    font-size: 12px;
  }

  .news-title {
    flex: 1;
  }

  .title-icon {
    width: 24px;
    height: 24px;
  }

  .title-text {
    font-size: 20px;
  }

  .more-btn {
    padding: 6px 16px;
    font-size: 12px;
  }

  .news-big-image img {
    height: 200px;
  }

  .news-caption {
    font-size: 14px;
    padding: 30px 15px 15px;
  }

  .news-tabs {
    padding: 3px;
  }

  .news-tabs .tab {
    padding: 8px 12px;
    font-size: 13px;
  }

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

  .bottom-section {
    padding: 20px 0;
  }

  .tech-content {
    max-width: 100%;
  }

  .tech-image-box img {
    width: 100%;
    height: 220px;
  }

  .tech-caption {
    font-size: 13px;
    padding: 40px 15px 20px;
  }


  .journal-item {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .journal-item:not(:last-child) {
    margin-right: 6px;
  }

  .journal-item img {
    width: 100%;
    height: 300px;
    object-fit: fill;
  }

  .journal-date {
    font-size: 14px;
  }

  .tech-service-item {
    width: calc(50% - 10px);
    padding: 12px 8px;
  }

  .tech-service-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
  }

  .service-name {
    font-size: 14px;
  }

  .tech-achievements-section {
    padding: 20px 0 40px 0;
  }

  .achievement-card {
    padding: 15px;
  }

  .achievement-card img {
    height: 150px;
    margin-bottom: 12px;
  }

  .achievement-title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .achievement-desc {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .detail-btn {
    padding: 5px 15px;
    font-size: 12px;
  }

  .main-footer {
    padding: 20px 0;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer-links a {
    font-size: 12px;
  }
}

/* 单位概况内页（对齐效果图：Banner 左卡、浅灰侧栏头、当前项深蓝底白字、正文区居中标题） */
.subpage-hero {
  position: relative;
  padding: 0;
  min-height: 300px;
  display: flex;
  align-items: stretch;
  background: url("../images/dwgk/unit_overview_banner.png") center center / cover no-repeat;
  display: none;
}

.subpage-hero-inner {
  display: flex;
  align-items: center;
  min-height: 300px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.subpage-hero-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 520px;
  padding: 22px 36px 22px 24px;
  background: #1a5ebc;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.ggfw-page .subpage-hero-panel {
  background: #2bd0ff8a;
}

.subpage-hero-panel-icon {
  flex-shrink: 0;
  width: 48px;
  height: 40px;
  background: url("../images/dwgk/section_title_diamond.png") center center / contain no-repeat;
}

.subpage-hero-panel-text {
  flex: 1;
  min-width: 0;
  color: #fff;
}

/* 与效果图一致：华文中宋/宋体、加粗、纯白标题 */
.subpage-hero-panel-title {
  margin: 0;
  font-family: "STZhongsong", "SimSun", "NSimSun", "Songti SC", serif;
  font-size: 50px;
  font-weight: 100;
  line-height: 1.25;
  letter-spacing: 0.12em;
  color: #ffffff;
}

.subpage-breadcrumb-wrap {
  padding: 16px 20px;
  background: transparent;
}

.subpage-breadcrumb {
  font-size: 22px;
  font-weight: 400;
  color: #4A4F59;
  line-height: 1.6;
}

.subpage-breadcrumb-label {
  color: #4A4F59;
}

.subpage-breadcrumb a {
  color: #4A4F59;
}

.subpage-breadcrumb a:hover {
  color: #1a6bcb;
}

.subpage-bc-sep {
  margin: 0 8px;
  color: #4A4F59;
}

.subpage-layout {
  padding: 0 0 56px;
  background: transparent;
}

.subpage-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 20px auto;
  max-width: 1200px;
  width: calc(100% - 40px);
  overflow: hidden;
  position: relative;
  z-index: 999;
}

.subpage-layout .wrap-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.subpage-aside {
  flex: 0 0 260px;
  width: 260px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.subpage-aside-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 20px;
  border-bottom: 2px solid #F0F3F8;
  border-radius: 6px 6px 0 0;
}

.subpage-aside-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.subpage-aside-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: #212121;
}

.subpage-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.subpage-nav li {
  border-bottom: 1px solid #f0f0f0;
}

.subpage-nav li:last-child {
  border-bottom: none;
}

.subpage-nav li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 10px 20px 60px;
  font-size: 22px;
  color: #666;
  background: #fff;
  border-left: 4px solid transparent;
  transition: all 0.2s;

}

.subpage-nav li a::before {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-right: 12px;
  background: url("../images/dwgk/nav_indicator_normal.png") center center / contain no-repeat;
  opacity: 0.5;
}

.subpage-nav li a:hover {
  background:#e8f0fe;
  color:#0c4cb1;
}

.subpage-nav li a:hover::before {
  opacity: 0.7;
}
a.subpage-nav-link.is-current{
  background: #e8f0fe;
  color: #1a6bcb;
  border-left-color: #1a6bcb;
}

.subpage-nav li.is-current a {
  background: #e8f0fe;
  color: #1a6bcb;
  border-left-color: #1a6bcb;
}

.subpage-nav li.is-current a::before {
  background-image: url("../images/dwgk/nav_indicator_active.png");
  opacity: 1;
}

.subpage-main {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px 30px;
}

.subpage-main img{
  width: 100%;
}

.subpage-article-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
  display: none;
}

.subpage-article-header.show{
  display: block;
}

.subpage-article-hits {
  font-size: 14px;
  color: #999;
  margin-right: 20px;
}

.subpage-article-date {
  font-size: 14px;
  color: #999;
}

.subpage-page-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.02em;
}

.subpage-page-title-line {
  display: none;
}

.subpage-article {
  padding-top: 0;
}

.subpage-article-body {
  font-size: 15px;
  line-height: 2.2;
  color: #333;
  word-wrap: break-word;
  text-align: justify;
}

.subpage-article-body p {
  margin-bottom: 1em;
}

.subpage-article-body img {
  max-width: 100%;
  height: auto;
}

.subpage-article-body table {
  max-width: 100%;
  border-collapse: collapse;
}

.subpage-article-body h1,
.subpage-article-body h2,
.subpage-article-body h3 {
  color: #1e3066;
  margin: 1.2em 0 0.6em;
  font-weight: 600;
}

.subpage-article-body > h1:first-child,
.subpage-article-body > h2:first-child {
  display: none;
}

.article-list {
  padding-top: 10px;
}

.article-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-item {
  padding: 20px 0;
  border-bottom: 1px dashed #e8e8e8;
}

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

.article-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: all 0.2s;
}

.article-link:hover {
  color: #1a6bcb;
}

.article-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-link:hover .article-title {
  color: #1a6bcb;
}

.article-meta {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.article-date {
  display: inline-block;
  padding-left: 18px;
  background: url("../images/icon_date.png") left center / 14px 14px no-repeat;
}

.article-summary {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.pagination-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
  margin-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 4px;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  font-size: 14px;
  color: #666;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
}

.page-link:hover {
  color: #1a6bcb;
  border-color: #1a6bcb;
}

.page-link.current {
  color: #fff;
  background: #1a6bcb;
  border-color: #1a6bcb;
}

.page-link.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.page-link.disabled:hover {
  color: #ccc;
  border-color: #e8e8e8;
}

.page-link.prev,
.page-link.next {
  min-width: auto;
  padding: 0 16px;
}

.page-link.dots {
  border: none;
  padding: 0 8px;
}

.pagination-info {
  margin-top: 12px;
  font-size: 14px;
  color: #999;
}

@media (max-width: 768px) {
  .pagination-wrap {
    padding: 20px 0;
  }

  .pagination {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px;
    box-sizing: border-box;
    gap: 6px;
  }

  .page-link {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    font-size: 13px;
    flex-shrink: 0;
  }

  .page-link.prev,
  .page-link.next {
    padding: 0 10px;
    font-size: 12px;
  }

  .page-link.dots {
    padding: 0 4px;
  }

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

  .subpage-layout .wrap-content {
    flex-direction: column;
    padding: 0;
  }

  .subpage-aside {
    width: 100%;
    max-width: none;
    margin-bottom: 16px;
    flex: none;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
  }

  .subpage-aside-head {
    padding: 16px 20px;
    gap: 10px;
    border-radius: 12px 12px 0 0;
  }

  .subpage-aside-icon {
    width: 20px;
    height: 20px;
  }

  .subpage-aside-title {
    font-size: 18px;
    font-weight: 600;
  }

  .subpage-nav li a {
    padding: 14px 20px;
    font-size: 16px;
  }

  .subpage-nav li a::before {
    width: 16px;
    height: 20px;
    margin-right: 10px;
  }

  .subpage-main {
    width: 100%;
    padding: 20px 16px 28px;
  }

  .subpage-hero {
    min-height: 200px;
  }

  .subpage-hero-inner {
    min-height: 200px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .subpage-hero-panel {
    max-width: none;
    width: 100%;
    padding: 18px 20px;
  }

  .subpage-hero-panel-icon {
    width: 38px;
    height: 38px;
  }

  .subpage-hero-panel-icon::before,
  .subpage-hero-panel-icon::after {
    width: 19px;
    height: 19px;
    margin-top: -9.5px;
  }

  .subpage-hero-panel-icon::before {
    left: 3px;
  }

  .subpage-hero-panel-icon::after {
    left: 12px;
  }

  .subpage-hero-panel-title {
    font-size: 24px;
    letter-spacing: 0.1em;
  }

  .subpage-main-diamond {
    width: 28px;
  }

  .subpage-main-top {
    gap: 10px;
  }

  .subpage-page-title {
    font-size: 18px;
  }

  .leader-item {
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
  }

  .leader-link {
    flex-direction: column;
    gap: 16px;
  }

  .leader-img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 324/210;
  }

  .leader-name {
    font-size: 24px;
  }

  .leader-tag {
    font-size: 14px;
    padding: 4px 12px;
  }

  .leader-summary {
    font-size: 15px;
    line-height: 1.7;
  }

  .leader-tags {
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .leader-underline {
    width: 28px;
    height: 6px;
  }

  .kjcx-item {
    padding: 14px 0;
  }

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

  .kjcx-date {
    font-size: 12px;
    margin-left: 12px;
  }

  .kjcx-marker {
    width: 4px;
    height: 12px;
    margin-right: 10px;
  }
}

.leader-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

  .ggfw-data-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }


  .ggfw-data-number {
    font-size: 24px;
  }

  .ggfw-data-label {
    font-size: 12px;
  }

  .ggfw-tab-btn {
    font-size: 16px;
    padding: 8px 16px;
    margin-right: 16px;
  }

  .jsfw-mydfk-container {
    padding: 16px;
    overflow: hidden;
  }

  .mydfk-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }


  .mydfk-table th,
  .mydfk-table td {
    padding: 8px 10px;
    font-size: 12px;
  }

.leader-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px 15px;
  border-bottom: 1px solid #eee;
  transition: all 0.2s ease;
}

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

.leader-link {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  text-decoration: none;
  color: inherit;
}

.leader-img {
  width: 180px;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: 8px;
}

.leader-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-top: 8px;
}

.leader-info {
  flex: 1;
  min-width: 0;
}

.leader-name {
  font-weight: 600;
  font-size: 22px;
  color: #212121;
  margin: 0 0 2px 0;
}

.leader-underline {
  width: 36px;
  height: 8px;
  background: #004CAE;
  border-radius: 4px;
  margin-bottom: 4px;
}

.leader-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.leader-tag {
  background: #E1EEFF;
  font-weight: 400;
  font-size: 22px;
  color: #004CAE;
  padding: 6px 16px;
  border-radius: 4px;
}

.leader-summary {
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}

.kjcx-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kjcx-item {
  display: flex;
  align-items: center;
  padding: 18px 15px;
  border-bottom: 1px dashed #eee;
  transition: all 0.2s ease;
}

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

.kjcx-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.kjcx-marker {
  width: 6px;
  height: 14px;
  background: #459BFF;
  border-radius: 2px;
  margin-right: 15px;
  flex-shrink: 0;
}

.kjcx-title {
  flex: 1;
  font-size: 18px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kjcx-date {
  margin-left: 20px;
  font-size: 14px;
  color: #999;
  flex-shrink: 0;
}

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

.news-item {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px dashed #eee;
}

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

.news-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.news-marker {
  width: 6px;
  height: 14px;
  background: #459BFF;
  border-radius: 2px;
  margin-right: 15px;
  flex-shrink: 0;
}

.news-title {
  flex: 1;
  font-size: 18px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-date {
  margin-left: 20px;
  font-size: 14px;
  color: #999;
  flex-shrink: 0;
}

/* 党群园地专属样式 */
.dqyd-hero {
  min-height: 300px;
}

.dqyd-hero .subpage-hero-panel {
  background: rgba(255, 255, 255, 0.5);
}

.dqyd-page .subpage-aside-head {
  border-bottom: 2px solid #F0F3F8;
}


.dqyd-page .subpage-nav li a::before {
  background-image: url("../images/dqyd/nav_indicator_normal.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.dqyd-page .subpage-nav li.is-current a {
  background: #FF9E9E;
  color: #9B0E0E;
  border-left-color: #9B0E0E;
}

.dqyd-page .subpage-nav li.is-current a::before {
  background-image: url("../images/dqyd/nav_indicator_active.png");
}

.dqyd-page .subpage-nav li a:hover {
  background: #FF9E9E;
  color: #9B0E0E;
}

.dqyd-page .nav-list > li > a:hover,
.dqyd-page .nav-list > li.current > a {
  color: #9B0E0E;
}

.dqyd-page .nav-list > li > a:hover::after,
.dqyd-page .nav-list > li.current > a::after {
  background: #9B0E0E;
}

.dqyd-page .page-link:hover {
  color: #9B0E0E;
  border-color: #9B0E0E;
}

.dqyd-page .page-link.current {
  color: #fff;
  background: #9B0E0E;
  border-color: #9B0E0E;
}

.dqyd-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dqyd-item {
  padding: 16px 15px;
  border-bottom: 1px dashed #eee;
  transition: all 0.2s ease;
}

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

.dqyd-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.dqyd-marker {
  width: 6px;
  height: 14px;
  background: #DC143C;
  border-radius: 2px;
  margin-right: 15px;
  flex-shrink: 0;
}

.dqyd-title {
  flex: 1;
  font-size: 18px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dqyd-date {
  margin-left: 20px;
  font-size: 14px;
  color: #999;
  flex-shrink: 0;
}

.dqyd-footer {
  background: transparent;
  border-top: none;
}

.dqyd-footer .footer-bg {
  padding: 30px 0;
}

.dqyd-footer .footer-content {
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.dqyd-footer .footer-section {
  flex: 1;
}

.dqyd-footer .footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.dqyd-footer .footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dqyd-footer .footer-links-col a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.dqyd-footer .footer-links-col a:hover {
  text-decoration: underline;
}

.dqyd-footer .footer-logo-contact {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 35px;
}

.dqyd-footer .footer-logo-contact .footer-logo img {
  max-height: 60px;
  width: auto;
}

.dqyd-footer .footer-logo-contact .footer-info a {
  color: #fff !important;
  text-decoration: none;
}

.dqyd-footer .footer-logo-contact .footer-info a:hover {
  text-decoration: underline;
}

.dqyd-footer .footer-title {
      width: 120px;
    text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.dqyd-footer .footer-info {
  font-size: 12px;
  line-height: 1.8;
}

.dqyd-footer .copyright {
  font-weight: 600;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .dqyd-footer .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .dqyd-footer .footer-section {
    text-align: center;
  }

  .dqyd-marker {
    width: 4px;
    height: 12px;
    margin-right: 10px;
  }

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

  .dqyd-date {
    font-size: 12px;
    margin-left: 12px;
  }
}

/* �б��� hover Ч�� */
.kjcx-item:hover {
  background: #f5f8ff;
  padding-left: 15px;
  transition: all 0.2s ease;
}

.kjcx-item:hover .kjcx-title {
  color: #0c4cb1;
}

.kjcx-item:hover .kjcx-marker {
  background: #0c4cb1;
}

.news-item:hover {
  background: #f5f8ff;
  padding-left: 15px;
  transition: all 0.2s ease;
}

.news-item:hover .news-title {
  color: #0c4cb1;
}

.news-item:hover .news-marker {
  background: #0c4cb1;
}

.dqyd-item:hover {
  background: #fff5f5;
  padding-left: 15px;
  transition: all 0.2s ease;
}

.dqyd-item:hover .dqyd-title {
  color: #9B0E0E;
}

.dqyd-item:hover .dqyd-marker {
  background: #9B0E0E;
}

.leader-item:hover {
  background: #f8f8f8;
  transition: all 0.2s ease;
}

/* 技术服务专属样式 */
.jsfw-page .subpage-aside-head {
  border-bottom: 2px solid #F0F3F8;
}

.jsfw-page .subpage-aside-title {
  color: #0c4cb1;
}

.jsfw-page .subpage-nav li.is-current a {
  background: #0c4cb1;
  color: #fff;
  border-left-color: #0c4cb1;
}

.jsfw-page .subpage-nav li a:hover {
  background: #e8f0fe;
  color: #0c4cb1;
}

/* 技术服务三层级导航样式 */
.jsfw-nav-level1 {
  position: relative;
  border-bottom: 1px solid #eee;
}

.jsfw-nav-toggle {
  display: flex;
  align-items: center;
  padding: 0px 0px 0px 20px;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid #F0F3F8;
}

.jsfw-nav-toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}

.jsfw-nav-toggle-icon::before,
.jsfw-nav-toggle-icon::after {
  content: '';
  position: absolute;
  background: #999;
  transition: all 0.2s ease;
}

.jsfw-nav-toggle-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.jsfw-nav-toggle-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.jsfw-nav-toggle.is-open .jsfw-nav-toggle-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.jsfw-nav-toggle:hover {
  background: #e8f0fe;
}

.jsfw-nav-toggle:hover .jsfw-nav-toggle-icon::before,
.jsfw-nav-toggle:hover .jsfw-nav-toggle-icon::after {
  background: #0c4cb1;
}

.jsfw-nav-toggle:hover .jsfw-nav-level1-link {
  color: #0c4cb1;
}

.jsfw-nav-toggle.is-open .jsfw-nav-toggle-icon::before,
.jsfw-nav-toggle.is-open .jsfw-nav-toggle-icon::after {
  background: #0c4cb1;
}

.jsfw-nav-level1-link {
  flex: 1;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding-left: 6px !important;
}

.jsfw-nav-level1-link.is-current {
  color: #0c4cb1;
}

.jsfw-nav-level2 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  background: #f8f8f8;
}

.jsfw-nav-level2.is-open {
  display: block;
}

.jsfw-nav-level2 li {
  border-bottom: 1px solid #eee;
}

.jsfw-nav-level2 li:last-child {
  border-bottom: none;
}

.jsfw-nav-level2 li a {
  display: block;
  padding: 10px 15px 10px 80px;
  color: #666;
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: all 0.2s;
}

.jsfw-nav-level2 li a:hover {
  background: #e8f0fe;
  color: #0c4cb1;
}

.jsfw-nav-level2 li a.is-current {
  background: #0c4cb1;
  color: #fff;
  border-left-color: #0c4cb1;
}

/* 直接链接样式（无子级栏目） */
.jsfw-nav-direct-link {
  display: block;
  padding: 12px 15px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
    white-space: nowrap;
}

.jsfw-nav-direct-link:hover {
  background: #e8f0fe;
  color: #0c4cb1;
}

.jsfw-nav-direct-link.is-current {
  background: #0c4cb1;
  color: #fff;
}

.jsfw-hero .subpage-hero-panel {
  background: rgba(255, 255, 255, 0.9);
}

.jsfw-hero .subpage-hero-panel-title {
  color: #0c4cb1;
}

.jsfw-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jsfw-item {
  display: flex;
  align-items: center;
  padding: 18px 15px;
  border-bottom: 1px dashed #eee;
  transition: all 0.2s ease;
}

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

.jsfw-item:hover {
  background: #f5f8ff;
}

.jsfw-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.jsfw-marker {
  width: 6px;
  height: 14px;
  background: #0c4cb1;
  border-radius: 2px;
  margin-right: 15px;
  flex-shrink: 0;
}

.jsfw-title {
  flex: 1;
  font-size: 18px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jsfw-date {
  margin-left: 20px;
  font-size: 14px;
  color: #999;
  flex-shrink: 0;
}

.jsfw-item:hover .jsfw-title {
  color: #0c4cb1;
}

.jsfw-item:hover .jsfw-marker {
  background: #0c4cb1;
}

/* 技术服务表单样式 */
.jsfw-form-container {
  margin-top: 20px;
}

.form-intro {
  background: #f8f9fe;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

.jsfw-form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #eee;
}

.form-section:last-child {
  border-bottom: none;
}

.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.section-title .title-icon {
  width: 6px;
  height: 16px;
  background: #0c4cb1;
  margin-right: 10px;
}

.form-row {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 16px;
}

.form-row-flex {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-label {
  width: 140px;
  font-size: 16px;
  color: #444;
  flex-shrink: 0;
  font-weight: 500;
}

.form-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.2s;
  max-width: 500px;
}

.form-input:focus {
  outline: none;
  border-color: #0c4cb1;
}

.form-textarea {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.2s;
  max-width: 500px;
}

.form-input-inline {
  display: inline-block;
  width: 200px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.form-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
  font-size: 16px;
}

.form-table td,
.form-table th {
  border: 1px solid #ddd;
  padding: 12px 10px;
  vertical-align: middle;
}

.form-table th {
  background: #f5f8fc;
  font-weight: 600;
  color: #333;
  text-align: center;
}

.form-table td {
  background: #fff;
}

.form-table .table-label {
  background: #f5f8fc;
  font-weight: 500;
  color: #444;
  text-align: right;
  padding-right: 15px;
  white-space: nowrap;
}

.form-table .form-input {
  width: 100%;
  box-sizing: border-box;
  max-width: none;
  padding: 10px 12px;
}

.sample-table {
  table-layout: fixed;
}

.sample-table th:nth-child(1),
.sample-table td:nth-child(1) {
  width: 20%;
}

.sample-table th:nth-child(2),
.sample-table td:nth-child(2) {
  width: 8%;
}

.sample-table th:nth-child(3),
.sample-table td:nth-child(3) {
  width: 22%;
}

.sample-table th:nth-child(4),
.sample-table td:nth-child(4) {
  width: 23%;
}

.sample-table th:nth-child(5),
.sample-table td:nth-child(5) {
  width: 20%;
}

.sample-table th:nth-child(6),
.sample-table td:nth-child(6) {
  width: 7%;
}

.sample-table .form-input {
  padding: 8px 10px;
  font-size: 15px;
}

.form-checkbox-group,
.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-checkbox-label,
.form-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-checkbox-label input,
.form-radio-label input {
  width: 18px;
  height: 18px;
}

.form-unit {
  font-size: 16px;
  color: #666;
  margin: 0 5px;
}

.form-separator {
  font-size: 16px;
  color: #999;
  margin: 0 10px;
}

.form-actions {
  text-align: center;
  margin-top: 30px;
}

.btn-add-row,
.btn-remove-row {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.btn-add-row {
  background: #0c4cb1;
  color: #fff;
}

.btn-add-row:hover {
  background: #0a3d91;
}

.btn-remove-row {
  background: #dc3545;
  color: #fff;
}

.btn-remove-row:hover {
  background: #c82333;
}

.form-row .btn-add-row,
.form-row .btn-remove-row {
  margin: 0;
}

.sample-table-wrapper {
  overflow-x: auto;
  margin-bottom: 15px;
}

.sample-table-wrapper table {
  min-width: 100%;
}

.sample-table-actions {
  text-align: center;
  margin-top: 15px;
}

.sample-table-actions .btn-add-row {
  display: inline-flex;
}

@media (max-width: 768px) {

  .subpage-breadcrumb{
    font-size: 16px;
  }
  .subpage-aside{
    display: none;
  }
  .jsfw-form-container {
    padding: 0 10px;
  }
  
  .form-intro {
    padding: 15px;
    font-size: 15px;
  }
  
  .jsfw-form {
    padding: 15px;
    overflow-x: hidden;
  }
  
  .form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .form-label {
    width: 100%;
    text-align: left;
    font-size: 15px;
  }
  
  .form-input {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    padding: 12px;
  }
  
  .form-textarea {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
  }
  
  .form-checkbox-group,
  .form-radio-group {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .form-checkbox-label,
  .form-radio-label {
    font-size: 14px;
  }
  
  .form-checkbox-label input,
  .form-radio-label input {
    width: 16px;
    height: 16px;
  }
  
  
  .form-table {
    font-size: 14px;
    min-width: 600px;
    width: auto;
  }
  
  .form-table td,
  .form-table th {
    padding: 10px 8px;
    white-space: nowrap;
  }
  
  .form-table .table-label {
    text-align: right;
    padding-right: 12px;
    white-space: nowrap;
  }
  
  .form-table .form-input {
    padding: 10px 8px;
    font-size: 14px;
    min-width: 120px;
  }

/* notice-message 样式 */
.notice-message {
  position: fixed;
  z-index: 999999;
  left: 50%;
  top: 35px;
  min-width: 380px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #ebeef5;
  transform: translateX(-50%);
  background-color: #edf2fc;
  transition:
    opacity 0.3s,
    transform 0.4s,
    top 0.4s;
  overflow: hidden;
  padding: 15px 15px 15px 20px;
  display: flex;
  align-items: center;
  opacity: 1;
  font-size: 14px;
  line-height: 1;
  color: #909399;
  box-shadow:
    0 0 16px 0 rgba(0, 0, 0, 0.1),
    0 8px 16px 0 rgba(0, 0, 0, 0.06);
}
@media (max-width: 500px) {
  .notice-message {
    min-width: 92%;
  }
}
.notice-message-success {
  background-color: #f0f9eb;
  border-color: #e1f3d8;
  color: #67c23a;
}
.notice-message-warning {
  background-color: #fdf6ec;
  border-color: #faecd8;
  color: #e6a23c;
}
.notice-message-error {
  background-color: #fef0f0;
  border-color: #fde2e2;
  color: #f56c6c;
}
.notice-message-icon {
  margin-right: 10px;
  font-size: 16px;
}
  
  .sample-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -15px;
    padding: 0 15px;
  }
  
  .sample-table {
    font-size: 14px;
    min-width: 800px;
    width: auto;
  }
  
  .sample-table th,
  .sample-table td {
    padding: 10px 8px;
    font-size: 14px;
    white-space: nowrap;
  }
  
  .sample-table .form-input {
    padding: 8px 10px;
    font-size: 14px;
    min-width: 100px;
  }
  
  .btn-add-row,
  .btn-remove-row {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  
  .sample-table-actions {
    margin-top: 12px;
  }
  
  .form-row-flex {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .form-row-flex .form-input {
    width: 100%;
    max-width: 200px;
  }
  
  .form-unit,
  .form-separator {
    font-size: 14px;
  }
  
  .form-actions {
    margin-top: 20px;
  }
  
  .btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }
  
  .form-error {
    padding: 12px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .form-intro {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .form-row {
    margin-bottom: 15px;
  }
  
  .form-input {
    padding: 10px;
    font-size: 14px;
  }
  
  .form-table {
    font-size: 13px;
    min-width: 500px;
  }
  
  .form-table td,
  .form-table th {
    padding: 8px 6px;
    white-space: nowrap;
  }
  
  .form-table .form-input {
    padding: 8px 6px;
    font-size: 13px;
    min-width: 100px;
  }
  
  .sample-table {
    font-size: 13px;
    min-width: 650px;
  }
  
  .sample-table th,
  .sample-table td {
    padding: 8px 6px;
    font-size: 13px;
    white-space: nowrap;
  }
  
  .sample-table .form-input {
    padding: 6px 8px;
    font-size: 13px;
    min-width: 80px;
  }
}

.institution-info {
  font-size: 15px;
  line-height: 1.8;
}

.institution-info p {
  margin: 5px 0;
}

.agreement-section {
  font-size: 15px;
  line-height: 1.8;
}

.agreement-section p {
  margin-bottom: 12px;
}

.agreement-section strong {
  color: #333;
}

.agreement-section ol,
.agreement-section ul {
  margin-left: 20px;
  margin-bottom: 12px;
}

.agreement-section li {
  margin-bottom: 8px;
}

.risk-section {
  font-size: 15px;
  line-height: 1.8;
  background: #fff8f0;
  padding: 15px;
  border-radius: 6px;
  border-left: 4px solid #f5a623;
}

.risk-section ol {
  margin-left: 20px;
  padding: 0;
}

.risk-section li {
  margin-bottom: 10px;
  text-align: justify;
}

.signature-table {
  border: 2px solid #ddd;
}

.signature-table td {
  width: 50%;
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid #ddd;
}

.signature-table td:last-child {
  border-right: none;
}

.signature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.signature-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.signature-area {
  width: 150px;
  height: 80px;
  border-bottom: 2px solid #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
}

.signature-date {
  font-size: 14px;
  color: #666;
}

.note {
  font-size: 14px;
  color: #888;
  margin-top: 8px;
  margin-bottom: 15px;
  font-style: italic;
}

.delivery-address {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

.delivery-address .form-label {
  width: auto;
  font-weight: 500;
}

.ggfw-conditions {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  padding: 20px;
  background: #f8fafc;
  border-radius: 8px;
}

.ggfw-condition-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 30px;
  border-right: 2px solid #e2e8f0;
}

.ggfw-condition-icon {
  width: 80px;
  height: 80px;
  background: #0c4cb1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.ggfw-condition-icon img {
  width: 40px;
  height: 40px;
}

.ggfw-condition-label {
  font-size: 16px;
  font-weight: bold;
  color: #0c4cb1;
}

.ggfw-condition-list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.ggfw-condition-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ggfw-condition-icon-sm {
  width: 40px;
  height: 40px;
  background: #0c4cb1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ggfw-condition-icon-sm img {
  width: 20px;
  height: 20px;
}

.ggfw-condition-item span {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.ggfw-flow-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0;
  padding: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.ggfw-flow-step {
  flex: 1;
  text-align: center;
}

.ggfw-flow-num {
  width: 50px;
  height: 50px;
  background: #0c4cb1;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  margin: 0 auto 15px;
}

.ggfw-flow-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.ggfw-flow-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.ggfw-flow-arrow {
  font-size: 24px;
  color: #0c4cb1;
  margin: 0 10px;
}

.ggfw-btn-wrap {
  text-align: center;
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ggfw-btn {
  background: linear-gradient(135deg, #0c4cb1 0%, #1a5fc9 100%);
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(12, 76, 177, 0.3);
  text-decoration: none;
  display: inline-block;
}

.ggfw-btn:hover {
  background: linear-gradient(135deg, #0a3d99 0%, #0c4cb1 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 76, 177, 0.4);
}

.ggfw-btn:active {
  transform: translateY(0);
}

.ggfw-result-list {
  margin: 20px 0;
}

.ggfw-result-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.ggfw-result-arrow {
  color: #0c4cb1;
  font-weight: bold;
  margin-right: 10px;
}

.ggfw-result-item a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
}

.ggfw-result-item a:hover {
  color: #0c4cb1;
}

@media (max-width: 768px) {
  .ggfw-conditions {
    flex-direction: column;
  }
  
  .ggfw-condition-main {
    padding-right: 0;
    border-right: none;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  
  .ggfw-condition-list {
    grid-template-columns: 1fr;
  }
  
  .ggfw-flow-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .ggfw-flow-arrow {
    transform: rotate(90deg);
  }
  
  .ggfw-flow-step {
    width: 100%;
  }
  
  .ggfw-btn-wrap {
    flex-direction: column;
    align-items: center;
  }
  
  .ggfw-btn {
    width: 100%;
    max-width: 300px;
  }
}

.form-textarea.full-width {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

.dynamic-row-container {
  margin-top: 10px;
}

.dynamic-row-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}

.dynamic-row-table th,
.dynamic-row-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.dynamic-row-table th {
  background: #f5f5f5;
  font-weight: bold;
  font-size: 15px;
}

.dynamic-row-table .form-input {
  width: 100%;
  box-sizing: border-box;
}

.add-row-btn-wrap {
  text-align: center;
  margin-top: 10px;
}

.add-row-btn-wrap .btn-add-row {
  background: #0c4cb1;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.add-row-btn-wrap .btn-add-row:hover {
  background: #0a3d99;
}

.form-textarea:focus {
  outline: none;
  border-color: #0c4cb1;
}

.form-select {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.2s;
}

.form-select:focus {
  outline: none;
  border-color: #0c4cb1;
}

.form-unit {
  font-size: 14px;
  color: #666;
}

.form-separator {
  margin: 0 15px;
  color: #999;
}

.test-method-container {
  flex: 1;
}

.test-method-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.test-method-item input {
  flex: 1;
}

.btn-add,
.btn-remove {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-add:hover {
  background: #0c4cb1;
  border-color: #0c4cb1;
  color: #fff;
}

.btn-remove:hover {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

.form-actions {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.btn-submit {
  padding: 12px 40px;
  background: #0c4cb1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: #0a3a99;
}

/* 表单校验样式 */
.form-error {
  display: none;
  background: #fef0f0;
  border: 1px solid #fbc4c4;
  border-radius: 4px;
  padding: 15px;
  margin-top: 15px;
  color: #dc3545;
}

.form-error ul {
  margin: 0;
  padding-left: 20px;
}

.form-error li {
  margin-bottom: 5px;
}

.form-error li:last-child {
  margin-bottom: 0;
}

.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error {
  border-color: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

.form-input.is-error:focus,
.form-select.is-error:focus,
.form-textarea.is-error:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

/* 公共服务页面样式 */
.ggfw-page .subpage-hero {
  background: linear-gradient(135deg, #0056b3 0%, #003366 100%);
}


.ggfw-page .subpage-aside-icon {
  content: url('../images/ggfw/icon.png');
}

.ggfw-page .subpage-nav li a {
  padding: 20px 20px 20px 20px;
}

.ggfw-page .subpage-nav li a:hover {
  background: #0056b3;
  color: #fff;
}

.ggfw-nav-level1 {
  position: relative;
  border-bottom: 1px solid #eee;
}

.ggfw-nav-toggle {
  display: flex;
  align-items: center;
  padding: 20px 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.ggfw-nav-toggle:hover {
  background: #f8f8f8;
}

.ggfw-nav-toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}

.ggfw-nav-toggle-icon::before,
.ggfw-nav-toggle-icon::after {
  content: '';
  position: absolute;
  background: #999;
  transition: all 0.2s ease;
}

.ggfw-nav-toggle-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ggfw-nav-toggle-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ggfw-nav-toggle.is-open .ggfw-nav-toggle-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.ggfw-nav-toggle:hover .ggfw-nav-toggle-icon::before,
.ggfw-nav-toggle:hover .ggfw-nav-toggle-icon::after {
  background: #0056b3;
}

.ggfw-nav-toggle.is-open .ggfw-nav-toggle-icon::before,
.ggfw-nav-toggle.is-open .ggfw-nav-toggle-icon::after {
  background: #0056b3;
}

.ggfw-nav-level1-link {
  flex: 1;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding-left: 20px;
}

.ggfw-nav-level2 {
  display: none;
  background: #fafafa;
}

.ggfw-nav-level2.is-open {
  display: block;
}

.ggfw-nav-level2 li {
  border-bottom: 1px solid #eee;
}

.ggfw-nav-level2 li:last-child {
  border-bottom: none;
}

.ggfw-nav-level2 a {
  display: block;
  padding: 15px 20px 15px 60px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.ggfw-nav-level2 a:hover {
  background: #f0f5ff;
  color: #0056b3;
}

.ggfw-nav-level2 a.is-current {
  background: #0056b3;
  color: #fff;
}

.ggfw-nav-direct-link {
  display: block;
  padding: 20px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  transition: all 0.2s;
}

.ggfw-nav-direct-link:hover {
  background: #f8f8f8;
}

.ggfw-nav-direct-link.is-current {
     background: #e8f0fe;
    color: #1a6bcb;
    border-left-color: #1a6bcb;
}

.ggfw-nav-direct-link.is-current::before{
    background-image: url("../images/dwgk/nav_indicator_active.png");
  opacity: 1;
}

.ggfw-content {
  padding: 20px 0;
}


.ggfw-content img{
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.ggfw-section {
  margin-bottom: 40px;
}

.ggfw-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid #0056b3;
}

.ggfw-intro {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ggfw-intro-img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 4px;
}

.ggfw-intro p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #666;
}

.ggfw-intro p:last-child {
  margin-bottom: 0;
}

.ggfw-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.ggfw-data-card {
  width: 100%;
  height: 112px;
  background: #F3F8FF;
  border-radius: 12px;
  padding: 16px 0 16px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ggfw-data-icon {
  width: 80px !important;
  height: 80px !important;
  flex-shrink: 0;
}

.ggfw-data-info {
  display: flex;
  flex-direction: column;
}

.ggfw-data-number {
  font-size: 24px;
  font-weight: bold;
  color: #1A86FF;
  margin-bottom: 6px;
  line-height: 1.2;
}

.ggfw-data-label {
  font-size: 13px;
  font-weight: 500;
  color: #666666;
  line-height: 1.4;
  white-space: nowrap;
}

.ggfw-enter-btn-wrap {
  text-align: center;
}

.ggfw-enter-btn {
  display: inline-block;
  background: linear-gradient(90deg, rgba(14,91,209,0.96), rgba(53,108,235,0.96));
  color: #fff;
  padding: 12px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.ggfw-enter-btn:hover {
  transform: scale(1.05);
    color: #fff;
  box-shadow: 0 5px 20px rgba(0, 86, 179, 0.4);
}

.article-item:hover {
  background: #f8f8f8;
  padding-left: 15px;
  transition: all 0.2s ease;
}

.qkcg-page {
  background: #f5f7fa;
}

.qkcg-page .subpage-aside-head {
  border-bottom: 2px solid #F0F3F8;
}

.qkcg-page .subpage-aside-title {
  color: #0c4cb1;
}

.qkcg-page .subpage-nav li.is-current a {
  background: #0c4cb1;
  color: #fff;
  border-left-color: #0c4cb1;
}

.qkcg-page .subpage-nav li a {
  border-left: 4px solid transparent;
  padding:  0;
}

.qkcg-hero {
  height: 320px;
}

.qkcg-form-container {
  background: #fff;
  border-radius: 8px;
}

.qkcg-form-container .intro-title {
  font-size: 18px;
  color: #171717;
  font-weight: 600;
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}

.qkcg-form-container .intro-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 18px;
  background: linear-gradient(180deg, #0d5bb8 0%, #3671e3 100%);
  border-radius: 3px;
}

.qkcg-form-container .form-intro p {
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
  font-size: 16px;
}

.qkcg-form {
  margin-top: 30px;
}

.qkcg-form .form-section {
  border: none;
}

.qkcg-form .form-row {
  margin-bottom: 20px;
}

.qkcg-form .form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.qkcg-form .form-input,
.qkcg-form .form-select,
.qkcg-form .form-textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.qkcg-form .form-input:focus,
.qkcg-form .form-select:focus,
.qkcg-form .form-textarea:focus {
  outline: none;
  border-color: #0d5bb8;
}

.qkcg-form .form-textarea {
  resize: vertical;
  min-height: 80px;
}

.qkcg-form .file-upload {
  width: 100%;
}

.qkcg-form .file-upload-label {
  display: block;
  width: 100%;
  padding: 40px;
  border: 2px dashed #ddd;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.qkcg-form .file-upload-label:hover {
  border-color: #0d5bb8;
}

.qkcg-form .file-upload-text {
  color: #666;
  font-size: 14px;
}

.qkcg-form .form-actions {
  text-align: center;
  margin-top: 40px;
}

.qkcg-form .btn-submit {
  background: linear-gradient(90deg, rgba(14,91,209,0.96), rgba(53,108,235,0.96));
  color: #fff;
  border: none;
  padding: 12px 45px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qkcg-form .btn-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(13, 91, 184, 0.4);
}

/* 期刊采编三层级导航样式 */
.qkcg-nav-level1 {
  position: relative;
  border-bottom: 1px solid #eee;
}

.qkcg-nav-toggle {
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 20px;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid #F0F3F8;
}

.qkcg-nav-toggle:hover {
  background: #fff;
}

.qkcg-nav-toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}

.qkcg-nav-toggle-icon::before,
.qkcg-nav-toggle-icon::after {
  content: '';
  position: absolute;
  background: #999;
  transition: all 0.2s ease;
}

.qkcg-nav-toggle-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.qkcg-nav-toggle-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.qkcg-nav-toggle.is-open .qkcg-nav-toggle-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.qkcg-nav-toggle:hover .qkcg-nav-toggle-icon::before,
.qkcg-nav-toggle:hover .qkcg-nav-toggle-icon::after {
  background: #0c4cb1;
}

.qkcg-nav-toggle.is-open .qkcg-nav-toggle-icon::before,
.qkcg-nav-toggle.is-open .qkcg-nav-toggle-icon::after {
  background: #0c4cb1;
}

.qkcg-nav-level1-link {
  flex: 1;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding-left: 20px;
}

.qkcg-nav-level1-link.is-current {
  color: #0c4cb1;
}

.qkcg-nav-level2 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  background: #fff;
}

.qkcg-nav-level2.is-open {
  display: block;
}

.qkcg-nav-level2 li {
  border-bottom: 1px solid #eee;
}

.qkcg-nav-level2 li:last-child {
  border-bottom: none;
}

/* level2 直接链接（无子级） */
.qkcg-nav-level2 li a {
  display: block;
  padding: 10px 15px 10px 43px;
  color: #666;
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: all 0.2s;
}

.qkcg-nav-level2 li a:hover {
  background: #e8f0ff;
  color: #0c4cb1;
}

.qkcg-nav-level2 li a.is-current {
  /* background: #0c4cb1;
  color: #fff;
  border-left-color: #0c4cb1; */
}

/* level2 可展开项 */
.qkcg-nav-level2-item {
  border-bottom: 1px solid #eee;
}

.qkcg-nav-level2 .qkcg-nav-direct-link {
  padding: 10px 15px 10px 78px !important;
}

.qkcg-nav-toggle-2 {
  display: flex;
  align-items: center;
  padding: 10px 15px 10px 43px;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid #F0F3F8;
}

.qkcg-nav-toggle-2:hover {
  background: #fff;
}

.qkcg-nav-toggle-2:hover .qkcg-nav-toggle-icon::before,
.qkcg-nav-toggle-2:hover .qkcg-nav-toggle-icon::after {
  background: #0c4cb1;
}

.qkcg-nav-toggle-2.is-open .qkcg-nav-toggle-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.qkcg-nav-toggle-2.is-open .qkcg-nav-toggle-icon::before,
.qkcg-nav-toggle-2.is-open .qkcg-nav-toggle-icon::after {
  background: #0c4cb1;
}

.qkcg-nav-level2-link {
  flex: 1;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.qkcg-nav-level2-link.is-current {
  color: #0c4cb1;
}

.qkcg-nav-level3 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  background: #f8f8f8;
}

.qkcg-nav-level3.is-open {
  display: block;
}

.qkcg-nav-level3 li {
  border-bottom: 1px solid #eee;
}

.qkcg-nav-level3 li:last-child {
  border-bottom: none;
}

.qkcg-nav-level3 li a {
  display: block;
  padding: 10px 15px 10px 43px;
  color: #666;
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: all 0.2s;
  text-align: center;
}

.qkcg-nav-level3 li a:hover {
  background: #e8f0ff;
  color: #0c4cb1;
}

.qkcg-nav-level3 li a.is-current {
  background: #0c4cb1;
  color: #fff;
  border-left-color: #0c4cb1;
}

.qkcg-nav-level3 li a{
    padding: 10px 15px 10px 43px !important;
}

/* 直接链接样式（无子级栏目 - level1） */
.qkcg-nav-direct-link {
  display: block;
  padding: 20px 20px 20px 55px !important;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}

.qkcg-nav-direct-link:hover {
  background: #f8f8f8;
}

.qkcg-nav-direct-link.is-current {
  background: #0c4cb1;
  color: #fff;
}

/* 期刊列表样式 - 目录布局 */
.qkcg-list-container {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
}

.qkcg-list-header {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid #e8e8e8;
  background: #fafafa;
}

.qkcg-list-title {
  font-size: 20px;
  font-weight: 600;
  color: #0c4cb1;
  margin: 0;
}

.qkcg-list {
  padding: 0;
  max-height: 800px;
  overflow-y: auto;
}

.qkcg-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qkcg-item {
  border-bottom: 1px solid #f0f0f0;
}

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

.qkcg-item:hover {
  background: #f8faff;
}

.qkcg-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
}

.qkcg-item:hover .qkcg-link {
  background: #f8faff;
}

.qkcg-marker {
  width: 6px;
  height: 14px;
  background: #459BFF;
  border-radius: 2px;
  margin-right: 15px;
  flex-shrink: 0;
}

.qkcg-item:hover .qkcg-marker {
  background: #0c4cb1;
}

.qkcg-item-title {
  flex: 1;
  font-size: 18px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.qkcg-item-date {
  font-size: 18px;
  color: #999;
  margin-left: 20px;
  flex-shrink: 0;
}

/* 期刊分页样式 */
.qkcg-pagination {
  text-align: center;
}

.qkcg-detail {
  padding:  0;
}

.pdf-container {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.pdf-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.pdf-wrapper {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.pdf-wrapper object {
    border: none;
    display: block;
}

.pdf-wrapper embed {
    border: none;
    display: block;
}

/* PDF.js样式 */
.pdf-scroller {
    max-height: 70vh;
    overflow-y: auto;
    background: #525659;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.pdf-view-single {
    flex-direction: column;
    align-items: center;
}

.pdf-view-double {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}

.pdf-view-scroll {
    flex-direction: column;
    align-items: center;
}

.pdf-page {
    display: block;
    margin: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    background: #fff;
}

.pdf-view-double .pdf-page {
    margin: 5px;
}

.pdf-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 20px;
    background: #f5f7fa;
    border-top: 1px solid #e0e0e0;
    margin-top: 10px;
}

.pdf-controls-left,
.pdf-controls-center,
.pdf-controls-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pdf-btn {
    padding: 6px 12px;
    background: linear-gradient(135deg, #0c4cb1 0%, #459bff 100%);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.pdf-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(12, 76, 177, 0.3);
}

.pdf-btn-active {
    background: linear-gradient(135deg, #0a3a8a 0%, #2d7ed4 100%);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

#pageNum {
    font-size: 14px;
    color: #666;
    padding: 0 10px;
    white-space: nowrap;
}

#zoomLevel {
    font-size: 14px;
    color: #666;
    padding: 0 8px;
    min-width: 50px;
    text-align: center;
}

.pdf-loading {
    padding: 60px 20px;
    text-align: center;
    color: #666;
}

.pdf-loading-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0c4cb1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pdf-loading p {
    margin: 0;
    font-size: 14px;
}

/* 全屏模式 */
.pdf-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #525659 !important;
    display: flex !important;
    flex-direction: column !important;
}

.pdf-fullscreen .pdf-scroller {
    flex: 1 !important;
    max-height: none !important;
    height: calc(100vh - 80px) !important;
}

.pdf-fullscreen .pdf-controls {
    position: sticky !important;
    bottom: 0 !important;
    margin-top: 0 !important;
    z-index: 10 !important;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .pdf-controls {
        padding: 10px;
        gap: 6px;
    }
    
    .pdf-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    #pageNum,
    #zoomLevel {
        font-size: 12px;
    }
    
    .pdf-scroller {
        max-height: 60vh;
        padding: 10px;
    }
    
    .pdf-page {
        margin: 5px 0;
    }
    
    .pdf-view-double .pdf-page {
        margin: 3px;
    }
    
    .pdf-fullscreen .pdf-scroller {
        height: calc(100vh - 100px) !important;
    }
}

.pdf-download-btn {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #0c4cb1 0%, #459bff 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(12, 76, 177, 0.2);
}

.pdf-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 76, 177, 0.3);
    text-decoration: none;
    color: #fff;
}

@media (max-width: 768px) {
    .pdf-container {
        padding: 15px;
        margin-top: 20px;
    }
    
    .pdf-wrapper {
        height: 400px !important;
    }
}

/* 微信浏览器固定顶部控制栏样式 */
.pdf-controls-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: #f5f7fa;
    border-bottom: 1px solid #e0e0e0;
}

.pdf-controls-header-left,
.pdf-controls-header-center,
.pdf-controls-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdf-controls-header .pdf-btn {
    padding: 5px 10px;
    font-size: 13px;
}

.pdf-controls-header .pdf-download-btn {
    padding: 5px 12px;
    font-size: 13px;
}

/* 调整滚动区域样式以配合固定头部 */
#pdfJsViewer .pdf-scroller {
    max-height: 65vh;
    padding-top: 10px;
}

/* 公共服务Tab样式 */
.ggfw-tab-container {
  margin-top: 20px;
}

.ggfw-tab-nav {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

.ggfw-tab-btn {
  position: relative;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 600;
  color: #212121;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-right: 30px;
}

.ggfw-tab-btn:hover {
  color: #0c4cb1;
}

.ggfw-tab-btn.is-active {
  color: #212121;
  font-weight: 600;
}

.ggfw-tab-btn.is-active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: #0c4cb1;
}

.ggfw-tab-content {
  min-height: 400px;
}

.ggfw-tab-panel {
  display: none;
}

.ggfw-tab-panel.is-active {
  display: block;
}

.ggfw-refresh-btn{
  display: none;
}

/* 满意度反馈表单样式 */
.jsfw-mydfk-container {
  background: #fff;
  border-radius: 8px;
}

.mydfk-intro {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}

.mydfk-intro p {
  margin: 10px 0;
  color: #666;
  line-height: 1.8;
}

.mydfk-sign {
  text-align: right !important;
  margin-top: 20px !important;
}

.mydfk-section {
  margin-bottom: 30px;
}

.mydfk-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.mydfk-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
}

.mydfk-table th,
.mydfk-table td {
  padding: 12px 15px;
  text-align: center;
  border: 1px solid #ddd;
  font-size: 16px;
}

.mydfk-table th {
  background: #f5f7fa;
  font-weight: 600;
  color: #333;
}

.mydfk-table td:first-child {
  width: 50px;
}

.mydfk-table td:nth-child(2) {
  text-align: left;
}

.mydfk-table input[type="radio"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.mydfk-textarea-group {
  margin-bottom: 20px;
}

.mydfk-label {
  display: block;
  margin-bottom: 8px;
  color: #666;
  font-size: 16px;
}

.mydfk-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: none;
  font-size: 14px;
  line-height: 1.6;
  box-sizing: border-box;
}

.mydfk-textarea:focus {
  outline: none;
  border-color: #459BFF;
}

.mydfk-form-group {
  margin-bottom: 15px;
}

.mydfk-input {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  background: transparent;
}

.mydfk-input:focus {
  outline: none;
  border-bottom-color: #459BFF;
}

.mydfk-input::placeholder {
  color: #ccc;
}

.mydfk-actions {
  text-align: center;
  margin-top: 30px;
}

.mydfk-submit-btn {
  padding: 12px 40px;
  background: #459BFF;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.mydfk-submit-btn:hover {
  background: #0c4cb1;
}

.mydfk-error {
  display: none;
  margin-top: 20px;
  padding: 15px;
  background: #fff3f3;
  border: 1px solid #ffcccc;
  border-radius: 4px;
  color: #d9534f;
}

.mydfk-error ul {
  margin: 0;
  padding-left: 20px;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: linear-gradient(135deg, #216ccf 0%, #216ccfd6 100%);
  color: #fff;
}

.modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body {
  padding: 24px;
}

.modal-body .form-group {
  margin-bottom: 20px;
}

.modal-body .form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.modal-body .form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.modal-body .form-input:focus {
  outline: none;
  border-color: #0c4cb1;
}

.code-input-wrap {
  display: flex;
  gap: 12px;
}

.code-input-wrap .form-input {
  flex: 1;
}

.send-code-btn {
  padding: 12px 20px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  color: #666;
  transition: all 0.3s;
}

.send-code-btn:hover:not(:disabled) {
  background: #e8e8e8;
}

.send-code-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.login-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #216ccf 0%, #216ccfd6 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.login-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(33, 108, 207, 0.4);
}

.login-submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.login-tip {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin: 10px 0 0;
}

.mydfk-error li {
  margin-bottom: 5px;
}

/* 用户下拉菜单样式 */
.user-dropdown {
  position: relative;
  display: inline-block;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  color: #333;
  text-decoration: none;
}

.user-info:hover {
  background: rgba(0, 0, 0, 0.05);
}

.user-avatar {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.user-avatar .avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-name {
  font-size: 14px;
  color: #333;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #666;
  transition: transform 0.3s;
}

.user-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.user-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 120px;
  width: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
}

.user-dropdown.active .user-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.user-dropdown-menu li {
  margin: 0;
  padding: 0;
}

.user-dropdown-menu li a {
  display: block;
  padding: 8px 14px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
  transition: all 0.2s;
  text-align: center;
}

.user-dropdown-menu li a:hover {
  background: #f5f7fa;
  color: #0c4cb1;
}

.user-dropdown-menu li.divider {
  height: 1px;
  background: #eee;
  margin: 3px 0;
}

/* 移动端用户信息 */
.mobile-user-info {
  color: #0c4cb1;
  font-weight: 500;
}

/* DQYD Page Background */
.dqyd-page .page-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.dqyd-page .page-bg-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url(../images/dqyd/dqbg.png) no-repeat top center;
  background-size: cover;
}

.dqyd-page .page-bg-bottom {
  display: none;
}

/* 新闻滚动轮播区域 */
.news-marquee-section {
  height: 58px;
  background: #EBEDF7;
  overflow: hidden;
  position: relative;
}

.news-marquee-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.news-marquee-icon {
  flex-shrink: 0;
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.news-marquee-icon img {
  height: 24px;
  width: auto;
}

.news-marquee-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.news-marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
}

.news-marquee-content:hover {
  animation-play-state: paused;
}

.news-marquee-item {
  display: inline-block;
  padding: 0 40px;
  font-weight: 400;
  font-size: 18px;
  color: #0A2A6A;
  text-decoration: none;
  transition: color 0.3s;
}

.news-marquee-item:hover {
  color: #216ccf;
  text-decoration: underline;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 新闻滚动轮播 - 移动端适配 */
@media (max-width: 768px) {
  .news-marquee-section {
    height: 44px;
  }
  
  .news-marquee-container {
    padding: 0 15px;
  }
  
  .news-marquee-icon {
    margin-right: 10px;
  }
  
  .news-marquee-icon img {
    height: 20px;
  }
  
  .news-marquee-item {
    padding: 0 30px;
    font-size: 14px;
  }
}

/* 搜索结果页面样式 */
.search-info {
  font-size: 15px;
  color: #666;
}

.search-keyword {
  color: #1a6bcb;
  font-weight: 500;
}

.search-count {
  color: #1a6bcb;
  font-weight: 500;
}

/* 搜索结果列表特定样式 - 让标题和日期在同一行 */
.search-result-container .article-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.search-result-container .article-title {
  margin-bottom: 0;
  flex: 1;
}

.search-result-container .article-meta {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* 搜索结果页面 - 移动端适配 */
@media (max-width: 768px) {
  .search-result-container .article-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .search-result-container .article-meta {
    font-size: 13px;
  }
}

/* ============================================
   �ְ��ֶ���ʽ
   ============================================ */

/* 分包字段容器 */
.subcontract-section {
  background: linear-gradient(135deg, #f8fcff 0%, #fafbfc 100%);
  border: 1px solid #e8eef3;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.subcontract-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0c4cb1 0%, #1a73e8 50%, #0c4cb1 100%);
}

/* 主问题样式 */
.subcontract-main-question {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e8eef3;
  position: relative;
}

.subcontract-main-question::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #0c4cb1;
  border-radius: 2px;
}

.subcontract-main-question .form-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto;
}

.subcontract-main-question .form-label::before {
  content: "";
  width: 4px;
  height: 16px;
  background: #0c4cb1;
  border-radius: 2px;
}

/* 子选项区域 - 带连接线 */
.subcontract-child-fields {
  margin-top: 15px;
  position: relative;
}

/* 子字段容器 */
.subcontract-child-item {
  background: #fff;
  border: 1px solid #e0e6eb;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 15px;
  transition: all 0.25s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.subcontract-child-item:hover {
  border-color: #0c4cb1;
  background: #f8fcff;
  box-shadow: 0 4px 12px rgba(12, 76, 177, 0.1);
  transform: translateX(2px);
}

.subcontract-child-item:hover::before {
  background: #0c4cb1;
  box-shadow: 0 0 8px rgba(12, 76, 177, 0.3);
}

.subcontract-child-item.disabled {
  opacity: 0.55;
  pointer-events: none;
  background: #fafbfc;
  border-color: #e8eef3;
}

.subcontract-child-item.disabled::before {
  border-color: #ccc;
  background: #fafbfc;
}

/* 子字段头部 */
.subcontract-child-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

/* 复选框样式 */
.subcontract-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #0c4cb1;
  transition: all 0.2s ease;
}

.subcontract-checkbox:hover {
  transform: scale(1.05);
}

.subcontract-checkbox:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.subcontract-checkbox-label {
  font-weight: 500;
  color: #2c3e50;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.subcontract-checkbox-label:hover {
  color: #0c4cb1;
}

/* 子字段输入区域 */
.subcontract-input-wrap {
  margin-top: 12px;
  padding-left: 30px;
  position: relative;
}

.subcontract-input-wrap::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: #e8eef3;
}

.subcontract-input-wrap .form-input,
.subcontract-input-wrap .form-textarea {
  width: 100%;
  max-width: 550px;
  transition: all 0.2s ease;
}

.subcontract-input-wrap .form-input:focus,
.subcontract-input-wrap .form-textarea:focus {
  border-color: #0c4cb1;
  box-shadow: 0 0 0 3px rgba(12, 76, 177, 0.08);
}

.subcontract-input-wrap .form-textarea {
  min-height: 90px;
}

/* 禁用状态下的输入框 */
.subcontract-child-item.disabled .form-input,
.subcontract-child-item.disabled .form-textarea {
  background: #f5f7fa;
  border-color: #e0e6eb;
  color: #999;
  cursor: not-allowed;
}

/* 关联关系提示 */
.subcontract-indicator {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #888;
  margin-left: 10px;
  padding: 4px 10px;
  background: #f5f7fa;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.subcontract-indicator::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #00c853;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.subcontract-child-item.disabled .subcontract-indicator {
  color: #bbb;
  background: #fafbfc;
}

.subcontract-child-item.disabled .subcontract-indicator::before {
  background: #ccc;
  animation: none;
}

/* 提示文字 */
.subcontract-hint {
  font-size: 13px;
  color: #999;
  margin-top: 12px;
  padding-left: 30px;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 6px;
}

.subcontract-hint::before {
  content: "💡";
}

/* 启用状态高亮 */
.subcontract-child-item:not(.disabled) {
  border-left: 3px solid #0c4cb1;
}

.subcontract-child-item.disabled {
  border-left: 3px solid #e0e6eb;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .subcontract-section {
    padding: 18px;
  }
  
  .subcontract-child-item {
    padding: 14px;
    margin-bottom: 12px;
  }
  
  .subcontract-child-item:hover {
    transform: none;
  }
  
  .subcontract-input-wrap .form-input,
  .subcontract-input-wrap .form-textarea {
    max-width: 100%;
  }
  
  .subcontract-main-question .form-label {
    font-size: 14px;
  }
}
