/* ========================================
   布局容器
======================================== */
.main-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 5px 0;
  box-sizing: border-box;
}
header {
  width: 100%;
}
section, footer {
  width: 100%;
}

/* index首页导航菜单 悬浮菜单容器样式 */
.fixed-menu {
  position: fixed;
  /* 固定定位，使其悬浮 */
  top: 20%;
  /* 距离页面顶部 0 距离 */
  left: -100px;
  /* 距离页面左侧 0 距离，可根据需求调整 */
  background-color: #fff;
  /* 右侧边框，可自定义 */
  padding: 10px;
  /* 内边距，可自定义 */
  z-index: 9999;
  /* 确保菜单在最上层 */
  background-color: transparent;
  /* 透明背景 */
  border-bottom: 1px solid rgba(204, 204, 204, 0.3);
  /* 半透明边框 */
  transition: left 1.3s ease-in-out;
  /* 添加过渡效果，鼠标移入移出时左侧定位变化会有动画效果，0.3s是过渡时间，ease - in - out是过渡曲线 */
}

.fixed-menu:hover {
  left: 0;
  /* 鼠标悬停时，将div定位到浏览器左侧边缘，即滑出 */
}

/* 菜单列表项样式 */
.fixed-menu ul {
  list-style: none;
  /* 去除列表默认样式 */
  margin: 0;
  /* 去除默认外边距 */
  padding: 0;
  /* 去除默认内边距 */
}

.fixed-menu li {
  margin-bottom: 10px;

  /* 列表项之间的间距，可自定义 */
}

.fixed-menu a {

  background-color: transparent;
  /* 透明背景 */
  display: block;
  /* 让链接以块级元素显示，方便点击 */
  padding: 8px 12px;
  /* 内边距，可自定义 */
  background-color: #FFFFFF;
  /* 按钮背景色，可自定义 */
  text-decoration: none;
  /* 去除链接下划线 */
  color: #1e1e1e;
  /* 文字颜色，可自定义 */
  border-radius: 4px;
  /* 圆角，可自定义 */
  text-align: center;
  /* 文字居中 */
  border: 1px solid #009944;
  border-left: 6px solid #009944;
}

.fixed-menu a:hover {
  background-color: #ddd;
  /* 鼠标悬停时的背景色，可自定义 */
}

