@charset "utf-8";

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
table,
caption,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
menu {
  margin: 0;
  padding: 0;
}
header,
footer,
section,
article,
aside,
nav,
hgroup,
address,
figure,
figcaption,
menu,
details {
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th {
  text-align: left;
  font-weight: normal;
}
html,
body,
fieldset,
img,
iframe,
abbr {
  border: 0;
}
img {
  vertical-align: top;
}
html {
  overflow-x: hidden;
}
i,
cite,
em,
var,
address,
dfn {
  font-style: normal;
}
[hidefocus],
summary {
  outline: 0;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
small {
  font-size: 100%;
}
sup,
sub {
  font-size: 83%;
}
pre,
code,
kbd,
samp {
  font-family: inherit;
}
q:before,
q:after {
  content: none;
}
textarea {
  overflow: auto;
  resize: none;
}
label,
summary {
  cursor: default;
}
a,
button {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
em,
strong,
b {
  font-weight: bold;
}
del,
ins,
u,
s,
a,
a:hover {
  text-decoration: none;
}
body,
textarea,
input,
select,
keygen,
legend {
  font: 13px/1 arial, \5b8b\4f53;
  color: #333;
  outline: 0;
}
:focus {
  outline: 0;
}
/*备用样式表*/
.clear {
  width: 100%;
  height: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  clear: both;
  display: block;
  _display: inline;
}
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.clearfix {
  display: block;
  *zoom: 1;
}
.icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  background: url(images/icon.png) no-repeat;
}
/*css3扩展*/
body:before {
  display: none;
  content: "";
  position: fixed;
  top: -10px;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 10px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}
::-webkit-input-placeholder {
  color: #ccc;
}
:-moz-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc;
}
:-ms-input-placeholder {
  color: #ccc;
}
/*滚动样式*/
.scroller {
  position: absolute;
  z-index: 1;
  width: 750px;
  height: 160px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -o-text-size-adjust: none;
  text-size-adjust: none;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #cccccc;
  -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:horizontal {
  width: 4px;
  background-color: #cccccc;
  -webkit-border-radius: 6px;
}
::-webkit-scrollbar-track-piece {
  background-color: #fff; /*滚动条的背景颜色*/
  -webkit-border-radius: 0; /*滚动条的圆角宽度*/
}
::-webkit-scrollbar-thumb:vertical {
  height: 50px;
  background-color: #999;
  -webkit-border-radius: 4px;
  outline: 1px solid #fff;
  outline-offset: -1px;
  border: 1px solid #fff;
}

/**布局开始**/
* {
  box-sizing: border-box;
}
body {
  background: #fff;
  line-height: 1;
  font-size: 14px;
  font-family: Microsoft YaHei;
  color: #333;
  position: relative;
}
p {
  line-height: 1.75;
}
a {
  color: #333;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
a:hover {
}
.flex {
  display: flex;
  display: -webkit-flex;
}
.f_between {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.f_start {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.f_end {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.f_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.f_middle {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
}
.f_top {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.f_bottom {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.f_stretch {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.middle_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.f_col {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_row {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.nowrap {
  -webkit-flex-wrap: nowrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.wrap {
  -webkit-flex-wrap: wrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
}
.overlay {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-line1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.text-line2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.text-line3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.text-line4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 1300px;
  margin: 0 auto;
}
/* 导航 */
/*默认主导航样式*/
#nav {
  height: 80px;
  background: #004aba;
  margin-top: 30px;
}

#nav .inner {
}
#nav .inner .wp-panel {
  height: 80px;
}
#nav .inner .wp-panel .wp-window {
}
#nav .inner .wp-panel .navbg {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  background: #fff;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
/*导航样式：后台绑定时也可以定义配置*/
.nav .wp-menu {
  position: relative;
  margin: 0 auto;
  font-size: 0;
  display: flex;
  justify-content: space-around;
  height: 80px;
  align-items: center;
}
.nav .wp-menu .menu-item {
  display: inline-block;
  float: left;
  position: relative;
  /* width: 12%; */
  text-align: center;
  height: 80px;
  display: flex;
  align-items: center;
}
.nav .wp-menu .menu-item:last-child {
  margin-right: 0;
}
.nav .wp-menu .menu-item.i1 {
  background: none;
}

.nav .wp-menu .menu-item a.menu-link {
  display: inline-block;
  padding: 0 22px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size:  17px;
  color: #ffffff;
  line-height: 60px;
}

.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 80px;
  z-index: 100;
  background: rgba(0, 74, 186, 1);

  min-width: 100%;
}
.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
}
.nav .sub-menu .sub-item a {
  display: block;
  color: #fff;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  font-size: 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #fff;

  background: rgba(0, 111, 225, 1);
  display: block;
}
.nav .sub-menu .sub-menu {
  left: 100%;
  top: 0px;
  z-index: 200;
  background: #fff;
}
/* header */
header {
  background: linear-gradient(0deg, rgba(0, 25, 118, 0), #001976);
  padding-top: 20px;
  background-size: cover;
  position: absolute;
  z-index: 999;
}
/* 搜索 */
/**搜索**/
.wp_search {
  display: inline-block;
  position: relative;
  padding-left: 12px;
  filter: Alpha(opacity=30);
  border-radius: 18px;
}
.wp_search #keyword {
  width: 177px !important;
  padding: 4px 0;
  border: none;
  height: 28px;
  line-height: 28px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-family: "Microsoft YaHei";
}
.wp_search .search {
  width: 32px;
  height: 32px;
  border: 0px;
  background: url(images/sous.png) no-repeat center;
  cursor: pointer;
  vertical-align: top;
}
/***自定义搜索*/
.wp-search {
  border: 0px;
  border-radius: 18px;

  height: 35px;
  position: relative;
}
.wp-search form {
  display: block;
  padding-right: 34px;
}
.wp-search .search-input {
  margin-right: 0;

  position: relative;
}
.wp-search .search-input input.search-title {
  width: 180px;
  box-sizing: border-box;
  padding: 0px 15px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 32px;
  border: 0;
  outline: 0;
  background: #ffffff;

  border-radius: 17px;
}
.wp-search .search-btn {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 10px;
  top: 0;
}

.wp-search .search-btn input.search-submit {
  width: 35px;
  height: 35px;
  border: 0;
  outline: 0;
  border-radius: 4px;
  background: url(images/btn_top_search.png) no-repeat center;
  background-size: 20px 20px;
  cursor: pointer;
}
.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #333;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  -moz-transition: background-color 5000s ease-in-out 0s;
  -ms-transition: background-color 5000s ease-in-out 0s;
  -o-transition: background-color 5000s ease-in-out 0s;
}

.wp-search {
  position: relative;
}

.search-input {
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease-in-out;
}

.search-btn {
  position: relative;
  z-index: 1; /* 保证按钮在输入框上面 */
}

.search-input input {
  width: 200px; /* 输入框展开后的宽度 */
  padding: 5px;
  font-size: 16px;
  border: 1px solid #ccc;
}

.search-btn input {
  width: 30px; /* 按钮的宽度 */
  height: 30px;
  background: url("search-icon.png") no-repeat center center;
  border: none;
  cursor: pointer;
}

.wp-search:hover .search-input {
  width: 200px; /* 鼠标悬停时输入框展开 */
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.headerright {
  display: flex;
  align-items: center;
}
.s1 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #ffff;
}
.mySwiperbanner {
  width: 100%;
  height: 100%;
}

.mySwiperbanner .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mySwiperbanner .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mySwiperbanner .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.mySwiperbanner .swiper-pagination-bullet-active {
  color: #fff;
  background: #007aff;
}
.banner {
  position: relative;
}
.main1 {
  padding-top: 50px;
  padding-bottom: 68px;
  background: url(images/bj_news.jpg) no-repeat;
  background-size: cover;
}
.background {
  width: 48px;
  height: 40px;

  --amount: 20;
  position: relative;
  margin-right: 20px;
}

.background span {
  width: 1vmin;
  height: 1vmin;
  border-radius: 4vmin;
  backface-visibility: hidden;
  position: absolute;
  animation-name: move;
  animation-timing-function: cubic-bezier(0.4, 0, 1, 0.8);
  animation-iteration-count: infinite;
  animation-duration: 6s;
 top: 5px;
    left: 90%;
    transform-origin: -3vmin center;
}

.background span:nth-child(1) {
  background: rgba(0, 74, 186, 1);
  animation-delay: -0.5s;
  opacity: 0;
}
.background span:nth-child(2) {
  background: rgba(0, 74, 186, 1);
  animation-delay: -1s;
  opacity: 0;
}
.background span:nth-child(3) {
  background: rgba(0, 74, 186, 1);
  animation-delay: -1.5s;
  opacity: 0;
}
.background span:nth-child(4) {
  background: rgba(0, 74, 186, 1);
  animation-delay: -2s;
  opacity: 0;
}
.background span:nth-child(5) {
  background: rgba(0, 74, 186, 1);
  animation-delay: -2.5s;
  opacity: 0;
}
.background span:nth-child(6) {
  background: rgba(0, 74, 186, 1);
  animation-delay: -3s;
  opacity: 0;
}

@keyframes move {
  0% {
    transform: scale(1) rotate(0deg) translate3d(0, 0, 1px);
  }
  30% {
    opacity: 1;
  }
  100% {
    z-index: 10;
    transform: scale(0) rotate(360deg) translate3d(0, 0, 1px);
  }
}
.arrow {
  position: absolute;
  top: 29%;
  left: 22%;
  width: 16px;
  height: 16px;
  background: url(images/btn_more01.png) no-repeat;
}
.Titleall {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}
.morebtn {
  position: absolute;
  right: 0;
}
.newbox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.newsbox1 {
  width: 38%;
 
  background: #e0e0e0;
  border: 2px solid rgba(0, 74, 186, 1);
  position: relative;
  z-index: 2;
  transition: transform 0.8s ease;
}
.newsbox1 li {
  position: relative;
  z-index: 9999;
}
.newsbox1:hover {
  transform: translate(-18px, -18px);
}

.newsbox1:hover::after {
  content: ""; /* 伪元素内容为空 */
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fd992d; /* 背景颜色 */
  border: 2px solid #fd992d; /* 边框颜色 */
  z-index: -1; /* 使伪元素位于新闻框的下面 */
  transform: translate(8px, 8px); /* 使背景向右和向下错开8px */
  opacity: 1; /* hover时显示伪元素 */
  transition: transform 0.8s ease, opacity 0.8s ease; /* 平滑过渡 */
}

.newsbox1 .newsimg img {
  width: 100%;
  height: 375px;
  object-fit: cover;
}
.newstext1 {
  background: url(images/bj_news01.jpg) no-repeat;
  background-size: cover;
  padding: 20px;
}
.s1 {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  line-height: 30px;
}
.s2 {
  font-family: Source Han Sans CN;
  font-weight: 300;
  font-size: 14px;
  color: #fff;
  line-height: 22px;
}
.s3 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 12px;
  color: #908f8f;
  line-height: 16px;
}
.newsbox2 {
  width: 60%;
}
.newbox2time {
  padding: 15px;
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(0, 74, 186, 1);
  margin-right: 20px;
  transition: 0.8s;
}
.newbox2time .month {
  font-family: Arial;
  font-weight: 400;
  font-size: 18px;
  color: #005dbb;
  line-height: 20px;
  border-bottom: 2px solid rgba(0, 74, 186, 1);
  padding-bottom: 10px;
  margin-bottom: 10px;
  transition: 0.8s;
}
.newbox2time .day {
  font-family: Arial;
  font-weight: 400;
  font-size: 30px;
  color: #005dbb;
  line-height: 20px;
  transition: 0.8s;
}
.newbox2time .year {
  font-family: Arial;
  font-weight: 400;
  font-size: 13px;
  color: #005cba;
  line-height: 20px;
  transition: 0.8s;
}
.s4 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 20px;
}
.s5 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  line-height: 20px;
}
.newsbox2 li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.newsbox2 li {
  border-bottom: 2px solid rgba(0, 74, 186, 0.5);
  padding-bottom: 22px;
  margin-bottom: 22px;
  transition: 0.8s;
}
.newsbox2 li:hover {
  border-bottom: 2px solid rgba(0, 74, 186, 1);
}
.news2text {
  width: 85%;
}
.news2more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.newsbox2 li:hover .newbox2time {
  background: #004aba;
}
.newsbox2 li:hover .month,
.newsbox2 li:hover .day,
.newsbox2 li:hover .year {
  color: #fff;
}
.newsbox2 li:hover .month {
  border-bottom: 2px solid #fff;
}
.newsbox2 li:hover .s4 {
  color: #005cba;
}
.TZGG {
  margin-top: 80px;
}
.s6 {
  font-family: Arial;
  font-weight: normal;
  font-size: 24px;
  color: #333;
  line-height: 22px;
}
.TTdate .year {
  margin-right: 20px;
  position: relative;
}
.TTdate .year::before {
  width: 1px;
  height: 25px;
  background: #999999;
  position: absolute;
  content: "";
  right: -10px;
  bottom: 0;
}
.TZGGbox li {
  width: 30%;
  margin-bottom: 16px;
  transition: 0.8s;
}
.TZGGbox li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0px 2px 6px 0px rgba(174, 174, 174, 0.2);
}

.TZGGbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.TZGGbox li:hover a {
  background: #004aba;
}

.TZGGbox li:hover .s5,
.TZGGbox li:hover .s6,
.TZGGbox li:hover .s4 {
  color: #fff;
}
.TZGGbox li {
  position: relative;
  z-index: 999;
}
.TZGGbox li a {
  position: relative;
  z-index: 9999;
}

.TZGGbox li:hover {
  background: #004aba;
  transform: translate(-8px, -8px);
  -webkit-transform: translate(-8px, -8px);
  -moz-transform: translate(-8px, -8px);
  -ms-transform: translate(-8px, -8px);
  -o-transform: translate(-8px, -8px);
}

/* 添加伪元素 */
.TZGGbox li::before {
  content: "";
  position: absolute;
  top: 10px;
  right: -10px;
  width: 100%;
  height: 100%;
  background: #fd992d;
  z-index: 1;
  opacity: 0; /* hover时显示伪元素 */
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.TZGGbox li:hover::before {
  opacity: 1;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.main2 {
  padding-top: 50px;
  padding-bottom: 50px;
  background: url(images/bj_achievement.jpg) no-repeat;
  background-size: cover;
}
.CGZS1 {
  width: 66%;
}
.CGimg {
  width: 50%;
  height: 322px;
}
.CGimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.CGZSboxtext1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.CGZSboxtext1-1 {
  width: 50%;
  background: url(images/bj_achievement01.jpg) no-repeat;
  padding: 25px;
  height: 322px;
  background-size: cover;
}
.s7 {
  font-family: Arial;
  font-weight: 400;
  font-size: 12px;
  color: #000000;
}
.CGdate {
  background: #ffffff;
  border-radius: 2px;
  padding: 15px;
  width: 110px;
}
.CGZSbox {
  border-top: 6px solid #fff;
}
.s8 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 15px;
  color: #005cba;
  line-height: 16px;
}
.CGmore {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
.CGbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.CGZSbox2 {
  width: 32%;
}
.s9 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 24px;
}
.CGZSbox2 li {
  padding-top: 24px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 1px;
  border-bottom: 1px solid rgba(216, 216, 216, 0.3);
  transition: 0.8s;
}
.CGZSbox2 li:hover {
  background: #fff;
}
.CGZSbox2 li:hover .s9,
.CGZSbox2 li:hover .s4 {
  color: #005cba !important;
}
.CGmorebox {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 50px;
  position: relative; /* 确保可以使用 z-index */
  z-index: 1; /* 调整父容器的 z-index，确保其在子元素之下 */
}
.CGmorebox li {
  width: 140px;
  height: 40px;
  position: relative; /* 确保可以使用 z-index */
  z-index: 9; /* 提高子元素的 z-index */
  transition: transform 0.8s ease;
}
.CGmorebox li a {
  width: 140px;
  height: 40px;
  background: #1977d9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; /* 确保可以使用 z-index */
  z-index: 10; /* 提高子元素的 z-index */
  transition: transform 0.8s ease;
}

.CGmorebox li::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -10px;
  width: 100%;
  height: 100%;
  background: #fd992d;
  z-index: 0; /* 确保伪元素在子元素的下层 */
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.CGmorebox:hover li::after {
  opacity: 1;
}

.CGmorebox:hover li {
  transform: translate(-8px, -8px);
}
.main3 {
  background: #f4f4f4;
  padding-top: 55px;
  padding-bottom: 55px;
}
.REtime {
  background: #004aba;
  display: flex;
  align-items: flex-start;
}
.REdetial li {
  padding: 15px 20px;
  border-right: 1px solid rgba(208, 208, 208, 1);
}
.REdetial li:last-child {
  border-right: none;
}
.REdetial {
  display: flex;
  align-items: center;
  position: relative;
}
.REdetial::before {
  position: absolute;
  top: -10px;
  left: -10px;
  content: "";
  width: 10px;
  height: 10px;
  background: url(images/icon_report_triangle.png) no-repeat;
}
.REdetial::after {
  position: absolute;
  top: 0;
  left: -10px;
  content: "";
  width: 10px;
  height: 100%;
  background: #004aba;
}
.REtext {
  width: 48%;
  background: #fff;
  margin-bottom: 30px;
}
.REtitle {
  padding: 20px;
  border-bottom: 1px solid rgba(208, 208, 208, 1);
}
.REboxall {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.REtext {
  position: relative;
  text-decoration: none;
  transition: 0.6s;
}
.REtext::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: rgba(0, 74, 186, 1);
  transition: width 0.9s ease;
}
.REtext:hover {
  box-shadow: 0px 2px 8px 0px #d0d0d0, 0px -2px 0px 0px #004aba;
}
.REtext:hover::after {
  width: 100%;
}
.REtext:hover .s4 {
  color: rgba(0, 74, 186, 1);
}
.s10 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 24px;
  color: #ffffff;
}
.main4 {
  background: url(images/bj_demeanour.jpg) no-repeat;
  padding-top: 60px;
  padding-bottom: 60px;
  background-size: cover;
}
.mySwiperYJ {
  width: 100%;
  height: 400px;
}

.mySwiperYJ .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mySwiperYJ .swiper-slide img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.YJSWIPER {
  position: relative;
}
.YJSWIPER .swiper-button-next {
  background: url(images/demeanour_shadow_right.png);
  width: 46px;
  height: 400px;
  top: 3%;
  right: -60px;
}
.YJSWIPER .swiper-button-prev {
  background: url(images/demeanour_shadow_left.png);
  width: 46px;
  height: 400px;
  top: 3%;
  left: -60px;
}
.YJtext {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 74, 186, 0.9);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  transform: translateY(100%);
  transition: transform 0.9s ease;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
}
.s11 {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 22px;
  color: #fafafa;
  line-height: 32px;
}
.swiper-slide:hover .YJtext {
  transform: translateY(0); /* hover时，从下往上滑出 */
}
.YJMORE {
  margin-top: 40px;
}
.YJIMG {
  width: 100%;
  height: auto;
  overflow: hidden; /* 防止图片溢出 */
}
.YJIMG img {
  width: 100%;
  height: auto;
  transition: transform 0.9s ease;
}
.swiper-slide:hover .YJIMG img {
  transform: scale(1.1); /* 图片放大 */
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.main6 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.s12 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 24px;
  color: #000000;
}
.Link1 {
  display: block;
  width: 360px;
  height: 66px;
  background: url(images/btn_link01.png) no-repeat;
}
.Link1:hover {
  background: url(images/btn_link01_h.png) no-repeat;
}
.Link2 {
  display: block;
  width: 206px;
  height: 66px;
  background: url(images/btn_link03.png) no-repeat;
}
.Link2:hover {
  background: url(images/btn_link03_h.png) no-repeat;
}
.Link3 {
  display: block;
  width: 150px;
  height: 66px;
  background: url(images/btn_link03.png) no-repeat;
}
.Link3:hover {
  background: url(images/btn_link03_h.png) no-repeat;
}
.YQLJ {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.LINKbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer {
  background: url(images/bj_bottom.jpg) no-repeat;
  padding-top: 60px;
  padding-bottom: 60px;
  background-size: cover;
}
.s13 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 26px;
}
.f1 {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.f1 li {
  margin-right: 30px;
}
.F1 {
  width: 70%;
}
.code img {
  width: 95px;
  height: 95px;
}
.F2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.Fbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mySwiperbanner .swiper-pagination-bullet {
  border: 1px solid #ffffff;
  color: #fff;
  line-height: 18px;
  margin-right: 86px !important;
  bottom: 50px;
  position: relative;
}
.mySwiperbanner .swiper-pagination-bullet::after {
  width: 70px;
  height: 1px;
  background: #ffffff;
  position: absolute;
  content: "";
  left: 30px;
  top: 50%;
}
.mySwiperbanner .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.mySwiperbanner .swiper-pagination-bullet:last-child::after {
  display: none;
}
.mySwiperbanner .swiper-pagination-bullet-active {
  background: #ffffff;
  color: #333;
}
.nav .wp-menu .menu-item {
  position: relative;
}
.nav .wp-menu .menu-item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 10px;
  height: 100%;
  background: url(images/navigation_left.png) no-repeat;
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.nav .wp-menu .menu-item::after {
  content: "";
  position: absolute;
  right: 0;
  width: 10px;
  height: 100%;
  background: url(images/navigation_right.png) no-repeat;
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.nav .wp-menu .menu-item:hover::before,
.nav .wp-menu .menu-item:hover::after {
  opacity: 1;
}
.ENG {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding-left: 10px;
}

/**新闻列表**/

/***********************************************************
 * 列表页
 */

/**主体列表页开始**/
#l-container .inner {
  padding: 25px 0px;
}
/**主体文章页开始**/

.col_menu {
  width: 240px;
  float: left;
  margin-right: -240px;
  position: relative;
}
.col_menu .l-qh {
  margin-bottom: 10px;
}
.col_menu .col_menu_head {
  background: rgba(33, 137, 196, 1);
  height: 68px;
} /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
} /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 50px;
  padding: 0px 5px 0px 30px;
} /**栏目名称图标**/
.col_menu .col_menu_con {
  border: 1px solid #e4e4e4;
}
/*栏目列表*/
.col_list .wp_listcolumn {
  border-top: 0px solid #2867a0;
  border-bottom: 0px solid #fff;
}
.col_list .wp_listcolumn .wp_column a {
  color: #333;
  font-size: 15px;
  font-weight: normal;
  background: none;
  border-top: 0px solid #fff;
  border-bottom: 1px solid #f6eaea;
}
.col_list .wp_listcolumn .wp_column a .column-name {
  padding: 5px 0px 5px 28px;
  line-height: 32px;
}
.col_list .wp_listcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  color: #8e0107;
  background: #eee;
}
.col_list .wp_listcolumn .wp_column a.selected span.column-name {
  color: #8e0107;
}
.col_list .wp_listcolumn .wp_subcolumn .wp_column a {
  color: #454545;
  background: none;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #bbb;
}
.col_list .wp_listcolumn .wp_column.parent > a .column-name {
  font-weight: bold;
  color: #8e0107;
}
/*二级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list a {
  color: #333;
  border-top: 1px solid #eee;
  margin-top: -1px;
}
.col_list .wp_listcolumn .sub_list a .column-name {
  display: inline-block;
  line-height: 28px;
  padding: 5px 10px 5px 44px;
  cursor: pointer;
}
.col_list .wp_listcolumn .sub_list a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  font-weight: bold;
  font-weight: bold;
  color: #8e0107;
}
/*三级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a {
}
.col_list .wp_listcolumn .sub_list .sub_list a .column-name {
  padding: 5px 10px 5px 60px;
  cursor: pointer;
}
.col_list .wp_listcolumn .sub_list .sub_list a :hover,
.col_list .wp_listcolumn .sub_list .sub_list a.selected {
  font-weight: bold;
  color: #8e0107;
}
/**栏目新闻**/
.col_news {
  width: 100%;
  min-height: 500px;
  float: right;
}
.col_news .col_news_box {
  margin-left: 290px;
}
.col_news_head {
  border-bottom: 1px solid #dbdbdb;
}
.col_metas .col_title {
  display: inline-block;
  float: left;
  height: 48px;
  line-height: 48px;
} /**当前栏目**/
.col_metas .col_title h2 {
  display: inline-block;
  font-size: 18px;
  font-family: "Microsoft yahei";
  font-weight: normal;
  color: rgba(44, 103, 200, 1);
  border-bottom: 3px solid #cbcbcb;
}
.col_metas .col_path {
  display: inline-block;
  float: right;
  white-space: nowrap;
  height: 46px;
  line-height: 46px;
  color: #666;
} /**当前位置**/
.col_metas .col_path a {
  color: #2f2f2f;
}
.col_news_con {
  padding: 5px 0px 10px 0px;
  margin: 0 0px;
}
.col_news_list {
  margin-top: 7px;
}
.col_news_list .wp_article_list .list_item {
} /**栏目新闻列表**/
.col_news_list .wp_article_list .list_item .Article_Index {
} /**栏目新闻图标序号**/
.col_news_list .wp_entry,
.col_news_list .wp_entry p {
  line-height: 1.75;
  font-size: 14px;
  color: #333;
}
.col_news_list .wp_entry p {
  margin-bottom: 10px;
}
.col_news_list .wp_entry table {
  margin-bottom: 4px;
}
.col_news_list .wp_entry img {
  max-width: 680px;
  _width: expression(this.width > 680 ? "680px": this.width);
} /**列表页文章图片大小限制**/
/**文章页**/
.infobox {
  margin-top: 20px;
  padding: 20px 60px;
  width: auto;
  min-height: 500px;
  box-shadow: 0px 0px 25px 1px rgba(129, 155, 194, 0.25);
}
.article {
  padding-top: 10px;
}
.article h1.arti_title {
  line-height: 36px;
  font-family: "Microsoft YaHei";
  font-size: 22px;
  text-align: center;
  color: #333;
} /**文章标题**/
.article h2.arti_title {
  line-height: 34px;
  font-family: "Microsoft YaHei";
  font-size: 17px;
  text-align: center;
  color: #666;
} /**文章副标题**/
.article .arti_metas {
  padding: 10px;
  text-align: center;
}
.article .arti_metas span {
  margin: 0 5px;
  font-size: 12px;
  color: #787878;
} /**文章其他属性**/
.article .entry {
  margin: 0 auto;
  overflow: hidden;
  margin-top: 10px;
} /**文章内容**/
.article .entry .read,
.article .entry .read p {
  line-height: 1.75;
  font-size: 16px;
  color: #333;
} /**阅读字体**/
.article .entry .read p {
  margin-bottom: 10px;
}
.article .entry .read img {
  margin: 0 auto;
  max-width: 940px;
  _width: expression(this.width > 940 ? "940px": this.width);
} /**文章阅读部分图片大小限制**/
.article .entry .read table {
  margin: 0 auto;
  border: none !important;
}
.es_article_title {
  display: none;
}
/**翻页**/

