@charset "UTF-8";
/* CSS Document */
.w_hr {
  overflow: hidden;
  height: 100vh;
}
.hr_bg{background: url("../img/ht_bg.png") no-repeat;
	background-size: cover;
    background-position: top center;
    height: 100vh;
	width: 100%;
	    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}
.w_hr video {
  object-position: center center;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transform-origin: center center;
}
    .video_pc {
        display: block;
    }
.video_mobile {
        display: none;
    }
.hr_slogn {
	    font-family: "pfhfonts", "思源黑体 CN", "Noto Sans CJK SC", sans-serif;
    font-size: 60px;
    position: absolute;
    top: 50%;
    margin-top: -158px;
    color: #FFFFFF;
    letter-spacing: 13px;
    width: 760px;
    left: calc((100vw - 1200px) / 2);
    font-weight: 600;
    line-height: 120px;
}
.hr_slogn span {
  text-transform: uppercase;
  font-size: 110px;
  text-align-last: justify;
}
.ht_cen {
  width: 600px;
  height: 300px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  margin-top: -185px;
  right: calc((100vw - 1200px) / 2);
  z-index: 999;
}
.hr_more {
  width: 486px;
  height: 135px;
  background: url(../img/society.png);
  cursor: pointer;
  margin: 0 auto;
  margin-left: 60px;
  float: left;
  margin-top: 10px;
  line-height: 200px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.hr_more span {
  background-image: linear-gradient(to bottom, #093979, #093979, #fff);
  font-family: "pfhfonts", "思源黑体 CN", "Noto Sans CJK SC", sans-serif;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 26px;
  display: block;
  position: relative;
  bottom: 17px;
  left: -20px;
	font-weight: 600;
}
.hr_more2 {
  width: 497px;
  height: 135px;
  background: url(../img/school.png);
  cursor: pointer;
  margin: 0 auto;
  float: right;
  margin-right: 60px;
  margin-top: 10px;
  line-height: 200px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.hr_more2 span {
  background-image: linear-gradient(to bottom, #e57a22, #e57a22, #fff);
	font-family: "pfhfonts", "思源黑体 CN", "Noto Sans CJK SC", sans-serif;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 26px;
  font-weight: 600;
  display: block;
  position: relative;
  bottom: 17px;
  right: -20px;
}
.hr_more:hover {
  background: url(../img/society_h.png);
  transition: all 0.3s linear
}
.hr_more2:hover {
  background: url(../img/school_h.png);
  transition: all 0.3s linear
}
.hr_more:hover span {
  background-image: linear-gradient(to bottom, #e57a22, #e57a22, #fff);
  transition: all 0.3s linear
}
.hr_more2:hover span {
  background-image: linear-gradient(to bottom, #093979, #093979, #fff);
  transition: all 0.3s linear
}
/* 手风琴容器：固定1200px，取消gap避免宽度计算偏差 */
.hr_banner_accordion {
  display: flex;
  height: 417px;
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
/* 所有项基础样式：统一收起宽度210px，过渡流畅 */
.hr_banner_item {
  width: 210px;
  height: 100%;
  margin-right: 15px;
  position: relative; /* 作为所有子元素的父定位容器 */
  transition: width 0.5s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}
/* 清除最后一个项右边距，总宽度精准匹配1200px（525+210*3+15*3=1200） */
.hr_banner_item:last-child {
  margin-right: 0;
}
/* 图片基础样式：统一暗化，过渡流畅（保留你之前的选择器，不改动） */
.hr_banner_item img {
  object-fit: cover;
}
/* 核心：深色蓝色遮罩（#062858 同色系深色） */
.hr_banner_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #093979; /* 更深的蓝色 */
  opacity: 0; /* 默认透明（收缩状态不显示） */
  transition: opacity 0.5s ease-in-out; /* 与其他动画同步 */
  pointer-events: none; /* 穿透鼠标事件，不影响交互 */
  z-index: 1; /* 层级：图片 < 遮罩 < 文字/图标 */
}
/* 核心：收起状态 - 主文本独立绝对定位（严格固定底部20px，完全保留原有样式） */
.hr_banner_text {
  position: absolute;
  bottom: 20px; /* 严格固定距底部20px，收起/展开均保留该底部间距（核心需求） */
  left: 0;
  right: 0;
  color: white;
  font-size: 24px;
  font-weight: bold; /* 收起状态：不加粗 */
  text-align: center; /* 收起状态：居中显示 */
  z-index: 2; /* 高于遮罩 */
  transition: all 0.5s ease-in-out; /* 仅控制opacity，不改变位置 */
  padding: 0; /* 收起状态：无内边距 */
  max-width: 100%; /* 收起状态：适应210px宽度 */
}
/* 核心：展开状态 - 副文本容器（保留所有原有布局，仅微调gap适配50x50图标） */
.hr_banner_text_container {
  position: absolute;
  bottom: 20px; /* 与主文本收起状态保持一致，距底部20px */
  left: 20px; /* 展开状态：左移20px，避免贴边 */
  z-index: 2; /* 高于遮罩 */
  display: flex;
  flex-direction: column; /* 垂直排列（图标在上 → 主文本 → 副文本在下） */
  align-items: flex-start; /* 展开状态：整体左对齐 */
  gap: 10px; /* 保留原有间距，不破坏原有视觉 */
  opacity: 0; /* 收起状态：隐藏容器（仅显示独立主文本） */
  transition: opacity 0.5s ease-in-out;
}
/* 仅修改这里：图标尺寸改为50x50，其余保留你之前的正常样式，无多余改动 */
.hr_banner_icon {
  width: 37px; /* 仅将宽度从40px改为50px（核心需求） */
  object-fit: contain; /* 保留原有样式，防止图标变形 */
  display: block; /* 保留原有样式，消除行内间隙 */
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)); /* 保留原有阴影，不改变视觉风格 */
}
/* 展开状态 - 主文本样式（完全保留原有效果，不加粗/左对齐等不变） */
.hr_banner_text_inner {
  color: white;
  font-size: 24px;
  font-weight: bold; /* 展开状态：加粗（原有效果保留） */
  text-align: left; /* 展开状态：左对齐（原有效果保留） */
  max-width: 480px; /* 限制最大宽度，避免超出展开项 */
  padding: 0 0 15px 0;
}
/* 20px副文字样式（完全保留原有效果，多行适配等不变） */
.hr_banner_subtext {
  color: white; /* 与主文字同色，视觉统一 */
  font-size: 16px; /* 固定20px字号 */
  text-align: left; /* 左对齐，与展开后主文字统一 */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); /* 细腻阴影，提升可读性 */
  max-width: 480px; /* 限制最大宽度，避免超出展开项（525px-20px左内边距） */
  line-height: 30px; /* 多行文字行高，提升可读性（适配2行/3行） */
  padding: 0; /* 容器已左移20px，无需额外内边距 */
  text-align: justify;
}
/* 悬停展开/高亮：所有项通用（完全保留原有交互效果，不改动） */
.hr_banner_item:hover {
  width: 525px;
}
.hr_banner_item:hover img {
  filter: brightness(1);
}
.hr_banner_item:hover .hr_banner_mask {
  opacity: 0.9; /* 深色遮罩透明度 */
}
/* 核心：展开状态 - 隐藏独立主文本，显示flex容器（保留原有显隐逻辑） */
.hr_banner_item:hover .hr_banner_text {
  opacity: 0; /* 收起独立主文本，避免与容器内主文本重叠 */
}
.hr_banner_item:hover .hr_banner_text_container {
  opacity: 1; /* 显示flex容器，承载图标+主+副文本 */
}
/* 容器：固定总宽度1200px，计算好间距保证卡片尺寸 */
.advantage-container {
  display: grid;
  grid-template-columns: 590px 590px; /* 固定每列宽度590px */
  gap: 20px; /* 卡片间距20px，1200 = 590+20+590 */
  width: 1200px; /* 固定总宽度 */
  margin: 0 auto; /* 水平居中 */
}
/* 单个卡片样式：固定尺寸590x260 */
.advantage-card {
  display: grid;
  grid-template-columns: 3fr 1fr; /* 文字区占3份，图标区占1份 */
  align-items: center; /* 垂直居中 */
  gap: 30px;
  width: 530px;
  height: 200px;
  padding: 30px;
  background-color: #fff; /* 统一默认白色背景 */
  /* 默认状态下的卡片阴影（清晰可见，区别于hover增强阴影） */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  /* 背景图基础配置（仅保证图片正常显示，无任何额外处理/遮罩） */
  background-position: center;
  background-size: cover; /* 铺满卡片（无变形，仅基础适配） */
  background-repeat: no-repeat;
  /* 仅保留位置和阴影的过渡，背景图无动画（直接显示） */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; /* 仅保留用于图标/文字层级，无遮罩用途 */
  overflow: hidden; /* 防止图片溢出卡片（基础裁剪，非额外处理） */
  cursor: pointer; /* 鼠标移入显示小手指针 */
}
/* 鼠标移入卡片：微调位置 + 增强阴影 + 直接显示统一粉色背景图（无动画、无遮罩） */
.advantage-card:hover {
  /* 1. 微调位置：轻微上浮 */
  transform: translateY(-3px);
  /* 2. 增强阴影：突出悬浮效果 */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  /* 3. 直接加载粉色背景图（原始显示，无任何叠加遮罩） */
  background-image: url("../img/hr_ft_bg.jpg");
}
/* 文字区域样式（仅保留层级，无遮罩需要规避） */
.card-text {
  position: relative;
  z-index: 2; /* 保证文字在背景图上方，无遮罩遮挡 */
	width: 420px;
}
.card-text h3 {
  color: #093979; /* 标题蓝色：093979 */
  font-size: 24px; /* 标题字号：24px */
  margin-bottom: 12px;
  font-weight: 600;
}
.card_list{
	display: grid; /* 核心：开启Grid布局 */
      grid-template-columns: 210px 1fr; /* 定义2列，每列宽度均等（1fr 表示剩余空间分配） */
      grid-template-rows: 1fr 1fr; /* 定义2行，每行高度均等 */
      gap: 1px
}
.card-text p {
  color: #3d3d3d; /* 副文本颜色：3d3d3d */
  font-size: 16px; /* 副文本字号：18px */
  line-height: 2; /* 行间距优化，保证可读性 */
  /* 文字溢出处理，避免高度超出 */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
	float:left;
   width: 220px;
	letter-spacing: 0;
	margin-right: 10px;
}
.card-text p:hover span{background: #e57a22;}
.card-text p span{ 
	width: 10px;
	height: 10px;
	display: inline-flex;
	background: #093979;
	margin: 8px 15px 0 0;
}
.card-text p span:nth-child(2){
	margin-left: 20px;
}
/* 图标区域样式：居中显示（仅保留层级，无遮罩需要规避） */
.card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px; /* 固定图标容器高度，保证对齐 */
  position: relative;
  z-index: 2; /* 保证图标在背景图上方，无遮罩遮挡 */
}
.card-icon img {
  max-width: 80px;
  object-fit: contain;
}

.hr_fbt {
  font-size: 18px;
  color: #093979;
  border: 1px solid #093979;
	padding: 8px 20px;
}
.hr_fbt:hover{ 
   background: #093979;
	color: #fff;
}
.hr_fbt:hover a{ 
	color: #fff;
}
.hr_fbt a{color: #093979;}
.hr_bt {
  font-size: 36px;
  color: #083979;
}
.hr_more_l {
  background: linear-gradient(to left, #e57922, #e57922, #fff);
  height: 2px;
  display: block;
  float: right;
  margin: 60px 20px 0 0;
  cursor: pointer;
}
.gsdt_list {
  width: 1200px;
  height: 375px;
  margin: 90px auto;
}
.left-column {
  width: 715px;
  float: left;
}
.right-column {
  width: 535px;
  float: right;
}
.right-column {
  flex: 1;
  width: 445px;
}
.article-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 35px;
  background: #f9f9f9;
  cursor: pointer;
  height: 100px;
  width: 715px;
}
.article-content {
  padding: 9px 16px;
}
.article-item:hover {
  background: #fcf1e8;
  border-bottom: 2px solid #e57821;
  height: 100px;
}
.article-item:hover .article-title {
  color: #083979
}
.article-item:hover .article-title a {
  color: #083979
}
.article-item--highlight {
  background: #fff8e6;
}
.article-img img {
  width: 150px;
  height: 100px;
}
.article-title {
  font-size: 16px;
  margin: 0 0 35px 0;
  color: #3d3d3d;
  float: left;
  height: 25px;
	width: 410px;
	text-align: justify;
}
.article-title a {
  color: #3d3d3d;
}
.article-date {
  font-size: 14px;
  color: #3d3d3d;
  margin: 5px 0 8px 0;
  float: right;
}
.article-desc {
  font-size: 14px;
  color: #3d3d3d;
  margin: 0;
  line-height: 1.5;
  width: 100%;
  float: left;
  height: 25px;
  overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
  width: 430px;
	text-align: justify;
}
.top-article {
  background: #fff;
  width: 445px;
}
.top-article:hover {
  background: #f9f9f9;
}
.top-title {
  font-size: 20px;
  color: #0056b3;
  margin: 0 0 15px 0;
  text-align: center;
}
.guests {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px;
}
.guest-item {
  text-align: center;
}
.guest-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 5px;
  border: 2px solid #fff;
}
.guest-name {
  font-size: 12px;
  color: #333;
  line-height: 1.4;
}
.top-img {
  text-align: center
}
.top-img img {
  width: 435px;
  height: 290px;
  margin-bottom: 10px;
}
.top-article-title {
  font-size: 18px;
  margin: 0 0 8px 0;
  color: #3d3d3d;
  width: 420px;
  float: left;
}
.top-article-date {
  font-size: 16px;
  color: #3d3d3d;
  margin: 0 0 8px 0;
  float: left;
}
.top-article-desc {
  font-size: 16px;
  color: #3d3d3d;
  margin: 0;
  line-height: 1.5;
  float: left;
}
.hr_pslw_join{
	height: 260px;
	background: url("../img/hr_join.jpg") no-repeat;
	width: 1200px;
	cursor: pointer;
	margin: 170px auto;
    background-size: cover;
}
.hr_pslw_join p{
	width: 160px;
    height: 45px;
    position: relative;
    top: 20px;
    left: 205px;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    letter-spacing: 2px;
    font-weight: bold;
    border: 1px solid #fff;
    padding: 0 0px 0 15px;
}
.bot_banner{font-size: 38px; color: #fff; width: 210px;height: 105px;padding: 42px 0 0 154px;font-weight: bold;    line-height: 53px;}
.bot_banner span{ color: #e57921;}
/* 右侧置顶文章轮播核心样式（重点：轮播单元为完整文章） */

        /* 轮播容器：包裹所有置顶文章，溢出隐藏 */
        .carousel-container {
            width: 100%;
            position: relative;
            overflow: hidden;
        }
        /* 轮播文章列表：所有置顶文章的容器 */
        .carousel-articles {
            width: 100%;
            height: 405px; /* 单篇置顶文章的总高度，可自定义 */
            position: relative;
        }
        /* 单篇置顶文章（轮播单元）：包含图片+标题 */
        .carousel-article {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 0.5s ease; /* 平滑切换效果 */
            display: flex;
            flex-direction: column;
			display: none;
        }
        /* 活跃状态：当前显示的文章 */
        .carousel-article.active {
            opacity: 1;
			display: block;
        }
        /* 置顶文章图片 */
        .carousel-img img {
            width: 445px;
            height: 290px; /* 图片高度，可自定义 */
            object-fit: cover;
        }
        /* 置顶文章标题 */
        .carousel-title {
      -webkit-line-clamp: 2;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      box-sizing: border-box; 
      font-size: 16px; 
      line-height: 1.78; 
      padding: 0; 
      word-wrap: break-word; /* 防止英文/数字不换行，确保溢出 */
      word-break: break-word;
		 width: 445px; height: 60px;
			color: #093979;
			margin-top: 10px;
        }
        /* 左右切换按钮 */
        .carousel-btn {
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            background-color: rgba(0,0,0,0.3);
            color: #fff;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
			display: none;
        }
        .carousel-btn:hover {
            background-color: rgba(0,0,0,0.5);
        }
        .prev-btn {
            left: 10px;
        }
        .next-btn {
            right: 10px;
        }
        /* 轮播指示器（小圆点，对应3篇文章） */
        .carousel-indicators {
            position: absolute;
            top: 275px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        .indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #093979;
            cursor: pointer;
        }
        .indicator.active {
            background-color: #e57a22; /* 活跃指示器高亮 */
        }



footer {
  position: relative;
}


/* =================补充：750px及以下屏幕适配（移动端适配）================ */
@media (pointer:coarse) and (min-width: 375px) and (max-width: 480px)  {
  /* 全局基础：统一盒模型，避免内边距溢出 */
  * {
    box-sizing: border-box;
  }
.video_pc {
        display: none;
    }
.video_mobile {
        display: block;
    }
  /* 1. 顶部背景与视频区域 */
  .w_hr {
    height: 360px;
  }

  .hr_bg {
    height: 0;
    background-position: center center; /* 保证背景图居中显示 */
	  top: 230px;
	  background: none;
  }

  .w_hr video {
    width: 100%;
    height: 360px;
  }
   .w1200{ width: 90%;
	}
	.f36{ font-size: 24px;
	}
	.h80{ height: 20px;
	}
  /* 2. 标语文字：缩小字体、取消固定宽度和定位 */
  .hr_slogn {
    font-size: 20px; /* 缩小字体，适配移动端 */
    width: 90%; /* 占屏幕90%宽度，避免溢出 */
    left: 5%; /* 左右居中 */
    top: -100px; /* 调整垂直位置，避免偏上 */
    margin-top: 0; /* 取消固定负边距 */
    letter-spacing: 6px; /* 缩小字间距 */
    line-height: 40px; /* 适配小字体行高 */
    text-align: center; /* 居中对齐，提升可读性 */
  }
	.hr_banner_item img{ display: none; width: 150px;height: 120px; float: left;}
  .hr_slogn span {
    font-size: 34px; /* 按比例缩小大写字体 */
  }

  /* 3. 中间按钮容器：取消固定定位和浮动，堆叠排列 */
  .ht_cen {
    width: 90%;
    height: auto;
    position: relative; /* 取消绝对定位，改为相对定位 */
    top: 10px;
    right: 0;
    margin: 20px auto; /* 上下留白，水平居中 */
    z-index: 999;
  }

  .hr_more, .hr_more2 {
    float: left; /* 取消浮动，堆叠排列 */
    width: 50%; /* 自适应宽度 */
    height: auto;
    margin: 10px auto; /* 上下间距，水平居中 */
    left: 0;
    right: 0;
    background-size: contain; /* 背景图自适应，不拉伸 */
	  background-repeat: no-repeat;
  }

  .hr_more:hover, .hr_more2:hover {
    background-size: contain;
  }

  .hr_more span, .hr_more2 span {
    font-size: 14px; /* 缩小按钮文字 */
    bottom: 0;
    left: 0;
    right: 0;
	  line-height: 60px;
	  height: 47px;
  }

  /* 4. 手风琴组件：取消固定宽度，适配移动端 */
  .hr_banner_accordion {
    width: 100%;
    height: auto;
    min-height: 300px; /* 保证最小高度 */
    flex-wrap: wrap; /* 小屏允许换行 */
  }

  .hr_banner_item {
    width: 100% !important;
        height: 120px;
        margin: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
.hr_banner_item:last-child {
    margin: 20px;
}
  .hr_banner_item:hover {
    width: 100%; /* 悬停时占满容器宽度，提升可读性 */
  }

  .hr_banner_text {
    font-size: 18px; /* 缩小收起状态文字 */
	  display: none;
  }

  .hr_banner_text_inner {
    font-size: 18px;
    max-width: 100%; /* 取消最大宽度限制 */
	          color: #e57921;
  }

  .hr_banner_subtext {
  font-size: 12px;
        max-width: 100%;
        color: #3d3d3d;
        line-height: 17px;
        text-shadow: none;
  }
	.hr_banner_mask{ display: none;}
  /* 5. 优势卡片容器：单列堆叠，自适应宽度 */
  .advantage-container {
    width: 90%;
    grid-template-columns: 1fr; /* 强制单列 */
    gap: 15px; /* 缩小卡片间距 */
    padding: 10px 0;
  }
	.hr_banner_text_container{ opacity: 1 !important;
        width: 100%;
	    position: absolute;
    top: 0;
		padding: 15px;
    right: 0;
		left: auto !important;
    z-index: 2;
     display:block !important; 
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: opacity 0.5s ease-in-out;}
	.hr_banner_accordion .hr_banner_item:nth-child(odd) .hr_banner_text_container{ left: 0; right: auto !important; }
	.hr_banner_accordion .hr_banner_item:nth-child(odd) img{  float: right;
	}
	.mobile_hr_rcg{ margin-bottom: 30px !important;}
  .advantage-card {
    width: 100%;
    height: auto;
    min-height: 180px;
    grid-template-columns: 3fr 1fr; /* 卡片内部单列（文字在上，图标在下） */
    gap: 15px;
    padding: 20px;
  }
	.m_cen{   padding-top: 1px !important; }
  .card-text {
    width: 100%; /* 取消固定宽度 */
  }

  .card-text h3 {
    font-size: 18px; /* 缩小标题字体 */
  }

  .card_list {
    grid-template-columns: 1fr; /* 列表单列堆叠 */
  }
	.w500{ width: 200px;
	}
  .card-text p {
    width: 100%; /* 取消固定宽度 */
    float: none; /* 取消浮动 */
    font-size: 12px;
    line-height: 1.8; /* 缩小行高 */
    -webkit-line-clamp: 3; /* 减少多行显示行数，避免过高 */
  }

  .card-icon img {
    max-width: 60px; /* 缩小图标 */
  }

  /* 6. 新闻列表：取消浮动，单列堆叠 */
  .gsdt_list {
    width: 90%;
    height: auto;
    margin: 40px auto 0; /* 缩小上下间距 */
  }

  .left-column, .right-column {
    width: 100%;
    float: none; /* 取消浮动，堆叠排列 */
    margin-bottom: 30px; /* 增加列间距 */
  }

  .article-item {
    width: 100%;
    height: auto;
    min-height: 120px;
    flex-direction: column; /* 图片在上，文字在下 */
  }
.article-item:hover {
    background: #fcf1e8;
    border-bottom: 2px solid #e57821;
    min-height: 120px;
}
  .article-img img {
    width: 100%;
    height: auto; /* 图片自适应 */
  }

  .article-content {
    width: 100%;
    padding: 10px;
  }

  .article-title {
    width: 100%; /* 取消固定宽度 */
    float: none; /* 取消浮动 */
    height: 42px;
	margin: 0 0 5px 0;
    white-space: normal; /* 取消单行省略，允许换行 */
    overflow: hidden; /* 取消溢出隐藏 */
    -webkit-line-clamp: 2; /* 多行省略，适配小屏 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
	
  .article-desc {
    width: 100%; /* 取消固定宽度 */
    float: none; /* 取消浮动 */
    height: 37px;
	margin: 0 0 5px 0;
    white-space: normal; /* 取消单行省略，允许换行 */
    overflow: hidden; /* 取消溢出隐藏 */
    -webkit-line-clamp: 2; /* 多行省略，适配小屏 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }

  .article-date {
    float: none; /* 取消浮动 */
    margin: 5px 0;
  }

  /* 7. 轮播组件：适配移动端宽度 */
  .carousel-container {
    width: 100%;
  }

  .carousel-articles {
    height: auto;
    min-height: 300px;
  }

  .carousel-img img {
    width: 100%;
    height: auto; /* 图片自适应，不固定高度 */
  }

  .carousel-title {
    width: 100%;
    font-size: 14px;
    height: auto;
  }

  .carousel-indicators {
    top: auto;
    bottom: 90px; /* 指示器移到轮播底部，避免遮挡图片 */
  }

  /* 8. 底部加入模块：自适应宽度 */
  .hr_pslw_join {
    width: 90%;
        height: auto;
        min-height: 120px;
        margin: 20px auto;
        background-size: 100%;
        background-position: center;
  }

  .hr_pslw_join p {
            left: 9%;
        top: -30px;
        width: 120px;
        height: 35px;
        font-size: 14px;
        line-height: 34px;
        transform: scale(0.6);
  }

  .bot_banner {
    font-size: 10px;
        width: 90%;
        padding: 40px 0 0 48px;
        line-height: 18px;
  }

  /* 9. 其他辅助元素：缩小字体和间距 */
  .hr_bt {
    font-size: 24px; /* 缩小标题字体 */
    text-align: left; /* 居中对齐 */
  }

  .hr_fbt {
    font-size: 14px;
    padding: 6px 15px;
    display: block; /* 块级显示，居中对齐 */
    width: fit-content;
  }

  .hr_more_l {
    display: none; /* 移动端隐藏装饰性横线，简化界面 */
  }
}


/* =================补充：平板（移动端适配）================ */
@media (pointer:coarse) and (min-width: 481px) and (max-width:1024px){
	/* 全局基础：统一盒模型，避免内边距溢出 */
  * {
    box-sizing: border-box;
	  margin: 0;
	  padding: 0;
  }
.video_pc {
        display: none;
    }
.video_mobile {
        display: block;
    }
  /* 1. 顶部背景与视频区域 */
  .w_hr {
    height: 360px;
  }

  .hr_bg {
    height: 0;
    background-position: center center; /* 保证背景图居中显示 */
	  top: 230px;
	  background: none;
  }

  .w_hr video {
    width: 100%;
    height: 360px;
  }
   .w1200{ width: 95%;
	}
	.f36{ font-size: 24px;
	}
	.h80{ height: 20px;
	}
  /* 2. 标语文字：缩小字体、取消固定宽度和定位 */
  .hr_slogn {
    font-size: 20px; /* 缩小字体，适配移动端 */
    width: 90%; /* 占屏幕90%宽度，避免溢出 */
    left: 5%; /* 左右居中 */
    top: -100px; /* 调整垂直位置，避免偏上 */
    margin-top: 0; /* 取消固定负边距 */
    letter-spacing: 6px; /* 缩小字间距 */
    line-height: 40px; /* 适配小字体行高 */
    text-align: center; /* 居中对齐，提升可读性 */
  }
	.hr_banner_item img{ display: none; width: 150px;height: 120px; float: left;}
  .hr_slogn span {
    font-size: 34px; /* 按比例缩小大写字体 */
  }

  /* 3. 中间按钮容器：取消固定定位和浮动，堆叠排列 */
  .ht_cen {
    width: 60%;
    height: auto;
    position: relative; /* 取消绝对定位，改为相对定位 */
    top: 10px;
    right: 0;
    margin: 20px auto; /* 上下留白，水平居中 */
    z-index: 999;
  }

  .hr_more {
    float: left; /* 取消浮动，堆叠排列 */
    width: 40%; /* 自适应宽度 */
    height: auto;
    margin: 10px auto; /* 上下间距，水平居中 */
    left: 0;
    right: 0;
    background-size: contain; /* 背景图自适应，不拉伸 */
	  background-repeat: no-repeat;
  }
	.hr_more2 {
    float: right; /* 取消浮动，堆叠排列 */
    width: 40%; /* 自适应宽度 */
    height: auto;
    margin: 10px auto; /* 上下间距，水平居中 */
    left: 0;
    right: 0;
    background-size: contain; /* 背景图自适应，不拉伸 */
	  background-repeat: no-repeat;
  }

  .hr_more:hover, .hr_more2:hover {
    background-size: contain;
  }

  .hr_more span {
            font-size: 14px;
        bottom: 0;
        left: 55px;
        line-height: 60px;
        height: 47px;
        text-align: left;
  }
	.hr_more2 span {
            font-size: 14px;
        bottom: 0;
        left: 55px;
        right: 0;
        line-height: 60px;
        height: 47px;
        text-align: left;
  }

  /* 4. 手风琴组件：取消固定宽度，适配移动端 */
  .hr_banner_accordion {
    width: 96%;
        height: auto;
        min-height: 300px;
        flex-wrap: wrap;
        display: block;
        margin: 0 auto;
  }

  .hr_banner_item {
    width: 45% !important;
        height: 120px;
        margin: 15px;
	  float: left;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

  .hr_banner_item:hover {
    width: 100%; /* 悬停时占满容器宽度，提升可读性 */
  }

  .hr_banner_text {
    font-size: 18px; /* 缩小收起状态文字 */
	  display: none;
  }

  .hr_banner_text_inner {
    font-size: 18px;
    max-width: 100%; /* 取消最大宽度限制 */
	          color: #e57921;
  }

  .hr_banner_subtext {
  font-size: 12px;
        max-width: 100%;
        color: #3d3d3d;
        line-height: 17px;
        text-shadow: none;
  }
	.hr_banner_mask{ display: none;}
  /* 5. 优势卡片容器：单列堆叠，自适应宽度 */
  .advantage-container {
    width: 95%;
    grid-template-columns: 2fr 2fr; /* 强制单列 */
    gap: 15px; /* 缩小卡片间距 */
    padding: 10px 0;
  }
	.hr_banner_text_container{ opacity: 1 !important;
        width: 100%;
	    position: absolute;
    top: 0;
		padding: 15px;
    right: 0;
		left: auto !important;
    z-index: 2;
     display:block !important; 
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: opacity 0.5s ease-in-out;}
	.hr_banner_accordion .hr_banner_item:nth-child(odd) .hr_banner_text_container{ left: 0; right: auto !important; }
	.hr_banner_accordion .hr_banner_item:nth-child(odd) img{  float: right;
	}
	.mobile_hr_rcg{ margin-bottom: 30px !important;}
  .advantage-card {
    width: 100%;
    height: auto;
    min-height: 180px;
    grid-template-columns: 3fr 1fr; /* 卡片内部单列（文字在上，图标在下） */
    gap: 15px;
    padding: 20px;
  }
	.m_cen{   padding-top: 1px !important; }
  .card-text {
    width: 100%; /* 取消固定宽度 */
  }

  .card-text h3 {
    font-size: 18px; /* 缩小标题字体 */
  }

  .card_list {
    grid-template-columns: 1fr; /* 列表单列堆叠 */
  }
	.w500{ width: 200px;
	}
  .card-text p {
    width: 100%; /* 取消固定宽度 */
    float: none; /* 取消浮动 */
    font-size: 12px;
    line-height: 1.8; /* 缩小行高 */
    -webkit-line-clamp: 3; /* 减少多行显示行数，避免过高 */
  }

  .card-icon img {
    max-width: 60px; /* 缩小图标 */
  }

  /* 6. 新闻列表：取消浮动，单列堆叠 */
  .gsdt_list {
    width: 90%;
    height: auto;
    margin: 40px auto 0; /* 缩小上下间距 */
  }

  .left-column, .right-column {
    width: 100%;
    float: none; /* 取消浮动，堆叠排列 */
    margin-bottom: 30px; /* 增加列间距 */
  }
  .article-item {
    width: 100%;
    height: 127px;
    min-height: 127px;
background: #f9f9f9;
  }
.article-item:hover {
    background: #fcf1e8;
    border-bottom: 2px solid #e57821;
    min-height: 120px;
}
  .article-img{ width:40%;}
  .article-img img {
    width: 100%;
    height: auto; /* 图片自适应 */
  }
	.carousel-img{width: 28%;float: left;
	}
  .article-content {
    width: 100%;
    padding: 10px;
  }

  .article-title {
    width: 100%; /* 取消固定宽度 */
    float: none; /* 取消浮动 */
    height: 42px;
	margin: 5px 0 5px 0;
    white-space: normal; /* 取消单行省略，允许换行 */
    overflow: hidden; /* 取消溢出隐藏 */
    -webkit-line-clamp: 2; /* 多行省略，适配小屏 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
	
  .article-desc {
    width: 100%; /* 取消固定宽度 */
    float: none; /* 取消浮动 */
    height: 37px;
	margin: 0 0 5px 0;
    white-space: normal; /* 取消单行省略，允许换行 */
    overflow: hidden; /* 取消溢出隐藏 */
    -webkit-line-clamp: 2; /* 多行省略，适配小屏 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }

  .article-date {
    float: none; /* 取消浮动 */
    margin: 5px 0;
  }

  /* 7. 轮播组件：适配移动端宽度 */
  .carousel-container {
    width: 100%;
  }
  .carousel-articles {
    height: 127px;
	background: #f9f9f9;  
  }

  .carousel-img img {
    width: 100%;
    height: auto; /* 图片自适应，不固定高度 */
  }

  .carousel-title {
    width: 70%;
    font-size: 22px;
    height: auto;
	  float: right;
  }
.carousel-article {
     width: 100%; 
     height: 100%; 
	background: #f9f9f9;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
}
  .carousel-indicators {
    top: auto;
    bottom: 90px; /* 指示器移到轮播底部，避免遮挡图片 */
	  display: none;
  }

  /* 8. 底部加入模块：自适应宽度 */
  .hr_pslw_join {
    width: 90%;
        height: auto;
        min-height: 120px;
        margin: 50px auto;
        background-size: 100%;
        background-position: center;
  }

  .hr_pslw_join p {
            left: 9%;
        top: -30px;
        width: 120px;
        height: 35px;
        font-size: 14px;
        line-height: 34px;
        transform: scale(0.6);
  }

  .bot_banner {
          font-size: 20px;
        width: 90%;
        padding: 14px 0 0 100px;
        line-height: 35px;
  }

  /* 9. 其他辅助元素：缩小字体和间距 */
  .hr_bt {
    font-size: 24px; /* 缩小标题字体 */
    text-align: left; /* 居中对齐 */
  }

  .hr_fbt {
    font-size: 14px;
    padding: 6px 15px;
    display: block; /* 块级显示，居中对齐 */
    width: fit-content;
  }

  .hr_more_l {
    display: none; /* 移动端隐藏装饰性横线，简化界面 */
  }
	footer {
    position: inherit; overflow-y: hidden;
}
}
	
@media (pointer:coarse) and (min-width:1025px) and (max-width:1366px) {
	* {
    box-sizing: border-box;
	  margin: 0;
	  padding: 0;
  }        
	.hr_slogn {transform: scale(0.6); transform-origin: center;}
	.w1200 {width: 1200px;zoom: 0.9;}
	.mobile_hr_rcg,.hr_banner_accordion,.kzdbgd,.kzdbgd,.advantage-container { zoom:0.9;}
	.advantage-card{width: 580px; }
	.mobile_hr_rcg{ margin-bottom: 80px !important;
	}
	.m_cen {
    margin: 0 auto;
    zoom: 0.8 !important;
}
	.gsdt_list,.hr_pslw_join{ zoom:0.8; }
	.card-icon img {max-width: 60px;object-fit: contain;}
	.card-text p{ font-size: 12px;}
	.bot_banner {
    font-size: 38px;
    color: #fff;
    width: 30rem;
    height: 105px;
    padding: 42px 0 0 154px;
    font-weight: bold;
    line-height: 53px;
}
	.hr_pslw_join p {
    top:3rem;
}
	footer{ height: 147px;position: static;}
}


	























