@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,
button,
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(images2/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: Bahnschrift, Helvetica Neue, PingFang SC, Hiragino Sans GB,
    Heiti SC, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
  color: #333;
}
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;
}
@font-face {
  font-family: Montserrat Medium; //自定义字体名称
  src: url("Montserrat-Medium-7.otf"); //字体包路径
  font-weight: normal;
  font-style: normal;
}
.DX {
  text-transform: uppercase;
}
/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 686px;
  margin: 0 auto;
} /**页面全局宽度**/
.mod {
  padding: 0px;
}
.main {
  width: 750px;
  margin: 0 auto;
  position: relative;
}
.header {
  width: 100%;
  height: 870px;
  background: url(images2/banner_2.png) no-repeat;
}
.navi-aside-toggle,
.navi-aside-search {
  display: block;
}
.sitelogo {
  padding-top: 20px;
  padding-bottom: 30px;
  padding-left: 40px;
}

.overlay {
  height: 0%;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: #005ea1;
  box-shadow: 0px 4px 20px 0px rgba(0, 20, 34, 0.3);
  overflow-y: hidden;
  transition: 0.5s;
  margin-top: 113px;
z-index:999;
}

.overlay-content {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 60px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  display: block;
  transition: 0.3s;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 32px;
  color: #ffffff;
  line-height: 45px;
  text-align: left;
  font-style: normal;
}