/* 激活样式：点击后显示的样式 */
.fixed-menu li.active a {
  background-color: #009944;
  color: white;
  /* 激活文字颜色 */
  font-weight: bold;
  /* 文字加粗 */
}
.tag { display: inline-block; padding: 2px 10px; border-radius: 10px; font-size: 12px; background: #f0fdf4; color: #009944; margin-right: 6px; white-space: nowrap; line-height: 20px; }
.card-content .tags { margin-top: 8px; }

.section {
  background: #fff;
  margin: 0;
  padding: 20px 0;
  border-radius: 8px;
  /* box-shadow: 0 2px 8px #eee; */
  box-shadow: none;
  width: 100%;
}

section.jydt-section {
  width: 100%;
  background: #ffffff;
}

section.jydt-section .main-container {
  width: 1440px;
  margin: 0 auto;
}

section.zw-section .main-container {
  width: 1440px;
  margin: 0 auto;
}

section.scjj-section {
  width: 100%;
  background: #ffffff;
  border-radius: 0;
  padding: 0;
  margin: 20px 0 0 0;
  height:747px;
  padding-bottom: 100px;
}

section.scjj-section .main-container {
  width: 1440px;
  margin: 0 auto;
}

section.zs-section .main-container {
  width: 1440px;
  margin: 0 auto;
}

section.zyfw-section {
  background: #fff;
}

section.zyfw-section .main-container {
  width: 1440px;
  margin: 0 auto;
}
/* ========================================
   智慧基金板块样式
======================================== */
section.zhjj-section {
  background-color: #f9f9f9;
}

section.zhjj-section .main-container {
  width: 1440px;
  margin: 0 auto;
}

/* ========================================
   相关单位板块样式
======================================== */
section.xgdw-section {
  background: #f9f9f9;
}

section.xgdw-section .main-container {
  width: 1440px;
  margin: 0 auto;
}

/* 相关单位内容样式 */
.xgdw-content {
  margin-top: 24px;
}

/* 选项标签样式 */
.xgdw-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.xgdw-tab {
  width: 160px;
  height: 46px;
  padding: 12px 0;
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-size: 20px;
  line-height: 30px;
  font-weight: normal;
  color: #666666;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.xgdw-tab.active {
  background: none;
  border: none;
  color: #009944;
  font-weight: bold;
}

.xgdw-tab:hover {
  background: none;
  border: none;
  color: #009944;
}

.xgdw-tab.active:hover {
  background: none;
  border: none;
  color: #009944;
  font-weight: bold;
}

/* 卡片列表样式 */
.xgdw-card-list {
  display: none;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.xgdw-card-list.active {
  display: flex;
}

/* 隐藏滚动条 */
.xgdw-card-list::-webkit-scrollbar {
  display: none;
}

.xgdw-card-list {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* 卡片样式 */
.xgdw-card {
  flex: 0 0 auto;
  width: 280px;
  background: #fff;
  border-radius: 8px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.xgdw-card:hover {
  border-color: #009944;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 153, 68, 0.15);
}

.xgdw-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* 大图片样式 - 只放大图片，不改变容器 */
.xgdw-card-large img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

/* 小图片样式 - 缩小阿里云等特定图片 */
.xgdw-card-small img {
  max-width: 50%;
  max-height: 50%;
  width: auto;
  height: auto;
}


/* ========================================
   专业服务板块样式
======================================== */
.zyfw-three-column {
  display: flex;
  gap: 16px;
  width: 100%;
}

.zyfw-column {
  flex: 1;
  height: 220px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zyfw-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.zyfw-column-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: white;
  z-index: 2;
}

.zyfw-column-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.zyfw-column-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.zyfw-column-title {
  font-size: 24px;
  line-height: 34px;
  font-weight: bold;
  color: white;
  margin-bottom: 8px;
}

.zyfw-column-desc {
  font-size: 16px;
  line-height: 24px;
  color: white;
  height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 16px;
}

.zyfw-column-arrow {
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: color 0.2s, opacity 0.3s, transform 0.3s;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.zyfw-column-arrow img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: inline-block;
}
.zyfw-column:hover{
  cursor: pointer;
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 153, 68, 0.3);
}

.zyfw-column:hover::before {
  opacity: 1;
}

.zyfw-column:hover .zyfw-column-arrow {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.scjj-cards {
  display: flex;
  width: 100%;
  height: 100%;
}

.scjj-card {
  flex: 1 1 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 100%;
}

.scjj-card.scjj-card-title {
  background: #fff;
}

.placeholder {
  color: #aaa;
  text-align: center;
  padding: 40px 0;
  font-size: 1.2em;
}

/* ========================================
   统一导航栏样式（参考 bbwcq.com）
======================================== */
.unified-header {
  width: 100%;
  background: rgba(0, 0, 0, 0.04);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.unified-header:hover {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-bottom-color: rgba(200,200,200,0.2);
}

.unified-header:hover .nav-item > a,
.unified-header:hover .brand-title ,
.unified-header:hover .brand-slogan
{
  color: #1a1a1a;
}

.unified-header:hover .brand-subtitle {
  color: #888888;
}

.unified-header:hover .brand-text {
  border-left-color: #d0d0d0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  min-height: 40px;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 15px 0;
  box-sizing: border-box;
}

/* 左侧品牌区：Logo + 中英文标题 */
.header-brand {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.brand-logo-link {
  display: flex;
  line-height: 0;
  justify-content: center;
  gap: 10px;
}

.brand-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}
.brand-text {
  display: flex;
  /*flex-direction: column;*/
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transition: color 0.3s ease;
  margin-top: 4px;
}
.brand-item {
  box-sizing: border-box;
}
.brand-titles {
  align-items: center;
  gap: 15px;
}

.brand-divider {
  font-weight: lighter;
  border-left:1px solid #009944;
  height: 40px;
  line-height: 40px;
}

.brand-subtitles {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}

.brand-divider-sm {
  font-size: 14px;
  color: #009944;
}

.brand-title {
  font-size: 27px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 30px;
  letter-spacing: 1.2px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.brand-title1 {
  font-size: 27px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 2px;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.border-l {
  border-left: 1px solid #009944;
  padding-left: 8px;
  margin-left: 6px;
}
.unified-header:hover .border-l {
  border-left: 1px solid #009944;
}
.brand-subtitle {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin: 2px auto 0;
  line-height: 17px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  text-align: center;
  margin-top: 5px;
}

.text-let1{
  letter-spacing: 0.6px;
}
.text-let2{
  letter-spacing: -0.4px;
}
.brand-slogan {
  /*background: rgba(0,153,68,0.8);*/
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  line-height: 16px;
  letter-spacing: 3px;
  text-align: center;
  white-space: nowrap;
  margin: 6px auto 0;
  padding: 2px;
}

/* 右侧导航菜单 */
.header-nav {
  flex-shrink: 0;
  margin-left: 50px;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 1px;
  white-space: nowrap;
  position: relative;
}

.nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: transparent;
  transition: background 0.25s ease, width 0.25s ease;
}

.nav-item > a:hover,
.unified-header:hover .nav-item.active > a {
  color: #009944;
}

.nav-item > a::after {
  background: transparent;
}

.nav-item.active > a::after {
  background: #009944;
}

/* ========================================
   Mega Menu 巨型菜单面板样式
======================================== */
.nav-item.has-megamenu {
  position: static;
}

.megamenu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.nav-item.has-megamenu:hover .megamenu-panel {
  opacity: 1;
  visibility: visible;
}
.nav-item.has-megamenu:hover > a{
  color: #009944;
}
.megamenu-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 24px 10px 30px 10px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-item > a > i {
  display: none;
}

.megamenu-title {
  font-size: 22px;
  font-weight: 700;
  color: #009944;
  letter-spacing: 3px;
  white-space: nowrap;
  padding-right: 20px;
  border-right: 1.5px solid #d0d0d0;
  line-height: 28px;
  text-align: right;
  width: 260px;
}

.megamenu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 80px;
  flex: 1;
}

.megamenu-item {
  display: inline-block;
  padding: 5px 2px;
  font-size: 16px;
  color: #555555;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
  width: 160px
}

.megamenu-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #009944;
  transition: width 0.25s ease;
}

.megamenu-item:hover {
  color: #009944;
}

.megamenu-item:hover::after {
  width: 100%;
}

/* 旧样式保留兼容性 */
.header-login { display: none; }
.nav-bar { display: none; }
.menu-bar { display: none; }

/* ========================================
   搜索框样式
======================================== */
.search-input::placeholder {
  color: #999999;
  opacity: 1;
}

.search-input {
  width: 473px;
  height: 54px;
  border: 1px solid #009944;
  border-radius: 4px 0 0 4px;
  padding: 0 24px;
  font-size: 16px;
  outline: none;
  background: #f8fffb;
  transition: border 0.2s;
  box-sizing: border-box;
}

.search-input:focus {
  border-color: #16a34a;
}

.search-btn {
  height: 54px;
  border: none;
  border-radius: 0 4px 4px 0;
  background: #16a34a;
  color: #fff;
  font-size: 16px;
  padding: 0 32px;
  cursor: pointer;
  transition: background 0.2s;
}

.search-btn:hover {
  background: #009944;
}

/* 资讯动态 Tab 区样式 */
.news-tabs-bar {
  width: 100%;
  height: 48px;
  background: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -48px;
  margin-bottom: -48px;
  z-index: 2;
}
.news-tabs-bar-inner {
  width: 1440px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.news-tabs-bar-tab {
  height: 48px;
  padding: 12px 32px;
  font-size: 17px;
  line-height: 24px;
  color: #333333;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  outline: none;
  border-radius: 0;
  transition: color 0.2s;
  width: auto;
  min-width: 0;
  box-shadow: none;
}
.news-tabs-bar-tab.active {
  color: #009944;
  font-weight: bold;
  border-bottom: 3px solid #009944;
  background: none;
  border-radius: 0;
}

.news-tabs-bar-tab:hover {
  color: #009944;
}

/* ========================================
   菜单栏样式
======================================== */
.menu-bar {
  height: 60px;
  background: #009944;
  box-sizing: border-box;
  border-bottom: none;
}

.menu-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  list-style: none;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 1440px;
}

.menu-item {
  height: 60px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.menu-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  line-height: 60px;
  padding: 0 8px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s, border-bottom 0.2s;
  text-align: center;
}

.menu-item a:hover,
.menu-item.active a {
  color: #fff;
  text-decoration: none;
  background-color: #007A36;
}

/* ========================================
   二级菜单样式
======================================== */
.menu-item.has-submenu {
  position: relative;
}

.menu-item.has-submenu > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 6px;
  vertical-align: middle;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  opacity: 0.9;
  transform: rotate(45deg);
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.menu-item.has-submenu:hover > a::after {
  transform: rotate(-135deg);
}

.submenu {
  position: absolute;
  top: 60px;
  left: 0;
  min-width: 120px;
  width: auto;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: none;
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  white-space: nowrap;
}

.menu-item.has-submenu:hover .submenu {
  display: block;
}

.submenu li {
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #f0f0f0;
}

.submenu li:last-child {
  border-bottom: none;
}

.submenu li a {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 8px;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s, font-weight 0.2s;
}

.submenu li a:hover {
  background: #f8fffb;
  color: #009944;
  text-decoration: none;
  font-weight: 700;
}

/* ========================================
   Banner轮播图样式
======================================== */
.banner-section {
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 490px;
  max-height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.banner-container {
  width: 100%;
  height: 100%;
}

.banner-slider {
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.banner-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.banner-slide img {
  display: block;
  width: 100%;
  height: 500px;
  /* 1200px以上：居中裁剪；1200px以下：完整显示缩放 */
  object-fit: cover;
  object-position: center;
}

.banner-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

/* 左右切换按钮 */
.banner-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 96px;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 0;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 1;
}

.banner-prev {
  left: 0;
  background-image: url('../images/left.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 48px 96px;
  color: transparent;
}

.banner-next {
  right: 0;
  background-image: url('../images/right.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 48px 96px;
  color: transparent;
}

/* 指示器 */
.banner-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator {
  width: 8px;
  height: 8px;
  background: #009944;
  border-radius: 2px;
  display: inline-block;
  transition: width 0.5s, background 0.5s;
}

.indicator.active {
  width: 36px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* ========================================
   资讯动态模块样式
======================================== */
.news-section {
  width: 100%;
  background: #fff;
}

.news-container {
  width: 1440px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 0;
}

.news-title-bar {
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

.news-title-img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.news-title-img {
  height: 48px;
  margin: 0 auto;
  display: block;
  float: none;
}

.news-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.news-title-text {
  font-size: 30px;
  font-weight: bold;
  color: #009944;
  line-height: 48px;
  margin: 0 16px;
  display: inline-block;
  letter-spacing: 4px;
  position: relative;
}

.news-title-line {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #009944, transparent);
  margin: 0 8px;
  border-radius: 1px;
}

/* 板块标题英文背景 */
.news-title-en {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 46px;
  font-weight: 800;
  color: rgba(0, 153, 68, 0.05);
  letter-spacing: 8px;
  line-height: 90px;
  z-index: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  text-transform: uppercase;
}

.news-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.news-left,
.news-right {
  flex: 1 1 0;
  min-width: 0;
  width: 50%;
}

.news-left {
  height: 398px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* 资讯内容响应式 */
@media (max-width: 1200px) {
  .news-left,
  .news-right {
    width: 50%;
  }

  .news-left {
    height: 340px;
  }

  .news-carousel {
    height: 340px;
  }

  .news-carousel-slider {
    height: 340px;
  }

  .news-carousel-slide {
    height: 340px;
  }

  .news-carousel-slide img {
    height: 340px;
  }
}

@media (max-width: 992px) {
  .news-content {
    flex-direction: column;
    gap: 16px;
  }

  .news-left,
  .news-right {
    width: 100%;
  }

  .news-left {
    height: 280px;
  }

  .news-carousel {
    height: 280px;
  }

  .news-carousel-slider {
    height: 280px;
  }

  .news-carousel-slide {
    height: 280px;
  }

  .news-carousel-slide img {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .news-left {
    height: 220px;
    border-radius: 6px;
  }

  .news-carousel {
    height: 220px;
  }

  .news-carousel-slider {
    height: 220px;
  }

  .news-carousel-slide {
    height: 220px;
  }

  .news-carousel-slide img {
    height: 220px;
  }

  .news-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .news-tab {
    flex: 1 1 calc(50% - 4px);
    font-size: 14px;
    padding: 8px 12px;
    height: auto;
  }
}

.news-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.news-carousel-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.news-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}

.news-carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.news-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.news-carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54px;
  background: linear-gradient(90deg, rgba(0,153,68,0.85) 0%, rgba(0,100,50,0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 16px;
  box-sizing: border-box;
  border-radius: 0 0 10px 10px;
}
.news-carousel-title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 20px;
  color: #fff;
  font-weight: normal;
  line-height: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin: 0;
  padding-right: 100px;
  cursor: pointer;
}

.news-carousel-desc {
  flex: 0 0 auto;
  min-width: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: normal;
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin: 0;
  padding-right: 100px;
  cursor: pointer;
}
.news-carousel-indicators {
  position: absolute;
  right: 24px;
  bottom: 11px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  height: 32px;
  min-width: 72px;
  background: none;
  border-radius: 12px;
  padding: 0;
  z-index: 10;
}

.news-carousel-indicators-text {
  flex-shrink: 0;
  font-size: 16px;
  color: #fff;
  min-width: 48px;
  text-align: right;
  margin-left: 12px;
}

.news-carousel-indicator {
  width: 8px;
  height: 8px;
  background: #009944;
  border-radius: 2px;
  display: inline-block;
  transition: width 0.3s, background 0.3s;
}

.news-carousel-indicator.active {
  width: 24px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
}

.news-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 12px;
}

@media (max-width: 576px) {
  .news-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .news-tab {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    font-size: 14px;
    padding: 8px 10px;
    height: auto;
  }
}

.news-tab {
  flex: 1 1 0;
  height: 48px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 17px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-sizing: border-box;
  text-align: center;
}

.news-tab.active {
  background: linear-gradient(135deg, #009944 0%, #007a35 100%);
  color: #fff;
  border: 1px solid #009944;
  box-shadow: 0 3px 10px rgba(0, 153, 68, 0.25);
}

.news-tab:not(.active):hover {
  background: #f0faf5;
  color: #009944;
  border-color: #b8e6cd;
}

/* 新闻列表样式 */
.news-list-content {
  margin-top: 16px;
}

.news-list {
  width: 100%;
}

.news-item {
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}



.news-item-headline {
  padding-bottom: 12px;
  border-bottom: 1px solid #eeeeee;
  display: block;
}

.news-item-headline .news-item-title {
  font-size: 24px;
  line-height: 32px;
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: color 0.3s ease;
}

.news-item-headline:hover .news-item-title {
  color: #009944;
}

.news-item-headline:hover .news-item-content {
  color: #666666;
}

.news-item-headline:hover {
  opacity: 1;
}

.news-item-headline .news-item-content {
  font-size: 16px;
  line-height: 24px;
  color: #888888;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

/* 普通新闻项样式 */
.news-item:not(.news-item-headline) {
  min-height: 36px;
}

.news-item-dot {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #009944;
  margin-right: 8px;
  flex-shrink: 0;
}

.news-item-title {
  font-size: 16px;
  line-height: 24px;
  color: #1e1e1e;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  flex: 1;
  margin-right: 24px;
  transition: color 0.3s ease;
}

.news-item:not(.news-item-headline):hover .news-item-title {
  color: #009944;
  font-weight: bold;
  padding-left: 4px;
  transition: all 0.2s ease;
}

.news-item:not(.news-item-headline):hover .news-item-date {
  color: #999999;
  opacity: 1;
}

/* 更多资讯链接样式 */
.news-more {
  display: flex;
  justify-content: flex-end;
}

.news-more-link {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 22px;
  color: #009944;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-more-link:hover {
  color: #007a33;
  font-weight: bold;
}

.news-more-text {
  margin-right: 8px;
}

.news-more-arrow {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.news-item-date {
  font-size: 16px;
  line-height: 24px;
  color: #999999;
  flex-shrink: 0;
}

.news-tab-content { display: none; }
.news-tab-content.active { display: block; }

.jydt-cards {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.jydt-card {
  flex: 1 1 0;
  background: #fff;
  border: 1px solid #009944;
  border-radius: 4px;
  box-sizing: border-box;
  height: 318px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 36px 12px;
  transition: all 0.3s ease;
}

.jydt-card:hover {
  cursor: pointer;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 153, 68, 0.3);
}

.jydt-card-img {
  width: 128px;
  height: 128px;
  margin-bottom: 0;
}

.jydt-card-title {
  font-size: 24px;
  line-height: 34px;
  font-weight: bold;
  color: #1e1e1e;
  text-align: center;
  margin: 12px 0;
}

.jydt-card-desc {
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  text-align: center;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.jydt-card-desc:hover {
  -webkit-box-orient: unset;
  overflow: inherit;
}
.jydt-card-link {
  color: #16a34a;
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: color 0.2s, opacity 0.3s, transform 0.3s;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.jydt-card:hover .jydt-card-link {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.jydt-card-link:hover {
  color: #009944;
}

.jydt-card-arrow {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: inline-block;
}

.zw-quick-entries {
  width: 100%;
  margin-top: 0;
}

.zw-quick-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.zw-quick-row:last-child {
  margin-bottom: 0;
}

.zw-quick-card {
  flex: 1 1 0;
  max-width: calc(33.333% - 14px);
  display: flex;
  align-items: center;
  background: none;
  box-shadow: none;
  min-width: 0;
  box-sizing: border-box;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 0;
  padding-right: 0;
  border: 1px solid transparent;
  transition: border-color 0.2s, padding 0.2s;
  border-radius: 4px;
}

.zw-quick-card:hover {
  cursor: pointer;
  border-color: #009944;
  padding-left: 12px;
  padding-right: 12px;
  transform: translateY(0px);
  box-shadow: 0 4px 12px rgba(0, 153, 68, 0.3);
  background: #fff;
}

.zw-quick-img {
  width: 64px;
  height: 64px;
  margin-right: 12px;
  flex-shrink: 0;
}

.zw-quick-info {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zw-quick-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  color: #1e1e1e;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zw-quick-desc {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zw-quick-card:hover {
  cursor: pointer;
  border-color: #009944;
  padding-left: 12px;
  padding-right: 12px;
  transform: translateY(0px);
  box-shadow: 0 4px 12px rgba(0, 153, 68, 0.3);
  background: #fff;
}

.scjj-card.scjj-card-title {
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  background: none;
  height: 100%;
  padding: 24px;
}

.scjj-title {
  font-size: 32px;
  line-height: 48px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: right;
}

.scjj-title-img {
  width: 225px;
  height: 17px;
  margin-bottom: 12px;
  display: block;
}

.scjj-title-bar {
  width: 60px;
  height: 6px;
  background: #fff;
  border-radius: 0;
  margin: 0;
}

.scjj-card-bg {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.scjj-card-bg::after {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0);
  pointer-events: none;
  transition: background 0.3s;
  z-index: 1;
}

.scjj-card-bg:hover::after {
  background: rgba(0,0,0,0.5);
}

.scjj-card-center {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.scjj-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.scjj-card-label {
  font-size: 24px;
  font-weight: bold;
  line-height: 34px;
  color: #ffffff;
  margin-bottom: 16px;
  text-align: center;
}

.scjj-card-more {
  display: none;
  align-items: center;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  gap: 6px;
  margin-top: 8px;
}

.scjj-card-bg:hover .scjj-card-more {
  display: flex;
}

.scjj-card-more img {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.zs-cards {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  /* margin-top: 24px; */
  box-sizing: border-box;
}

.zs-card {
  flex: 0 0 calc(25% - 15px);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.zs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.zs-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.zs-card-desc {
  padding: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #333;
  background: #fff;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.zs-more-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.zs-more-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  color: #333;
}

.zs-more-btn:hover {
  background: #009944;
  color: #fff;
  border-color: #009944;
}

.zs-more-btn-text {
  font-weight: 500;
}

.zs-more-btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.zs-more-btn:hover .zs-more-btn-arrow {
  transform: translateX(4px);
}

.location-bar {
  display: inline-flex;
  align-items: center;
  margin-left: 24px;
  height: 100%;
  cursor: pointer;
}
.location-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.location-text {
  font-size: 14px;
  line-height: 22px;
  color: #1e1e1e;
  vertical-align: middle;
}
.location-arrow {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.city-modal-mask {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.2);
  z-index: 1000;
}
/* 区域选择弹窗位置调整 */
.city-modal {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1200px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  z-index: 1001;
  padding: 12px 24px;
  font-family: inherit;
}
.city-modal-header {
  font-size: 16px;
  color: #1e1e1e;
  font-weight: normal;
  display: flex;
  align-items: center;
  height: 36px;
  padding:  0;
  margin: 8px 0;
  justify-content: space-between;
  width: 100%;
}
.city-modal-location-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
}
.city-modal-path {
  font-size: 18px;
  line-height: 36px;
  color: #1e1e1e;
  display: flex;
  align-items: center;
}
.city-modal-arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 4px;
  vertical-align: middle;
}
.city-modal-city {
  font-size: 18px;
  font-weight: bold;
  color: #009944;
  line-height: 36px;
  vertical-align: middle;
}
.city-modal-divider {
  border-bottom: 1px solid #eeee;
  margin: 16px 0;
}
.city-modal-list {
  margin-bottom: 8px;
}
.city-modal-levels {
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
  padding: 0;
}
.city-modal-level {
  font-size: 15px;
  color: #222;
  padding: 6px 0;
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 8px;
  transition: background 0.2s, color 0.2s;
}
.city-modal-level-active {
  background: #f5f7fa;
  color: #1890ff;
  font-weight: bold;
}
.city-modal-selected {
  flex: 1;
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: center;
  line-height: 22px;
  min-height: 36px;
}
.city-modal-selected-text {
  color: #222;
  font-size: 14px;
  line-height: 22px;
}
.city-modal-selected-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  margin: 16px 0 0 0;
}
.city-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 0;
}
.city-modal-btn {
  min-width: 80px;
  height: 36px;
  border: 1px solid #bbbbbb;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  background: #f9f9f9;
  color: #222;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.city-modal-btn.city-modal-confirm {
  background: #009944;
  color: #fff;
  border: 1px solid #009944;
}
.city-modal-btn.city-modal-cancel {
  border: 1px solid #bbbbbb;
}
.city-modal-btn.city-modal-confirm:hover {
  background: #009944;
  color: #fff;
  border: 1px solid #009944;
}

.city-modal-recent {
  font-size: 14px;
  color: #1e1e1e;
  font-weight: normal;
  line-height: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.city-modal-recent-item {
  font-size: 14px;
  color: #666666;
  border-radius: 4px;
  padding: 4px 12px;
  margin-right: 0;
  line-height: 22px;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.city-modal-recent-item:hover {
  background: #F8FFFB;
  color: #009944;
}
.city-modal-recent-clear {
  font-size: 14px;
  color: #999999;
  line-height: 22px;
  margin-left: auto;
  cursor: pointer;
  font-weight: normal;
  background: none;
  border: none;
  padding: 0;
}
.city-modal-recent-clear:hover {
  color: #009944;
}

.city-modal-recent-list {
  display: flex;
  flex: 1 1 auto;
  gap: 12px;
  min-width: 0;
}

.city-modal-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  width: 100%;
}
.city-modal-city-btn {
  flex: 0 0 calc((100% - 7 * 12px) / 8);
  box-sizing: border-box;
  height: 36px;
  line-height: 22px;
  border-radius: 4px;
  border: 1px solid #eee;
  background: #fff;
  color: #222;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.city-modal-city-btn:hover, .city-modal-city-btn.active {
  background: #F8FFFB;
  color: #009944;
  border-color: #009944;
}
/* 新资讯动态模块样式 */
.news-section-new {
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  padding: 20px 0;
}
.news-section-new-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  box-sizing: border-box;
}
.news-section-new-left {
  flex: 1;
  min-width: 0;
  min-height: 200px;
}
.news-section-new-right {
  width: 348px;
  flex-shrink: 0;
  min-height: 200px;
  background: none;
}

.news-section-new-left .news-content {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  gap: 16px;
}
.news-section-new-left .news-left,
.news-section-new-left .news-right {
  width: 50%;
  min-width: 0;
}

.news-section-new-left .news-carousel {
  height: 340px;
  overflow: hidden;
}
.news-section-new-left .news-carousel-slider {
  height: 340px;
}
.news-section-new-left .news-carousel-slide {
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-section-new-left .news-carousel-slide img {
  height: 340px;
  width: 100%;
  object-fit: cover;
}
.news-section-new-left .news-left {
  width: 530px;
  min-width: 0;
  height: 340px;
}
.news-section-new-left .news-right .news-tabs {
  display: flex;
  gap: 8px;
}
.news-section-new-left .news-right .news-tab {
  padding: 8px 12px;
  height: 40px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.news-section-new-left .news-right .news-list-content {
  margin-top: 16px;
}
.news-section-new-left .news-right .news-item-headline {
  padding-bottom: 12px;
}
.news-section-new-left .news-right .news-item-headline .news-item-title {
  font-size: 20px;
  line-height: 28px;
  width: 100%;
  height: 36px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}
.news-section-new-left .news-main-title-bar {
  display: flex;
  align-items: center;
  height: 36px;
  margin-bottom: 12px;
  justify-content: space-between;
}
.news-section-new-left .news-main-title-group {
  display: flex;
  align-items: center;
}
.news-section-new-left .news-main-title-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.news-section-new-left .news-main-title-text {
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
  color: #009944;
  margin: 0 8px;
  flex-shrink: 0;
}
.news-section-new-left .news-main-title-img {
  width: 199px;
  height: 22px;
  flex-shrink: 0;
}
.news-section-new-left .news-item-headline .news-item-title {
  text-align: center;
}
.news-section-new-left .news-item-title {
  text-align: left;
}
.news-section-new-right .news-main-title-bar {
  display: flex;
  align-items: center;
  height: 36px;
  margin-bottom: 12px;
  justify-content: space-between;
}
.news-section-new-right .news-main-title-group {
  display: flex;
  align-items: center !important;
  height: 36px;
}
.news-section-new-right .news-main-title-group .news-main-title-icon {
  margin-right: 0;
}
.news-section-new-right .news-main-title-icon {
  margin-right: 8px;
}
.news-section-new-right .news-main-title-text {
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
  color: #009944;
  margin: 0 8px;
  flex-shrink: 0;
}
.news-section-new-right .news-main-title-img {
  width: 199px;
  height: 22px;
  flex-shrink: 0;
  margin-left: 8px;
}
.news-section-new-right .news-main-title-img {
  margin-right: auto;
}
.news-section-new-left .news-main-title-btn , .news-section-new-right .news-main-title-btn {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0;
  text-decoration: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: auto;
}
.news-section-new-left .news-main-title-btn-text , .news-section-new-right .news-main-title-btn-text {
  font-size: 14px;
  line-height: 24px;
  color: #999999;
}
.news-section-new-left .news-main-title-btn-arrow , .news-section-new-right .news-main-title-btn-arrow {
  width: 20px;
  height: 20px;
  display: inline-block;
}
.news-section-new-left .news-main-title-btn:hover .news-main-title-btn-text , .news-section-new-right .news-main-title-btn:hover .news-main-title-btn-text {
  color: #009944;
}
.news-section-new-left .news-main-title-btn:hover .news-main-title-btn-arrow , .news-section-new-right .news-main-title-btn:hover .news-main-title-btn-arrow {
  content: url('../images/more-grey-hover.png');
}
.news-section-new-right .news-right-content {
  height: 340px;
  border: 1px solid #e0e8e2;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 153, 68, 0.06);
}

.site-select-bar {
  display: flex;
  align-items: center;
  margin: 0;
  background: #f3f3f3;
  border-top: 1px solid #e0e0e0;
  padding: 0 0 0 0;
  height: 40px;
}
.site-select {
  width: 120px;
  height: 40px;
  border: none;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0 32px 0 12px;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-right: 2px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 20px 20px;
}
.site-select:last-of-type {
  margin-right: 0;
}
.site-select:focus {
  outline: none;
  box-shadow: none;
}
.site-select-btn {
  flex: 1 1 auto;
  width: auto;
  height: 40px;
  background: #F8FFFB;
  color: #009944;
  border: none;
  font-size: 16px;
  cursor: pointer;
  margin-left: 2px;
  transition: background 0.2s, color 0.2s;
}
.site-select-btn:disabled {
  background: #ededed;
  color: #999;
  cursor: not-allowed;
}
.site-select-btn:not(:disabled):hover {
  background: #009944;
  color: #fff;
}


/* 资讯动态 Banner 区样式 */
.news-banner {
  width: 100%;
  height: 300px;
  background: url('../images/zxdt-banner.png') center center/cover no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.news-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
  width: 100%;
}
.news-banner-en {
  color: #fff;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
}
.news-banner-zh {
  color: #fff;
  font-size: 36px;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
}
.news-banner-content > .news-banner-en + .news-banner-zh {
  margin-top: 0;
}


/* 资讯动态中心动态轮播模块样式 */
.news-center-carousel-section {
  width: 100%;
  padding: 40px 0;
  background: none;
  background-color: #f9f9f9;
}
.news-center-carousel-container {
  width: 1440px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.news-center-carousel {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.news-center-carousel-item {
  display: none;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
}
.news-center-carousel-item.active {
  display: flex;
}
.news-center-carousel-img-wrap {
  flex: 0 0 591px;
  width: 591px;
  height: 332px;
  overflow: hidden;
  border-radius: 4px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-center-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.news-center-carousel-content {
  flex: 1 1 0;
  margin-left: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-center-carousel-title {
  font-size: 24px;
  font-weight: bold;
  color: #1e1e1e;
  margin-bottom: 24px;
  line-height: 32px;
}
.news-center-carousel-summary {
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
}
.news-center-carousel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-top: 36px;
}
.news-center-carousel-date {
  font-size: 16px;
  line-height: 24px;
  color: #999999;
}
.news-center-carousel-link {
  font-size: 14px;
  line-height: 24px;
  color: #999999;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: text-decoration 0.2s;
}
.news-center-carousel-link-arrow {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
}
.news-center-carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  gap: 6px;
}
.news-center-carousel-indicator {
  width: 12px;
  height: 8px;
  border-radius: 2px;
  background: #bbbbbb;
  display: inline-block;
  transition: background 0.2s, width 0.2s;
  cursor: pointer;
}
.news-center-carousel-indicator.active {
  width: 36px;
  background: #009944;
}

.news-center-carousel-section:hover .news-center-carousel-link {
  color: #009944;
}
.news-center-carousel-section:hover .news-center-carousel-link-arrow {
  content: url('../images/more.png');
}

.news-center-list-section {
  width: 100%;
  background: none;
}
.news-center-list-container {
  width: 100%;
  margin: 0 auto;
}
.news-center-list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  border-bottom: 1px solid #f0f0f0;
  margin: 0 auto;
}
.news-center-list-item:hover {
  background: #009944;
}
.news-center-list-item:hover .news-center-list-title,
.news-center-list-item:hover .news-center-list-summary,
.news-center-list-item:hover .news-center-list-date-md,
.news-center-list-item:hover .news-center-list-date-year {
  color: #fff !important;
}
.news-center-list-item:hover .news-center-list-date-line {
  background: #fff;
}
.news-center-list-item-inner {
  width: 1440px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.news-center-list-img-wrap {
  flex: 0 0 284px;
  width: 284px;
  height: 160px;
  border-radius: 4px;
  overflow: hidden;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 36px;
}
.news-center-list-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.news-center-list-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 36px;
}
.news-center-list-title {
  font-size: 24px;
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 32px;
  text-align: justify;
}
.news-center-list-summary {
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-center-list-date {
  flex: 0 0 142px;
  width: 142px;
  text-align: center;
  font-size: 15px;
  color: #999;
  padding-left: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 128px;
  border-left: 1px solid #ddd;
}
.news-center-list-date-md {
  font-size: 40px;
  line-height: 40px;
  font-family: 'D-DIN-PRO', 'Arial', 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
  color: #009944;
  margin-bottom: 8px;
}
.news-center-list-date-year-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.news-center-list-date-year {
  font-size: 16px;
  line-height: 24px;
  font-family: 'D-DIN-PRO', 'Arial', 'Helvetica Neue', Arial, sans-serif;
  color: #1e1e1e;
  font-weight: normal;
  margin: 0 8px;
}
.news-center-list-date-line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #1e1e1e;
  vertical-align: middle;
}

.news-center-pagination {
  width: 100%;
  margin: 48px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.news-center-pagination-btn {
  background: #fff;
  border: 1px solid #ddd;
  color: #222;
  font-size: 16px;
  padding: 6px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.news-center-pagination-btn:disabled {
  color: #bbb;
  border-color: #eee;
  background: #f8f8f8;
  cursor: not-allowed;
}
.news-center-pagination-page {
  display: inline-block;
  min-width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 16px;
  color: #222;
  border-radius: 4px;
  margin: 0 2px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #fff;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.news-center-pagination-page.active {
  background: #009944;
  color: #fff;
  border: 1px solid #009944;
}
.news-center-pagination-page:hover:not(.active) {
  background: #f0f0f0;
}
/* 项目快捷入口样式 */
.quick-access-section {
  width: 100%;
  padding: 0;
  margin-top: 1px;
  position: relative;
  z-index: 10;
}
.quick-access-container {
  width: 1440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden;
}
.quick-access-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  border-bottom: 1px solid #f0f0f0;
}
.quick-access-title {
  font-size: 22px;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0;
}
.quick-access-subtitle {
  font-size: 16px;
  color: #999;
  font-weight: normal;
  margin-left: 8px;
}
.quick-access-search {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  width: 300px;
}
.qa-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 16px;
  color: #333;
}
.qa-search-input::placeholder {
  color: #bbb;
}
.qa-search-btn {
  width: 50px;
  height: 42px;
  border: none;
  background: #009944;
  cursor: pointer;
  position: relative;
}
.qa-search-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px 30px;
  padding: 10px 36px;
}
.qa-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 14px 10px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.qa-item:hover {
  background: #f5f9ff;
  transform: translateY(-2px);
}
.qa-item:hover .qa-icon-szgl { background-color: #52c41a; }
.qa-item:hover .qa-icon-dzspjy { background-color: #eb2f96; }
.qa-item:hover .qa-icon-gxsc { background-color: #13c2c2; }
.qa-item:hover .qa-icon-cqcy { background-color: #1677ff; }
.qa-item:hover .qa-icon-gxcg { background-color: #722ed1; }
.qa-item:hover .qa-icon-gxpm { background-color: #fa541c; }
.qa-item:hover .qa-icon-gyljr { background-color: #fa8c16; }
.qa-item:hover .qa-icon-zhzw { background-color: #faad14; }
.qa-item:hover .qa-icon-sjzx { background-color: #1890ff; }
.qa-item:hover .qa-icon-zzfw { background-color: #595959; }
.qa-item:hover .qa-icon-xzes { background-color: #52c41a; }
.qa-item:hover .qa-icon::before {
  filter: brightness(0) invert(1);
}

.qa-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}
.qa-icon::before {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* 各图标背景色和图标 - 使用SVG图标 */
/* 1. 供销三资管理 - 资金/资产/资源 三圆盾牌图标 */
.qa-icon-szgl { background-color: #f6ffed; }
.qa-icon-szgl::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2352c41a'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
}
/*.qa-icon-szgl::before {
  !* Lucide 数据库  *!
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cellipse cx='12' cy='5' rx='9' ry='3'/%3E%3Cpath d='M3 5v14a9 3 0 0 0 18 0V5'/%3E%3Cpath d='M3 10a9 3 0 0 0 18 0'/%3E%3Cpath d='M3 15a9 3 0 0 0 18 0'/%3E%3C/svg%3E");
}*/
/* 2. 大宗商品交易 - 商品搜索图标 */
.qa-icon-dzspjy { background-color: #fff0f6;}
/*.qa-icon-dzspjy::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23eb2f96'%3E%3Cpath d='M20 2H4c-1 0-2 .9-2 2v3.01c0 .72.43 1.34 1 1.69V20c0 1.1 1.1 2 2 2h14c.9 0 2-.9 2-2V8.7c.57-.35 1-.97 1-1.69V4c0-1.1-1-2-2-2zm-5 12H9v-2h6v2zm5-7H4V4h16v3z'/%3E%3C/svg%3E");
}*/
.qa-icon-dzspjy::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23eb2f96'%3E%3Crect x='3' y='10' width='3' height='11' rx='1'/%3E%3Crect x='7.5' y='4' width='3' height='17' rx='1'/%3E%3Crect x='12' y='12' width='3' height='9' rx='1'/%3E%3Crect x='16.5' y='7' width='3' height='14' rx='1'/%3E%3C/svg%3E");
}
/* 3. 供销商城 - 购物车图标 */
.qa-icon-gxsc { background-color: #e6fffb;}
.qa-icon-gxsc::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2313c2c2'%3E%3Cpath d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1.003 1.003 0 0020 4H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
}

/* 4. 产权交易 - 文件合同/印章图标 */
.qa-icon-cqcy { background-color: #e6f4ff; }
.qa-icon-cqcy::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231677ff'%3E%3Cpath d='M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v5h5v11H6z'/%3E%3Cpath d='M8 15h8v2H8zm0-4h8v2H8z'/%3E%3C/svg%3E");
}

/* 5. 供销采购 - 采购到货提醒图标 */
.qa-icon-gxcg { background-color :#f9f0ff;}
.qa-icon-gxcg::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23722ed1'%3E%3Cpath d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9l1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E");
}

/* 6. 供销拍卖 - 法槌图标 */
.qa-icon-gxpm {background-color: #fff2e8;}
/*.qa-icon-gxpm::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fa541c'%3E%3Cpath d='M6 4h5v4H6V4zm7 0h5v4h-5V4zM4 8h16v3H4V8zm2 5h12v2H6v-2zm-2 4h16v3H4v-3zm2 4h12v2H6v-2z'/%3E%3C/svg%3E");
}*/
.qa-icon-gxpm::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fa541c' stroke='%23fa541c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m14 13-7.5 7.5c-.83.83-2.17.83-3 0a2.12 2.12 0 0 1 0-3L11 10'/%3E%3Cpath d='m16 16 6-6'/%3E%3Cpath d='m8 8 6-6'/%3E%3Cpath d='m9 7 8 8'/%3E%3Cpath d='m21 11-8-8'/%3E%3C/svg%3E");
}

/* 7. 供销三农合作金融 - 钱币/银行图标 */
.qa-icon-gyljr { background-color: #fff7e6; }
.qa-icon-gyljr::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fa8c16'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09V20h-2.67v-1.93c-1.71-.36-3.16-1.46-3.27-3.4h1.96c.1 1.05.82 1.87 2.65 1.87 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21V4h2.67v1.95c1.86.45 2.79 1.86 2.85 3.39H14.3c-.05-1.11-.64-1.87-2.22-1.87-1.5 0-2.4.68-2.4 1.64 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.01 1.83-1.38 2.83-3.12 3.16z'/%3E%3C/svg%3E");
}

/* 8.农事综合服务 - 政府建筑/城市图标 */
.qa-icon-zhzw { background-color: #fef4e2; }
.qa-icon-zhzw::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23faad14'%3E%3Cpath d='M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z'/%3E%3C/svg%3E");
}

/* 9. 供销数据中心 - 数据库服务器图标 */
.qa-icon-sjzx { background-color: #e6f7ff; }
.qa-icon-sjzx::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231890ff'%3E%3Cpath d='M12 2C6.48 2 2 4.02 2 6.5S6.48 11 12 11s10-2.02 10-4.5S17.52 2 12 2zm0 10c-5.54 0-10-2.02-10-4.5V14c0 2.48 4.46 4.5 10 4.5s10-2.02 10-4.5v-6.5c0 2.48-4.46 4.5-10 4.5zm0 8c-5.54 0-10-2.02-10-4.5V22c0 2.48 4.46 4.5 10 4.5s10-2.02 10-4.5v-6.5c0 2.48-4.46 4.5-10 4.5z'/%3E%3C/svg%3E");
}

/* 10. 增值服务 - 服务/齿轮设置图标 */
.qa-icon-zzfw { background-color: #f5f5f5; }
.qa-icon-zzfw::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23595959'%3E%3Cpath d='M19.43 12.98c.04-.32.07-.64.07-.98s-.03-.66-.07-.98l2.11-1.65a.496.496 0 000-.78l-2.01-3.47a.496.496 0 00-.61-.22l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65A.488.488 0 0014 2h-4c-.25 0-.46.18-.5.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1a.488.488 0 00-.61.22L2.34 8.58a.49.49 0 000 .78L4.45 11c-.04.32-.07.65-.07.98s.03.66.07.98l-2.11 1.65a.496.496 0 000 .78l2.01 3.47c.14.26.46.36.61.22l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.04.24.25.42.5.42h4c.25 0 .46-.18.5-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.18.09.47 0 .61-.22l2.01-3.47a.496.496 0 000-.78l-2.11-1.65zM12 15.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z'/%3E%3C/svg%3E");
}

/* 11. 闲置二手 */
.qa-icon-xzes { background-color: #e8ffed; }
.qa-icon-xzes::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2352c41a'%3E%3Cpath d='M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46A7.93 7.93 0 0020 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74A7.93 7.93 0 004 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z'/%3E%3C/svg%3E");
}

.qa-info {
  min-width: 0;
}
.qa-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
}
.qa-desc {
  font-size: 13px;
  color: #999;
  margin-top: 2px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========================================
   项目快捷入口(jjdt)响应式样式
======================================== */

/*.qa-desc {
  display: none;
}*/
.news-section-new-left .news-main-title-text, .news-section-new-right .news-main-title-text {
  font-size: 20px;
  ｝

/*.qa-desc {
  font-size: 12px;
  -webkit-line-clamp: 1;
}*/

/*==========智慧基金==========*/
.fund-public {
  flex: 7; /* 占比70%左右 */
}

.sidebar {
  flex: 3; /* 占比30%左右 */
}

.carousel-container {
  width: 100%;
  overflow: hidden; /* 隐藏超出容器的部分 */
  position: relative; /* 设置为相对定位 */
}
.card-list {
  display: flex;
  white-space: nowrap;
  gap: 20px;
  padding: 20px 0;
  width: 100%;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.card-wrapper {
  margin: 0 10px;
  /*min-width: 100px; !* 固定卡片宽度 *!*/
  max-width: 20%;
  flex-shrink: 0; /* 防止被压缩 */
  animation: scroll 20s linear infinite;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center center;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes scroll {
  0% {
    transform: translateX(0); /* 从左侧开始 */
  }
  100% {
    transform: translateX(calc(-220px * 3)); /* 滚动距离 = (卡片宽度+边距) * 卡片数量 */
  }
}
/* 鼠标悬停时暂停动画并放大卡片 */
.card-list:hover .card-wrapper {
  animation-play-state: paused; /* 暂停所有卡片动画 */
}
.card:hover .donate-button {
  display: block; /* 鼠标悬停时显示按钮 */
}
.card:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 半透明蒙版 */
  z-index: 5; /* 蒙版在卡片之上 */
}

.notice ul li {
  display: flex;
  gap: 20px; /* 设置所有元素之间的间隔 */
  border:1px solid #EEEEEE;
  justify-content: space-between;
}
.notice ul li p {
  font-family: PingFang SC;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: normal;
  font-variation-settings: "opsz" auto;
  color: #1E1E1E;
}
.notice {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden; /* 隐藏超出容器的部分 */
  position: relative; /* 设置为相对定位 */
  border: 2px solid #009944;
  height:350px;
}
.notice-s {
  padding-left: 0px;
  animation: notice 10s linear infinite; /* 设置动画 */
}
@keyframes notice {
  0% {
    transform: translateY(0); /* 从左侧开始 */
  }
  100% {
    transform: translateY(-100%); /* 滚动至全部离开 */
  }
}
.jjgydt {
  display: flex;
  justify-content: space-between; /* 关键：让左右内容向两端对齐 */
  align-items: center; /* 垂直方向居中对齐 */
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
  color: #009944;
  margin: 0 8px;
  flex-shrink: 0;
}
.more {
  color:#999999;
  font-size: 14px;
  font-family: PingFang SC;
  display: flex;
  align-items: center;
}
.morre {
  display: flex;
  align-items: center;
}

