@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: 1600px;
  margin: 0 auto;
}
/* 导航 */
/*默认主导航样式*/
#nav {
  height: 30px;
}

#nav .inner {
}
#nav .inner .wp-panel {
  height: 30px;
}
#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;
  position: relative;
  text-align: center;
  border-left: 1px solid #fff;
}
.nav .wp-menu .menu-item:last-child {
  border-right: 1px solid #fff;
}
.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: 22px;
  color: #ffffff;
  line-height: 33px;
}

.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 35px;
  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: url(images/top_bg.png) no-repeat;
  padding-top: 20px;
  background-size: cover;
  height: 220px;
}
.search-panel {
  float: right;
  position: relative;
  z-index: 20;
  display: inline-block;
  line-height: 25px;
}
.search-window {
  border: 0px;
  overflow: hidden;
  min-height: 32px;
}
/**搜索**/
.wp_search {
  display: inline-block;
  position: relative;
  opacity: 0.3;
  filter: Alpha(opacity=30);
  width: 300px;
  height: 32px;
  background: #57247b;
  border-radius: 16px 16px 16px 16px;
  border: 1px solid #ffffff;
}
.wp_search #keyword {
  padding: 4px 0;
  border: none;
  height: 28px;
  line-height: 28px;
  color: #fff;
  font-size: 14px;
  font-family: "Microsoft YaHei";
  width: 300px;
  height: 32px;
  background: #57247b;
  border-radius: 16px 16px 16px 16px;
  border: 1px solid #ffffff;
}
.wp_search .search {
  width: 32px;
  height: 32px;
  border: 0px;
  background: url(images/top_search_icon.png) no-repeat center;
  cursor: pointer;
  vertical-align: top;
}
/***自定义搜索*/
.wp-search {
  border: 0px;
  position: relative;
  width: 324px;
  height: 60px;
  background: rgba(26, 52, 81, 0.2);
  box-shadow: 0px 2px 10px 0px rgba(26, 52, 81, 0.2);
  border-radius: 5px;
}
.wp-search form {
  display: block;
  padding-right: 34px;
}
.wp-search .search-input {
  margin-right: 0;
  height: 60px;
  position: relative;
}
.wp-search .search-input input.search-title {
  width: 100%;
  box-sizing: border-box;
  height: 60px;
  padding: 0px 15px;
  border: 0;
  outline: 0;
  background: none;
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 17px;
  color: #ffffff;
}
.wp-search .search-btn {
  width: 59px;
  height: 60px;
  position: absolute;
  right: 0px;
  top: 0px;
}

.wp-search .search-btn input.search-submit {
  width: 59px;
  height: 60px;
  border: 0;
  outline: 0;
  border-radius: 4px;
  background: rgba(9, 81, 193, 1) url(images/top_search_icon.png) no-repeat
    center;
  cursor: pointer;
}
.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #333;
}
.searchbox {
  width: 324px;
  height: 60px;
  background: rgba(26, 52, 81, 0.2);
  border-radius: 5px;
}
.Button {
  width: 116px;
  height: 36px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  position: relative;

  color: #2189c4;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  border: none !important;
}
.Button:hover {
  background: rgba(33, 137, 196, 1);
  border: none !important;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mySwiper1 {
  width: 59%;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(63, 70, 77, 0.15);
}

.swiper {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.main1 {
  position: relative;
}
.ma1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.Introduced {
  width: 39%;
  height: 561px;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(63, 70, 77, 0.15);
  padding: 20px;
}
.Titlebox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.animated-button img {
  transition: transform 0.8s ease-in-out;
  border-radius: 50%;
  box-shadow: 0px 0px 7px 0px rgba(16, 108, 193, 0.25);
}
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2); /* 放大 */
  }
  50% {
    transform: scale(1); /* 恢复原状 */
  }
  75% {
    transform: scale(1.2); /* 再次放大 */
  }
  100% {
    transform: scale(1); /* 最终恢复 */
  }
}

.animated-button:hover img {
  animation: heartbeat 1.5s ease-in-out infinite; /* 动画时间1.5秒，循环 */
}
.s1 {
  font-family: Source Han Sans CN;
  font-weight: 600;
  font-size: 26px;
  color: #333333;
  line-height: 46px;
}
.Introducedpreson {
  margin-top: 15px;
}
.perpic img {
  width: 207px;
  height: 279px;
  object-fit: cover;
}
.s2 {
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 17px;
  color: #0f67c0;
  line-height: 38px;
}
.s3 {
  font-family: Source Han Sans CN;
  font-size: 18px;
  color: #333;
  line-height: 38px;
}

