body, div, ul, li, a, ol, p, span, section, h3, h1, h4{
    font-family: 'Source Han Sans' !important;
}
*, :after, :before {
    -webkit-box-sizing: unset; 
    -moz-box-sizing: unset;
    box-sizing: unset;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
ul{list-style:none;}

/* ========================================
   页面容器
======================================== */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fff;
}

/* CSS 变量定义 */
:root {
  /* 颜色变量 */
  --primary-blue: #4A90E2;
  --secondary-blue: #357ABD;
  --light-blue: #E8F4FD;
  --orange: #FF9500;
  --white: #FFFFFF;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;

  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;

  /* 间距变量 */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;

  /* 阴影变量 */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

  /* 过渡变量 */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}


/* 基础样式 */
.header {
  width:100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* 顶部信息栏样式 */
.top-bar {
  color: var(--white);
  padding: var(--spacing-sm) 0;
  font-size: var(--font-size-sm);
}

.top-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: var(--spacing-lg);
}

.top-info span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--spacing-xs);
  -webkit-transition: var(--transition-fast);
  -moz-transition: var(--transition-fast);
  -ms-transition: var(--transition-fast);
  transition: var(--transition-fast);
}

.phone-icon {
  width: 20px;
  height: 20px;
  margin-right: 4px;
  vertical-align: middle;
}

.top-info .phone {
  color: #0a318e;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  margin-bottom:0px;
}

.top-info .service {
  font-size: 14px;
  color: #1c1c1c;
}

.top-info .accessibility {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  padding: 8px 12px;
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.top-info .accessibility button {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.top-info .accessibility button a {
  color: white;
  text-decoration: none;
}

.accessibility-icon {
  width: 16px;
  height: 16px;
}

.top-info .close {
  cursor: pointer;
  padding: var(--spacing-xs);
  border-radius: 50%;
  transition: var(--transition-fast);
}

.top-info .close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.top-info .traditional {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  padding: 9px 20px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none !important;
}

/* 主导航栏样式 */
.main-nav {
  position: relative;
  z-index: 100;
}

.nav-content {
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  position: relative;
  border-radius:4px;
  height:60px;
}

/* Logo 样式 */
.logo {
  flex-shrink: 0;
  padding: 8px 0 0 0;
  border-radius: 12px;
  transition: var(--transition-fast);
  margin-left: 20px;
  margin-right: 0px;

}



.logo-img {
  height: 40px;
  width: auto;
  transition: var(--transition-fast);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  opacity: 1;
}


/* 导航菜单样式 */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin: 0 var(--spacing-lg);
  position: relative;
  opacity: 1;
}

.nav-item {
  position: relative;
  margin: 0 25px;
  opacity: 1;
}

.nav-link {
  display: block;
  padding: 0px 0px;
  color: #2c3e50;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
  opacity: 1;
  text-decoration: none;
}

/* 导航链接悬停效果 */
.nav-link:hover {
  color: #0a318e;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* 导航链接点击效果 */
.nav-link:active {
  -webkit-transform: translateY(0) scale(0.95);
  -moz-transform: translateY(0) scale(0.95);
  -ms-transform: translateY(0) scale(0.95);
  transform: translateY(0) scale(0.95);
  color: #0a318e;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

/* 导航链接点击后的状态 */
.nav-link.clicked {
  -webkit-animation: clickPulse 0.3s ease;
  -moz-animation: clickPulse 0.3s ease;
  -ms-animation: clickPulse 0.3s ease;
  animation: clickPulse 0.3s ease;
}

/* 点击脉冲动画 */
@-webkit-keyframes clickPulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes clickPulse {
  0% {
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
  }

  50% {
    -webkit-transform: scale(0.95) translateZ(0);
    transform: scale(0.95) translateZ(0);
  }

  100% {
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
  }
}

/* 导航链接涟漪效果 */
.nav-link {
  overflow: hidden;
}

.nav-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(10, 49, 142, 0.3);
  transform: scale(0) translateZ(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
  /* 性能优化 */
  will-change: transform, opacity;
  backface-visibility: hidden;
}

@keyframes ripple {
  to {
    transform: scale(2) translateZ(0);
    opacity: 0;
  }
}





.nav-item.active .nav-link {
  color: #1a252f;
  font-weight: 800;
  font-size: 22px;
  position: relative;
}

/* 导航滑动指示器 */
.nav-indicator {
  position: absolute;
  bottom: 10px;
  height: 3px;
  background: url('/search/fileDir/file/list/2025102717091244906.png') no-repeat center;
  background-size: 100% 100%;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-50%);
}

.nav-indicator.active {
  opacity: 1;
}



/* 搜索按钮样式 */
.search-btn {
  flex-shrink: 0;
  opacity: 1;
}

.search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 60px;
  background-color: #f7ae00;
  border: none;
  cursor: pointer;
  border-top-right-radius:4px;
  border-bottom-right-radius:4px;
}

/* ==================== 导航栏下拉菜单样式 ==================== */

/* 下拉菜单容器 */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-60%);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 229, 229, 0.3);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
  /* 确保下拉菜单在container范围内 */
  max-width: 1160px;
  width: max-content;
}