.overlay a:hover,
.overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 13px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay {
    overflow-y: auto;
  }
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
.h1 {
  display: flex;
  border-bottom: 1px solid #fff;
  justify-content: space-between;
  align-items: center;
  padding-right: 30px;
}
/* 导航样式 */
.wp-menu {
  padding-left: 30px;
  padding-right: 30px;
}
.wp-menu li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}
/* main0 */
.main0 {
  position: absolute;
  bottom: 0;
  z-index: 999;
}
.news {
  width: 100%;
  height: 494px;
  background: #fff;
}
.m0title {
  background: #fab042;
  display: flex;
  align-items: center;
}
.title1 {
  width: 80px;
  height: 494px;
  background: #fab042;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 32px;
  color: #ffffff;
  line-height: 34px;
  text-align: center;
  font-style: normal;
  text-transform: uppercase;
}
.newslist {
  width: 100%;
  display: flex;
  align-items: center;
  padding-right: 35px;
  flex-direction: column;
justify-content: center;
padding-top:30px;
}
.newslist li {
  width: 100%;
  transition: 0.5s;
}
.newslist li a {
  display: flex;
  justify-content: space-between;
}
.newslist2 {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
margin-top:48px;
}
.newslist2 li {
  width: 100%;

  margin-bottom: 30px;
  transition: 0.5s;
height:84px;

}
.newslist2 li a {
  display: flex;
  justify-content: space-between;
}
.newslist2 .news_date {
 width: 94px;
height: 80px;
}
.news_date {
  width: 17%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 1px solid rgba(34, 51, 65, 0.11);
  padding-top:15px;
  padding-bottom: 15px;
  padding-left: 7px;
  padding-right: 7px;
}
.day {
  font-weight: 600;
  font-size: 30px;
  color: rgba(34, 51, 65, 0.64);
  line-height:  37px;
  text-align: center;
  font-style: normal;
  transition: 0.5s;
}
.year {
  font-size: 20px;
  color: rgba(34, 51, 65, 0.64);
  line-height: 16px;
  text-align: center;
  font-style: normal;
  transition: 0.5s;
}
.news .newslist li{
margin-bottom:  30px;
}
.info {
  width: 82%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newstitle {
  font-family: PingFangSC, PingFang SC;
font-weight: 400;
font-size: 28px;
color: #222A41;
line-height: 40px;
text-align: justify;
font-style: normal;
text-transform: none;
}
.newsmore {
  font-family: PingFang-SC, PingFang-SC;
  /* font-weight: 300; */
  font-size: 12px;
  color: rgba(34, 51, 65, 0.64);
  line-height: 24px;
  text-align: justify;
  font-style: normal;
  text-transform: none;
}
.XINXI {
  position: absolute;
  bottom: 0;
  left: 30px;
}
.ZSmore1 {
  position: absolute;
  right: 0;
  top: -20px;
}

.ZSMORE a {
  width: 118px;
  height: 56px;
  background: url(images2/btn_more_blue.png);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.ZSMORE a:hover {
  background: url(images2/btn_more_yell.png);
}
.main1 {
  width: 750px;
  height: 262px;
  background: #005ea1;
  border-top: 6px solid #fab042;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
}
.header {
  position: relative;
}
.m1title {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 28px;
  color: #ffffff;
  line-height: 33px;
  text-align: center;
  font-style: normal;
}
.main1 li {
  display: flex;
  align-items: center;
  padding-left: 43px;
  height: 100%;
  padding-right: 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.main1 .swiper {
overflow: hidden;
  width: 100%;
  height: 100%;
}
.main1 .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main1 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  display: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  display: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  width: 24px !important;
  height: 8px !important;
  background: #005ea1 !important;
  border-radius: 4px !important;
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  -ms-border-radius: 4px !important;
  -o-border-radius: 4px !important;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -22px !important;
}

/* main2 */
.main2 {
  padding-top: 70px;
  padding-bottom: 70px;
}
.ZS {
  width: 100%;
}
.ZSTitle {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
align-items: flex-end;
}
.ZST1 {
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 32px;
  color: #222a41;
  line-height: 32px;
  text-align: left;
  font-style: normal;
}
.ZST2 {
  font-weight: 600;
  font-size: 40px;
  color: #222a41;
  line-height: 24px;
  text-align: left;
  font-style: normal;
  margin-top: 40px;
}
.m2 {
  display: flex;
  justify-content: space-between;
}
.ZSSP {
  width: 100%;
  height: 530px;
  position: relative;
}
.SP img {
  width: 100%;
  height: 434px;
}
.SPbox {
  width: 100%;
  height: 60px;
  background: #ffffff;
  border-radius: 2px;
  border: 1px solid rgba(34, 51, 65, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
  color: #222a41;
  line-height: 32px;
  text-align: center;
  font-style: normal;
  text-transform: uppercase;
}
.BF {
  position: absolute;
  width: 88px;
  height: 88px;
  z-index: 99;
  top: 36%;
  left: 47%;
  background: url(images2/inf_icon_play.png);
  transition: 0.5s;
}
.m3 {
  display: flex;
  justify-content: space-between;
}
.m3 li {
  width: 328px;
  height: 280px;
  margin-bottom: 100px;
}
.m3 li img {
  width: 100%;
  height: 280px;
}
.ZYbox {
  width: 100%;
  height: 88px;
  background: #ffffff;
  border-radius: 2px;
  border: 1px solid rgba(34, 51, 65, 0.11);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 32px;
  color: #222a41;
  line-height: 36px;
  text-align: center;
  font-style: normal;
}
.m41 li {
  width: 100%;
  height: 568px;
  margin-bottom: 40px;
}
.m41 li img {
  height: 480px;
  width: 100%;
}
.m42 li {
  height: 384px;
  margin-bottom: 40px;
}
.m42 li img {
  height: 296px;
  width: 100%;
}
.m43 li {
  width: 328px;
  height: 328px;
}
.m43 li img {
  width: 100%;
  height: 240px;
}
.main4 {
  padding-bottom: 90px;
}
footer {
  height: 1106px;
  background: url(images2/footer-bg.png) no-repeat;
}
.f1 {
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
}
.f1 li a {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 28px;
  color: #ffffff;
  line-height: 40px;
  text-align: left;
  font-style: normal;
}
.f1 li a:hover {
  color: #fab042;
}
.f2 {
  margin-top: 44px;
}
.f2 li {
  font-family: PingFang-SC, PingFang-SC;
  font-weight: 400;
  font-size: 28px;
  color: rgba(225, 235, 248, 0.8);
  line-height: 56px;
  text-align: left;
  font-style: normal;
}
.f3 {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
}
.f3 li {
  display: flex;
  width: 45%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
.f31 {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 28px;
  color: #ebf4ff;
  line-height: 32px;
  text-align: center;
  font-style: normal;
  margin-top: 22px;
}
.f3 li img {
  width: 180px;
  height: 180px;
}
.FF {
  width: 750px;
  height: 110px;
  background: #005ea1;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 25px;
  color: rgba(185, 218, 242, 0.9);
  line-height: 36px;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
}

/**列表页**/
/*栏目图片*/

.wp-inner {
  min-height: 200px;
  background: url(images2/banner.png) center no-repeat;
}
.l-banner {
  height: 320px;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}
.l-banner img {
  display: none;
  vertical-align: top;
  height: 100%;
}
#container-1 {
}

/**主体列表页开始**/
#l-container {
  background: rgba(0, 94, 161, 1);
}

.col_menu {
  width: 240px;
  float: left;
  margin-right: -240px;
  position: relative;
  box-shadow: 0px 0px 10px 0px rgba(9, 9, 9, 0.15);
}
.col_menu .l-qh {
}
/**位置栏目背景**/
.col_menu .col_menu_head h3.col_name {
  height: 60px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding: 0 20px;
} /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 65px;
  text-align: center;
} /**栏目名称图标**/
.col_menu .col_menu_con {
  border: 0;
  background: #fff;
  padding: 0;
  box-sizing: border-box;
}

/*栏目列表*/
.col_list {
  min-height: 60px;
}
.col_list .wp_listcolumn {
  border: 0px;
}
.col_list .wp_listcolumn .wp_column a {
  background-image: none;
  display: block;
  box-sizing: border-box;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  position: relative;
}
.col_list .wp_listcolumn .wp_column a .column-name {
  display: inline-block;
  padding: 12px 0px;
  line-height: 30px;
}

.col_list .wp_listcolumn .wp_column a.col_item_link i {
  position: absolute;
  content: "";
  right: 48px;
  top: 50%;
  margin-top: -7px;
  width: 8px;
  height: 14px;
  display: none;
}
.col_list .wp_listcolumn .wp_column a.col_item_link:hover i,
.col_list .wp_listcolumn .wp_column a.col_item_link.selected i,
.col_list .wp_listcolumn .wp_column a.col_item_link.parent i {
  display: block;
}
.col_list .wp_listcolumn .sub_list .wp_column a {
  color: #454545;
  background: none;
  border-bottom: 1px solid #bbb;
}

/*二级子栏目**/
.col_list .wp_listcolumn .sub_list a {
  font-weight: normal;
  font-size: 16px;
  color: #333;
}
.col_list .wp_listcolumn .sub_list a .column-name {
  display: inline-block;
  line-height: 30px;
  padding: 10px 0;
  cursor: pointer;
}
.col_list .wp_listcolumn .sub_list a:hover {
  background: #f6f6f6;
}
.col_list .wp_listcolumn .sub_list a.selected {
  background: #f6f6f6;
  font-weight: 600;
}
.col_list .wp_listcolumn .sub_list a:hover span.column-name,
.col_list .wp_listcolumn .sub_list a.selected span.column-name {
  color: #000;
}

/*三级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a {
  background: none;
}
.col_list .wp_listcolumn .sub_list .sub_list a .column-name {
  padding: 5px 10px 5px 20px;
  cursor: pointer;
  font-size: 14px;
  position: relative;
}
.col_list .wp_listcolumn .sub_list .sub_list a .column-name:before {
  position: absolute;
  content: "";
  left: 2px;
  top: 50%;
  margin-top: -2px;
  width: 4px;
  height: 4px;
  background: #bbb;
}
.col_list .wp_listcolumn .sub_list .sub_list a:hover,
.col_list .wp_listcolumn .sub_list .sub_list a.selected {
  font-weight: 400;
  color: #237b36;
}
.col_list .wp_listcolumn .sub_list .sub_list a:hover .column-name:before,
.col_list .wp_listcolumn .sub_list .sub_list a.selected .column-name:before {
  background: #f6f6f6;
}

/**栏目新闻**/
.col_news {
  width: 100%;
  float: right;
}
.col_news .col_news_box {
  margin-left: 280px;
  background: #fff;
  min-height: 500px;
  box-sizing: border-box;
  padding: 10px 30px 40px;
  box-shadow: 0px 0px 10px 0px rgba(9, 9, 9, 0.15);
}
.col_news_head {
  border-bottom: 1px solid #e0e0e0;
}
.col_metas .col_title {
  display: inline-block;
  float: left;
  height: 64px;
  line-height: 64px;
}
/**当前栏目**/


.col_news_con {
  padding: 0;
  margin: 0;
}
.col_news_list {
  margin-top: 7px;
}
.col_news_list .news_list li.news {
  border-bottom: 1px solid #e0e0e0;
}
.col_news_list .news_list li.news .title {
  display: block;
  width: 70%;
  font-size: 16px;
  font-weight: 600;
  line-height: 54px;
}
.col_news_list .news_list li.news .news_meta {
  height: 54px;
  line-height: 54px;
  font-size: 14px;
  color: #999;
}

.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 .wp_entry,
.col_news_list .wp_entry table {
  margin: 0 auto;
}

/** 分页栏 **/
.col_news_con .pages {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-family: "Microsoft Yahei", Verdana, Geneva, sans-serif;
  color: #494949;
  text-align: center;
  padding-top: 30px;
}
.col_news_con .pages li {
  float: none;
  display: inline-block;
  margin: 0 10px;
}
.col_news_con .pages li a {
  font-size: 16px;
}
.col_news_con .pages li a.pgNext {
  color: #237b36;
}
.col_news_con .pages li a.page-number {
  display: inline-block;
  border: 1px solid #237b36;
  width: 34px;
  height: 34px;
  border-radius: 2px;
  line-height: 34px;
  color: #237b36;
}
.col_news_con .pages li a.page-number:hover,
.col_news_con .pages li a.pgCurrent {
  border: 1px solid #237b36;
  background: #237b36;
  color: #fff;
}

.news_list2 li a {
  display: flex;
  justify-content: space-between;
}

/* 师资列表页 */
.news_list3 {
  display: flex;
  justify-content: space-between;
}
.news_list3 li {
  width: 30%;
  height: 196px;
  border-bottom: none;
  border: none;
  margin-bottom: 30px;
}

.news_list3 li a .ZSTOUXIANG img {
  width: 100%;
}
.col_news_list .news_list3 li.news {
  border-bottom: none;
}
.TXname {
  font-weight: bold;
  font-size: 14px;
  color: #333333;
  line-height: 24px;
}
/* 图片列表页 */
.news_list4 {
  display: flex;
  justify-content: space-between;
}
.news_list4 li {
  width: 30%;
  height: 206px;
  border-bottom: none;
  border: none;
  margin-bottom: 30px;
}

.news_list4 li a .ZSTOUXIANG img {
  width: 100%;
}
.col_news_list .news_list3 li.news {
  border-bottom: none;
}
.TXname {
  font-weight: bold;
  font-size: 14px;
  color: #333333;
  line-height: 24px;
}
/*内页*/
#l-container .inner,
#d-container .inner {
  padding: 0px 0px;
}
#l-container.wrapper .inner .mod,
#d-container.wrapper .inner .mod {
  padding: 0;
}

