@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(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: 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: #0044a0;
}
.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-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-line1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -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: 1400px;
  margin: 0 auto;
}
/**页面全局宽度**/
.mod {
  padding: 0px;
}
/*head开始*/
#header {
  background: url(images/bgtop.png) center top no-repeat;
  background-size: cover;
}
.head-top {
  height: 159px;
}
.header .head-left {
  display: inline-block;
}
.header .sitelogo {
  float: left;
}
.header .sitelogo .logo {
  width: 590px;
  display: block;
}
header .sitelogo .logo img {
  display: block;
  width: 100%;
}
.header .head-right {
  font-size: 26px;
  color: #fff;
}
.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 {
  width: 285px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0px 0px 5px 0px rgba(203, 181, 182, 0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}
.wp-search form {
  width: 100%;
  display: flex;
  padding-left: 20px;
}
.wp-search .search-input {
  flex: 1;
  height: 44px;
  display: flex;
  align-items: center;
}
.wp-search .search-input input.search-title {
  width: 100%;
  height: 44px;
  border: none;
  outline: none;
  background: transparent;
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  padding: 0 1px;
  box-sizing: border-box;
}
.wp-search .search-input input.search-title::placeholder {
  letter-spacing: -0.3px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}
.wp-search .search-btn {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 10px;
  opacity: 0.87;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -1px;
  top: 0;
}
.wp-search .search-btn input.search-submit {
  width: 18px;
  height: 18px;
  border: none;
  outline: none;
  background: url(images/search.png) no-repeat center center;
  background-size: cover;
  cursor: pointer;
}
.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: rgba(255, 255, 255, 1);
}
.hr {
  margin-bottom: 10px;
  display: flex;
  gap: 25px;
}
.hr span a {
  font-family: Source Han Sans CN;
  font-size: 18px;
  color: #ffffff;
}
.hr-1,
.hr-2 {
  position: relative;
  padding-left: 30px;
}
.hr-1:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 18px;
  background: url(images/home.png) center no-repeat;
  background-size: cover;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.hr-2:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: url(images/international.png) center no-repeat;
  background-size: cover;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
}
.head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
/*默认主导航样式*/
.head-nav {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}
.nav {
  height: 70px;
}
.nav .wp-menu {
  height: 70px;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.nav .wp-menu .menu-item {
  padding-top: 5px;
  display: inline-block;
  position: relative;
  height: 70px;
  text-align: center;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 70px;
  line-height: 65px;
  padding: 0 12px;
  position: relative;
}
.nav .wp-menu .menu-item a.menu-link {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  -webkit-transition: all 0.3s;
}
.nav .wp-menu .menu-item:hover > a:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #ffffff;
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}
.nav .sub-menu {
  padding: 10px 0;
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 70px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: rgba(22, 95, 171, 0.8);
  box-shadow: 0px 1px 10px 0px rgba(0, 93, 190, 0.9);
  border-radius: 0px 0px 10px 10px;
}
.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
}
.nav .sub-menu .sub-menu {
  left: 100%;
  transform: translateX(0);
}
.nav .sub-menu .sub-item a {
  display: block;
  height: 55px;
  line-height: 55px;
  text-align: center;
  padding: 0 16px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
}
.nav .sub-menu .sub-item:hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #fff;
  background-color: #0e4ca1;
  display: block;
}

/* banner */
.mySwiperBanner {
  position: relative;
}
.wrapper.banner {
  width: 100%;
}
.mySwiperBanner {
  width: 100%;
  height: 400px;
  overflow: visible;
}
.mySwiperBanner .swiper-slide {
  width: 1400px !important;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.55;
}
.mySwiperBanner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mySwiperBanner .swiper-slide-active {
  opacity: 1;
  background: #104fa2;
  box-shadow: 0px 10px 40px 0px rgba(10, 50, 104, 0.5);
}
.mySwiperBanner .swiper-button-prev:after,
.mySwiperBanner .swiper-button-next:after {
  display: none;
}
.mySwiperBanner .swiper-button-prev,
.mySwiperBanner .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
}
.mySwiperBanner .swiper-button-prev {
  background: url(images/prev.png) no-repeat;
  left: calc((100% - 1400px) / 2 - 32px);
  background-size: cover;
}
.mySwiperBanner .swiper-button-next {
  right: calc((100% - 1400px) / 2 - 32px);
  background: url(images/next.png) no-repeat;
  background-size: cover;
}
.mySwiperBanner .swiper-button-prev:hover {
  background: url(images/prev_h.png) no-repeat;
  background-size: cover;
}
.mySwiperBanner .swiper-button-next:hover {
  background: url(images/next_h.png) no-repeat;
  background-size: cover;
}

