@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;
}
/*备用样式表*/
.none {
  display: none;
}
.wcb {
  width: 100%;
  height: 30px;
  border: 2px dashed #97cbe0;
}
.hidden {
  visibility: hidden;
}
.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;
}
/*css3扩展*/
::-webkit-input-placeholder {
  color: #999;
  font-size: 14px;
}
:-moz-placeholder {
  color: #999;
  font-size: 14px;
}
::-moz-placeholder {
  color: #999;
  font-size: 14px;
}
:-ms-input-placeholder {
  color: #999;
  font-size: 14px;
}
/**布局开始**/
* {
  box-sizing: border-box;
}
body {
  background: #fff;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
  font-family: Microsoft YaHei;

  color: #333;
}
p {
  line-height: 1.75;
}
a {
  color: #333;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
a:hover {
}
.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hide-text1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.hide-text2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.hide-text3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.hide-text4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.hide-text5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.flex {
  display: flex;
}
.f_around {
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
}
.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;
}
.md_center {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: 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;
}
.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;
}
/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}
/*根据具体情况修改  */
.inner {
  width: 1440px;
  padding: 0px;
  margin: 0 auto;
}
.header {
  background: rgba(22, 25, 32, 0.8);
  padding-top: 19px;
  padding-bottom: 19px;
}
.headerbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*默认主导航样式*/
.head-nav {
}
#nav {
  width: 100%;
}
.nav .wp-menu {
  height: 40px;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.nav .wp-menu .menu-item {
  display: inline-block;
  position: relative;
  height: 40px;
  text-align: center;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  position: relative;
}
.nav .wp-menu .menu-item a.menu-link {
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  line-height: 32px;
  -webkit-transition: all 0.3s;
}
.nav .wp-menu .menu-item.hover a.menu-link {
  color: rgba(255, 204, 0, 1);
  border-bottom: 3px solid rgba(255, 204, 0, 1);
}
.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 40px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: #9f0d0e;
}
.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
}
.nav .sub-menu .sub-item a {
  display: block;
  color: #fff;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  text-align: left;
  padding: 0 16px;
}
.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #fff;
  background-color: #6a0304;
  display: block;
}
.h2 {
  width: 50%;
}
.h3 {
  width: 20%;
}
.h3box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.h3box li a {
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  line-height: 32px;
}
.h3box li {
  border-radius: 22px;
  border: 1px solid #ffffff;
  padding-left: 26px;
  padding-right: 26px;
  padding-top: 12px;
  padding-bottom: 12px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.h3box li:hover {
  background: #ffcc00;
  border-radius: 22px;
  border: 1px solid #ffcc00;
}
.h3box li:hover a {
  color: #333;
}
/* 中心内容 */
.PTPB {
  padding-top: 95px;
  padding-bottom: 95px;
}
.Titlepc {
  margin-bottom: 52px;
}
.time {
  font-weight: bold;
  font-size: 14px;
  color: #333333;
  line-height: 27px;
  font-style: italic;
  margin-bottom: 15px;
}
.Title {
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 32px;
}
.jianjie {
  font-size: 16px;
  color: #0a1639;
  line-height: 28px;
}
/* mian1 */
.main1 {
  background: url(images/bg2.png) no-repeat;
  background-size: cover;
}
.main1-1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.News1 {
  width: 24%;
}
.News1 li {
}
.News1 li a .newpc {
  height: 60%;
  width: 100%;
}
.News1 li a .newpc img {
  width: 100%;
  height: 100%;
}
.News1 li a .newsbox {
  padding: 18px;
}
.News2 {
  width: 48%;
  background: rgba(231, 231, 231, 0.85);
  box-shadow: 0px 0px 15px 0px rgba(22, 22, 22, 0.4);
  border-radius: 4px;
  padding-top: 12px;
  padding-bottom: 35px;
  padding-left: 20px;
  padding-right: 20px;
}
.News2 img {
  width: 100%;
  height: 100%;
}
.newsbox11 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #161616;
}
.newsbox1 {
  width: 49%;
}
.newsbox2 {
  width: 49%;
}
.more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.more li {
  font-weight: bold;
  font-size: 15px;
  color: #333333;
  line-height: 34px;
}
.main2 {
  background: url(images/bg3.png) no-repeat;
  background-size: cover;
}
#certify {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

#certify .swiper-container {
  width: 100%;
  padding-bottom: 60px;
  overflow: hidden;
}

#certify .swiper-slide {
  width: 831px;
  height: 467px;
  background: #1b1d23;
  border-radius: 6px;
  position: relative;
}
#certify .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}
#certify .swiper-slide p {
  line-height: 98px;
  padding-top: 0;
  text-align: center;
  color: #636363;
  font-size: 1.1em;
  margin: 0;
}
#certify .swiper-button-prev {
  position: absolute;
  top: 40% !important;
  width: 46px;
  height: 42px;
  background: url(images/btn3.png) no-repeat;
  z-index: 999;
  left: 10%;
}