.es_pagingbar_container {
  margin: 40px auto 0;
  text-align: center;
  padding-bottom: 40px;
}
.es_pagingbar_container .es_pagingbar {
  display: inline-block;
  overflow: hidden;
}
.es_pagingbar_container .es_pagingbar li {
  float: left;
  padding: 6px 12px;
  margin: 0 6px;
  color: #999;
  background: #fff;
  border: 1px solid #eee;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}
.es_pagingbar_container .es_pagingbar li.active {
  background: #d63e3e;
  color: #fff;
  border-color: #d63e3e;
}
.es_pagingbar_container .es_pagingbar li.active a {
  color: #fff;
}
.es_article_content img {
  margin-right: 20px;
}

/***********************************************************
 * 列表页
 */

/**首页三列布局**/

/**列表页**/

/*栏目图片*/

.l-banner {
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  background: url(images/img_banner1.png);
  background-size: cover;
}

.l-banner img {
  vertical-align: top;
}

.l-banner img {
  width: 100%;
  height: 100%;
}

.list {
  background: #f5f5f5;
}

.list #nav {
  margin-bottom: 0;
}

/**主体列表页开始**/

#l-container {
  position: relative;
  z-index: 1;
}

#l-container .inner {
  padding: 30px 0px 60px;
}

/**主体文章页开始**/