.tbody {
  background: url(images/bg1.png) no-repeat;
  background-size: cover;
  padding: 60px 0px;
}
/* main1 */
.m1 {
  display: flex;
  gap: 44px;
}
.ml1 {
  width: 65.643%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 0px 20px 0px rgba(19, 94, 182, 0.1);
  flex-shrink: 0;
}
.mySwiper1 .swiper-slide a {
  display: block;
  padding: 0 0 30px 0px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.pic {
  width: 100%;
  height: 506px;
  overflow: hidden;
}
.pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.mySwiper1 .swiper-slide a:hover .pic img {
  transform: scale(1.1);
}
.mltxt {
  padding: 20px 15px;
  padding-bottom: 0px;
}
.time {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 20px;
}
.s1 {
  margin-top: 5px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 18px;
  color: #135eb6;
  line-height: 22px;
}
.xline {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin-top: 15px;
  position: relative;
}
.xline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0px;
  height: 1px;
  background: #135eb6;
  transition: width 0.5s;
}
.mySwiper1 .swiper-slide a:hover .xline:before {
  width: 100%;
}
.mySwiper1 .swiper-slide a:hover {
  background-color: #135eb6;
}
.mySwiper1 .swiper-slide a:hover .s1,
.mySwiper1 .swiper-slide a:hover .s2,
.mySwiper1 .swiper-slide a:hover .time {
  color: #fff;
}
.mySwiper1 .swiper-slide a:hover .time {
  opacity: 0.8;
}
.mySwiper1 .swiper-slide a:hover .s2 {
  opacity: 0.9;
}
.s2 {
  margin-top: 14px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 16px;
  color: #555555;
  line-height: 24px;
}
.mySwiper1 .swiper-button-prev:after,
.mySwiper1 .swiper-button-next:after {
  display: none;
}
.mySwiper1 .swiper-button-prev,
.mySwiper1 .swiper-button-next {
  top: 50%;
  transform: translateY(-100%);
  width: 50px;
  height: 49px;
}

.mySwiper1 .swiper-button-prev {
  background: url(images/prev1.png) no-repeat;
  background-size: cover;
  left: 31px;
  right: auto;
}
.mySwiper1 .swiper-button-next {
  background: url(images/next1.png) no-repeat;
  background-size: cover;
  right: 31px;
  left: auto;
}
.mySwiper1 .swiper-button-prev:hover {
  background: url(images/prev_h1.png) no-repeat;
  background-size: cover;
}
.mySwiper1 .swiper-button-next:hover {
  background: url(images/next_h1.png) no-repeat;
  background-size: cover;
}
.mySwiper1 .swiper-pagination{
  text-align: center;
  top: 70%;
  left: 0px;
  z-index: 10;
  height: 15px;
}
.mySwiper1 .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
}
.mySwiper1 .swiper-pagination .swiper-pagination-bullet-active { 
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:#135eb6;
  opacity: 1;
}
.mr1 {
  width: 31.214%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 0px 20px 0px rgba(19, 94, 182, 0.1);
  flex-shrink: 0;
  padding: 30px;
}
.tt {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5px;
  padding-left: 45px;
  position: relative;
}
.tt:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 27px;
  height: 33px;
  background: url(images/icon4.png);
  background-size: cover;
}

.title1 {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  align-items: flex-start;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  font-family: Source Han Serif CN;
  font-weight: 600;
  font-size: 30px;
  color: #135eb6;
  line-height: 35px;
  letter-spacing: 0.75px;
  transition: all 0.3s;
}
.title1 .mx {
  font-family: Source Han Serif CN;
  font-weight: 500;
  font-size: 18px;
  color: #909193;
  line-height: 30px;
}