/* 设置逐字闪烁的动画效果 */
.s2 span {
  display: inline-block;
  opacity: 0.4;
  animation: shiny-text 2s infinite alternate;
  -webkit-animation: shiny-text 2s infinite alternate;
}

/* 定义逐字闪烁的动画效果 */
@keyframes shiny-text {
  0% {
    opacity: 0.4;
    color: #0f67c0; /* 默认颜色 */
  }
  50% {
    opacity: 1;
    color: #0f67c0; /* 闪烁时的颜色 */
  }
  100% {
    opacity: 0.4;
    color: #0f67c0; /* 恢复原色 */
  }
}

/* 链接的样式 */
.s2 a {
  color: #ff8c00;
  text-decoration: none;
}
.s2 a:hover {
  color: #ff4500;
}
.YJLY {
  margin-top: 25px;
}
.s4 {
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 20px;
  color: #0f67c0;
  line-height: 38px;
}
.ZXDT {
  width: 59%;
  padding: 25px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0px 0px 20px 0px rgba(63, 70, 77, 0.15);
}
.morebtn {
  display: flex;
  align-items: center;
}
.s5 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #136ac2;
}
.ZXDTTEXTimg img {
  width: 182px;
  height: 102px;
  object-fit: cover;
  margin-right: 20px;
}
.ztitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.ztitle1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.s4 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 14px;
  color: #7e8589;
}
.zneirong {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.zjianjie {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #999999;
  line-height: 32px;
}
.ZXDTTEXT li {
  border-bottom: 1px solid #eee;
}
.ZXDTTEXT li .ztitle {
  position: relative;
  padding-left: 30px;
}
.ZXDTTEXT li .ztitle::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid #d5d4d4;
  left: 0;
}
.hover-container {
  position: relative;
}

#content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
  -webkit-transition: height 0.4s;
  -moz-transition: height 0.4s;
  -ms-transition: height 0.4s;
  -o-transition: height 0.4s;
}

.hover-container:hover #content {
  height: 130px;
}
.panel.active #content {
  height: 130px; /* Adjust height as needed for expanded content */
}
.panel.active .s3 {
  color: #0f67c0;
  font-weight: bold;
}
.panel.active .ztitle::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: #0f67c0;
  border-radius: 50%;
  border: 1px solid #d5d4d4;
  left: 0;
}
.hover-container:hover .s3 {
  color: #0f67c0;
  font-weight: bold;
}
.hover-container:hover .ztitle::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: #0f67c0;
  border-radius: 50%;
  border: 1px solid #d5d4d4;
  left: 0;
}
.main2 {
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
}
.LWFB {
  padding: 25px;
  width: 39%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 20px 0px rgba(63, 70, 77, 0.15);
}
.ma2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.Ltextbox li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ltitle {
  width: 80%;
  display: flex;
  align-items: center;
}
.Ltextbox li {
  border-bottom: 1px solid #eee;
  padding-bottom: 11px;
}
.Ltextbox li .s3 {
  transition: font-weight 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}