/* 下拉菜单内容区域 */
.dropdown-content {
  display: flex;
  flex-wrap: nowrap;
  /* 增加左右内边距以提升下拉导航栏目左右边距 */
  padding: 25px 48px;
  /* 进一步加大列与列之间的间距 */
  gap: 50px;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 100%;
}

/* 下拉菜单列 */
.dropdown-column {
  flex: 0 0 auto;
  white-space: nowrap;
  text-align: center;
  min-width: fit-content;
}

/* 下拉菜单标题（二级栏目） */
.dropdown-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a252f;
  margin: 0 0 0 0;
  padding-bottom: 12px;
  position: relative;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
  text-align: left;
  opacity: 1; /* 确保字体完全不透明 */
}

.dropdown-title:hover {
  color: #0a318e;
  text-decoration: none;
}

.dropdown-title:focus,
.dropdown-title:active,
.dropdown-title:visited {
  text-decoration: none;
}

/* 下拉菜单列表 */
.dropdown-list {
  list-style: none;
  margin: 6px 0 0 0;
  padding: 0;
}

.dropdown-list li {
  margin: 0 0 6px 0;
  padding: 0;
}

.dropdown-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* 下拉菜单链接（三级栏目） */
.dropdown-link {
  display: block;
  padding: 12px 0px;
  color: #333;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  /* border-radius: 6px; */
  position: relative;
  line-height: 1.4;
  text-align: left;
  /* 字体居中 */
  opacity: 1; /* 确保字体完全不透明 */
}

.dropdown-link:hover {
  color: #0a318e;
  font-weight: 500;
  /* background-color: rgba(10, 49, 142, 0.1); */
  /* 添加背景色突出悬停效果 */
  border-bottom: 2px solid #f7b000;
}

/* 确保"更多"链接没有下划线 */
.dropdown-link {
  text-decoration: none !important;
}

.dropdown-link:hover,
.dropdown-link:focus,
.dropdown-link:active,
.dropdown-link:visited {
  text-decoration: none !important;
}

/* 有下拉菜单的导航项 */
.nav-item.has-dropdown {
  position: relative;
}

/* 下拉菜单显示状态 - 由JavaScript控制 */
.nav-item.has-dropdown.dropdown-active .dropdown-menu,
.dropdown-menu.show {
  display: block;
  opacity: 1;
  transform: translateX(-50%);
}

/* 导航链接悬停效果 - 由JavaScript控制 */
.nav-item.has-dropdown.dropdown-active .nav-link,
.nav-link.dropdown-hover {
  color: #0a318e;
}

/* 下拉菜单项的渐入动画 - 简化版本避免闪烁 */
.dropdown-column {
  transition: opacity 0.3s ease;
}

.dropdown-menu.show .dropdown-column {
  opacity: 1;
}

/* 下拉菜单链接点击效果 */
.dropdown-link.clicked {
  background-color: #0a318e;
  color: #ffffff;
  transform: translateX(4px);
}

/* 关键帧动画 */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 下拉菜单标题的动画效果 */
.dropdown-title {
  position: relative;
  overflow: hidden;
}


.dropdown-menu.show .dropdown-title::after {
  left: 100%;
}

/* 个人业务（第一个下拉导航）第二列定制：固定列宽120px，允许二级/三级文本换行 */
.nav-item.has-dropdown:nth-child(1) .dropdown-content .dropdown-column {
  width: 120px; /* 固定列宽为 120px */
  max-width: 120px;
  min-width: 120px; /* 覆盖基础样式中的 min-width: fit-content，防止列被内容撑开 */
  flex: 0 0 120px; /* 固定弹性基础宽度，确保列宽为 120px */
  box-sizing: border-box; /* 保证设定宽度包含内边距/边框 */
  white-space: normal; /* 允许内容换行 */
  text-align: left; /* 文本左对齐，更适合中文多行阅读 */
}