.more {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  position: relative;
  line-height: 35px;
  padding-left: 25px;
}
.more:before {
  background: url(images/more.png) no-repeat;
  background-size: 100% 100%;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
/* 列表样式 */
.xybox1 {
  margin-top: 26px;
}
.xybox1 ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.time1 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.time1 .day {
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  color: #135eb6;
}
.time1 .month {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.75);
}
.xline2 {
  width: calc(100% - 100px);
  height: 1px;
  border: none;
  background-image: repeating-linear-gradient(
    to right,
    rgba(19, 94, 182, 0.2) 0px,
    rgba(19, 94, 182, 0.2) 7px,
    /* 线段长度增加到8px */ transparent 7px,
    transparent 12px /* 间隙增加到20px */
  );
  margin-bottom: 10px;
  padding-left: 5px;
  position: relative;
}
.xline2::before {
  content: "";
  position: absolute;
  background: #124997;
  width: 5px;
  height: 5px;
  left: -2.5px;
  top: -2.5px;
  border-radius: 50%;
  opacity: 0.45;
}
.xybox1 ul li .xline2:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 1px;
  left: 0;
  top: 0px;
  opacity: 1;
  background: #135eb6;
  transition: all 0.5s ease-in-out;
}
.s3 {
  margin-top: 10px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 18px;
  color: #272727;
  line-height: 30px;
  transition: all 0.3s ease-in-out;
}
.xybox1 ul li:hover .s3 {
  font-weight: bold;
  color: #135eb6;
}
.xybox1 ul li:hover .xline2:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: 0px;
  opacity: 1;
  background: #135eb6;
}
.xybox1 ul li:hover .xline2:before {
  opacity: 1;
}

/* m2 */
.m2 {
  margin-top: 45px;
  display: flex;
  gap: 45px;
}
.ml2,
.mm2,
.mr2,
.ml3 {
  width: calc(100% / 2 - 23px);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 0px 20px 0px rgba(19, 94, 182, 0.1);
  padding: 30px;
  padding-bottom: 41px;
}
.title2 {
  font-family: Source Han Serif CN;
  font-weight: 600;
  font-size: 30px;
  color: #135eb6;
  line-height: 35px;
}
.mx {
  font-family: Source Han Serif CN;
  font-weight: 500;
  font-size: 18px;
  color: #909193;
  line-height: 30px;
}
.mlist1 {
  margin-top: 26px;
  display: flex;
  gap: 15px;
  flex-direction: column;
}
.mlist1 li a {
  display: flex;
  gap: 17px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #e5e5e5;
  align-items: center;
}
.mlist1 li a:hover .time2 {
  background: rgba(19, 94, 182, 1);
}
.mlist1 li a:hover .time2 .day {
  color: #fff;
}
.mlist1 li a:hover .time2 .month {
  color: #fff;
  opacity: 0.75;
}
.time2 {
  /* margin-right: 10px; */
  text-align: center;
  position: relative;
  padding: 0 5px;
}
.time2 .day {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 28px;
  color: #135eb6;
}
.time2 .month {
  margin-top: 6px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 4px;
}
.time2:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  background: #e5e5e5;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.mlist1 li a:hover .time2:after {
  display: none;
}
.s5 {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  line-height: 26px;
}
.mlist1 li a:hover .s5 {
  color: #135eb6;
}