.Ltextbox li:hover .s3 {
  font-weight: bold;
  font-size: 19px;
  color: #0f67c0;
}
.YQLJ {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.YQLJ li {
  width: 18%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3;
}
.y1 {
  background: rgba(3, 110, 183, 0.8) url(images/link_icon1.png) right bottom
    no-repeat;
  border-radius: 4px;
}
.y2 {
  background: rgba(2, 112, 62, 0.8) url(images/link_icon2.png) right bottom
    no-repeat;
  border-radius: 4px;
}
.y3 {
  background: rgba(3, 160, 183, 0.8) url(images/link_icon3.png) right bottom
    no-repeat;
  border-radius: 4px;
}
.y4 {
  background: rgba(183, 151, 3, 0.8) url(images/link_icon4.png) right bottom
    no-repeat;
  border-radius: 4px;
}
.y5 {
  background: rgba(76, 158, 200, 0.8) url(images/link_icon5.png) right bottom
    no-repeat;
  border-radius: 4px;
}
.YQLJ li a {
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  line-height: 37px;
  transition: font-weight 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}
.main3 {
  padding-bottom: 35px;
}
.YQLJ li:hover a {
  font-size: 22px;
}
.YQLJ li:hover {
  box-shadow: 0px 0px 20px 0px rgba(63, 70, 77, 0.15);
}
.footer {
  background: #0458a5;
  padding-top: 25px;
  padding-bottom: 25px;
}
.footerbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.s6 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 34px;
}
.ftext {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ftext li {
  text-align: right;
}
.mainground {
  background: url(images/bg1.png) no-repeat;
  background-size: cover;
  padding-top: 50px;
}
.s7 {
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 20px;
  color: #0f67c0;
  line-height: 25px;
  margin-bottom: 10px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.mySwiper1 .swiper-button-next {
  width: 47px;
  height: 45px;
  background: url(images/news_Switch_btn_right_nor.png) no-repeat;
  background-size: cover;
  right: 0;
}
.mySwiper1 .swiper-button-prev {
  width: 47px;
  height: 45px;
  background: url(images/news_Switch_btn_left_nor.png) no-repeat;
  background-size: cover;
  left: 0;
}
.swtitle {
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 20px;
  color: #0f67c0;
  line-height: 28px;
}
.swjianjie {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 28px;
}
.SWtext {
  background: rgba(255, 255, 255, 0.8);
  padding: 36px;
  position: absolute;
  top: 76%;
}
.swiper-pagination-bullet-active {
  background: #ff785e !important;
}
.Ptext {
  width: 100%;
  height: 40px;
  background: #0f67c0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  position: absolute;
  bottom: 0;
}
.perpic {
  position: relative;
  margin-right: 25px;
}
.mySwiper1 {
  height: 560px;
}
.mySwiper1 .swiper-slide img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mySwiper1 .swiper-slide:hover img {
  transform: scale(1.1);
}
/* 列表页 */
.header2 {
  height: 220px;
}
/**新闻列表**/

/***********************************************************
 * 列表页
 */

/**主体列表页开始**/
#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 - 200px);
}
.column-sidebar,
.column-content {
  position: relative;
}
.column-sidebar {
  margin-bottom: 20px;
}
.column-content {
  min-height: 500px;

  margin-bottom: 40px;
  background: #fff url(../img/section_bg.png) no-repeat center top;
  border-radius: 8px;
}
.column-name {
  position: relative;
  z-index: 1;
  padding: 30px 20px;
  font-size: 24px;
  font-weight: 600;
  color: #005dbe;
  background: #fff;
}

.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: 5px solid rgba(15, 104, 193, 1);
}
.col-list > ul > li > a {
  display: block;
  width: 100%;
  padding: 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: 18px 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: 2px solid #0f68c1;
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #a0a0a0;
  text-align: right;
}
.column-breadcrumb {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #a0a0a0;
  text-align: right;
}
.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-date-list {
  padding: 20px 25px;
}
.column-date-list .date-item {
  margin-bottom: 28px;
}
.info-list {
  min-height: 580px;
  padding-top: 0;
}
.info-list li {
  padding: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.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;
  max-width: 100% !important;
  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: 1600px;
}
.listdate .day {
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 34px;
  color: #0f68c1;
  line-height: 40px;
}
.listdate .year {
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 16px;
  color: #0f68c1;
  line-height: 20px;
  padding: 5px;
  background: rgba(15, 104, 193, 0.1);
  width: 93px;
  text-align: center;
}
.listdate {
  width: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 15px;
}
.LISTBOX li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.LISTBOX li {
  position: relative;
  transition: 0.3s all ease;
}
.LISTBOX li::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background: url(images/btn_achievement01_details.png) no-repeat;
  z-index: 999;
  right: 10px;
  bottom: 10px;
  transition: 0.5s;
}
.LISTBOX li:hover::after {
  background: url(images/btn_news01_details.png) no-repeat;
}

.LISTBOX li:hover {
  background: rgba(15, 104, 193, 0.05);
}
.LISTBOX li:hover .s8 {
  color: #0f68c1;
}

.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;
}
.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;
}
.column-content .hero-news-list {
  padding: 10px 24px;
}
.column-name {
  padding: 10px 24px;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 43px;
  background: #0f68c1;
  text-align: center;
}
.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: 700;
  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: 23%;
  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 {
  width: 181px;
  height: 245px;
}
.Teacher3 {
  height: 274px;
  width: 200px;
  margin-right: 30px;
}
.Teacher img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info-list3 li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.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: #0f68c1;
}
.s8 {
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 28px;
}
.s9 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #999999;
  line-height: 28px;
}
.s10 {
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 22px;
  color: #0f68c1;
  line-height: 24px;
}
.column-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Teacher2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.s99 {
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 28px;
}
.s88 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 30px;
}
.info-list3 li {
  border-bottom: none;
}
.column-date-list2 {
  min-height: 600px;
}

.info-listTEA {
  width: 100%;
}