.column-switch {
  display: block;
}

.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 65px;
  padding: 0px 5px 0px 12px;
  font-size: 17px;
} /**栏目名称图标**/
.col_menu {
  width: 100%;
  float: none;
  margin-right: 0px;
  position: relative;
}
.col_menu .col_menu_con {
  display: none;
  border: 0px solid #e4e4e4;
}
.col_metas .col_title h2 {
  font-size: 18px;
} /**当前栏目名称**/

.col_news {
  width: 100%;
  min-height: 0px;
  float: none;
} /**栏目新闻**/
.col_news .col_news_box {
  margin-left: 10px;
  margin-right: 10px;
}
.col_news_con {
  padding: 5px 0px 10px 0px;
  margin: 0 0px;
}
.col_news_con .news_list li.news {
  line-height: 24px;
  padding: 4px 0px;
}
.col_news_con .news_list li.news span.news_title {
  line-height: 24px;
  margin-right: 0px;
} /*标题*/
.col_news_con .news_list li.news span.news_meta {
  margin-left: 0px;
} /*属性*/

.wp_paging li.pages_count,
.wp_paging li.page_jump {
  display: none;
}

.infobox {
  width: auto;
  padding: 0px;
  margin: 0 10px;
}

.col_news_list .wp_entry img,
.article .entry .read img {
  max-width: 100%;
  height: auto !important;
  width: 100%;
} /**文章阅读部分图片大小限制**/

/*图列表*/
.news_tu .news_list li.news {
  width: 50%;
}
/*组织机构*/
.inss .part_xy .sub-list .sub-item {
  width: 50%;
}

/**列表页文章图片大小限制**/
/**文章页**/
.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;
}
.news .newslist li{
width: 538px;
height: 80px;
}
.newss  .news_title{
font-family: PingFangSC, PingFang SC;
font-weight: 400;
font-size:  16px;
color: #333;
line-height: 45px;
text-align: left;
font-style: normal;
}

.MsoNormalTable {
width:100% !important;
}