.mlist2 {
  margin-top: 26px;
  display: flex;
  gap: 17px;
  flex-direction: column;
}
.mlist2 li a {
  display: block;
  padding-left: 20px;
  text-align: left;
  position: relative;
  padding-bottom: 16px;
  border-bottom: 1px dashed #e5e5e5;
  transition: all 0.3s ease;
}
.mlist2 li a:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: transparent;
  border-radius: 50%;
  left: 0;
  top: 8px;
  border: 1px solid #135eb6;
  box-sizing: border-box;
}
.s6 {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  line-height: 22px;
}
.time3 {
  margin-top: 13px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
  transition: all 0.3s ease;
}
.mlist2 li a:hover .s6 {
  color: #135eb6;
}
.mlist2 li a:hover:before {
  background: #135eb6;
}
.mlist2 li a:hover:before {
  animation: spinAndPulse 2s infinite ease-in-out;
  transform-origin: center;
}
@keyframes spinAndPulse {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.5);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.mlist2 li a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px; /* 波浪线的高度 */
  background: repeating-linear-gradient(
    -45deg,
    #135eb6,
    #135eb6 5px,
    transparent 5px,
    transparent 10px
  );
  transform-origin: left;
  transition: width 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.mlist2 li a:hover {
  border-bottom: none;
}
.mlist2 li a:hover:after {
  width: 100%;
  transform: scaleX(1);
}
.mlist2 li a:hover .time3 {
  transform: translate(5px, 0px);
  -webkit-transform: translate(5px, 0px);
  -moz-transform: translate(5px, 0px);
  -ms-transform: translate(5px, 0px);
  -o-transform: translate(5px, 0px);
}
.mlist3 {
  margin-top: 26px;
  display: flex;
  /* gap: 15px; */
  flex-direction: column;
}
.mlist3 li {
  border-bottom: 1px dashed #ababab;
  padding-bottom: 9px;
  padding-top: 10px;
  padding-left: 20px;
  transition: 0.5s;
}
.mlist3 li a {
  /* display: block; */
  /* text-align: left; */
  position: relative;
  /* padding-bottom: 19px; */
  /* border-bottom: 1px dashed #e5e5e5; */
  display: flex;
  gap: 10px;
  flex-direction: column;
}
/* .mlist3 li a:hover{
  box-shadow: 0px 0px 20px 0px rgba(19,94,182,0.3);
  transform: translate(-10px ,-5px);
  padding-left: 20px;
  padding-top: 5px;
  width: calc(100% + 20px);
  height: calc(100% + 5px);
  background: rgba(19,94,182,0.1);;
} */
.time3 {
  font-family: "Mircrosoft YaHei";
  color: #0e4ba0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  position: relative;
  padding-left: 27px;
}
.time3:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: url("images/day.png");
  background-size: cover;
  left: 0;
  top: 0;
}
.s7 {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  line-height: 22px;
  margin-bottom: 7px;
}
.icon1 {
  display: block;
  min-width: 15px;
  height: 15px;
  background: url(images/icon5.png) center no-repeat;
  background-size: 100% 100%;
}
.icon2 {
  display: block;
  min-width: 15px;
  height: 15px;
  background: url(images/icon6.png) center no-repeat;
  background-size: 100% 100%;
}
.icon3 {
  display: block;
  min-width: 15px;
  height: 15px;
  background: url(images/icon7.png) center no-repeat;
  background-size: 100% 100%;
}
.s8 {
  margin-top: 9px;
  display: flex;
  gap: 5px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
}
.mlist3 li a:hover .s7 {
  color: #135eb6;
}
.mlist3 li a:hover .icon1,
.mlist3 li a:hover .icon2,
.mlist3 li a:hover .icon3 {
  animation: pulse 2s infinite ease-in-out;
  transform-origin: center; /* 缩放中心点 */
}
.mlist3 li:hover {
  background: #fff;
  box-shadow: 0 0 20px rgba(23, 90, 183, 0.25);
  margin-top: -2px;
  padding-top: 12px;
  border: none;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.m1 {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
}

.m3 {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 0px 20px 0px rgba(19, 94, 182, 0.1);
  padding: 30px;
}
.mcc {
  margin-left: 20px;
  font-family: Source Han Serif CN;
  font-weight: 500;
  font-size: 18px;
  color: #909193;
  line-height: 35px;
}
.mlist4 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
  gap: 25px 0px;
}
.mlist4 li {
  width: 25%;
}
.mlist4 li a {
  display: flex;
  gap: 8px;
  align-items: center;
}
.s9 {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  line-height: 23px;
}
.mlist4 li a:hover .s9 {
  color: #135eb6;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* 下载中心 */
.m421 {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.m421 li {
  padding: 25px 10px 16px 15px;
  border: 1px solid rgba(14, 75, 160, 0.15);
  position: relative;
}
.m42title {
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 26px;
  transition: 0.5s;
}
.m42time {
  background: #fff;
  width: 98px;
  height: 25px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -13px;
  z-index: 5;
  left: 11px;
  font-weight: bold;
  font-size: 14px;
  color: #0044a0;
  transition: 0.5s;
}
.m421 li:hover {
  background: #ffffff;
  box-shadow: 0px 0px 14px 2px rgba(23, 90, 183, 0.25);
}
.m421 li:hover .m42title {
  color: #0044a0;
}
.m421 li:hover .m42time {
  background: #135eb6;
  border: 1px solid #135eb6;
  color: #fff;
}

footer {
  background: url(images/footerbg.png) center no-repeat;
  padding-bottom: 51px;
  padding-top: 36px;
  background-size: cover;
}
.fl2 {
  display: none;
}
.f1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.text li {
  font-size: 16px;
  color: #ffffff;
  line-height: 37px;
  font-family: Source Han Sans CN;
}
.ewm {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 113px;
  height: 107px;
  background: #ffffff;
  border-radius: 10px;
}
.ewm img {
  width: 100%;
}
.ewm span {
  color: #fff;
  margin-top: 8px;
  font-size: 14px;
  font-family: Source Han Sans CN;
  font-weight: 500;
}
.flogo {
  /* padding-right: 91px; border-right: 1px solid #fff;  */
  margin-top: 30px;
  margin-bottom: 10px;
}
/**链接样式**/
.s10 {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.s10 > span {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 36px;
}
.mlink {
  width: 330px;
  height: 40px;
  box-shadow: 0px 0px 10px 0px rgba(229, 13, 13, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
}
.botlinks .links-wrap {
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 30px;
  background: transparent;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.botlinks .links-wrap a.links-arrow {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 38px 0 12px;
  color: #fff;
  font-size: 16px;
  position: relative;
}
.botlinks .links-wrap a.links-arrow:before {
  content: "";
  position: absolute;
  background: url(images/arrow.png) center center no-repeat;
  background-size: 100% 100%;
  width: 16px;
  height: 9px;
  right: 15px;
  top: 15px;
}
.botlinks .links-wrap a.links-arrow:hover,
.botlinks .wrap-open a.links-arrow {
  color: #fff;
  background-position: right top;
  cursor: pointer;
}
.botlinks .links-wrap .link-items {
  display: none;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 40px;
  height: auto;
  max-height: 300px;
  overflow: auto;
  overflow-x: auto;
  background: #f3eaea;
  border-radius: 4px;
}
.botlinks .links-wrap .link-items a {
  display: block;
  line-height: 24px;
  padding: 5px 10px;
  color: #444;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.botlinks .links-wrap .link-items a span {
  display: block;
  padding: 0 3px;
  white-space: nowrap;
}
.botlinks .links-wrap .link-items a:hover {
  color: #fff;
  cursor: pointer;
  background: #2a66be;
}

.link_list li {
  padding: 0px 12px;
}
.link_list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 3px 0px 20px 0px;
  border-radius: 10px;
  position: relative;
  transition: 0.5s;
  border-bottom: 1px solid #e0eaf7;
}
.icon4 {
  width: 49px;
  height: 49px;
  background: #135eb6;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s4 {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  line-height: 20px;
  transition: 0.5s;
}
.link_list li:hover .s4 {
  transform: translateY(-5px);
  color: #135eb6;
}
.link_list {
  position: fixed;
  top: 25%;
  right: 0px;
  z-index: 999;
  width: 148px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #ffffff;
  box-shadow: 0px 0px 15px 10px rgba(19, 94, 182, 0.15);
  border-radius: 0px 0px 5px 5px;
  padding-top: 20px;
  transform: translateX(-20px);
  transition: transform 0.4s ease-in-out;
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  -o-transform: translateX(-20px);
}
.link_list.active {
  transform: translateX(-20px);
}

.toggle-btn,
.overlay {
  display: none;
}

/**新闻列表**/

/***********************************************************
 * 列表页
 */

/**主体列表页开始**/
#l-container {
  background: #f8fafc;
}
#l-container .inner {
  padding: 25px 0px;
}
/**主体文章页开始**/
#d-container .inner {
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
/*主栏目名称*/
.col_menu {
  width: 250px;
  float: left;
  margin-right: -250px;
  position: relative; /* margin-top:-85px;  */
  box-sizing: border-box;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.col_menu .l-qh {
  margin-bottom: 10px;
}
.col_menu .col_menu_head {
  background: #135eb6;
  position: relative;
} /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name {
  height: 80px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
} /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 45px;
  padding: 0px 25px;
  width: 100%;
  text-align: center;
  position: relative;
} /**栏目名称图标**/
.col_menu .col_menu_con {
  background: #fff;
}

/*栏目列表*/
.col_list {
  min-height: 30px;
}
.col_list .wp_listcolumn {
  border-top: 0px solid #2867a0;
  border-bottom: 0px solid #fff;
}
.col_list .wp_listcolumn .wp_column a {
  text-decoration: none;
  color: #333;
  display: block;
  font-size: 15px;
  font-weight: normal;
  background: none;
  border-top: 0px solid #fff;
  border-bottom: 0px solid #f6eaea;
}
.col_list .wp_listcolumn .wp_column a .column-name {
  padding: 5px 0px 5px 15px;
  line-height: 32px;
}
.col_list .wp_listcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  color: #135eb6;
  position: relative;
  text-decoration: none;
}
.col_list .wp_listcolumn .wp_column a.selected span.column-name {
  color: #135eb6;
}
.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: #135eb6;
}
/*二级子栏目**/
.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: #135eb6;
}
/*三级子栏目**/
.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: #135eb6;
}

