@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 {
  color: rgba(67, 130, 233, 1);
}
.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;
}
/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 1300px;
  margin: 0 auto;
}
.sitelogo {
  width: 909px;
  height: 83px;
  margin-bottom: 20px;
}
.sitelogo a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 导航 */
/*默认主导航样式*/
.head-nav {
  height: 46px;
}
#nav {
display:block;
  background: #0080c5;
  border-radius: 2px 2px 2px 2px;
  padding-left: 35px;
  padding-right: 35px;
}
.nav .wp-menu {
  height: 46px;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.nav .wp-menu .menu-item {
  display: inline-block;
  position: relative;
  height: 46px;
  text-align: center;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 46px;
  line-height: 46px;
  padding: 0 10px;
  position: relative;

  text-align: center;
}
.nav .wp-menu .menu-item a.menu-link {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #ffffff;
  -webkit-transition: all 0.3s;
}
.nav .wp-menu .menu-item.hover a.menu-link {
  color: #fff;
 
}
.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 46px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: rgba(33, 137, 196, 1);
}
.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;
  font-size: 16px;
  text-align: left;
  padding: 0 16px;
}
.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: rgba(33, 137, 196, 0.65);
  background-color: #fff;
  display: block;
}
.header {
  padding-top: 20px;
background: linear-gradient(to bottom, rgba(219, 236, 244, 1), rgba(219, 236, 244, 0));

}
.nav .wp-menu {
  width: 100%;
}

/* banner */
.mySwiperbanner .swiper-slide a img {
  width: 100%;
}

/**新闻列表**/

/***********************************************************
 * 列表页
 */

/**主体列表页开始**/
#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;
}

/**链接样式**/
.mlink {
  width: 24%;
  background: url(images/btn.png) no-repeat;
}
.botlinks .links-wrap {
  position: relative;
  width: 100%;
  line-height: 30px;
  background: url(images/btn4.png) no-repeat;
  width: 300px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.botlinks .links-wrap a.links-arrow {
  display: block;
  height: 95px;
  line-height: 100px;
  padding: 0 24px 0 12px;
  color: #333333;
  font-size: 16px;
  font-weight: bold;
  background: url(images/arrow.png) no-repeat right bottom;
}
.botlinks .links-wrap a.links-arrow:hover,
.botlinks .wrap-open a.links-arrow {
  color: #9f0d0e;
  background-position: right top center;
  cursor: pointer;
}
.botlinks .links-wrap .link-items {
  display: none;
  position: absolute;
  left: 50px;
  right: 0px;
  bottom: 84px;
  height: auto;
  max-height: 300px;
  overflow: auto;
  overflow-x: hidden;
  background: #f3eaea;
  border-radius: 4px;
  width: 190px;
}
.botlinks .links-wrap .link-items a {
  display: block;
  line-height: 24px;
  padding: 5px 0;
  color: #444;
}
.botlinks .links-wrap .link-items a span {
  display: block;
  padding: 0 16px;
  white-space: nowrap;
}
.botlinks .links-wrap .link-items a:hover {
  color: #9f0d0e;
  cursor: pointer;
}

.header {
  position: absolute;
  top: 0;
  z-index: 999;
  width: 100%;
}
.banner {
  position: relative;
}
.main1 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.s1 {
  font-family: MicrosoftYaHei;
  font-size: 26px;
  color: #000000;
  line-height: 30px;
}
.s2 {
  font-family: DIN, DIN;
  font-weight: normal;
  font-size: 16px;
  color: #999999;
  line-height: 30px;
}
.XWDT {
  width: 63%;
}
.XWDTbox1 {
  width: 50%;
}
.XWimg {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.XWimg2 {
  width: 140px;
  height: 105px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0);
  -webkit-transition: 0.3s all ease;
}
.XWtext {
  padding: 20px;
  background: #006bb4;
}
.s3 {
  font-family: MicrosoftYaHei;
  font-size: 18px;
  color: #ffffff;
  line-height: 26px;
}
.s4 {
  font-family: MicrosoftYaHeiLight;
  font-size: 14px;
  color: #ffffff;
  line-height: 22px;
}
.s5 {
  font-family: ArialMT;
  font-size: 12px;
  color: #fff;
  line-height: 22px;
}
.XWDTbox2 {
  width: 47%;
}
.XWDTbox2 li {
  -webkit-transition: 0.3s all ease;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(216, 216, 216, 1);
}
.XWDTbox2 li:hover .XWimg2 {
  border: 2px solid #006bb4;
}
.XWDTbox2 li:hover .s3 {
  color: #006bb4 !important;
}

.TZGG {
  width: 33%;
}
.TZtime {
  display: flex;
  flex-direction: column;
}
.TZtime .day {
  font-family: Arial, Arial;
  font-weight: normal;
  font-size: 22px;
  color: #000000;
  line-height: 22px;
}
.TZtime .year {
  font-family: ArialMT;
  font-size: 16px;
  color: #999999;
  line-height: 22px;
}
.TZGGbox li {
  border-left: 1px solid rgba(216, 216, 216, 1);
  -webkit-transition: 0.3s all ease;
  padding: 20px;
}
.TZGGbox li:hover {
  background: #ffffff;
  border-left: 9px solid rgba(0, 128, 197, 1);
  box-shadow: 2px 0px 6px 0px #aeaeae;
}
.WSXT {
  margin-top: 30px;
}
.WSXT li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  background: url(images/btn_foreign.png) no-repeat;
  border-radius: 35px 35px 35px 35px;
  -webkit-transition: 0.3s all ease;
  background-size: cover;
}
.WSXT li a {
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
}
.WSXT li a:hover {
  background: url(images/btn_foreign_h.png) no-repeat;
  background-size: cover;
}
.GZZD {
  width: 48%;
}
.GZZDbox li {
  width: 100%;
  padding: 15px;
  background: #fff;
  border-bottom: 1px solid rgba(216, 216, 216, 1);
  -webkit-transition: 0.3s all ease;
}
.GZZDbox li:hover {
  background: #0080c5;
}
.GZZDbox li:hover .s5,
.GZZDbox li:hover .s3 {
  color: #fff !important;
}
.main2 {
  background: url(images/bj_middle.jpg) no-repeat;
  padding-top: 40px;
  padding-bottom: 155px;
  background-size: cover;
}

