@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;
}
.text-line4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 1300px;
  margin: 0 auto;
}
.banner {
  position: relative;
}
header {
  background: #fff;
  background-size: cover;
  padding-top: 17px;
  padding-bottom: 37px;
  position: relative;
}
/* 搜索 */
/**搜索**/
.wp_search {
  display: inline-block;
  position: relative;
  padding-left: 12px;
  filter: Alpha(opacity=30);
  border-radius: 18px;
}
.wp_search #keyword {
  width: 177px !important;
  padding: 4px 0;
  border: none;
  height: 28px;
  line-height: 28px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-family: "Microsoft YaHei";
}
.wp_search .search {
  width: 32px;
  height: 32px;
  border: 0px;
  background: url(images/sous.png) no-repeat center;
  cursor: pointer;
  vertical-align: top;
}
/***自定义搜索*/
.wp-search {
  border: 0px;
  border-radius: 18px;
  width: 250px;
  height: 40px;
  position: relative;
  border-radius: 20px;
  border: 1px solid #7198be;
}
.wp-search form {
  display: block;
  padding-right: 34px;
}
.wp-search .search-input {
  margin-right: 0;
  height: 40px;
  position: relative;
}
.wp-search .search-input input.search-title {
  width: 150px;
  box-sizing: border-box;
  padding: 0px 15px;
  line-height: 35px;
  font-family: Microsoft YaHei;
  font-weight: 300;
  font-size: 15px;
  color: #8d8d8d;
  border: 0;
  outline: 0;
  background: none;
  border-radius: 20px;
}
.wp-search .search-btn {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 10px;
  top: 0;
}

.wp-search .search-btn input.search-submit {
  width: 35px;
  height: 35px;
  border: 0;
  outline: 0;
  border-radius: 4px;
  background: url(images/btn_top_search.png) no-repeat center;
  background-size: 20px 20px;
  cursor: pointer;
}
.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff;
}
.headertop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* 导航 */
/*默认主导航样式*/
.nav {
  height: 60px;
  background: #0b5aa8;
  border-radius: 2px;
}

#nav .inner {
}
#nav .inner .wp-panel {
  height: 60px;
}
#nav .inner .wp-panel .wp-window {
}
#nav .inner .wp-panel .navbg {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  background: #fff;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
/*导航样式：后台绑定时也可以定义配置*/
.nav .wp-menu {
  position: relative;
  margin: 0 auto;
  font-size: 0;
  display: flex;
  justify-content: space-around;
}
.nav .wp-menu .menu-item {
  display: inline-block;
  float: left;
  position: relative;
  /* width: 12%; */
  text-align: center;
}
.nav .wp-menu .menu-item:last-child {
  margin-right: 0;
}
.nav .wp-menu .menu-item.i1 {
  background: none;
}

.nav .wp-menu .menu-item a.menu-link {
  display: inline-block;
  padding: 0 22px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 22px;
  color: #ffffff;
  line-height: 60px;
}