.nav-item.has-dropdown:nth-child(1) .dropdown-content .dropdown-column .dropdown-title {
  white-space: normal; /* 二级菜单标题允许换行 */
  word-break: break-all; /* 中文和长英文都可断行 */
  overflow-wrap: anywhere;
  text-align: left; /* 文本左对齐 */
  padding-bottom: 0; /* 由列表统一控制与首项之间的间距 */
}

.nav-item.has-dropdown:nth-child(1) .dropdown-content .dropdown-column .dropdown-link {
  white-space: normal; /* 三级菜单链接允许换行 */
  word-break: break-all; /* 中文和长英文都可断行 */
  overflow-wrap: anywhere;
  text-align: left; /* 文本左对齐 */
}

/* 统一个人业务下拉内每个元素之间的间距（标题与列表项、列表项之间） */
.nav-item.has-dropdown:nth-child(1) .dropdown-content .dropdown-column .dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 0px; /* 列表项间统一间距 */
  margin-top: 12px; /* 标题与首项统一间距 */
  width: 120px; /* 列表容器固定宽度 120px */
  max-width: 120px;
  min-width: 120px; /* 保证不会被内容撑开 */
  box-sizing: border-box; /* 宽度包含内边距与边框 */
}

/* 按当前元素顺序：第4列（“公务卡”）固定宽度并启用换行 */
.nav-item.has-dropdown .dropdown-content .dropdown-column:nth-child(4) {
  width: 120px;
  max-width: 120px;
  min-width: 120px;
  flex: 0 0 120px;
  box-sizing: border-box;
  white-space: normal; /* 覆盖基础列的 nowrap */
  text-align: left;
}

.nav-item.has-dropdown .dropdown-content .dropdown-column:nth-child(4) .dropdown-title,
.nav-item.has-dropdown .dropdown-content .dropdown-column:nth-child(4) .dropdown-link {
  white-space: normal;
  word-break: break-all;
  overflow-wrap: anywhere;
  text-align: left;
}

/* ==================== PC端响应式设计 ==================== */