.info-listTEA li a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.Teacher4 img {
  width: 139px;
  height: 184px;
}
.Teacher5 {
  min-width: 85%;
}
.Teacher5 {
  padding: 25px;
  background: #ffffff;
  box-shadow: 15px 15px 5px 0px rgba(15, 104, 193, 0.15);
  border-radius: 5px;
  border: 1px solid #bdd0e5;
}
.s91 {
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 20px;
  color: #0f68c1;
}
.T5 {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.s11 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #0f68c1;
  line-height: 26px;
  margin-right: 10px;
}
.T5more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 15px;
}
.LISTBOXimg {
  display: flex;
}
.LISTBOXimg li {
  width: 30%;
  border-bottom: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-right: 30px;
  margin-bottom: 30px;
  padding: 10px;
  transition: 0.5s;
}
.LISTBOXimg li a {
  text-align: center;
}
.LISTimg img {
  width: 100%;
  height: 200px;
  background-color: #999;
  object-fit: cover;
  border-radius: 8px;
}

/* 模态框样式 */
.modal {
  display: none; /* 默认隐藏模态框 */
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9); /* 半透明背景 */
  opacity: 0; /* 初始状态透明 */
  animation: modal-hide 0.4s ease-in-out; /* 初始隐藏动画 */
}

/* 打开模态框时的动画 */
.modal.show {
  display: block;
  opacity: 1;
  animation: modal-show 0.6s ease-in-out;
  -webkit-animation: modal-show 0.6s ease-in-out;
}

/* 显示时的动画 */
@keyframes modal-show {
  0% {
    opacity: 0;
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    -o-transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 隐藏时的动画 */
@keyframes modal-hide {
  0% {
    opacity: 1;
    transform: scale(1); /* 当前大小 */
  }
  100% {
    opacity: 0;
    transform: scale(0.5); /* 缩小 */
  }
}

/* 模态框内容 */
.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

/* 关闭按钮样式 */
.close {
  position: absolute;
  top: 10px;
  right: 25px;
  color: #f1f1f1;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 图片标题 */
#caption {
  color: #ccc;
  font-size: 20px;
  text-align: center;
  padding: 10px;
}
.menu-item {
  width: 12.8%;
}
.ztitle .s3 {
  width: 70%;
}
.nav {
  display: block;
}

#wp_paging_w7 {
  margin-top: 20px;
}
.LISTBOXimg li:hover {
  background: #0f68c1;
}
.LISTBOXimg li:hover .s99 {
  color: #fff;
}
.Teacher5 {
  width: 75%;
}
.listdate2 {
  width: 89%;
}

/* 使li元素在鼠标hover时生效 */
.info-listTEA li {
  transition: all 0.3s ease;
}

/* 鼠标hover时，放大图片 */
.info-listTEA li:hover .Teacher4 img {
  transform: scale(1.1); /* 放大图片 */
}

/* 鼠标hover时，改变Teacher5的背景色 */
.info-listTEA li:hover .Teacher5 {
  background-color: rgba(15, 104, 193, 0.05); /* 改变背景色 */
}

/* 可选，防止图片的放大效果超出父容器 */
.info-listTEA li .Teacher4 img {
  transition: transform 0.3s ease;
  object-fit: cover; /* 确保图片拉伸时不失真 */
}

.info-listTEA .s8 {
  font-weight: 400;
}
.nav .wp-menu .menu-item {
  transition: 0.5s;
}
/* 使menu-item在鼠标hover时生效 */
.menu-item {
  position: relative;
  transition: all 0.3s ease;
}

/* 鼠标hover时，menu-link添加效果 */
.menu-item:hover .menu-link {
  color: #ff6347; /* 例如，改变文本颜色 */

  transition: color 0.3s ease, text-decoration 0.3s ease;
}

/* 可选：如果想在hover时给menu-item添加一些背景色或其他效果 */
.menu-item:hover {
  background-color: rgba(0, 0, 0, 0.1); /* 鼠标hover时，改变背景色 */
}

.nav .wp-menu {
  margin-top: 10px;
  margin-bottom: 10px;
}

.hover-container1 {
  position: relative;
}

#content1 {
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
  -webkit-transition: height 0.4s;
  -moz-transition: height 0.4s;
  -ms-transition: height 0.4s;
  -o-transition: height 0.4s;
}

.hover-container1:hover #content1 {
  height: 130px;
}
.panel1.active #content1 {
  height: 130px; /* Adjust height as needed for expanded content */
}
.panel1.active .s3 {
  color: #0f67c0;
  font-weight: bold;
}
 
