body {
  min-width: 320px;
  /* 防止极端窄屏变形 */
  background: #fff;
}

/* 头部容器：固定+居中+阴影 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

/* 导航内层容器：限制最大宽度+居中+弹性布局 */
.nav-wrapper {
  max-width: 1200px;
  /* 桌面端最大宽度，根据设计调整 */
  height: 50px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo 区域：最小宽度防止挤压 */
.nav-logo {
  display: flex;
  align-items: center;
  min-width: 220px;
  /* Logo 最小宽度，避免缩放时被压缩 */
}

.nav-logo img {
  height: 30px;
  margin-right: 8px;
}


/* 桌面导航：弹性布局+子菜单悬浮 */
.nav-desktop {
  padding-top: 10px;
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 120px;
}

.nav-list>li>a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
}

.nav-list>li>a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #007bff;
  transition: width 0.3s;
}

.nav-list>li>a:hover::after {
  width: 100%;
}

/* 子菜单：悬浮展开 + 定位 */
.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 999;
}

.submenu li a {
  display: block;
  padding: 8px 15px;
  color: #666;
  text-decoration: none;
  transition: background 0.3s;
}

.submenu li a:hover {
  background: #f5f5f5;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 右侧操作区：视频+语言切换+汉堡按钮 */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  /* 桌面端隐藏汉堡按钮 */
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-extra a {
  display: inline-block;
  vertical-align: middle;
}

.nav-extra img {
  max-width: 18px;
}

.lang-switch {
  color: #333;
  text-decoration: none;
  font-size: 12px;
}

/* 移动端菜单：默认隐藏+全屏覆盖 */
.nav-mobile {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 70px);
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  /* 初始隐藏在右侧 */
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 998;
}

.mobile-list {
  list-style: none;
}

.mobile-submenu-trigger {
  margin: 10px 0;
  border-bottom: 1px solid #eee;
}

.mobile-submenu-trigger>a {
  display: block;
  padding: 10px 0;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.mobile-submenu-trigger>a::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 18px;
  transition: transform 0.3s;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  padding-left: 15px;
  transition: max-height 0.3s;
}

.mobile-submenu li a {
  display: block;
  padding: 8px 0;
  color: #666;
  text-decoration: none;
}

.nav-extra-mobile {
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.nav-extra-mobile a {
  display: inline-block;
  margin-right: 15px;
}

/* 1. 移动端菜单文字整体放大 + 行高优化 */
.nav-mobile {
  font-size: 16px;
  /* 基础字体大小，影响所有移动端菜单文字 */
  line-height: 1.6;
  /* 行高更宽松，提升可读性 */
}

/* 2. 一级菜单（Business/About）强化 */
.mobile-list>li>a {
  font-size: 18px;
  /* 一级菜单标题更大更醒目 */
  font-weight: 600;
  /* 加粗突出层级 */
  padding: 12px 0;
  /* 增大点击区域 */
}

/* 3. 语言切换文字调整 */
.lang-switch {
  font-size: 16px;
  /* 单独调整语言切换文字（若需区别于基础字体） */
  padding: 8px 0;
  /* 点击区域优化 */
}

/* 4. 视频图标尺寸 + 点击区域 */
.nav-extra-mobile img,
/* 移动端视频图标 */
.nav-extra img {
  /* 桌面端视频图标（若需统一） */
  width: 40px;
  /* 图标宽度（原尺寸太小，调大到40px更清晰） */
  height: 40px;
  /* 高度自适应或固定，保持比例 */
  object-fit: contain;
  /* 防止拉伸变形 */
  margin-right: 10px;
  /* 增加右侧间距，避免拥挤 */
}

/* 5. 子菜单文字（Scope/Partners等）优化 */
.mobile-submenu li a {
  font-size: 16px;
  padding: 10px 0;
  /* 子菜单文字点击区域 */
  color: #555;
  /* 弱化颜色，区分层级 */
}

/* 6. 媒体查询内强化（确保移动端生效） */
@media (max-width: 992px) {
  .nav-mobile {
    padding: 25px;
    /* 增大内边距，让内容不拥挤 */
  }
}

/* 媒体查询：窄屏（移动端）切换布局 */
@media (max-width: 992px) {

  /* .banner1 img {
    min-width: 1180px;
    height: auto;
  } */

  .nav-desktop {
    display: none;
    /* 隐藏桌面导航 */
  }

  .hamburger {
    display: flex;
    /* 显示汉堡按钮 */
  }

  .nav-extra {
    display: none;
    /* 隐藏桌面端语言/视频入口 */
  }





/* 2025年6月24日增加手机端相关样式图片的自适应 */

.banner1 {
  margin-top: 50px;
  width:95vw;
 height: 15vw;
}

.banner1 img {
  width:100vw;
 height: 15.5vw;
}

.content_title {
  width:95vw;
}
.content_title h4{
  width:95vw;
}

.content_img {
  width:95vw;
}

.content_img img {
  width:95vw;
}
.content_img a img {
  width:95vw;
}

/* 组织机构 */
.right-image {
  width:95vw;
}
.right-image img {
  width:95vw;
}
.layout-wrapper {
    margin-left: 0px;

}

/* 新闻 列表*/

.xiao {
  width:98vw;
}
.deft {
  width:98vw;
}
.hura {
  width:98vw;
}
.gadf{
  width:98vw;
}
#kuanggs{
  width:98vw;
}
.zlj_1{
  width:95vw;
 margin-left:1px;
}
.zlj_1 a h4{
  font-size:1.6rem;
}
#dolan{
 margin-left:1px;
}
.th_1{
  width:98vw;
}
.backs{
  width:98vw;
  float:left;
}
/* 新闻内容页 */

#ogkla1{
  width:98vw;
}
#conkht{
  width:98vw;
  margin-left:1px; 
   left:1px ;
}
#conkht p{
  width:80vw;
   top:32px ;
}

.lanzxh{
  width:95vw;
  left: 1px;
}

#waxf{
  width:96vw;
  margin-left:1px; 
  margin-right:1px; 
}
#waxf p{
  text-indent:2em; 
}
#ogkla4{
  width:98vw;
}


 

}

/* 汉堡按钮激活状态：动画+展开菜单 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

.nav-mobile.active {
  transform: translateX(0);
  /* 展开菜单 */
}

.mobile-submenu-trigger.active>a::after {
  transform: rotate(45deg);
}

.mobile-submenu-trigger.active .mobile-submenu {
  max-height: 1000px;
  /* 展开子菜单 */
}



/*2025年6月17日增加一个content中是图片的样式，content_img 复制的sope.css的 C_1 ，可以自己更改*/
.content_img {
  width: 1180px;
  height: auto;
  margin: 60px auto;
  border-radius: 50px;
  margin-top: 20px;
}

.content_img img {
  max-width: 100%;
  height: auto;
}


/* .banner1 {
  width: 100%;

  height: auto;
}

.banner1 img {
  min-width: 1180px;
} */

@media screen and (max-width: 992px) {
  /* .banner1 img {
    width: 100%;
    height: auto;
  } */
  .right-image{

    width: 100%;
    height: auto;
  }
  
  /* 2025年6月24日增加手机端相关样式图片的自适应 */
  

.content_img {
  width:95vw;
}

.content_img img {
  width:95vw;
}
  
}

/* @media screen and (min-width: 762px) {
  .banner1 img {
    max-width: 1180px;
    height: auto;
  }
} */