.XZZX {
  width: 48%;
}
.XZZXbox li {
  padding: 13px;
  margin-bottom: 10px;
  -webkit-transition: 0.3s all ease;
  border-bottom: 1px solid rgba(216, 216, 216, 1);
}
.XZZXbox li:hover {
  background: #fff;
  box-shadow: 1px 0px 2px 0px #000000;
}
.main3 {
  padding-top: 60px;
  padding-bottom: 70px;
}

.YQLJimg1 {
  margin-bottom: 15px;
  display: flex;
  width: 52px;
  height: 52px;
  background: url(images/btn_link_01.png) no-repeat;
}
.YQLJimg2 {
  margin-bottom: 15px;
  display: flex;
  width: 52px;
  height: 52px;
  background: url(images/btn_link_02.png) no-repeat;
}
.YQLJimg3 {
  margin-bottom: 15px;
  display: flex;
  width: 52px;
  height: 52px;
  background: url(images/btn_link_03.png) no-repeat;
}
.YQLJimg4 {
  margin-bottom: 15px;
  display: flex;
  width: 52px;
  height: 52px;
  background: url(images/btn_link_04.png) no-repeat;
}
.YQLJimg5 {
  margin-bottom: 15px;
  display: flex;
  width: 52px;
  height: 52px;
  background: url(images/btn_link_05.png) no-repeat;
}
.YQLJimg6 {
  margin-bottom: 15px;
  display: flex;
  width: 52px;
  height: 52px;
  background: url(images/btn_link_06.png) no-repeat;
}
.YQLJimg7 {
  margin-bottom: 15px;
  display: flex;
  width: 52px;
  height: 52px;
  background: url(images/btn_link_07.png) no-repeat;
}
.YQLJimg8 {
  margin-bottom: 15px;
  display: flex;
  width: 52px;
  height: 52px;
  background: url(images/btn_link_08.png) no-repeat;
}
.YQLJ {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.YQLJ li {
  -webkit-transition: 0.3s all ease;
  width: 24%;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: 1px solid rgba(216, 216, 216, 1);
}
.YQLJ li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.YQLJ li:hover .YQLJimg1 {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #000000;
  background: url(images/btn_link_01_h.png) no-repeat;
}
.YQLJ li:hover .YQLJimg2 {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #000000;
  background: url(images/btn_link_02_h.png) no-repeat;
}
.YQLJ li:hover .YQLJimg3 {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #000000;
  background: url(images/btn_link_03_h.png) no-repeat;
}
.YQLJ li:hover .YQLJimg4 {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #000000;
  background: url(images/btn_link_04_h.png) no-repeat;
}
.YQLJ li:hover .YQLJimg5 {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #000000;
  background: url(images/btn_link_05_h.png) no-repeat;
}
.YQLJ li:hover .YQLJimg6 {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #000000;
  background: url(images/btn_link_06_h.png) no-repeat;
}
.YQLJ li:hover .YQLJimg7 {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #000000;
  background: url(images/btn_link_07_h.png) no-repeat;
}
.YQLJ li:hover .YQLJimg8 {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #000000;
  background: url(images/btn_link_08_h.png) no-repeat;
}
.s6 {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #999999;
  -webkit-transition: 0.3s all ease;
}
.YQLJ li:hover .s6 {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #000000;
}
.YQLJ li {
  position: relative;
  margin-bottom: 20px;
}
.YQ::before {
  right: -8px;
  position: absolute;
  content: "";
  height: 90px;
  width: 1px;
  background: rgba(216, 216, 216, 1);
}
#footer {
  padding-top: 50px;
  padding-bottom: 98px;
  background: url(images/bj_bottom.jpg) no-repeat;
  background-size: cover;
}
.footerlogo {
  width: 100%;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 30px;
}
.footerlogo img {
  width: 909px;
  height: 83px;
}
.s7 {
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 36px;
}
.ENG {
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 400;
  font-size: 18px;
  color: #006bb4;
}
.head-left {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.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;
  margin-top: 40px;
}
.column-sidebar {
  
  margin-bottom: 20px;
}
.column-content {
  min-height: 500px;
 
  margin-bottom: 40px;
  background: #fff url(../img/section_bg.png) no-repeat center top;
 
  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-bottom: 2px 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;
  
}
.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: 12px;
  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;
}
.column-date-list .date-item {
  margin-bottom: 28px;
}
.info-list ul {
  min-height: 380px;
  padding-top: 0;
}
.info-list li {
  padding: 14px 0 8px;
  border-bottom: 1px dashed #e0e0e0;
}
.info-list li h3 {
  padding-bottom: 6px;
  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;
}
.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;
  padding: 5px 0 25px;
}
.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: 92%;
  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: 30px 0;
  background-color: #fff;
}
.post-title {
  padding-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #666;
}
.post-attr {
 margin-top: 20px;
  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;
}