#certify .swiper-button-prev:hover {
  position: absolute;
  top: 40% !important;
  background: url(images/btn3-on.png) no-repeat;
}

#certify .swiper-button-next {
  position: absolute;
  top: 40% !important;
  width: 46px;
  height: 42px;
  background: url(images/btn4.png) no-repeat;
  z-index: 999;
  right: 10%;
}

#certify .swiper-button-next:hover {
  position: absolute;
  top: 40% !important;
  background: url(images/btn4-on.png) no-repeat;
}
.pbox {
  width: 100%;
  position: absolute;
  bottom: -5px;
  padding-top: 20px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.3) 100%);
}
.pbox a {
  width: 100%;
}
.time2 {
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  line-height: 27px;
  font-style: italic;
}
.Title2 {
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  line-height: 34px;
}
.More {
  margin-top: 30px;
}
/* main3*/
.main3 {
  background: url(images/bg4.png) no-repeat;
  background-size: cover;
}
.m3pc {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m3pc li img {
  width: 100%;
}
/* footer */
.footer {
  background: url(images/bg6.png) no-repeat;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 80px;
}
.f1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.f3 li {
  font-family: SourceHanSansCN;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 30px;
}
.li1 {
  font-family: SourceHanSansCN;
  font-weight: 400;
  font-size: 18px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  line-height: 36px !important;
}
.ewm {
  width: 125px;
  height: 125px;
  margin-top: 30px;
}
.f4 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.foot {
  background: rgba(17, 19, 23, 1);
}
.foot1 {
  font-size: 14px;
  color: #ffffff;
  line-height: 32px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.banner {
  position: relative;
}
.header {
  position: absolute;
  z-index: 999;
  top: 0;
}
.bannerbox {
  position: absolute;
  bottom: 0;
  background: url(images/bg1.png) no-repeat;
  background-size: cover;
  padding-top: 180px;
  padding-bottom: 20px;
}
.box-1 {
  width: 49%;
}
.box-2 li {
  margin-bottom: 30px;
}
.btitle {
  font-size: 18px;
  color: #ffffff;
  line-height: 36px;
}
.b1 {
  display: flex;
  justify-content: space-between;
}
.Titlepc1 {
  margin-bottom: 30px;
}
.bannerimg img {
  width: 100%;
}

/*滚动Arrows */

.slick-prev,
.slick-next,
.slick-prev:hover,
.slick-next:hover {
  height: 62px;
  width: 60px;
  background: url(images/slickarrow2.png) no-repeat;
  top: 50%;
  margin-top: -30px;
  border: 0px solid #d4d8d9;
  border-radius: 50%;
  outline: none;
}
.slick-prev {
  left: -95px;
  background-position: 0px 0px;
}
.slick-prev:hover {
  background-position: 0px 0px;
  opacity: 0.8;
  filter: Alpha(opacity=80);
}
.slick-prev:before {
  content: "";
}
.slick-next {
  right: -95px;
  background-position: right 0px;
}
.slick-next:hover {
  background-position: right 0px;
  opacity: 0.8;
  filter: Alpha(opacity=80);
}
.slick-next:before {
  content: "";
}
.post .con .wp_article_list .list_item {
  border-bottom: 1px dashed #ccc;
}
/**新闻列表**/

/***********************************************************
 * 列表页
 */

/**主体列表页开始**/
#l-container .inner {
  padding: 25px 0px;
}
/**主体文章页开始**/
#d-container .inner {
  background: #fff;
}
.col_menu {
  width: 240px;
  float: left;
  margin-right: -240px;
  position: relative;
}
.col_menu .l-qh {
  margin-bottom: 10px;
}
.col_menu .col_menu_head {
  background: rgba(22, 25, 32, 1);
} /**位置栏目背景**/
.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: 80px;
} /**栏目名称图标**/
.col_menu .col_menu_con {
  border: 1px solid #e4e4e4;
}
/*栏目列表*/
.col_list .wp_listcolumn {
  border-top: 0px solid #2867a0;
  border-bottom: 0px solid #fff;
}
.col_list .wp_listcolumn .wp_column a {
  color: #333;
  font-size: 18px;
  display: block;
  width: 100%;
}
.col_list .wp_listcolumn .wp_column a .column-name {
  padding: 5px 0px 5px 28px;
  line-height: 80px;
}
.col_list .wp_listcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  background: rgba(121, 121, 121, 0.3);
}
.col_list .wp_listcolumn .wp_column a.selected span.column-name {
  color: #8e0107;
}
.col_list .wp_listcolumn .wp_subcolumn .wp_column a {
  color: #454545;
  background: none;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #bbb;
}
.col_list .wp_listcolumn .wp_column.parent > a .column-name {
  font-weight: bold;
  color: #8e0107;
}
/*二级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list a {
  color: #333;
  font-size: 16px;
}
.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 {
}
/*三级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a {
}
.col_list .wp_listcolumn .sub_list .sub_list a .column-name {
  padding: 5px 10px 5px 60px;
  cursor: pointer;
}
.col_list .wp_listcolumn .sub_list .sub_list a :hover,
.col_list .wp_listcolumn .sub_list .sub_list a.selected {
  font-weight: bold;
  color: #8e0107;
}
/**栏目新闻**/
.col_news {
  width: 100%;
  min-height: 500px;
  float: right;
}
.col_news .col_news_box {
  margin-left: 290px;
}
.col_news_head {
  border-bottom: 1px solid #dbdbdb;
}
.col_metas .col_title {
  display: inline-block;
  float: left;
  height: 48px;
  line-height: 48px;
} /**当前栏目**/
.col_metas .col_title h2 {
  display: inline-block;
  font-size: 18px;
  font-family: "Microsoft yahei";
  font-weight: normal;
  color: #333;
  border-bottom: 3px solid #cbcbcb;
}
.col_metas .col_path {
  display: inline-block;
  float: right;
  white-space: nowrap;
  height: 46px;
  line-height: 46px;
  color: #666;
} /**当前位置**/
.col_metas .col_path a {
  color: #2f2f2f;
}
.col_news_con {
  padding: 5px 0px 10px 0px;
  margin: 0 0px;
}
.col_news_list {
  margin-top: 7px;
}
.col_news_list .wp_article_list .list_item {
} /**栏目新闻列表**/
.col_news_list .wp_article_list .list_item .Article_Index {
} /**栏目新闻图标序号**/
.col_news_list .wp_entry,
.col_news_list .wp_entry p {
  line-height: 1.75;
  font-size: 14px;
  color: #333;
}
.col_news_list .wp_entry p {
  margin-bottom: 10px;
}
.col_news_list .wp_entry table {
  margin-bottom: 4px;
}
.col_news_list .wp_entry img {
  max-width: 680px;
  _width: expression(this.width > 680 ? "680px": this.width);
} /**列表页文章图片大小限制**/
/**文章页**/
.infobox {
  padding: 20px 60px;
  margin: 0 auto;
  width: auto;
  min-height: 500px;
}
.article {
  margin-top: 50px;
  margin-bottom: 50px;
  padding-top: 10px;
  padding-bottom: 100px;
  padding-left: 30px;
  padding-right: 30px;
}
.article .entry .read {
  padding-left: 20px;
  padding-right: 20px;
}
.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 {

width: 100%;
  margin-right: 20px;
}

