.p1 {
  width: 100%;
  position: fixed;
  top: 0px; /* 距离屏幕顶部50像素 */
  z-index: 99999;
}
.p1-out {
  width: 100%;
  position: relative;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 10px;
}
/* 顶部-右 */
.search-home {
  line-height: 20px;
  height: 20px;
  font-size: 14px;
  color: white;
}
.search-home:hover {
  color: white;
}
/* 顶部-左 */
.p1-lalel {
  font-size: 24px;
  height: 32px;
  line-height: 32px;
  letter-spacing: 3px;
}
/* 顶部-菜单 */
.p1-menu {
  position: absolute;
  width: 100%;
  right: 0px;
  bottom: -30px;

  background-color: #f2f5f8;

  color: #333333;
}
/* 顶部-左三角样式 */
.p1-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: -30px;
  border-style: solid;
  border-width: 0.6rem 0.3rem 0 0;
  border-color: transparent #f2f5f8 transparent transparent;
}
/* 顶部-右矩 */
.p1-menu::after {
  content: '';
  height: 60px;
  position: absolute;
  right: calc(650px - 50vw);
  top: 50%;
  transform: translateY(-50%);
  border-right: solid #f2f5f8 calc(50vw - 650px);
  /* border-right-width: calc(50vw - 650px); */
}

.search-input {
  width: 100px;
  height: 20px;
  border: 1px solid #bbbbbb;
  margin: 0 5px;
}
.search-icon {
  width: 18px;
  height: 18px;
}
.p1-btn {
  position: relative;
}
.p1-btn-first {
  color: #333333;
  font-size: 18px;
  font-weight: bold;

  background-color: transparent;
  margin: 1px 6px;
  border: none; /* 取消元素的边框设置 */
  letter-spacing: 2px; /* 设置文字之间的间距为 2 像素 */
}
.p1-btn .select-list {
  opacity: 0;
  visibility: hidden;
  position: absolute; /* 绝对定位，脱离文档流 */
  top: 100%; /* 相对于父元素的底部 */
  left: -15px;
  background-color: rgba(31, 73, 158, 0.6);
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1; /* 确保下拉框在顶层 */
  transition: opacity 0.3s ease, visibility 0.3s ease; /* 添加过渡效果 */

  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  border-radius: 0.03rem;
  text-align: center;
  transition: all 0.5s ease;
}
/* 当鼠标悬停在按钮上时显示下拉框内容 */
.p1-btn:hover .select-list {
  opacity: 1;
  visibility: visible;
}
.select-item {
  color: white;
  width: 100%;
  height: 42px;
  line-height: 42px;
  font-size: 16px;
  font-weight: normal;
}
.select-list .select-item:hover {
  background-color: #01488e;
  height: 42px;
  line-height: 42px;
  color: white;
  font-weight: bold;
}

/* 内容-标题一类 */
.title {
  display: flex;
  align-items: center; /* 垂直居中 */
  color: #01488e;
  font-size: 0.24rem;
  height: 0.4rem;
  line-height: 0.4rem;
  margin-bottom: 15px;

  border-bottom: 0.03rem solid #dbdbdb; /* 下划线样式 */
  position: relative;
}
.titleIcon {
  display: inline-block;
  width: 0.3rem; /* 根据需要调整图标的宽度 */
  height: 0.3rem; /* 根据需要调整图标的高度 */
  margin-right: 5px; /* 可根据需要调整图标与标题的间距 */
  background-size: cover;
}
.titleName {
  position: relative;
  letter-spacing: 2px; /* 设置字符间距为1像素 */
}
.titleName::before {
  content: '';
  position: absolute;
  left: -0.38rem;
  bottom: -0.02rem;
  width: 1.41rem;
  height: 0.03rem;
  background-color: #01488e;
}
.moreInfo {
  width: 50px;
  text-align: center;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
  letter-spacing: 1px;

  position: absolute;
  right: 5px;
  bottom: 50%;
  transform: translateY(60%);
  border: 1px solid #01488e;
  border-radius: 5px;

  color: #01488e;
}