.WLinks {
  position: fixed;
  top: 50%;
  right: 30px;
  z-index: 999;
  box-shadow: 2px 0px 6px 0px #006bb4;
}
.XYLS {
  width: 170px;
  background: #0080c5;
  box-shadow: 2px 0px 6px 0px #006bb4;
  border-radius: 2px 2px 2px 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 17px;
}
.s8 {
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 400;
  font-size: 15px;
  color: #ffffff;
  line-height: 20px;
}
.s9 {
  font-family: ArialMT;
  font-size: 18px;
  color: #ffffff;
  line-height: 30px;
}
.YX {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 17px;
  width: 170px;
  background: rgba(244, 245, 247, 1);
}
.s10 {
  font-family: ArialMT;
  font-size: 13px;
  color: #333333;
  line-height: 30px;
}
.menu-item:hover .sub-menu {
  display: block;
}
.menu-item{
  position: relative;
  transition:0.5s;
   
}
.menu-item:hover::before {
  content:"";
  position: absolute;
  width: 100%;
  height: 50px !important;
  background: #006bb4;
  top:-4px;
  border-radius: 5px  5px 0 0 ;
  -webkit-border-radius: 5px  5px 0 0 ;
  -moz-border-radius: 5px  5px 0 0 ;
  -ms-border-radius: 5px  5px 0 0 ;
  -o-border-radius: 5px  5px 0 0 ;
z-index: 777;
}
.column-banner{
  background:url(images/banner01.jpg) no-repeat;
  background-size:cover;
}
.nav .wp-menu .menu-item.hover a.menu-link{
z-index: 999;
}

.TZtime{
margin-right:15px;
}
.mySwiperbanner  .swiper-pagination-bullet{
 width: 50px;
 height: 6px;
 background: rgba(0, 0, 0, 0.3);
 border-radius: 3px 3px 3px 3px;
   transition:0.5s;
}
.mySwiperbanner  .swiper-pagination-bullet-active {
 width: 65px;
 height: 8px;
 background: #2991CE;
 border-radius: 3px 3px 3px 3px;
 
}

  .TZGGbox li:hover .s3 {
  font-weight: bold;
 }
.TZtime .day{
 font-style: italic;
}
.s2{
 text-transform: uppercase;
}
.XZZXbox li:hover .s3{
 color: #006BB4 !important;
 line-height: 24px;
 
  
 text-decoration-line: underline;
 text-transform: none;
}


 .ENG {
    position: relative;
    display: inline-block;
    text-decoration: none; /* 取消默认的下划线 */
 }

 .ENG::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color:  #006bb4; /* 设置下划线的颜色 */
    transition: width 0.3s ease; /* 设定动画效果 */
 }

 .ENG:hover::after {
    width: 100%; /* 鼠标悬停时下划线宽度变为 100% */
 }

/* 默认情况下图片大小 */
 .XWimg {
    transition: transform 0.3s ease-in-out; /* 使过渡效果更加平滑 */
}

/* 鼠标悬停时的效果 */
 .XWDTbox1 li:hover .XWimg {
    transform: scale(1.05); /* 放大 1.1 倍 */
}

 .XWDTbox1 li{

overflow: hidden;
}