/* 超大屏幕 (1920px+) */
@media (min-width: 1920px) {
  .container {
    max-width: 1200px;
  }

  .dropdown-menu {
    max-width: 1160px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .nav-item {
    margin: 0 25px;
  }

  .nav-link {
    font-size: 20px;
    padding: 15px 0;
  }

  .logo-img {
    height: 50px;
  }

  .section-indicator {
    left: 50px;
  }

  .indicator-item {
    width: 50px;
    height: 50px;
    font-size: 20px !important;
  }
}

/* 大屏幕 (1366px - 1919px) */
@media (min-width: 1366px) and (max-width: 1919px) {
  .container {
    max-width: 1200px;
  }

  .dropdown-menu {
    max-width: 1160px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .nav-item {
    margin: 0 25px;
  }

  .nav-link {
    font-size: 18px;
    padding: 12px 0;
  }

  .logo-img {
    height: 45px;
  }

  .section-indicator {
    left: 40px;
  }

  .indicator-item {
    width: 45px;
    height: 45px;
    font-size: 18px !important;
  }
}

/* 中等屏幕 (1280px - 1365px) */
@media (min-width: 1280px) and (max-width: 1365px) {
  .container {
    max-width: 1200px;
  }

  .dropdown-menu {
    max-width: 1160px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav-item {
    margin: 0 25px;
  }

  .nav-link {
    padding: 10px 0;
    font-size: 16px;
  }

  .logo-img {
    height: 42px;
  }

  .section-indicator {
    left: 35px;
  }

  .indicator-item {
    width: 42px;
    height: 42px;
    font-size: 17px !important;
  }
}

/* 小屏幕笔记本 (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
  .container {
    max-width: 960px;
    padding: 0 20px;
  }

  .dropdown-menu {
    max-width: 920px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .nav-item {
    margin: 0 10px;
  }

  .nav-link {
    padding: 8px 0;
    font-size: 15px;
  }

  .logo-img {
    height: 38px;
  }

  .dropdown-menu {
    min-width: 200px;
  }

  .section-indicator {
    left: 25px;
  }

  .indicator-item {
    width: 38px;
    height: 38px;
    font-size: 16px !important;
  }
}




/* ===== 移动端导航栏样式 ===== */
.mobile-header {
  position:relative;
  z-index: 1000;
  background: #fff;
  transition: all 0.3s ease;
  display:none;
}

.mobile-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  height: 60px;
}

.mobile-logo {
  flex-shrink: 0;
}

.mobile-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.mobile-nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-search-btn {
  background: #f7ae00;
  border: none;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-hamburger-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-search-btn:hover {
  background: #e09d00;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(247, 174, 0, 0.3);
}

.mobile-search-btn:active {
  transform: scale(0.95);
  background: #d18f00;
}

.mobile-hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.mobile-hamburger-btn:active {
  transform: scale(0.95);
}

.mobile-hamburger-btn {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  position: relative;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #14439a;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 6px);
}

.mobile-hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -8px);
}

/* 移动端菜单面板 */
.mobile-menu-panel {
  position: absolute;
  top: 110%;
  left: 40%;
  width: 60%;
  background: rgba(22, 75, 162, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 12px 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-menu-panel.active {
  max-height: calc(100vh - 60px);
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
}

.mobile-nav-menu {
  padding: 20px 0;
}

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

/* 菜单底部信息块（热线与快捷链接） */
.mobile-menu-extra {
  padding: 4px 0 8px;
}

.mobile-hotline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0px 0px 0px 24px; /* 调整为统一左对齐 48px，与一级栏目一致 */
  margin: 0; /* 去掉底部边距 */
  text-decoration: none; /* 作为链接时去掉下划线 */
}

.mobile-hotline-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.mobile-hotline-number {
  color: #ffffff;
  font-size: 20px; /* 电话字体加大 */
  font-weight: 600;
  letter-spacing: 0.3px;
}

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

.mobile-extra-item {
  border-bottom: none; /* 紧凑样式：去除底部分隔线 */
  margin-bottom: 0; /* 去掉每个元素底部边距 */
}

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

/* 复用主导航链接样式以保持对齐，但字体略微轻一些 */
.mobile-extra-links .mobile-nav-link {
  padding: 6px 30px 6px 48px; /* 统一与一级栏目文字左边缘对齐 */
  font-size: 14px;
  font-weight: 400;
  margin: 0; /* 去掉底部边距 */
}



.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* 主导航项包装器 */
.mobile-nav-item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}



.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 16px 30px 16px 48px; /* 一级栏目文字左边缘改为 48px，更贴近效果图 */
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  width:100%;
  flex:1;
}

/* 移除原有的箭头伪元素 */
.mobile-nav-link::after {
  display: none;
}

/* 主导航箭头按钮 */
.mobile-nav-toggle {
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-right: 10px;
}

.mobile-nav-toggle::after {
  content: '';
  width: 12px;
  height: 12px;
  background-image: url('/eportal/uiFramework/commonResource/image/2025102517280297689.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.mobile-nav-item.expanded .mobile-nav-toggle::after {
  transform: rotate(90deg);
  opacity: 1;
  background-image: url('/eportal/uiFramework/commonResource/image/2025102517275769311.png');
}


.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #e6c200;
}

.mobile-nav-toggle:hover::after {
  opacity: 1;
  background-image: url('/eportal/uiFramework/commonResource/image/2025102517275769311.png');
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e6c200;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
  transform: scaleY(1);
}

/* 首页特殊样式 */
.mobile-nav-item:first-child .mobile-nav-link::after {
  display: none; /* 隐藏首页的右侧箭头 */
}

.mobile-nav-item:first-child .mobile-nav-link::before {
  background: #ffffff; /* 首页左侧白色竖线 */
  width: 2px; /* 竖线宽度2px */
  height: 1em; /* 高度与文本高度一致 */
  left: 0px; /* 再向左移动 10px（到最左边缘） */
  top: 50%; /* 垂直居中 */
  bottom: auto; /* 覆盖基础样式的 bottom，避免高度冲突 */
  transform: translateY(-50%); /* 垂直居中对齐 */
  border-radius: 1px; /* 轻微圆角 */
}

/* 首页文本再向左移动，单独为首页设置更小的左内边距 */
.mobile-nav-item:first-child .mobile-nav-link {
  padding-left: 15px; /* 再向左移动 5px */
}