#d-container {
}

#d-container .inner {
  padding: 30px 0px 60px;
}

.col_menu {
  width: 240px;
  float: left;
  margin-right: -240px;
  position: relative;
  z-index: 2;
}

.col_menu .l-qh {
  margin-bottom: 10px;
}

/**位置栏目背景**/

.col_menu .col_menu_head h3.col_name {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

/**位置栏目字体**/

.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 80px;
  padding: 0px 12px;
  text-align: center;
}

/**栏目名称图标**/

.col_menu .col_menu_con {
  border: 0px solid #e4e4e4;
  background: #fff;
  border-radius: 0 0 8px 8px;
  padding: 10px;
}

/*栏目列表*/

.col_list {
}

.col_list .wp_listcolumn {
  border-top: 0px solid #2867a0;
  border-bottom: 0px solid #fff;
}

.col_list .wp_listcolumn .wp_column a {
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  border-top: 0px solid #fff;
  border-bottom: 0px solid #fff;
  display: block;
  background: none;
}

.col_list .wp_listcolumn .wp_column a .column-name {
  display: block;
  padding: 10px;
  line-height: 28px;
  text-align: center;
  color: #333;
}

.col_list .wp_listcolumn .wp_column a.selected {
  color: #000;
  border-radius: 8px;
  background: #f1ac40;
}