/* 内容-标题二类 */
.title-2 {
  display: flex;
  align-items: center; /* 垂直居中 */
  color: white;
  font-size: 0.24rem;
  height: 0.5rem;
  line-height: 0.5rem;
  margin-bottom: 15px;

  position: absolute;
  top: -10px;
  left: 20px;
}
.title-2-left {
  width: 200px;
}
.titleIcon-2 {
  display: inline-block;
  width: 0.3rem; /* 根据需要调整图标的宽度 */
  height: 0.3rem; /* 根据需要调整图标的高度 */
  margin-right: 5px; /* 可根据需要调整图标与标题的间距 */
  background-size: cover;
}
.titleName-2 {
  position: relative;
  letter-spacing: 2px; /* 设置字符间距为1像素 */
}
.moreInfo-2 {
  width: 50px;
  text-align: center;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
  letter-spacing: 1px;

  position: absolute;
  right: 5px;
  bottom: 50%;
  transform: translateY(70%);
  border: 1px solid #01488e;
  border-radius: 5px;

  color: #01488e;
}

/* 内容-新闻动态 */
.xwdt {
  height: calc(100% - 58px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.xwdt-item {
  width: 48.5%;
  height: 100%;
}
.xwdt-list-li {
  font-size: 16px;
  height: 45px;
  vertical-align: top;

  display: flex;
  justify-content: space-between;
}
.xwdt-list-li:hover {
  color: #01488e;
}
.xwdt-list-label {
  width: 480px;
  overflow: hidden; /* 隐藏溢出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
  white-space: nowrap; /* 禁止换行 */
}
.xwdt-list-time {
  width: 100px;
  text-align: center;
}

/* 内容-通知公告、上级政策、亚搏ag拜仁合作伙伴政策 */
.tzgg {
  width: 100%;
  height: calc(100% - 40px);
  margin: 1% 0;
}
.tzgg-list-li {
  font-size: 16px;
  height: 45px;
  vertical-align: top;

  display: flex;
  justify-content: space-between;
}
.tzgg-list-li:hover {
  color: #01488e;
}
.tzgg-list-label {
  width: 480px;
  overflow: hidden; /* 隐藏溢出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
  white-space: nowrap; /* 禁止换行 */
}
.tzgg-list-time {
  width: 100px;
  text-align: center;
}
.p3-2 {
  color: #01488e;
  background-color: #f2f5f8;
  border-radius: 12px;

  position: relative;

  width: 100%;
  display: flex;
  align-items: center;
}
.p3-2-bg {
  width: 170px !important;
  display: flex;
  align-items: center;

  padding-left: 15px;

  background-image: url(/gzc/static/label_bg_1.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.p3-2-item {
  width: 160px;
  height: 90px;
  background-color: white;
  border-radius: 12px;
  border: 1px solid #01488e;

  margin-bottom: 20px;
}

.p3-2-item {
  width: 160px;
  height: 90px;
  background-color: white;
  border-radius: 12px;
  border: 2px solid #01488e;

  margin-bottom: 20px;

  position: relative;
}
.p3-2-item:hover {
  width: 160px;
  height: 90px;
  background-color: white;
  border-radius: 0px;
  border: 2px solid #01488e;

  margin-bottom: 20px;

  position: relative;
}

.p3-2-item::before,
.p3-2-item::after {
  content: '';
  position: absolute;
  width: 0px;
  height: 0px;
  transition: all 0.3s ease; /* 添加过渡效果 */
}
/* 添加鼠标悬停时的动画 */
.p3-2-item:hover::before {
  top: -5px;
  left: -5px;
  border-top: 5px solid #01488e;
  border-left: 5px solid #01488e;
  animation: borderAnimation 1.5s infinite alternate; /* 将关键帧动画圆通快递到动画属性中 */
}
.p3-2-item:hover::after {
  right: -5px;
  bottom: -5px;
  border-bottom: 5px solid #01488e;
  border-right: 5px solid #01488e;
  animation: borderAnimation 1.5s infinite alternate; /* 将关键帧动画圆通快递到动画属性中 */
}
@keyframes borderAnimation {
  0% {
    width: 0px;
    height: 0px;
  }
  50% {
    width: calc(100%);
    height: calc(100%);
  }
  100% {
    width: 0px;
    height: 0px;
  }
}
.p3-2-item-icon {
  width: 40px;
  height: 40px;
  object-fit: fill;
}
.p3-2-item-label {
  line-height: 23px;
  letter-spacing: 2px; /* 设置字符间距为1像素 */
  color: #0c2448;
}

.p4 {
  background-image: url(/gzc/static/bg-1.jpg), none;
  /* background-size: contain; */
  /* background-repeat: no-repeat; */
  /* background-position: center; */

  background-size: 100% 100%; /* 确保背景图片完整展示在父元素中 */

  background-color: rgba(1, 72, 142, 0.3);
  background-blend-mode: overlay; /* 设置混合模式为叠加，让颜色覆盖在图片上 */
}
.p4-nothome {
  background-image: url(/gzc/static/bg-2.jpg), none;
  /* background-size: contain; */
  /* background-repeat: no-repeat; */
  /* background-position: center; */

  background-size: 100% 100%; /* 确保背景图片完整展示在父元素中 */

  background-color: rgba(1, 72, 142, 0.3);
  background-blend-mode: overlay; /* 设置混合模式为叠加，让颜色覆盖在图片上 */
}
.p4-top {
  margin-top: 10px;
}
.p4-top-interval {
  background-color: white;
  width: 5px;
  height: 20px;
  margin: 0 10px;
}
.p4-middle {
  border-top: 1px dashed white;
}
.p4-bottom span {
  height: 25px;
  line-height: 25px;
}

/* url */
.iconUrl-1 {
  background-image: url('/gzc/static/titleIcon-1.svg');
}
.iconUrl-2 {
  background-image: url('/gzc/static/titleIcon-2.svg');
}
.iconUrl-3-1 {
  background-image: url('/gzc/static/titleIcon-3.svg');
}
.iconUrl-3-2 {
  background-image: url('/gzc/static/titleIcon-3.5.svg');
}
.iconUrl-4 {
  background-image: url('/gzc/static/titleIcon-4.svg');
}
.iconUrl-5 {
  background-image: url('/gzc/static/titleIcon-5.svg');
}
.iconUrl-6 {
  background-image: url('/gzc/static/titleIcon-6.svg');
}
.iconUrl-7 {
  background-image: url('/gzc/static/titleIcon-7.svg');
}
.iconUrl-8 {
  background-image: url('/gzc/static/titleIcon-8.svg');
}
.iconUrl-9 {
  background-image: url('/gzc/static/titleIcon-9.svg');
}

/* 
      二级栏目 
    */

/* 顶部 */
.content-top {
  width: 100%;
  position: fixed;
  top: 0px; /* 距离屏幕顶部50像素 */
  z-index: 99999;

  background-image: url(/gzc/static/bg-1.jpg), none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; /* 图片在容器中居中显示 */

  background-color: rgba(1, 72, 142, 0.4);
  background-blend-mode: overlay; /* 设置混合模式为叠加，让颜色覆盖在图片上 */
}

/* 内容 */
.detail-middle-element2 {
  color: #333333;
  margin: 0.3rem 0;
  padding: 0.25rem 0 0.15rem;
  display: flex;
  justify-content: space-around;
}
/* 左侧边栏 */
.body-left2-col {
  width: 2.5rem;

  position: relative;
  font-weight: bold;
}
.body-left2-title {
  font-size: 0.24rem;
  text-align: center;

  background-color: #01488e;
  color: white;
  padding: 0.2rem 0;
  letter-spacing: 4px; /* 设置字符间距为1像素 */

  width: 2.5rem;
}
.body-left2-ul {
  font-size: 0.2rem;
  list-style: none;
  font-weight: 400;
  /* padding: 0 20px 15px; */
  padding-bottom: 15px;

  background-image: url(/gzc/static/list_box_02_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; /* 图片在容器中居中显示 */

  width: 2.5rem;
}
.body-left2-li {
  text-align: center;
  height: 0.3rem;
  line-height: 0.3rem;
  padding: 0.2rem 0;
  border-bottom: 2px solid rgb(232, 232, 232);
}

.body-left2-li a {
  color: #333333;
  font-weight: bold;
}
.body-left2-li a:hover {
  color: #01488e;
}
.body-left2-li-active {
  color: white;
  text-align: center;
  height: 0.2rem;
  line-height: 0.2rem;
  padding: 0.2rem 0;
  margin: 5px 0;
  border-bottom: 2px solid rgb(232, 232, 232);
  background-color: rgba(31, 73, 158, 0.6);
  border-radius: 6px;
}

.body-left2-li-active a {
  color: white;
  font-weight: bold;
}
.body-left2-li-active a:hover {
  color: white;
}

/* 右正文 */
.body2 {
  margin: 0 auto;
  padding-left: 0.3rem;
  width: 11rem;
  display: inline-block;
}
.title2 {
  display: flex;
  align-items: center; /* 垂直居中 */
  justify-content: space-between;
  font-size: 0.22rem;
  height: 0.5rem;
  line-height: 0.5rem;
  font-weight: bold;

  position: relative;

  border-bottom: 0.05rem solid #01488e; /* 下划线样式 */
}
.current-router {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #333333;
  font-size: 14px;
}
.current-router-omit {
  margin: 0 0.05rem;
}
.current-router a {
  color: #333333;
  font-size: 14px;
}
.current-router a:hover {
  color: #01488e;
  font-weight: bold;
}

.titleName2 {
  position: relative;
}

/* 列表 */
.second-page-list {
  width: 100%;
  margin: 1% 0;
}
.second-page-list-li {
  font-size: 16px;
  height: 51px;
  line-height: 51px;
  border-bottom: 1px solid rgb(232, 232, 232);

  display: flex;
  justify-content: space-between;

  position: relative;
}
.second-page-list-li:hover {
  color: #01488e;
}
.second-page-list-li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; /* 初始时渐变宽度为0 */
  height: 2px; /* 边框的高度 */
  background: linear-gradient(to right, #01488e, transparent); /* 从左到右渐变 */
  transition: width 0.3s ease; /* 渐变过渡效果 */
}

.second-page-list-li:hover::after {
  width: 100%; /* 鼠标悬停时宽度变为100%，从而达到渐变的效果 */
}
.second-page-list-label {
  width: 900px;
  overflow: hidden; /* 隐藏溢出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
  white-space: nowrap; /* 禁止换行 */
}
.second-page-list-time {
  width: 100px;
  text-align: center;
  color: #01488e;
}

/* 分页相关 */
.page-number {
  font-size: 14px;

  height: 20px;
  line-height: 20px;
}
.page-number-total {
  margin-right: 10px;
}
.page-number-last {
  margin: 5px;
  padding: 5px;
  border: 1px solid rgb(232, 232, 232);
}
.page-number-page {
  margin: 5px;
  padding: 5px;
  border: 1px solid rgb(232, 232, 232);
}
.page-number-omit {
  margin: 5px;
  padding: 5px;
  border: 1px solid rgb(232, 232, 232);
}
.page-number-next {
  margin: 5px;
  padding: 5px;
  border: 1px solid rgb(232, 232, 232);
}

/* 
      内容页 
    */
.body3 {
  width: 10rem;
  display: inline-block;
  margin: 0 auto;
  margin-left: 0.3rem;
  /* font-size: 0.2rem;*/
  font-size: 0.15rem;
  padding: 0.3rem;
  box-shadow: 0 0 0.05rem #dedede;
  border: #ccc 0.01rem solid;
}
.title3 {
  text-align: center;
  font-size: 0.22rem;
  height: 0.5rem;
  line-height: 0.5rem;
  font-weight: bold;
  padding: 10px 0;
}
.article-info {
  text-align: center;
  height: 45px;
  line-height: 45px;
  /*font-size: 0.2rem;*/
  font-size: 14px;
  border-bottom: 1px solid #dedede;
}

.body3-content {
  display: inline;
  font-size: 16px;
  height: auto;
  line-height: 40px;
  text-indent: 40px;
  width: auto;
}

/* .body3-content table {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.v_news_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
} */
.body3-content table {
  margin: auto !important;
}

.table-sty {
  .v_news_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
/* .v_news_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
} */

.WordSection1 {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.body3-content-next {
  font-size: 18px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-indent: 0px;
}
.body3-content-next a {
  padding: 0;
  margin: 0;
  text-indent: 5px;
}