.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 60px;
  z-index: 100;
  background: rgba(0, 66, 131, 1);

  min-width: 100%;
}
.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
}
.nav .sub-menu .sub-item a {
  display: block;
  color: #fff;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  font-size: 16px;
  text-align: center;
}
.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #fff;
  font-weight: 600;
  display: block;
}
.nav .sub-menu .sub-menu {
  left: 100%;
  top: 0px;
  z-index: 200;
 display:none!important;
}
.nav .sub-menu:hover      .sub-menu{
 display: block !important;
 left: 100%;
  top: 0px;
  z-index: 200;
}
.mySwiperbanner .swiper-slide img {
  width: 100%;
}
.mySwiperbanner .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background: rgba(113, 173, 232, 0);
  border-radius: 50%;
  border: 2px solid #ffffff;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 1.2);
}
.mySwiperbanner .swiper-pagination-bullet-active {
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 50%;
  border: 2px solid #ffffff;
}
.s1 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 36px;
  color: #0b5aa8;
  line-height: 24px;
}
.more {
  background: rgba(11, 90, 168, 0);
  border-radius: 4px;
  border: 2px solid #c0c0c0;
  width: 170px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main1 {
  padding-top: 60px;
  padding-bottom: 80px;
}
.s2 {
  font-family: Microsoft YaHei;
  font-weight: 300;
  font-size: 16px;
  color: #636363;
  line-height: 20px;
}
.newsimg1 img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.Titleall {
  margin-bottom: 45px;
}
.newsday {
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: #0b5aa8;
  line-height: 20px;
}
.newsyear {
  font-family: Arial;
  font-weight: 400;
  font-size: 34px;
  color: #0b5aa8;
  line-height: 20px;
  -webkit-transition: 0.3s all ease;
  margin-bottom: 15px;
}
.newsdate {
  position: relative;
  padding: 17px;
  border-top: 6px solid #0b5aa8;
  width: 100px;
  background: #ffffff;
  box-shadow: 4px 4px 10px 0px rgba(11, 90, 168, 0.2);
  border-radius: 2px;
  top: -30px;
  left: 20px;
  -webkit-transition: 0.3s all ease;
}
.newsbox1 {
  width: 49%;
}
.newsbox1 li {
  position: relative;
}
.morenews {
  position: absolute;
  right: 0;
  top: 78%;
}
.s3 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #636363;
  line-height: 28px;
}
.s4 {
  font-family: Microsoft YaHei;
  font-weight: 600;
  font-size: 18px;
  color: #1f1f1f;
  line-height: 30px;
  -webkit-transition: 0.3s all ease;
}
.s5 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #888888;
  line-height: 28px;
}
.newboxall {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.newsbox2 {
  width: 49%;
}
.newsbox2 li {
  position: relative;
  margin-bottom: 40px;
}
.newsbox2 li:last-child {
  margin-bottom: 0;
}
.newsimg2 img {
  width: 240px;
  height: 180px;
  object-fit: cover;
}
.newsdate2 {
  position: absolute;
  padding: 5px;
  padding-top: 18px;
  padding-bottom: 10px;
  border-top: 6px solid #0b5aa8;
  width: 80px;
  background: #ffffff;
  box-shadow: 4px 4px 10px 0px rgba(11, 90, 168, 0.2);
  border-radius: 2px;
  top: 106px;
  left: 200px;
  z-index: 999;
}
.newsbox2 li a {
  display: flex;
  justify-content: space-between;
}
.news2box {
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.main2 {
  background: url(images/bj_notice.jpg) no-repeat;
  background-size: cover;
  padding-top: 36px;
  padding-bottom: 105px;
}
.TZGGbox li {
  width: 49%;
  border-top: 6px solid #0b5aa8;
  padding: 30px;
  background: #ffffff;
  box-shadow: 4px 4px 10px 0px rgba(11, 90, 168, 0.2);
  border-radius: 2px;
  margin-bottom: 30px;
  -webkit-transition: 0.3s all ease;
  position: relative;
}
.TZGGbox li a {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
}
.TZdate {
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid rgba(192, 192, 192, 1);
  margin-right: 20px;
}
.TZGGbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.TZGGbox li:hover {
  background: #0b5aa8;
  -webkit-transition: 0.3s all ease;
}
.TZGGbox li:hover::before {
  position: absolute;
  content: "";
  height: 122px;
  width: 27%;
  background: url(images/bj_notice_h.png) no-repeat;
  right: 0;
  top: 0;
}
.TZGGbox li:hover .newsyear,
.TZGGbox li:hover .s4 {
  color: #fff;
}
.main3 {
  background: url(images/bj_research.jpg) no-repeat;
  background-size: cover;
  padding-top: 36px;
  padding-bottom: 105px;
}
.mySwiperYJJZ .YZimg {
  width: 100%;
  height: 315px;
}
.mySwiperYJJZ .YZimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.YZtext {
  padding: 30px;
  background: #fff;
  position: relative;
}
.YZtext::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 28px;
  top: -28px;
  left: 0;
  z-index: 9999;
  background: url(images/arc_research_left.png) no-repeat;
}
.YZtext::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 28px;
  top: -28px;
  right: 0;
  z-index: 9999;
  background: url(images/arc_research_right.png) no-repeat;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.YYJZswiper {
  position: relative;
}
.YYJZswiper .swiper-button-prev {
  position: absolute;
  width: 95px;
  height: 94px;
  background: url(images/btn_research_toggleleft.png) no-repeat;
  background-size: cover;
  -webkit-transition: 0.3s all ease;
  left: -10%;
}
.YYJZswiper .swiper-button-next {
  position: absolute;
  width: 95px;
  height: 94px;
  background: url(images/btn_research_toggleright.png) no-repeat;
  background-size: cover;
  -webkit-transition: 0.3s all ease;
  right: -10%;
}
.YYJZswiper .swiper-button-prev:hover {
  position: absolute;
  width: 95px;
  height: 94px;
  background: url(images/btn_research_toggleleft_h.png) no-repeat;
  background-size: cover;
  left: -10%;
}
.YYJZswiper .swiper-button-next:hover {
  position: absolute;
  width: 95px;
  height: 94px;
  background: url(images/btn_research_toggleright_h.png) no-repeat;
  background-size: cover;
  right: -10%;
}
.YZmore {
  width: 90px;
  height: 34px;
  background: rgba(11, 90, 168, 0) url(images/btn_viewall.png) left no-repeat;
  padding-left: 30px;
  border-radius: 2px;
  border: 1px solid #c0c0c0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position-x: 10px;
  -webkit-transition: 0.3s all ease;
}
.mySwiperYJJZ .swiper-slide {
  -webkit-transition: 0.3s all ease;
}
.mySwiperYJJZ .swiper-slide:hover .YZmore {
  border: 1px solid #0b5aa8;
  background: rgba(11, 90, 168, 0) url(images/btn_news01_view.png) left
    no-repeat;
  background-position-x: 10px;
}
.mySwiperYJJZ .swiper-slide:hover .s3 {
  color: #0b5aa8;
}
.YZimg {
  position: relative;
  overflow: hidden;
}

.YZimg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 90, 168, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
.YZimg::after {
  content: "";
  position: absolute;
  top: 50%; /* 使其垂直居中 */
  left: 50%; /* 使其水平居中 */
  width: 167px;
  height: 67px;
  background: url(images/icon_research_view_h.png) no-repeat;
  background-size: contain; /* 确保图标自适应大小 */
  opacity: 0;
  transform: translate(-50%, -50%); /* 使用 transform 使其准确居中 */
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.mySwiperYJJZ .swiper-slide:hover .YZimg::before {
  opacity: 1; /* Hover 时显示蓝色覆盖层 */
}
.mySwiperYJJZ .swiper-slide:hover .YZimg::after {
  opacity: 1; /* Hover 时显示蓝色覆盖层 */
}
.mySwiperYJJZ .swiper-slide:hover .YZimg img {
  transform: scale(1.1);
}
.main4 {
  background: url(images/bj_demeanour.jpg) no-repeat;
  background-size: cover;
  padding-top: 36px;
  padding-bottom: 48px;
}

.flash4 {
  width: 100%;
  height: 450px;
  margin: 0px auto;
  margin-bottom: 20px;
  position: relative;
}
.flash4 ul li {
  width: 220px;
  height: 450px;
  border-left: 1px solid rgba(233, 233, 233, 1);
  position: relative;
  overflow: hidden;
  float: left;
}
.flash4 ul li .imgTop img {
  object-fit: cover;
}
.flash4 ul li .imgTop img.tm {
  opacity: 1;
}

.flash4 ul li .imgCon {
  width: 538px;
  height: 405px;
}
.flash4 ul li .imgCen {
  width: 538px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 20px;
  line-height: 50px;
  position: absolute;
  left: 0px;
  bottom: 45px;
  text-indent: 20px;
  display: none;
}
.flash4 ul li .imgBot {
  width: 100%;
  padding-top: 15px;
}
.flash4 ul li .imgBot div.bt_1 {
  width: 100%;
  font-family: Microsoft YaHei;
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  line-height: 30px;
}
.flash4 ul li .imgBot div.bt_2 {
  width: 10%;
  height: 45px;
  font-family: Microsoft YaHei;
  font-weight: 300;
  font-size: 14px;
  color: #636363;
  line-height: 20px;
}
.flash4 ul li .imgBot div.bt_2 span {
  font-size: 14px;
  color: #fff;
  padding-right: 30px;
  background: url(../images/part2_icon.png) no-repeat left center;
  padding-left: 10px;
}

.flash4 ul li:first-child {
  width: 538px;
}
.flash4 ul li:first-child div.bt_2 {
}
.flash4 ul li.fast {
  position: absolute;
  right: 0px;
  bottom: 0px;
}
.mySwiper {
  padding-bottom: 50px !important;
}
.mySwiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mySwiper .swiper-pagination-bullet {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #9a9a9a;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px !important;
}
.mySwiper .swiper-pagination-bullet-active {
  width: 24px;
  height: 24px;
  background: #0b5aa8;
  border-radius: 50%;
  color: #fff;
}
.FCZSbox {
  display: flex;
  justify-content: center;
}
.flash4 {
  display: flex;
  justify-content: center;
}
.main5 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.YQLJ {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
}
.YQLJ li {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  margin-bottom: 50px;
}
.YQLJ li a {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 30px;
  transition: 0.5s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.YQLJ li:hover a {
  font-family: Microsoft YaHei;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  line-height: 30px;
}

.m5box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.Titleall2 {
  position: relative;
}
.Titleall2::before {
  position: absolute;
  content: "";
  width: 43px;
  height: 190px;
  background: url(images/line_link.png) no-repeat;
  background-size: cover;
  right: -60px;
}
footer {
  padding-top: 60px;
  padding-bottom: 70px;
  background: url(images/bj_bottom.jpg) no-repeat;
  background-size: cover;
}
.s6 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 15px;
  color: #ffffff;
  line-height: 36px;
}
.f1 {
  display: flex;
  justify-content:  flex-start;
  align-items: center;
  margin-top: 37px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 25px;
  padding-bottom: 25px;
}
.f1 li{
margin-right:15px;
}


.F1 {
  width: 84%;
}
.ewm img {
  width: 96px;
  height: 96px;
  object-fit: cover;
}
.footerall {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ewm {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.s7 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 20px;
  color: rgba(11, 90, 168, 1);
}
.header-right {
  display: flex;
  align-items: center;
}
.Eng {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid rgba(11, 90, 168, 1);
}

.link-hover {
  position: relative;
  text-decoration: none;
  display: inline-block;
}

.link-hover::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: width 0.3s ease-in-out;
}

.link-hover:hover::after {
  width: 100%; /* 在 hover 状态下下划线扩展至全宽 */
}
.menu-item:hover .sub-menu {
  display: block;
  border-top: 4px solid rgba(12, 97, 181, 1);
}
.sub-menu {
  position: relative;
}
.sub-menu::before {
  width: 40%;
  height: 60%;
  position: absolute;
  content: "";
  background: url(images/bj_navigation_seclevel.png) no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: 0;
}
.more:hover {
  background: #0b5aa8;
  border: 2px solid #0b5aa8;
}
.more:hover .s2 {
  color: #fff;
}
.newsbox1 li {
  overflow: hidden;
}
.newsbox1 li:hover .newsimg1 img {
  transform: scale(1.09);
  transition: transform 0.8s ease;
  -webkit-transform: scale(1.09);
  -moz-transform: scale(1.09);
  -ms-transform: scale(1.09);
  -o-transform: scale(1.09);
}

.newsbox1 li:hover .s4 {
  color: #0b5aa8;
  transition: color 0.8s ease;
}
.newsbox2 li {
  overflow: hidden;
}
.newsbox2 li:hover .newsimg2 img {
  transform: scale(1.09);
  transition: transform 0.8s ease;
  -webkit-transform: scale(1.09);
  -moz-transform: scale(1.09);
  -ms-transform: scale(1.09);
  -o-transform: scale(1.09);
}

.newsbox2 li:hover .s4 {
  color: #0b5aa8;
  transition: color 0.8s ease;
}

/***********************************************************
 * 列表页
 */
/**首页三列布局**/
/**列表页**/
/*栏目图片*/
.l-banner {
  height: 450px;
  background: url(images/banner01.jpg) no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  background-size: cover;
}
.l-banner img {
  display: none;
  height: 100%;
  vertical-align: top;
}
/**主体列表页开始**/
#l-container {
  background: #e9f0f9 url(images/main3_1.png) no-repeat center center;
  background-size: cover;
}
#l-container .inner {
  padding: 25px 10px;
}
/**主体文章页开始**/
#d-container {
  min-height: 600px;
}
#d-container .inner {
  background: #fff;
}
.list #header {
  position: relative;
  background: #22549e;
  height: auto;
}
.col_menu {
  width: 220px;
  float: left;
  margin-right: -220px;
  position: relative;
}
.col_menu .l-qh {
  margin-bottom: 10px;
}
.col_menu .col_menu_head {
  background: #0f429b;
} /**位置栏目背景**/
.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: 0;
} /**栏目名称图标**/
.col_menu .col_menu_con {
  border: 1px solid #e4e4e4;
}
/*栏目列表*/
.col_list {
}
.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: 16px;
  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: 50px;
  width: 100%;
}
.col_list .wp_listcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  color: #0f429b;
  background: #eee;
}
.col_list .wp_listcolumn .wp_column a.selected span.column-name {
  color: #0f429b;
}
.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: #0f429b;
}
/*二级子栏目**/
.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: #0f429b;
}
/*三级子栏目**/
.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: #0f429b;
}
/**栏目新闻**/
.col_news {
  width: 100%;
  min-height: 500px;
  float: right;
}
.col_news .col_news_box {
  margin-left: 270px;
}
.col_news_head {
  border-bottom: 1px solid #cacaca;
  padding-bottom: 3px;
}
.col_metas .col_title {
  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: #0f429b; /* border-bottom: 3px solid #CBCBCB; border-top: 5px solid #000;*/
}
.col_metas .col_path {
  display: inline-block;
  float: right;
  white-space: nowrap;
  height: 46px;
  line-height: 46px;
  color: #22549e;
} /**当前位置**/
.col_metas .col_path a {
  color: #22549e;
}
.col_news_con {
  padding: 20px 0px 10px 0px;
  margin: 0 0px;
  min-height: 450px;
}
.col_news_list {
}
.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.7;
  font-size: 14px;
  color: #333;
}
.col_news_list .wp_entry p {
  margin-bottom: 10px;
  margin: auto;
}
.col_news_list .wp_entry li {
  list-style: inherit;
}
.col_news_list .wp_entry table {
  margin-bottom: 4px;
  width: 100%;
  overflow: scroll;
}
.col_news_list .wp_entry img {
  max-width: 680px;
  _width: expression(this.width > 680 ? "680px": this.width);
} /**列表页文章图片大小限制**/
/**文章页**/
.infobox {
  padding: 20px 60px;
  margin: 0 auto;
  width: auto;
}
.article {
  padding-top: 10px;
}
.article h1.arti_title {
  line-height: 36px;
  font-family: "Microsoft YaHei";
  font-size: 22px;
  text-align: center;
  color: #182880;
} /**文章标题**/
.article h2.arti_title {
  line-height: 34px;
  font-family: "Microsoft YaHei";
  font-size: 17px;
  text-align: center;
  color: #1b1b1b;
} /**文章副标题**/
.article .arti_metas {
  padding: 10px;
  text-align: center; /* border-top:1px solid #ececec; */
}
.article .arti_metas span {
  margin: 0 5px;
  font-size: 12px;
  color: #787878;
} /**文章其他属性**/
.article .entry {
  margin: 0 auto;
  overflow: hidden;
  margin-top: 10px;
} /**文章内容**/
.article .entry li {
  list-style: inherit;
}
.article .entry .read,
.article .entry .read p {
  line-height: 1.7;
  font-size: 14px;
  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;
}