.col_list .wp_listcolumn .wp_column a.selected span.column-name,
.col_list .wp_listcolumn .wp_column a:hover span.column-name {
  color: #000;
}

.col_list .wp_listcolumn .wp_column.parent > a .column-name {
  font-weight: normal;
  color: #fff;
  background: #f1ac40;
  border-radius: 8px;
}

/*二级子栏目**/

.col_list .wp_listcolumn .wp_column .sub_list {
  padding-bottom: 6px;
}

.col_list .wp_listcolumn .wp_column .sub_list a {
  color: #2ca6e0;
  border-bottom: 0px dashed #e0e0e0;
  margin-top: 6px;
  text-align: center;
  background: #e9e9e9;
  border-radius: 8px;
}

.col_list .wp_listcolumn .sub_list a.hover,
.col_list .wp_listcolumn .sub_list a.selected {
  color: #2ca6e0;
}

.col_list .wp_listcolumn .sub_list a.selected span.column-name {
  color: #036eb7;
}

.col_list .wp_listcolumn .sub_list a .column-name {
  display: inline-block;
  line-height: 28px;
  padding: 5px 10px;
  cursor: pointer;
}

.col_list .wp_listcolumn .wp_column .sub_list a:hover .column-name {
  color: #036eb7;
}

/*三级子栏目**/