.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: 18px;
  font-weight: 600;
  text-align: center;
  position: relative;
}
.col_list .wp_listcolumn .wp_column a .column-name {
  display: block;
  padding: 12px 15px;
  line-height: 30px;
  text-align: center;
}
.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 table {
  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%;
  min-height: 400px;
  float: right;
} /**栏目新闻**/
.col_news .col_news_box {
  margin-left: 280px;
  min-height: 350px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 15px 30px;
  background: #fff;
}
.colum-box {
}

.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: 20px;
  font-weight: bold;
  color: #135eb6;
}
.col_metas .col_path {
  display: inline-block;
  float: right;
  white-space: nowrap;
  height: 46px;
  line-height: 46px;
  color: #666;
  font-size: 12px;
  padding-left: 25px;
  position: relative;
} /**当前位置**/
.col_metas .col_path:before {
  content: "";
  position: absolute;
  left: 0px;
  width: 18px;
  height: 18px;
  background: url(images/home.png) no-repeat;
  background-size: 18px 18px;
  top: 50%;
  margin-top: -9px;
}
.col_metas .col_path a {
  color: #2f2f2f;
}
.col_news_con {
  padding: 15px 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: 0 auto;
  margin-bottom: 4px;
}
.col_news_list .wp_entry img {
  margin: 0 auto;
  max-width: 940px;
  _width: expression(this.width > 940 ? "940px": this.width);
} /**列表页文章图片大小限制**/
.wp_paging {
  font-size: 14px;
  margin-top: 30px;
}
#wp_pager .pages {
  display: flex;
  min-height: auto;
  margin: 40px 0 20px;
  justify-content: center;
  align-items: center;
}
#wp_pager .pages li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 36px;
  overflow: hidden;
  padding: 0;
  margin: 0 4px;
  text-align: center;
  background-color: #f1f1f1;
  color: #333;
  border: 2px solid transparent;
  border-radius: 0;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