.col_news_list .news_list .news_title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 32px;
  /* padding:10px; */
  float: left;
  /* width: 75%; */
  max-width: 75%;
}
.col_news_list .news_list .date {
  width: 60px;
  height: 70px;
  float: left;
  text-align: center;
  font-family: "思源宋体";
}
.fonts-loaded .date {
  font-family: "思源宋体";
}
.col_news_list .news_list .date .bottom {
  font-size: 40px;
  color: #22549e;
  line-height: 38px;
}
.col_news_list .news_list .date .day {
  font-size: 18px;
  color: #22549e;
  line-height: 25px;
}
.col_news_list .news_list .news {
  /* background: #eee; */
  margin-bottom: 10px;
  transition: all 0.4s;
  border-radius: 20px 20px 20px;
  padding: 20px;
  width: 100%;
}
.col_news_list .news_list .news:hover {
  background: rgba(0, 66, 131, 1) url(images/bj_navigation_seclevel.png)
    no-repeat right;
}
.col_news_list .news_list .news:hover .news_title a {
  color: #fff;
  transition: 0s;
}
.col_news_list .news_list .news:hover .date .day {
  color: #00aab5;
}
.col_news_list .news_list .news:hover .date .bottom {
  color: #00aab5;
}
.col_metas .col_title h2 {
  display: inline-block;
  font-size: 20px;
  font-family: "Microsoft yahei";
  font-weight: bold;
  color: #22549e;
  border-bottom: 3px solid #cbcbcb;
}
.col_menu .col_menu_head {
  background: #22549e url(images/bj.png) no-repeat right 10px bottom 10px;
}
.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 80px;
  text-align: center;
  font-weight: bold;
}
/**自定义新闻列表**/
.news_list {
}
.news_list li.news {
  line-height: 25px;
  padding-left: 0px;
} /**标题图标**/
.news_list li.news span.news_title {
  float: left;
} /*标题*/
.news_list li.news span.news_title img {
  vertical-align: middle;
}
.news_list li.news span.news_meta {
  float: right;
  padding-right: 25px;
  color: #9c9c9c;
  line-height: 32px;
  text-align: justify; /* width: 20%; */
} /*属性*/
.news_list li.news .news_time,
.news_list li.news .news_time span {
  color: #666;
} /*发布时间*/
.news_list li.news .news_icon {
  display: inline-block;
  margin: 0 auto;
  border: 0px solid red;
}
.news_list li.news .news_text {
  line-height: 22px;
  color: #666;
} /*默认简介*/
.news_list li.news .news_bg {
  width: 100%;
  transition-duration: 1s;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
}
.news_list li.news p {
  line-height: 34px;
}
.col_news_list .news_list .news:hover .news_title {
  color: #fff;
}
.Listimg {
  display: flex;
}
.Listimg li {
  width: 30%;
  margin-right: 30px;
  margin-bottom: 40px;
  overflow: hidden;
  transition: 0.5s;
}
.Listimg1 {
  width: 100%;
  height: 180px;
}
.Listimg1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.Listimgtext {
  font-family: Microsoft YaHei;
  font-weight: 300;
  font-size: 20px;
  color: #1f1f1f;
  line-height: 32px;
  text-align: center;
  margin-top: 15px;
  transition: 0.5s;
}
.Listimg li:hover .Listimg1 img {
  transform: scale(1.1);
}
.Listimg li:hover .Listimgtext {
  color: #0b5aa8;
}
.YQLJ li .YQLJImg1 {
  width: 210px;
  height: 70px;
  background: url(images/btn_link_01.png) no-repeat;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.YQLJ li:hover .YQLJImg1 {
  width: 210px;
  height: 70px;
  background: url(images/btn_link_01_h.png) no-repeat;
}
.YQLJ li .YQLJImg2 {
  width: 297px;
  height: 71px;
  background: url(images/btn_link_02.png) no-repeat;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.YQLJ li:hover .YQLJImg2 {
  width: 297px;
  height: 71px;
  background: url(images/btn_link_02_h.png) no-repeat;
}
.YQLJ li .YQLJImg3 {
  width: 262px;
  height: 71px;
  background: url(images/btn_link_03.png) no-repeat;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.YQLJ li:hover .YQLJImg3 {
  width: 262px;
  height: 71px;
  background: url(images/btn_link_03_h.png) no-repeat;
}
.YQLJ li .YQLJImg4 {
  width: 191px;
  height: 72px;
  background: url(images/btn_link_04.png) no-repeat;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.YQLJ li:hover .YQLJImg4 {
  width: 191px;
  height: 72px;
  background: url(images/btn_link_04_h.png) no-repeat;
}
.YQLJ li .YQLJImg5 {
  width: 296px;
  height: 60px;
  background: url(images/btn_link_05.png) no-repeat;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.YQLJ li:hover .YQLJImg5 {
  width: 296px;
  height: 60px;
  background: url(images/btn_link_05_h.png) no-repeat;
}
.YQLJ li .YQLJImg6 {
  width: 284px;
  height: 71px;
  background: url(images/btn_link_06.png) no-repeat;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.YQLJ li:hover .YQLJImg6 {
  width: 284px;
  height: 71px;
  background: url(images/btn_link_06_h.png) no-repeat;
}
.YQLJ li .YQLJImg7 {
  width: 58px;
  height: 58px;
  background: url(images/btn_link_07.png) no-repeat;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.YQLJ li:hover .YQLJImg7 {
  width: 58px;
  height: 58px;
  background: url(images/btn_link_07_h.png) no-repeat;
}
.YQLJ li .YQLJImg8 {
  width: 58px;
  height: 58px;
  background: url(images/btn_link_08.png) no-repeat;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.YQLJ li:hover .YQLJImg8 {
  width: 58px;
  height: 58px;
  background: url(images/btn_link_08_h.png) no-repeat;
}