.col_list .wp_listcolumn .wp_column .sub_list .sub_list a {
}

.col_list .wp_listcolumn .sub_list .sub_list a .column-name {
  padding: 5px 10px 5px 60px;
  cursor: pointer;
  font-size: 13px;
}

.col_list .wp_listcolumn .sub_list .sub_list a :hover,
.col_list .wp_listcolumn .sub_list .sub_list a.selected {
  font-weight: bold;
  color: #93150c;
}

/**栏目新闻**/

.col_news {
  width: 100%;
  min-height: 500px;
  float: right;
}

.col_news .col_news_box {
  margin-left: 270px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 0 30px;
}

.col_news_head {
  border-bottom: 1px solid #dbdbdb;
}

.col_metas .col_title {
  display: inline-block;
  float: left;
  height: 74px;
  line-height: 74px;
}

/**当前栏目**/

.col_metas .col_title h2 {
  display: inline-block;
  font-size: 24px;
  font-family: "Microsoft yahei";
  font-weight: bold;
  color: #333;
}

.col_metas .col_path {
  display: inline-block;
  float: right;
  white-space: nowrap;
  height: 74px;
  line-height: 74px;
  color: #666;
  padding-left: 28px;
  background: url(images/back.png) left center no-repeat;
}

/**当前位置**/