.col_news_list .news_list .news {
  transition: 0.5s;
  border-bottom: 1px dashed rgba(51, 51, 51, 0.3);
}

.col_news_list .news_list .news:hover {
  padding-left: 20px;
}
.col_news_list .news_list .news a {
  display: flex;
  align-items: center;
}
.col_news_list .news_list .news a .title {
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 50px;
}
.PeWore {
  display: flex;
  justify-content:  flex-start;
  align-items: center;
}
.PeWore .PeWoreli {
  width: 30%;
  margin-bottom: 65px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
margin-right: 37px


}
.PeWoreli:hover {
  background: #ffffff;
  box-shadow: 0px 0px 15px 0px rgba(7, 17, 46, 0.4);
  border-radius: 8px;
}
.Workimg{
background:#333;
}
.PeWore li a .Workimg img {
  width: 100%;

height: 200px;
object-fit:   contain;
}
.W1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-family: Microsoft YaHei;
  font-size: 16px;
  color: rgba(7, 17, 46, 0.7);
  margin-top: 25px;
  padding-left: 16px;
  padding-right: 16px;
}
.W2 {
  font-size: 18px;
  color: #07112e;
  border-bottom: 1px solid #07112e;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-left: 16px;
  padding-right: 16px;
}
.W3 {
  font-size: 15px;
  color: #07112e;
  border-bottom: 1px solid #07112e;
  padding-bottom: 20px;
  padding-top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-left: 16px;
  padding-right: 16px;
  transition: 0.5s;
}
.PeWoreli:hover .W3 {
  border-bottom: none;
}
.W3-1 {
  display: flex;
  align-items: center;
}

.Art .A1 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 22px;
  color: #07112e;
  opacity: 0.7;
  padding-bottom: 40px;
}
.Art .A2 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 30px;
  color: #07112e;
  display: flex;
  align-items: center;
  padding-bottom: 38px;
  border-bottom: 3px solid rgba(7, 17, 46, 1);
}
.A3 {
  margin-top: 50px;
  margin-bottom: 70px;
}
.A3 img{
  width: 100%;
}
.A4 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 20px;
  color: #07112e;
  line-height: 72px;
}
.A4 span {
  font-family: Microsoft YaHei;
  font-weight: 400!important;
  font-size: 18px!important;
  color: #07112e!important;
  line-height: 72px!important;
}
.A4 div {
  font-family: Microsoft YaHei;
  font-weight: 400!important;
  font-size: 18px!important;
  color: #07112e!important;
  line-height: 72px!important;
}

.Art{
width:100%;
}

.es_article_content p {
  text-indent: 0em !important; 
}