#wp_pager .pages li a.pgCurrent {
  font-weight: bold;
  background-color: #fff;
  color: #135eb6;
  border: 2px solid #135eb6;
}
#wp_pager .pages li a.pgNext {
  width: auto;
  padding: 0px 8px;
}
.col_news_list .news_list li.news {
  line-height: 50px;
  padding-left: 0px;
  font-size: 18px;
  position: relative;
} /**标题图标**/
.col_news_list .news_list li.news .news_title {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s ease-in-out;
  font-weight: bold;
} /*标题*/
.col_news_list .news_list li.news .news_title img {
  vertical-align: middle;
}
.col_news_list .news_list li.news .news_meta {
  padding-left: 20px;
  position: relative;
  line-height: 20px;
  color: #777;
  font-family: "Arial";
  font-style: italic;
  font-size: 14px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
} /*属性*/
.col_news_list .news_list li.news:hover .news_title {
  color: #1d3e87;
  transform: translateX(15px);
}
.line11 {
  width: calc(100% - 110px);
  height: 1px;
  background-color: #ccc;
  display: block;
  transition: all 0.7s ease-in-out;
  position: relative;
}
.line11:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #1d3e87;
  left: 0;
  transition: all 0.7s ease-in-out;
  top: 0px;
}
.col_news_list .news_list li.news:hover .line11 {
  width: 80px;
}
.col_news_list .news_list li.news:hover .line11:before {
  width: 100%;
}
.col_news_list .news_list li.news .news_meta:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  background: url(images/time.png);
  background-size: cover;
}
.col_news_list .news_list li.news:hover .news_meta {
  color: #1d3e87;
}
.col_news_list .news_list li.news_news {
  padding-left: 20px;
  position: relative;
}