/* 其他导航项的默认样式 - 隐藏左侧竖线 */
.mobile-nav-item:not(:first-child) .mobile-nav-link::before {
  display: none;
}

/* ===== 多级菜单样式 ===== */

/* 有子菜单的导航项样式 */
.mobile-nav-item.has-submenu > .mobile-nav-link::after {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.mobile-nav-item.has-submenu.expanded > .mobile-nav-link::after {
  transform: rotate(90deg);
}

/* 子菜单容器 */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  transition: max-height 0.3s ease;
}

.mobile-nav-item.expanded .mobile-submenu {
  max-height: 1000px;
  width:100%;
}

/* 子菜单项 */
.mobile-submenu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-submenu-item:last-child {
  border-bottom: none;
}
/* 子菜单项包装器 */
.mobile-submenu-item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}


/* 子菜单标题 */
.mobile-submenu-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 14px 40px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  flex: 1;
}

.mobile-submenu-title:hover {
  color: #e6c200;
}



/* 移除原有的箭头伪元素 */
.mobile-submenu-title::after {
  display: none;
}

/* 子菜单箭头按钮 */
.mobile-submenu-toggle {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-right: 10px;
}

.mobile-submenu-toggle::after {
  content: '';
  width: 10px;
  height: 10px;
  background-image: url('/eportal/uiFramework/commonResource/image/2025102517280297689.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.mobile-submenu-item.expanded .mobile-submenu-toggle::after {
  transform: rotate(90deg);
  opacity: 1;
  background-image: url('/eportal/uiFramework/commonResource/image/2025102517275769311.png');
}

.mobile-submenu-toggle:hover::after {
  opacity: 1;
  background-image: url('/eportal/uiFramework/commonResource/image/2025102517275769311.png');
}



/* 三级菜单容器 */
.mobile-sublist {
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  transition: max-height 0.3s ease;
}

.mobile-submenu-item.expanded .mobile-sublist {
  max-height: 500px;
}

/* 三级菜单链接 */
.mobile-sublist-link {
  display: block;
  padding: 12px 20px 12px 60px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-sublist-link:last-child {
  border-bottom: none;
}

.mobile-sublist-link:hover {
  color: #e6c200;
  padding-left: 65px;
}
/* 超小屏幕 (575px 及以下) - 小手机 */
@media (max-width: 575px){
  /* 导航栏超小屏幕样式 */
  .header {
    display: none; /* 隐藏桌面端导航栏 */
  }
  
  .mobile-header {
    display: block; /* 显示移动端导航栏 */
  }

  

  /* 移动端导航栏在超小屏幕的调整 */
  .mobile-nav-container {
    padding: 10px 15px;
    height: 55px;
  }
  
  .mobile-logo-img {
    height: 32px;
  }
  
  .mobile-nav-actions {
    gap: 12px;
  }

}

/* 小屏幕 (576px 到 767px) - 大手机 */
@media (max-width: 767px) and (min-width: 576px){

  /* 导航栏移动端样式 */
  .header {
    display: none; /* 隐藏桌面端导航栏 */
  }
  
  .mobile-header {
    display: block; /* 显示移动端导航栏 */
  }
  
 

}
/* ========================================
   顶部搜索区域
======================================== */
.search-header {
    background: #fff;
    color: #333;
    padding: 30px 0 80px;
    position: relative;
    overflow: hidden;
}

.search-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.search-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.search-header .container {
    position: relative;
    z-index: 2;
}


/* 主搜索区域 */
.search-main {
    text-align: center;
}

.search-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-form {
    max-width: 900px;
    margin: 0 auto;
}

/* 搜索输入组 */
.search-input-group {
    display: flex;
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 60px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 
                0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.search-input-group:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2), 
                0 12px 35px rgba(0, 0, 0, 0.15);
}

.search-input-group:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 30px 100px rgba(102, 126, 234, 0.3), 
                0 15px 40px rgba(102, 126, 234, 0.2);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 20px 30px;
    font-size: 18px;
    background: transparent;
    color: #333;
    font-weight: 500;
    border-radius: 60px 0 0 60px;
    margin-top:0px;
}

.search-input::placeholder {
    color: #999;
    font-weight: 400;
}

.search-btn {
    background: #f7ae00;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 0 60px 60px 0;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(247, 174, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.search-btn:hover::before {
    left: 100%;
}

.search-btn:hover {
    background: #e69d00;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(247, 174, 0, 0.5);
}

.search-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.search-icon {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}



