  /* 全局重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Microsoft Yahei", sans-serif;
            /* background-color: #f5f5f5; */
        }

        ul, li {
            list-style: none;
        }

        a {
            text-decoration: none;
            color: inherit;
            -webkit-tap-highlight-color: transparent;
        }

        button {
            border: none;
            background: transparent;
            cursor: pointer;
        }
.logo_pc img{max-width:100%;vertical-align: top;}
        /* ===================== 纯PC端导航（993px以上显示）- 优化温柔交互 ===================== */
		.pc-herader{background: #006db8;}
        .pc-nav {
            display: flex;
            background-color: #006db8;
            max-width: 1400px;
            margin: 0 auto;
            height: 60px;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            position: relative;
            z-index: 9999;
        }

        /* PC端菜单列表 */
        .pc-nav-menu {
            display: flex;
            align-items: center;
            height: 100%;
            width: 100%;
            justify-content: space-around;
        }

        /* PC端一级菜单项 - 优化hover过渡 */
        .pc-nav-item {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 0 15px;
            transition: background-color 0.3s ease; /* 新增：背景温柔过渡 */
            border-radius: 4px; /* 新增：轻微圆角更柔和 */
            margin: 0 4px; /* 新增：间距避免拥挤 */
        }

        /* 一级菜单hover背景 - 温柔的浅蓝 */
        .pc-nav-item:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* PC端一级菜单文字 - 优化颜色过渡 */
        .pc-nav-title {
            color: #fff;
            font-size: 16px;
            white-space: nowrap;
            transition: color 0.4s ease; /* 放慢过渡，更温柔 */
            position: relative;
        }

        /* 新增：一级菜单文字底部小下划线动画（温柔提示） */
        .pc-nav-title::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #FFD700;
            transition: width 0.4s ease; /* 下划线展开动画 */
        }

        .pc-nav-item:hover .pc-nav-title {
            color: #FFD700;
        }

        .pc-nav-item:hover .pc-nav-title::after {
            width: 100%; /* hover时下划线缓慢展开 */
        }

        /* PC端二级菜单 - 优化弹出动画（温柔不突兀） */
        .pc-submenu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(8px); /* 初始下移8px */
            background: #fff;
            min-width: 160px;
            border-radius: 8px; /* 增大圆角更柔和 */
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12); /* 更浅的阴影 */
            z-index: 9999;
            padding: 10px 0;
            opacity: 0; /* 初始透明 */
            visibility: hidden;
            transition: all 0.4s ease; /* 所有属性温柔过渡 */
        }

        .pc-nav-item:hover .pc-submenu {
            opacity: 1; /* 渐显 */
            visibility: visible;
            transform: translateX(-50%) translateY(0); /* 缓慢上移 */
        }

        /* PC端二级菜单项 - 优化hover效果 */
        .pc-subitem {
            padding: 8px 16px; /* 调整内边距更宽松 */
            text-align: center;
            transition: background-color 0.3s ease;
        }

        .pc-subitem a {
            color: #333;
            font-size: 15px;
            display: block;
            border-radius: 6px; /* 更大圆角 */
            padding: 6px 0; /* 增大点击区域 */
            transition: all 0.3s ease;
        }

        /* 二级菜单hover - 浅蓝背景+文字渐变 */
        .pc-subitem:hover {
            background-color: #f0f7ff;
        }

        .pc-subitem a:hover {
            color: #006db8;
            transform: translateX(2px); /* 轻微右移，更灵动 */
        }

        /* PC端搜索框 - 优化交互 */
        .pc-search {
            width: 220px;
            position: relative;
            margin-left: 20px;
        }

        .pc-search-input {
            width: 100%;
            height: 36px;
            border-radius: 18px;
            padding: 0 40px 0 16px;
            font-size: 15px;
            background: rgba(255,255,255,0.9);
            border: none;
            outline: none;
            transition: all 0.3s ease; /* 输入框温柔过渡 */
        }

        /* 搜索框focus效果 - 更柔和 */
        .pc-search-input:focus {
            background: #fff;
            box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
            width: 240px; /* focus时轻微变宽 */
        }

        .pc-search-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            font-size: 16px;
            pointer-events: none;
            transition: color 0.3s ease;
        }

        .pc-search-input:focus + .pc-search-icon {
            color: #006db8; /* focus时图标变色 */
        }

        /* ===================== 纯手机端导航（992px以下显示） ===================== */
        .mobile-nav {
            display: none; /* 默认隐藏，手机端显示 */
            background-color: #006db8;
            width: 100%;
            position: relative;
            z-index: 9999;
        }

        /* 手机端导航头部（汉堡按钮） */
        .mobile-nav-header {
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        /* 手机端汉堡按钮 */
        .mobile-hamburger {
            color: #fff;
            font-size: 22px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* 手机端菜单容器（折叠/展开） */
        .mobile-nav-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .mobile-nav-content.active {
            max-height: 2000px;
        }

        /* 手机端一级菜单项容器（关键：修复点击区域） */
        .mobile-nav-item-wrap {
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        /* 手机端一级菜单项（仅标题+按钮） */
        .mobile-nav-item {
            padding: 16px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* 手机端一级菜单文字 */
        .mobile-nav-title {
            color: #fff;
            font-size: 17px;
            flex: 1;
        }

        /* 手机端二级菜单展开按钮 */
        .mobile-toggle-btn {
            color: #fff;
            font-size: 18px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* 手机端二级菜单（阶梯缩进） */
        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: rgba(0,0,0,0.1);
            padding-left: 50px;
        }

        .mobile-submenu.active {
            max-height: 500px;
        }

        /* 手机端二级菜单项 */
        .mobile-subitem {
            padding: 14px 16px;
        }

        .mobile-subitem a {
            color: rgba(255,255,255,0.9);
            font-size: 15px;
            display: block;
            transition: all 0.2s ease;
        }

        .mobile-subitem a:hover {
            color: #FFD700;
            padding-left: 4px;
        }

        /* 手机端搜索框 */
        .mobile-search {
            padding: 12px 16px;
            display: none;
            position: relative;
        }

        .mobile-search.active {
            display: block;
        }

        .mobile-search-input {
            width: 100%;
            height: 40px;
            border-radius: 20px;
            padding: 0 40px 0 16px;
            font-size: 15px;
            background-color: rgba(255,255,255,0.9);
            border: none;
            outline: none;
        }

        .mobile-search-icon {
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            font-size: 16px;
            pointer-events: none;
        }

        /* ===================== 媒体查询：切换显示 ===================== */
        /* 手机端（992px及以下）：显示手机导航，隐藏PC导航 */
        @media (max-width: 992px) {
            .pc-nav {
                display: none;
            }
            .mobile-nav {
                display: block;
            }
        }

        /* PC端（993px及以上）：显示PC导航，隐藏手机导航 */
        @media (min-width: 993px) {
            .pc-nav {
                display: flex;
            }
            .mobile-nav {
                display: none;
            }
        }
		
		
		
		
		
		
/* 主容器 */
.dgjs-footer-wrap {
  width: 100%;
  background-color: #f5f5f5;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  /* border-top: 1px solid #eee; */
}

/* 主宽度容器 */
.dgjs{background: url(../images/foot.jpg) no-repeat top;}
.dgjs-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* 左侧 logo 区域 */
.dgjs-footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}
.dgjs-footer-left:hover {
  transform: translateY(-3px);
}

.dgjs-footer-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
.dgjs-footer-logo:hover {
  transform: scale(1.05);
}

.dgjs-footer-logo-text {
  font-size: 36px;
  font-weight: 500;
  color: #222;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}
.dgjs-footer-left:hover .dgjs-footer-logo-text {
  color: #111;
}

/* 中间联系信息区域 */
.dgjs-footer-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  padding-top: 20px;
  opacity: 0;
  animation: dgjsFadeIn 0.8s ease forwards;
  animation-delay: 0.2s;
}

.dgjs-footer-center-item {
  font-size: 20px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.dgjs-footer-center-item:hover {
  color: #00529B;
  transform: translateX(5px);
}

.dgjs-footer-center-item strong {
  color: #222;
  min-width: 60px;
}

/* 右侧二维码区域 */
.dgjs-footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px;
  opacity: 0;
  animation: dgjsFadeIn 0.8s ease forwards;
  animation-delay: 0.4s;
}

.dgjs-footer-qrcode-box {
  width: 160px;
  height: 160px;
  background-color: #fff;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
.dgjs-footer-qrcode-box:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: scale(1.03);
}

.dgjs-footer-qrcode-img {
  width: 140px;
  height: 140px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 140'%3E%3Crect fill='white' width='140' height='140'/%3E%3Cpath fill='black' d='M10 10v10h10v-10zm20 0v10h10v-10zm20 0v10h10v-10zm20 0v10h10v-10zm20 0v10h10v-10zm20 0v10h10v-10zm20 0v10h10v-10zm0 20v10h10v-10zm-140 0v10h10v-10zm0 20v10h10v-10zm0 20v10h10v-10zm0 20v10h10v-10zm0 20v10h10v-10zm20 0v10h10v-10zm20 0v10h10v-10zm20 0v10h10v-10zm20 0v10h10v-10zm20 0v10h10v-10zm20 0v10h10v-10zm20 0v10h10v-10zm20-120v10h10v-10zm0 20v10h10v-10zm0 20v10h10v-10zm0 20v10h10v-10zm0 20v10h10v-10zm0 20v10h10v-10zm-120 20v10h10v-10zm20 0v10h10v-10zm20 0v10h10v-10zm20 0v10h10v-10zm20 0v10h10v-10zm20 0v10h10v-10zm20 0v10h10v-10zm20 0v10h10v-10z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.dgjs-footer-qrcode-text {
  font-size: 20px;
  color: #333;
  font-weight: 600;
}
.dgjs-footer-right:hover .dgjs-footer-qrcode-text {
  color: #00529B;
}

/* 底部版权栏 */
.dgjs-footer-bottom {
  width: 100%;
  background-color: #fff;
  /* border-top: 1px solid #eee; */
  padding: 20px 0;
}

.dgjs-footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 16px;
  color: #666;
}

.dgjs-footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dgjs-footer-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}
.dgjs-footer-links a:hover {
  color: #00529B;
}

.dgjs-footer-copyright,
.dgjs-footer-record,
.dgjs-footer-tech {
  white-space: nowrap;
}

/* 底部红蓝条 - 红色在上方，占20%高度 */
.dgjs-footer-strip {
  width: 100%;
  height: 30px;
  background-color: #0071c5; /* 底部蓝色 80% */
  position: relative;
  overflow: hidden;
}
.dgjs-footer-strip::before {
  content: "";
  position: absolute;
  top: 0; /* 红色贴顶部（蓝色上面） */
  left: 10%;
  width: 80%;
  height: 20%; /* 红色高度 20% */
  background-color: #e6212a;
}

/* 动画 */
@keyframes dgjsFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 响应式适配 */
@media (max-width: 1024px) {
  .dgjs-footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .dgjs-footer-center {
    align-items: center;
  }
  .dgjs-footer-center-item {
    justify-content: center;
  }
  .dgjs-footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .dgjs-footer-logo-text {
    font-size: 28px;
  }
  .dgjs-footer-center-item {
    font-size: 15px;
    justify-content: left;
    width: 100%;
  }
  .dgjs-footer-qrcode-box {
    width: 140px;
    height: 140px;
  }
  .dgjs-footer-qrcode-img {
    width: 120px;
    height: 120px;
  }
  .dgjs-footer-bottom-container {
    font-size: 14px;
  }
}














 /* 右侧固定栏容器 */
    .fixed-sidebar {
      position: fixed;
      right: 20px;
      bottom: 80px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    /* 单个按钮样式 —— 高级灰色系 + 正圆形 */
    .sidebar-item {
      width: 50px;
      height: 50px;
      background-color: #f5f5f5;
      border: 1px solid #e8e8e8;
      border-radius: 50%;     /* 正圆形 */
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    /* 图标统一大小、颜色 */
    .sidebar-item svg {
      width: 22px;   /* 统一宽度 */
      height: 22px;  /* 统一高度 */
      fill: #666;
      transition: fill 0.3s;
    }

    /* 悬浮交互：灰色加深 + 轻微放大 */
    .sidebar-item:hover {
      background-color: #e9e9e9;
      border-color: #dcdcdc;
      transform: scale(1.08) translateX(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .sidebar-item:hover svg {
      fill: #333;
    }

    /* 微信二维码弹窗 */
    .wechat-code {
      position: absolute;
      right: 60px;
      bottom: 0;
      width: 160px;
      padding: 10px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      display: none;
      text-align: center;
      animation: fadeIn 0.3s;
    }

    .wechat-code img {
      width: 100%;
      border-radius: 6px;
    }

    .wechat-code p {
      margin-top: 6px;
      font-size: 12px;
      color: #666;
    }

    /* 鼠标悬浮显示二维码 */
    .sidebar-item:hover .wechat-code {
      display: block;
    }

    /* 提示文字样式 */
    .tooltip {
      position: absolute;
      right: 60px;
      white-space: nowrap;
      background: #555;
      color: #fff;
      padding: 6px 10px;
      border-radius: 6px;
      font-size: 12px;
      opacity: 0;
      transform: translateX(10px);
      transition: all 0.3s;
      pointer-events: none;
    }

    .sidebar-item:hover .tooltip {
      opacity: 1;
      transform: translateX(0);
    }

    /* 返回顶部默认隐藏 */
    #backTop {
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
    }

    /* 显示返回顶部 */
    #backTop.show {
      opacity: 1;
      visibility: visible;
    }

    /* 淡入动画 */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateX(10px); }
      to { opacity: 1; transform: translateX(0); }
    }

    /* 移动端适配 */
    @media (max-width: 768px) {
      .fixed-sidebar {
        right: 12px;
        bottom: 60px;
        gap: 8px;
      }
      .sidebar-item {
        width: 44px;
        height: 44px;
      }
      .sidebar-item svg {
        width: 19px;
        height: 19px;
      }
      .wechat-code {
        width: 130px;
      }
	  
	  .dgjs-footer-left{display:none;}
    }		
		
		
		
		
		
		
		
		
		