/**文章页**/
.infobox {
  padding: 20px 60px;
  margin: 0 auto;
  width: auto;
  min-height: 500px;
}
.article {
  padding-top: 10px;
}
.article h1.arti_title {
  line-height: 36px;
  font-family: "Microsoft YaHei";
  font-size: 22px;
  text-align: center;
  color: #0044a0;
} /**文章标题**/
.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;
}

.newspic {
  width: 100%;
  height: 293px;
}
.n1 .n22 {
  margin-top: 15px;
}
.n3 .n22 {
  margin-top: 15px;
}
.list_news li {
  margin-top: 20px;
  margin-bottom: 20px;
}

.sub-menu .sub-menu {
  left: 100%;
  top: 0px;
  z-index: 200;
}

/***********************************************************
 * 列表页
 */
/*栏目图片*/
.l-banner {
  background-position: center top;
  background-repeat: no-repeat;
  text-align: center;
}
.l-banner img {
  vertical-align: top;
}
.l-banner img {
  width: 100%;
  height: 100%;
  display: none;
}
.column-banner {
  position: relative;
  width: 100%;
  height: 350px;
  background-image: url(images/banner.png);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.column-banner .inner {
  position: relative;
  z-index: 1;
  height: 100%;
}
.column-banner .tit_bt {
  position: absolute;
  left: 20px;
  bottom: 100px;
  color: #fff;
}
.column-banner .tit1 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 600;
}
.column-banner .tit2 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  margin-top: 28px;
}
.column-banner .overlay {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.img2 {
  height: 356px;
}


/* 领导页面 */
.leader-list {
  margin-top: 16px;
  margin-bottom: 113px;
}
.leader-list li {
  margin-bottom: 24px;
}
.leader-list li a {
  display: block;
  padding: 15px 18px 16px 18px;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  background: #FFFFFF;
  /* background: url(images/ld_bj.png) no-repeat;
  background-size: 100% 100%; */
}
.leader-pic {
  max-width: 100px;
  height: auto;
  max-height: 125px;
  float: left;
  overflow: hidden;
}
.leader-pic img {
  width: 100%;
  object-fit: cover;
}
.leader-content {
  margin-left: 126px;
}
.leader-content h5 {
  margin-top: 11px;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  /* color: #FFFFFF; */
  line-height: 36px;
}
.leader-content span {
  font-size: 18px;
  display: block;
  font-weight: 600;
  color: #135eb6;
  /* color: #FFFFFF; */
  line-height: 32px;
}
.leader-content p {
  font-size: 16px;
  position: relative;
  font-weight: 400;
  color: #5F5F5F;
  /* color: #FFFFFF; */
  padding-left: 15px;
  line-height: 30px;
}
.leader-content p:before {
  content: '';
  width: 4px;
  height: 4px;
  background: #135eb6;
  /* background: #FFFFFF; */
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.leader-list li:hover a {
  background: url(images/ld_bj.png) no-repeat;
  background-size: 100% 100%;
 box-shadow: 0 0 20px rgba(0,0,0,0.3);
  transform:scale(1.015);
  -webkit-transform:scale(1.015);
  -moz-transform:scale(1.015);
  -ms-transform:scale(1.015);
  -o-transform:scale(1.015);
}
.leader-list li:hover .leader-content h5 ,
.leader-list li:hover .leader-content span ,
.leader-list li:hover .leader-content p{ 
  color: #FFFFFF;
}
.leader-list li:hover .leader-content p:before { 
  background: #FFFFFF;
}


.ttr:hover,
.ttr:hover td{
  background: rgb(0, 156, 224) !important;
}
.ttr:hover p,
.ttr:hover span{ 
  color: #fff !important;
  transform: translate(-3px, -2px);
}