.reset-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.reset-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ========================================
   搜索结果区域
======================================== */
.search-results {
    flex: 1;
    padding: 60px 0;
    background: #fff;
    position: relative;
}

.search-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(102, 126, 234, 0.1), transparent);
}

/* 搜索状态信息 */
.search-status {
    margin-bottom: 40px;
    text-align: center;
}

.status-text {
    font-size: 18px;
    color: #666;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 30px;
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}


/* 搜索筛选条件 */
.search-filters {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 16px 24px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 280px;
}

.filter-group:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.filter-label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: left;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
}

.filter-select {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 15px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-select:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.filter-select option {
    background: #667eea;
    color: white;
    font-weight: 500;
}

/* 结果容器 */
.results-container {
    margin-bottom: 50px;
}

/* 加载状态 */
.loading-state {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(102, 126, 234, 0.2);
    border-top: 5px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 25px;
}

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

.loading-state p {
    font-size: 18px;
    color: #667eea;
    font-weight: 600;
}

/* 无结果状态 */
.no-results {
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 20px;
}

.no-results-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    opacity: 0.4;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-results-icon svg {
    width: 60%;
    height: 60%;
    stroke: white;
    stroke-width: 2;
}

.no-results h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.no-results > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.search-suggestions {
    background: rgba(102, 126, 234, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.search-suggestions p {
    font-weight: 600;
    color: #667eea;
    margin-bottom: 15px;
    font-size: 16px;
}

.search-suggestions ul {
    list-style: none;
}

.search-suggestions li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.search-suggestions li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 结果列表 */
.results-list {
    display: grid;
    gap: 25px;
}

.result-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.result-item:hover::before {
    transform: scaleY(1);
}

.result-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.result-title {
    flex: 1;
    margin: 0;
}

.result-link {
    color: #333;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-link:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-category {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.result-content {
    color: #666;
}

.result-summary {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.result-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #999;
    flex-wrap: wrap;
}

.result-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(102, 126, 234, 0.05);
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 500;
}

/* ========================================
   分页导航
======================================== */
.pagination>li>a, .pagination>li>span{
 border-radius:4px;
 color:#333 ;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover{
   background: rgb(24, 144, 255);
    border-color: rgb(24, 144, 255);
   color:#fff;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-btn {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 60px;
    text-align: center;
}

.page-btn:hover:not(:disabled) {
    background: #f5f5f5;
    border-color: #ccc;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f9f9f9;
}

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

.page-number {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 36px;
    text-align: center;
}

.page-number:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.page-number.active {
    background: #1890ff;
    color: white;
    border-color: #1890ff;
}

.page-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    font-size: 14px;
    color: #666;
}

.page-input {
    width: 50px;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

.page-go-btn {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.page-go-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.page-ellipsis {
    color: #999;
    font-weight: 600;
    padding: 0 10px;
}

/* ========================================
   页脚
======================================== */
.footer-integrated {
  background-color: #14439a;
  color: white;
  padding: 15px 0 10px;
  margin-top: 0px;
  width: 100%;
  flex-shrink: 0;
}

.footer-integrated .footer-container {
  width: 80%;
  margin: 0 auto;
  padding: 0 0;
}

.footer-integrated .footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width:1200px;
  margin: 0 auto;
}

/* 左侧银行信息 */
.footer-integrated .footer-left {
  width: 33%;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-integrated .footer-logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}

.footer-integrated .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.footer-integrated .contact-icon {
  width: 10px;
  height: 15px;
}

.footer-integrated .contact-icon-phone {
  width: 12px;
  height: 10px;
}

.footer-integrated .contact-text {
  font-size: 14px;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

.footer-integrated .contact-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* 中间导航链接 */
.footer-integrated .footer-center {
  display: flex;
  flex-wrap: wrap;
  width: 47%;
  justify-content: flex-start;
  gap: 24px; /* 新内容：两列之间增加间距 */
  align-items: flex-start;
}


/* 根据当前内容密度进行细化：第一列（关于邢银）更窄，第二列（投诉与建议+友情链接）更宽，让中间区域更紧凑 */
.footer-integrated .footer-center .footer-nav-section:first-child {
  flex: 1 1 calc(24% - 40px); /* 24% 基础宽度减去左边距16px和列间距24px，避免因总宽度增加导致换行 */
  min-width: 140px;
  margin-left: 20px; /* 增加左边距，仅作用于“关于邢银”列 */
}

.footer-integrated .footer-center .footer-nav-section:last-child {
  flex: 1 1 60%;
  min-width: 300px;
  margin-left:-20px;
}

.footer-integrated .footer-nav-section h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-integrated .footer-nav-section .footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;

}

.footer-integrated .footer-nav-section .footer-nav-list li {
  margin-bottom: 8px;
  width: 50%;
  display: flex;
  align-items: center;
}

.footer-integrated .nav-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 6px;
}

.footer-integrated .footer-nav-section a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-integrated .footer-nav-section a:hover {
  opacity: 0.8;
}

.footer-integrated .friend-links-dropdown {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  width: 100%;
  max-width: 200px;
  font-size: 14px;
}

/* 右侧存款保险和二维码 */
.footer-integrated .footer-right {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-integrated .footer-right-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}

.footer-integrated .deposit-img {
  width: 180px;
  height: 80px;
  object-fit: contain;
}

.footer-integrated .footer-qrcode {
  text-align: center;
  margin-top:25px;
  margin-left:10px;
}
.footer-integrated .footer-qrcode:first-child{
  margin-left:0px;

}

.footer-integrated .qrcode-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background-color: white;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.footer-integrated .qrcode-text {
  font-size: 12px;
  color: #ffffff;
  margin: 0;
}

/* 版权信息 */
.footer-integrated .footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding:10px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-integrated .footer-copyright span {
  font-size: 12px;
  color: #ffffff;
  line-height: 1.5;
}
.footbg{
  width:100%;
  height:auto;
}
.footbg img{
  width:100%;
}

.friend-links-container{
  /* 新内容：与当前两列布局保持统一的垂直间距 */
  margin-top:12px;
}
.footer-integrated .friend-links-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-integrated .friend-links-container h4 {
  margin-bottom: 0;
  white-space: nowrap;
}

/* 友情链接样式 */
.footer-friend-link {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-friend-link label {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}

.friend-links-dropdown {
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 14px;
  color: #fff;
  min-width: 150px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  height: 32px;
  /* 自定义下拉箭头 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  padding-right: 32px;
}

.friend-links-dropdown:hover {
  border-color: #007bff;
}

.friend-links-dropdown:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.friend-links-dropdown option {
  padding: 6px;
  background-color: #fff;
  color: #333;
}
.deposit-insurance{
 margin-left:20px;
}
.azewm{
  margin-left:10px;
}
.pgewm{
  margin-left:10px;
}
.footer-qrcode{}
/**/
/**/
.inp-area{
	height: 120px;
	background-color: #C9CFCE;
	border: 1px solid black;
        width: 1000px;
        margin: 0px auto;
        position: relative;
}
.search-area{
	height: 40px;
	width: 550px;
	background-color: purple;
	margin: 40px auto;
	border: 1px solid #EEE;
        box-shadow: 1px 1px 1px 1px #C9CFCE;			
}
input{
	height: 40px;
	float: left;
	margin: 0;
	padding: 0;
	border: none;
}
.search_inp{
	width:438px;
	line-height: 40px;
	outline: none;
	padding-left: 20px;
}
.search_btn{
	width:110px;
	background-color: #C9CFCE;
        border: 1px solid #B2A86D;
}
.title{
	width:300px;
	height: 40px;
	float: left;
	font-size: 35px;
	font-weight: 700;
	padding-left: 20px;
}

.ass-app{
	list-style: none;
}
.ass-result-list{
	width: 440px;
	left: 224px;
        top: 80px;
        position: absolute;
        background-color: #ffe;
}
.ass-app table, .ass-app tbody, .ass-app tr{
	width: 100%;
	border-collapse:collapse;  
	border-spacing:0;  
}
.ass-category{
       width: 100px;
       text-align: center;
}
.ass-category h4{
       font-size: 14px;
}
.ass-app a{
	text-decoration: none;
}
.ass-app tr, .ass-app td{
	border: 1px solid #CCC;
	margin: 0px;
	border-collapse: cellpadding;
}
.ass-category-item{
       margin-bottom: 5px;
}
.ass-asswords-item{
     line-height: 18px;
     font-size: 14px;
     padding-left: 30px;
}
.ass-asswords {
    border-bottom: 1px solid #ccc;
}
.ass-result-list .ass-result-item-hover{
	color:red;
        font-weidht: 700;
        cursor: pointer;
}