.col_metas .col_path a {
  color: #2f2f2f;
}

.col_news_con {
  padding: 0px;
  margin: 0 0px;
}

.col_news_list {
  margin-top: 0px;
}

.col_news_list .news_list2 li {
  padding: 30px 0;
  border-bottom: 1px solid #e0e0e0;
}

.col_news_list .news_list2 li .news_pic {
  width: 240px;
  height: 134px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.col_news_list .news_list2 li .news_pic .img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.col_news_list .news_list2 li .news_pic:hover {
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
}

.col_news_list .news_list2 li .news_pic:hover .img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.col_news_list .news_list2 li .news_info {
  width: calc(100% - 280px);
  height: 100px;
  position: relative;
}

.col_news_list .news_list2.list2c li .news_info {
  width: 100%;
}

.col_news_list .news_list2 li .news_title {
  margin-top: 5px;
  line-height: 28px;
  color: #333;
  font-size: 16px;
  font-weight: bold;
}

.col_news_list .news_list2 li .news_meta {
  height: 20px;
  line-height: 20px;
  font-size: 16px;
  color: #999;
}

.col_news_list .news_list2 li .news_wz {
  margin-top: 7px;
  line-height: 24px;
  max-height: 48px;
  font-size: 14px;
  color: #999;
}

.col_news_list .news_list2 li .news_more {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-top: 14px;
  background: url(images/more.png) left no-repeat;
  padding-left: 16px;
  height: 14px;
  font-size: 14px;
  color: #1267bb;
}

.col_news_list .news_list2 li .news_more1 {
  background: url(images/more.png) left no-repeat;
  padding-left: 16px;
  height: 14px;
  font-size: 14px;
}

.col_news_list .wp_article_list .list_item {
}

/**栏目新闻列表**/

.col_news_list .wp_article_list .list_item .Article_Index {
}

/**栏目新闻图标序号**/

.col_news_list .wp_entry,
.col_news_list .wp_entry p {
  line-height: 1.75;
  font-size: 14px;
  color: #333;
}

.col_news_list .wp_entry p {
  margin-bottom: 10px;
}

.col_news_list .wp_entry table {
  margin-bottom: 4px;
}

.col_news_list .wp_entry img {
  max-width: 800px;
  _width: expression(this.width > 800 ? "800px": this.width);
}

.col_news_list .news_list2 li {
  padding-right: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.col_news_list .news_list2 li:hover {
  border-radius: 25px;
  box-shadow: 2px 3px 9px 1px rgba(74, 74, 74, 0.15);
  padding-left: 30px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.col_news_list .news_list2.list2c li .news_info2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news_info .li1 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.Column_Name {
  display: none;
}

.column-banner {
  background-color: #fff;
}
.column-img {
  max-width: 1920px;
  width: 100%;
  height: 500px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.column {
  min-height: calc(100vh - 500px);
  background-color: #f0f0f0;
}
.column-sidebar,
.column-content {
  position: relative;
}
.column-sidebar {
  margin-bottom: 20px;
}
.column-content {
  min-height: 500px;
 padding-bottom:50px;
  margin-bottom: 40px;
  background: #fff url(../img/section_bg.png) no-repeat center top;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}
.column-name {
  position: relative;
  z-index: 1;
  padding: 30px 20px;
  font-size: 24px;
  font-weight: 600;
  color: #005dbe;
  background: #fff;
  border-left: 4px solid #005dbe;
  
}

.column-collapse {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}
.col-list {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 
}
.col-list > ul {
  position: relative;
  padding: 0;
  font-size: 16px;
  border-left: 4px solid #005dbe;
}
.col-list > ul > li > a {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-bottom: 1px dashed #ccc;
  font-weight: bold;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.col-list > ul > li > a:hover {
  color: #005dbe;
  background-color: #ededed;
}
.col-list > ul > li.selected > a {
  background: #ddd;
  color: #005dbe;
  font-weight: 600;
}
.col-sublist > ul > li > a {
  display: block;
  color: #666;
  display: block;
  padding: 10px 28px;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.col-sublist > ul > li span {
  position: relative;
  top: 3px;
  font-size: 12px;
  float: right;
}
.col-sublist > ul > li > a:hover {
  background-color: #005dbe;
  color: #fff;
}
.col-sublist li.selected a {
  background-color: #005dbe;
  color: #fff;
}
.col-breadcrumbs {
  float: right;
  margin-top: 30px;
  margin-right: 10px;
}
.wp_listalbumn {
  margin-top: 20px;
}

/* Column Right */
.column-title {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #005dbe;
  font-weight: 600;
  font-size: 24px;
}
.column-breadcrumb {
  margin-top: 15px;
  color: #666;
  font-weight: 400;
  font-size: 14px;
}
.column-breadcrumb a {
  color: #999;
}
.column-breadcrumb a:hover {
  color: #333;
}
.column-breadcrumb i {
  margin-right: 12px;
}
.column-info-list {
  padding-top: 0;
}
.column-info-list li {
  padding: 10px 20px;
  border-bottom: 1px dotted #eee;
}
.column-info-list li p {
  margin: 0;
}
.column-info-list li:last-child {
  border-bottom: none;
}

.column-date-list {
  padding: 20px 25px;
padding-bottom:50px;
}
.column-date-list .date-item {
  margin-bottom: 28px;
}
.info-list   {
  min-height: 380px;
  padding-top: 0;
}
.info-list li {
  padding: 14px;
  border-bottom: 1px dashed #e0e0e0;
  box-shadow: 0px 2px 6px 0px rgba(174, 174, 174, 0.2);
}
.info-list li h3 {
  width:80%;
  font-size: 16px;
  font-weight: normal;
  color: #333;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
line-height: 30px;
}
.info-list li h3 span {
  color: #005dbe;
  padding-right: 12px;
  margin-right: 12px;
  border-right: 1px solid #eee;
}
.info-list li h3 b {
  float: right;
  color: #999;
  font-style: normal;
  font-size: 12px;
}
.info-list li:hover h3 {
  color: #005dbe;
}

.column-img-list {
  padding: 20px 25px;
}
.column-img-item {
  width: 100%;
  overflow: hidden;
  
}
.column-img-item .photo {
  width: 100%;
  padding-bottom: 75%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #999;
  border-radius: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.column-img-item .title {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 12px 15px;
  margin-top: -60px;
  background-color: #fff;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.column-img-item .title p {
  margin: 0;
}
.column-img-item:hover .title {
  color: #005dbe;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
}

.column-members-list {
  padding: 0 20px;
}
.column-members-list .wp_single {
  padding: 0 20px;
}
.member-carousel-item {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
}
.member-photo {
  position: relative;
  max-width: 140px;
  width: 100%;
  height: 140px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #999;
}
.member-photo .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.member-carousel-item:hover .member-photo .overlay {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.member-info {
  height: 92px;
  padding-top: 16px;
  text-align: center;
}
.member-info h3 {
  position: relative;
  padding-bottom: 6px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  text-align: center;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.member-info p {
  font-size: 14px;
  color: #999;
}
.member-carousel-item:hover .member-info h3 {
  color: #0957b5;
}
.subDoctor_year {
  line-height: 30px;
  background: #f2f2f2;
  overflow: hidden;
  padding: 10px 15px 5px 15px;
  margin-bottom: 30px;
}
.subDoctor_year span {
  float: left;
  margin-right: 5px;
  margin-bottom: 10px;
}

.subDoctor_year_info a {
  display: inline-block;
  margin-right: 13px;
  padding: 3px 5px;
  font-size: 16px;
  color: #666;
  margin-bottom: 6px;
  vertical-align: middle;
}
.subDoctor_year_info a.active,
.subDoctor_year_info a:hover {
  background: #0a60ca;
  color: #fff;
}

/*
* Post
*/
.post {
  margin-top: 30px;
  margin-bottom: 50px;
}
.post .inner {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}
.post-content {
  width: 100%;
  padding: 0;
  padding: 35px 0;
  background-color: #fff;
}
.post-title {
  padding-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #666;
}
.post-attr {
  margin-bottom: 20px;
  padding: 0 20px 30px;
  text-align: center;
  color: #005dbe;
  border-bottom: 1px solid #ccc;
}
.post-attr > span {
  display: inline-block;
  padding: 0 10px;
  background-color: #f7f7f7;
  border-radius: 8px;
  cursor: pointer;
}
.read-content {
  width: 100%;
  min-height: 400px;
  line-height: 2;
  margin: 0 auto;
  padding: 10px 20px 40px;
}
.read-content img {
  margin: 10px 0;
  
  height: auto;
}
.breadcrumb {
  color: #fff;
  text-align: left;
  background: #005dbe;
  border-radius: 0;
}
.breadcrumb .possplit {
  display: none;
}
.breadcrumb a {
  margin: 0 5px;
  color: #fff;
  opacity: 0.8;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.breadcrumb a:hover {
  opacity: 1;
}
.wp_articlecontent > table {
  width: 100% !important;
}

.wp_listcolumn_searchbartree {
  margin: 10px 0;
}
.wp_listcolumn_searchbartree .wp_listcolumn_treeKeyword {
  width: 100%;
  height: 36px;
}
.wp_listcolumn_searchbttree {
  position: relative;
  z-index: 1;
  float: right;
  margin-top: -29px;
  margin-right: 4px;
}
.ztree {
  background-color: #f7f7f7;
}
.ztree * {
  font-size: 14px;
}
.ztree li {
  padding: 10px 0;
}

.menu-item:hover .sub-menu {
  display: block;
}

.column-banner {
  background: url(images/banner01.jpg) no-repeat;
  background-size: cover;
}
.container {
  max-width: 1300px;
}
.listdate .day {
  font-family: Arial;
  font-weight: 400;
  font-size: 30px;
  color: #005dbb;
  line-height: 20px;
 margin-bottom:15px;
}
.listdate .year {
  font-family: Arial;
  font-weight: 400;
  font-size: 18px;
  color: #005dbb;
  line-height: 20px;
}
.listdate {
  width: 15%;
}
.LISTBOX li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.LISTBOX li:hover{
box-shadow: 0px 2px 8px 0px #D0D0D0, 0px -2px 0px 0px #004ABA;
}
.LISTBOX li {
  position: relative;    margin-bottom: 20px;
  transition: 0.5s;
}
.LISTBOX li::after {
  position: absolute;
  content: "";
  width:20px;
  height: 20px;
  background: url(images/btn_achievement01_details.png) no-repeat;
  z-index: 999;
  right: 10px;
  bottom: 10px;
  transition: 0.5s;
     background-size: cover;
}
.LISTBOX li:hover::after {
  background: url(images/btn_news01_details.png) no-repeat;
background-size: cover;
}

.column-banner .img {
  position: relative;
  max-width: 100%;
  width: 100%;
  height: 400px;
  margin: 0 auto;
  background: #f1f1f1 url(images/banner_img2.png) no-repeat center/cover;
}
.column-banner .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.column {
  padding-top: 30px;
  padding-bottom: 40px;
}
.column-anchor {
  padding-left: 24px;
  height: 80px;
  background: #fff;
  border-left: 4px solid #005dbe;
  border-radius: 0;
  color: #333;
  font-weight: bold;
  font-size: 22px;
  line-height: 80px;
}
.column-nav ul li a {
  display: block;
  padding-left: 25px;
  height: 48px;
  background: #fff;
  color: #333;
  font-size: 16px;
  line-height: 48px;
  border-bottom: 1px solid #eee;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
  border-left: 4px solid #005dbe;
}
.column-nav ul li a:hover {
  background: #999;
  color: #fff;
}
.column-nav ul li ul li a {
  padding-left: 40px;
  height: 48px;
  background: #f0f0f0;
  font-size: 16px;
  line-height: 48px;
}
.column-nav ul li ul li ul li a {
  padding-left: 60px;
  height: 48px;
  background: #f0f0f0;
  font-size: 16px;
  line-height: 48px;
}
.column-nav ul li.selected > a {
  background: #f1f1f1;
  color: #0044a0;
  font-weight: 700;
}
.breadcrumb-nav {
  float: right;
  margin-top: -10px;
  padding: 8px 0;
  color: rgba(6, 133, 89, 1);
  font-size: 14px;
  font-weight: 400;
}
.breadcrumb-nav a {
  font-weight: 400;
  color: #999;
}
.breadcrumb-nav a:hover {
  color: #333;
}
.column-content {
  min-height: calc(100vh - 300px);
  background-color: #fff;
  box-shadow: 0 7px 20px rgba(175, 35, 40, 0.1);
}
.column-content .hero-news-list {
  padding: 10px 24px;
}
.column-name {
  padding: 10px 24px;
  color: #333;
  font-weight: 700;
  font-size: 20px;
  line-height: 60px;
}
.column-nav {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.news-list {
  margin-bottom: 30px;
}
.news-list li {
  border-top: 1px dashed #ccc;
}
.news-list li:last-child.news-list-item {
  border-bottom: 1px dashed #ccc;
}
.news-list-item {
  position: relative;
  width: 100%;
  height: 105px;
  padding: 30px 16px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
}

.news-list-item .date {
  position: absolute;
  top: 20px;
  left: 0;
  width: 64px;
  overflow: hidden;
}
.news-list-item .date b,
.news-list-item .date span {
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}
.news-list-item .date span {
  font-size: 28px;
  color: #333;
  font-weight: bold;
  font-style: italic;
}
.news-list-item .date b {
  font-size: 14px;
  color: #999;
  font-weight: normal;
}
.news-list-item .content {
  display: flex;
  align-items: center;
  width: 100%;
  height: 52px;
  padding: 0 20px 0 95px;
  color: #1a1a1a;
  background: url(../img/icon/list_dot.png) no-repeat;
  background-position: 68px center;
}
.news-list-item .content h3 {
  line-height: 26px;
  font-size: 18px;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.news-list-item:hover .content {
  background-image: url(../img/icon/list_dot_active.png);
}
.news-list-item:hover .content h3 {
  color: #0044a0;
}

.column .wp_single {
  padding: 20px;
}
.teacher-list {
  padding: 20px;
}
.teacher-item {
  display: block;
  max-width: 210px;
  width: 100%;
  margin: 15px auto;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.teacher-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.teacher-item h2 {
  padding: 10px;
  background-color: #fff;
  font-size: 18px;
  color: #333;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.teacher-item:hover h2 {
  color: #0044a0;
}
.teacher-item img {
  width: 210px;
  height: 290px;
}
.column-img-list {
  padding: 15px 25px;
}
.column-img-item {
  margin: 15px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.column-img-item .photo {
  width: 100%;
  height: 180px;
  background-color: #999;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.column-img-item .title {
  padding: 16px 12px;
}
.column-img-item .title h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight:  400;
  color: #333;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.column-img-item .title .date {
  color: #999;
}
.column-img-item:hover {
  box-shadow: 0 0 10px rgba(175, 35, 40, 0.3);
}
.column-img-item:hover .title h3 {
  color: #0044a0;
}
.glyphicon-home:before {
  display: none;
}
.info-list3 {
  display: flex;
}
.info-list3 li {
  width: 47%;
  margin-right: 20px;
  margin-bottom: 30px;
  transition:0.8s;
  -webkit-transition:0.8s;
  -moz-transition:0.8s;
  -ms-transition:0.8s;
  -o-transition:0.8s;
}
.Teacher {
  height: 150px;
  width: 120px;
  margin-right: 30px;
}
.Teacher3 {
  height: 274px;
  width: 200px;
  margin-right: 30px;
}
.Teacher img {
  width: 100%;
  height: 100%;
}
.info-list3 li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.XYFCimg {
  height: 236px;
}
.XYFCimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-list3 li:hover {
  background: #ddd !important;
}
.wp_entry img {
  max-width: 100% !important;
}

.info-list3 li:hover .s99 {
  color: #a92b1f;
  text-decoration: underline;
}
.s99 {
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1d;
  display: block;
  margin-bottom: 20px;
}
.nav .wp-menu{
width:100%;
}
.nav{
display:block
}

.CGZSbox {

    position: relative;
    border-top: 6px solid rgb(255, 255, 255); /* 初始边框颜色为白色 */
    transition: border-top-color 0.8s ease; /* 平滑过渡 */
}

.CGZSbox::before {
    content: "";
    position: absolute;
       top: -6px;
    left: 0;
    width: 0;
    height: 6px;
    background-color: rgba(253, 153, 45, 1); /* 悬停时的橙色 */
    transition: width 0.8s ease; /* 动画效果从左往右滑出 */
    z-index: 9999; /* 保证覆盖原边框 */
}

.CGZSbox:hover::before {
    width: 100%; /* 鼠标悬停时展开至全宽 */
}
.CGimg{
overflow:hidden;
}
.CGimg img {
    transition: transform 0.8s ease; /* 平滑放大效果 */
}

.CGZSbox:hover .CGimg img {
    transform: scale(1.1); /* 鼠标悬停时图片放大1.1倍 */
}
.newsimg  {
overflow:hidden;
}
.newsimg img {
    transition: transform 0.8s ease; /* 平滑放大效果 */
}

.newsbox1:hover .newsimg  img {
    transform: scale(1.1); /* 鼠标悬停时图片放大1.1倍 */
}

.morebtn a {
    position: relative;
 
    text-decoration: none;
    color: inherit;
    transition: transform 0.5s ease, color 0.5s ease;
}

.morebtn a:hover {
    color: #ff6600; /* 鼠标悬浮时改变文字颜色 */
    transform: scale(1.1); /* 添加放大效果 */
}

.mySwiperYJ {
  width: 100%;
  height: 226px;
}

.mySwiperYJ .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mySwiperYJ .swiper-slide img {
  display: block;
  width: 100%;
  height: 226px;
  object-fit: cover;
}
.YJSWIPER {
  position: relative;
}
.YJSWIPER .swiper-button-next {
  background: url(images/demeanour_shadow_right.png);
  width: 46px;
  height: 400px;
  top: -30%;
  right: -60px;
}
.YJSWIPER .swiper-button-prev {
  background: url(images/demeanour_shadow_left.png);
  width: 46px;
  height: 400px;
top: -30%;
  left: -60px;
}