@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: #9f0d0e;
}
.flex {
  display: flex;
  display: -webkit-flex;
}
.f_between {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.f_start {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.f_end {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.f_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.f_middle {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
}
.f_top {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.f_bottom {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.f_stretch {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.middle_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.f_col {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_row {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.nowrap {
  -webkit-flex-wrap: nowrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.wrap {
  -webkit-flex-wrap: wrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
}
.overlay {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-line1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.text-line2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.text-line3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 1300px;
  margin: 0 auto;
} /**页面全局宽度**/
.mod {
  padding: 0px;
}
/*head开始*/
#header {
  border-top: 5px solid rgba(175, 37, 27, 1);
  padding-top: 25px;
  padding-bottom: 25px;
}
.hr {
  display: flex;
  align-items: center;
}
.hr li {
  margin-right: 30px;
}
.hr li a {
  font-size: 16px;
  color: #555555;
}
.hr1 {
  position: relative;
}
.hr1::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 21px;
  background: rgba(85, 85, 85, 0.2);
  right: -15px;
  top: -5px;
}

/*默认主导航样式*/
.head-nav {
  background: rgba(175, 37, 27, 1);
}
#nav {
}
.nav .wp-menu {
  height: 50px;
  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: 50px;
  text-align: center;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0 12px;
  position: relative;
}
.nav .wp-menu .menu-item a.menu-link {
  color: #fff;
  font-size: 20px;
  -webkit-transition: all 0.3s;
}
.nav .wp-menu .menu-item.hover a.menu-link {
  color: #fff;
  border-bottom: 4px solid #fff;
}
.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 50px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: rgba(175, 37, 27, 0.5);
}
.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: rgba(175, 37, 27, 0.63);
  display: block;
}
/* banner */
.mySwiper1 .swiper-slide img {
  width: 100%;
}
.mySwiper1 .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 3;
}
.mySwiper1 .swiper-pagination-bullet-active {
  width: 13px;
  height: 13px;
  background: #af251b;
  border-radius: 50%;
}
/* main1 */
.title1 {
  font-weight: bold;
  font-size: 28px;
  color: #af251b;
  line-height: 72px;
}
.title2 {
  font-size: 18px;
  color: #333333;
  line-height: 30px;
}
.title3 {
  font-size: 14px;
  color: #999999;
  line-height: 26px;
}
.title4 {
  font-weight: bold;
  font-size: 32px;
  color: #ffffff;
  line-height: 72px;
}
.t1 {
  position: relative;
  bottom: -35px;
}
.tmore {
  position: absolute;
  left: 140px;
  top: 25px;
}

.main1 {
  padding-top: 70px;
  padding-bottom: 90px;
}
.main1 .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.News {
  width: 48%;
}
.N1box {
  margin-top: 43px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.N1text {
  padding: 15px;
  background: #fff;
}
.N1box li {
  width: 48%;
  margin-bottom: 20px;
  transition: 0.5s;
  border: 1px solid #fff;
}
.N1box li:hover {
  box-shadow: 0px 0px 13px 0px rgba(135, 20, 12, 0.2);
  border: 1px solid #af251b;
}
.N1box li .title2 {
  font-weight: 500;
  transition: 0.5s;
}
.N1box li:hover .title2 {
  font-weight: bold;
  color: #af251b;
}
.N1img img {
  width: 100%;
  height: 183px;
  object-fit: cover;
}
.RESEARCH {
  width: 42%;
}
.t2 {
  position: relative;
}
.R1box {
  margin-top: 48px;
}
.R1box li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(234, 234, 234, 1);
  transition: 0.5s;
}
.R1box li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Rtime {
  width: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #af251b;
  padding: 10px;
}
.Rtime .day {
  font-size: 24px;
  color: #af251b;
  line-height: 23px;
  position: relative;
}
.Rtime .day::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 7px;
  background: url(images/btn1.png);
  bottom: -5px;
}
.Rtime .year {
  font-size: 16px;
  color: #999999;
  line-height: 26px;
}
.R1box li a .title2 {
  transition: 0.3s;
  width: 88%;
  font-weight: 500;
}
.R1box li:hover .title2 {
  font-weight: bold;
  color: #af251b;
}
/* main3 */
.main3 {
  background: url(images/bg3.png) no-repeat;
  background-size: cover;
  padding-top: 75px;
  padding-bottom: 80px;
}
.t3 {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  bottom: -30px;
}
.tmore2 {
  position: absolute;
  left: 56%;
  top: 25px;
}
.timg img {
  width: 100%;
}
.jbox {
  margin-top: 89px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.J1 {
  width: 33%;
  background: url(images/bg4.png) no-repeat;
  background-size: cover;
  padding-top: 45px;
  padding-left: 28px;
  padding-right: 48px;
  padding-bottom: 94px;
  transition: 0.5s;
}
.J2 {
  width: 33%;
  background: url(images/bg5.png) no-repeat;
  background-size: cover;
  padding-top: 45px;
  padding-left: 28px;
  padding-right: 48px;
  padding-bottom: 94px;
  transition: 0.5s;
}
.J3 {
  width: 33%;
  background: url(images/bg6.png) no-repeat;
  background-size: cover;
  padding-top: 45px;
  padding-left: 28px;
  padding-right: 48px;
  padding-bottom: 94px;
  transition: 0.5s;
}
.jtime1 {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 30px;
}
.jtime2 {
  font-size: 16px;
  color: rgba(51, 51, 51, 0.55);
  line-height: 30px;
}
.jtitle {
  font-size: 18px;
  color: #ffffff;
  line-height: 32px;
  margin-bottom: 29px;
  margin-top: 23px;
}
.jtitle2 {
  font-size: 18px;
  color: rgba(51, 51, 51, 1);
  line-height: 32px;
  margin-bottom: 29px;
  margin-top: 23px;
}
.jmore {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
.jmore div {
  width: 30%;
  display: flex;
  align-items: center;
}
.J1:hover {
  transform: translateY(-36px);
}
.J2:hover {
  transform: translateY(-36px);
}

.J3:hover {
  transform: translateY(-36px);
}
/* main4 */
.main4 {
  background: url(images/bg7.png) no-repeat;
  background-size: cover;
  padding-top: 75px;
  padding-bottom: 80px;
}
.Notice1 {
  margin-top: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Notice1 li {
  width: 30%;
  z-index: 5;
  position: relative;

  transition: 0.5s;
}
.Notice1 li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Notice1 li .Nottime {
  width: 77px;
  height: 78px;
  background: #af251b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.Notice1 li .Nottime .day {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
  line-height: 30px;
}
.Notice1 li .Nottime .year {
  font-size: 14px;
  color: #ffffff;
  line-height: 20px;
}
.Notice1 li .Nottime::after {
  position: absolute;
  content: "";
  width: 77px;
  height: 2px;
  background: #af251b;
  bottom: -20px;
}
.Notice1 li::after {
  position: absolute;
  content: "";
  width: 27px;
  height: 14px;
  background: url(images/btn2.png) no-repeat;
  z-index: 99;
  bottom: 70px;
  right: 30px;
}
.Notice1 li .title2 {
  transition: 0.3s;
}
.Notice1 li:hover .title2 {
  color: #af251b;
  font-weight: bold;
}
/* main5 */
.main5 {
  background: url(images/bg9.png) no-repeat;
  background-size: cover;
  padding-top: 75px;
  padding-bottom: 120px;
}
.swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-bottom: 80px;
  margin-top: 60px;
  position: relative;
}
.swiper-container .swiper-slide {
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  transition: 300ms;
  transform: scale(0.8);
}
.swiper-container .swiper-slide-active,
.swiper-container .swiper-slide-duplicate-active {
  transform: scale(1);
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(142, 6, 6, 0.35);
}
.swiper-container .swiper-slide-active .title2 {
  font-weight: bold;
  color: #a91818;
}

.swiper-container .swiper-slide img {
  height: 331px;
  width: 100%;
}
.smore {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.sm1 {
  font-size: 18px;
  color: #999999;
}
.sm2 {
  font-size: 18px;
  color: #a91818;
}
.sbox {
  padding: 20px;
  background: #ffffff;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.2);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-container .swiper-button-next {
  width: 40px;
  height: 40px;
  background: url(images/btnr.png) no-repeat;
  right: 40%;
  bottom: 0;
}
.swiper-container .swiper-button-next:hover {
  width: 40px;
  height: 40px;
  background: url(images/btnr-on.png) no-repeat;
}
.swiper-container .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: url(images/btnl.png) no-repeat;
  bottom: 0;
  left: 40%;
}
.swiper-container .swiper-button-prev:hover {
  width: 40px;
  height: 40px;
  background: url(images/btnl-on.png) no-repeat;
}
/* footer */
footer {
  background: #9d180f;
  padding-top: 55px;
  padding-bottom: 55px;
}

.FL1 {
  font-family: Microsoft YaHei;

  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
}
.FL2 {
  margin-bottom: 30px;
}
.FL2 img {
}
.fleft {
  width: 50%;
  border-right: 1px solid rgba(185, 184, 181, 0.35);
}
.FR1 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 24px;
  color: #f8f6f5;
  line-height: 38px;
}
.FR2 {
  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
}
.Footer2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.fRight {
  width: 40%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-right: 30px;
}
.fRight-2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.Notice1 li:hover {
  transform: translateY(-25px);
}
.Notice1 li a {
  position: relative;
  transition: 300ms;
  background: #ffffff;
  box-shadow: 0px 3px 10px 0px rgba(118, 15, 8, 0.15);
  padding: 45px 30px;
  margin-bottom: 50px;
  z-index: 5;
}
.Notice1 li:hover a {
  background: #fff;
}
.Notice1 li:hover:before {
  content: "";
  width: 100%;
  height: 80%;
  background: rgba(175, 37, 27, 1);
  position: absolute;
  right: -25px;
  z-index: 1;
  bottom: 20px;
}
/**新闻列表**/

/***********************************************************
 * 列表页
 */

/**主体列表页开始**/
#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: #8e0107;
} /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
} /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 50px;
  padding: 0px 5px 0px 30px;
} /**栏目名称图标**/
.col_menu .col_menu_con {
  border: 1px solid #e4e4e4;
}
/*栏目列表*/
.col_list .wp_listcolumn {
  border-top: 0px solid #2867a0;
  border-bottom: 0px solid #fff;
}
.col_list .wp_listcolumn .wp_column a {
  color: #333;
  font-size: 15px;
  font-weight: normal;
  background: none;
  border-top: 0px solid #fff;
  border-bottom: 1px solid #f6eaea;
}
.col_list .wp_listcolumn .wp_column a .column-name {
  padding: 5px 0px 5px 28px;
  line-height: 32px;
}
.col_list .wp_listcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  color: #8e0107;
  background: #eee;
}
.col_list .wp_listcolumn .wp_column a.selected span.column-name {
  color: #8e0107;
}
.col_list .wp_listcolumn .wp_subcolumn .wp_column a {
  color: #454545;
  background: none;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #bbb;
}
.col_list .wp_listcolumn .wp_column.parent > a .column-name {
  font-weight: bold;
  color: #8e0107;
}
/*二级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list a {
  color: #333;
  border-top: 1px solid #eee;
  margin-top: -1px;
}
.col_list .wp_listcolumn .sub_list a .column-name {
  display: inline-block;
  line-height: 28px;
  padding: 5px 10px 5px 44px;
  cursor: pointer;
}
.col_list .wp_listcolumn .sub_list a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  font-weight: bold;
  font-weight: bold;
  color: #8e0107;
}
/*三级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a {
}
.col_list .wp_listcolumn .sub_list .sub_list a .column-name {
  padding: 5px 10px 5px 60px;
  cursor: pointer;
}
.col_list .wp_listcolumn .sub_list .sub_list a :hover,
.col_list .wp_listcolumn .sub_list .sub_list a.selected {
  font-weight: bold;
  color: #8e0107;
}
/**栏目新闻**/
.col_news {
  width: 100%;
  min-height: 500px;
  float: right;
}
.col_news .col_news_box {
  margin-left: 290px;
}
.col_news_head {
  border-bottom: 1px solid #dbdbdb;
}
.col_metas .col_title {
  display: inline-block;
  float: left;
  height: 48px;
  line-height: 48px;
} /**当前栏目**/
.col_metas .col_title h2 {
  display: inline-block;
  font-size: 18px;
  font-family: "Microsoft yahei";
  font-weight: normal;
  color: #8e0107;
  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;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 999;
  top:30px
}
.article {
  padding-top: 10px;
}
.article h1.arti_title {
  line-height: 36px;
  font-family: "Microsoft YaHei";
  font-size: 22px;
  text-align: center;
  color: #8e0107;
} /**文章标题**/
.article h2.arti_title {
  line-height: 34px;
  font-family: "Microsoft YaHei";
  font-size: 17px;
  text-align: center;
  color: #666;
} /**文章副标题**/
.article .arti_metas {
  padding: 10px;
  text-align: center;
}
.article .arti_metas span {
  margin: 0 5px;
  font-size: 12px;
  color: #787878;
} /**文章其他属性**/
.article .entry {
  margin: 0 auto;
  overflow: hidden;
  margin-top: 10px;
} /**文章内容**/
.article .entry .read,
.article .entry .read p {
  line-height: 1.75;
  font-size: 16px;
  color: #333;
} /**阅读字体**/
.article .entry .read p {
  margin-bottom: 10px;
}
.article .entry .read img {
  margin: 0 auto;
  max-width: 940px;
  _width: expression(this.width > 940 ? "940px": this.width);
} /**文章阅读部分图片大小限制**/
.article .entry .read table {
  margin: 0 auto;
  border: none !important;
}
.es_article_title {
  display: none;
}
/**翻页**/

.es_pagingbar_container {
  margin: 40px auto 0;
  text-align: center;
  padding-bottom: 40px;
}
.es_pagingbar_container .es_pagingbar {
  display: inline-block;
  overflow: hidden;
}
.es_pagingbar_container .es_pagingbar li {
  float: left;
  padding: 6px 12px;
  margin: 0 6px;
  color: #999;
  background: #fff;
  border: 1px solid #eee;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}
.es_pagingbar_container .es_pagingbar li.active {
  background: #d63e3e;
  color: #fff;
  border-color: #d63e3e;
}
.es_pagingbar_container .es_pagingbar li.active a {
  color: #fff;
}
.es_article_content img {
  margin-right: 20px;
}

.news_info {
  display: flex;

  align-items: center;
}
.news_info .news_title {
  font-size: 18px;
  color: #333333;
  line-height: 30px;
}
.li1 {
  display: flex;
}
.li1 .news_meta {
  font-size: 16px;
  color: #333333;
  line-height: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 15px;
  border-top: 1px solid #333333;
  margin-right: 20px;
}
.li1 .news_meta .day {
  font-weight: bold;
  font-size: 24px;
  color: ##333333;
  line-height: 60px;
}
.li1 .news_meta .year {
  font-weight: bold;
  font-size: 14px;
  color: ##333333;
  line-height: 20px;
}
.news_list2 .news {
  transition: 0.8s;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
  position: relative;
  z-index: 5;
  padding: 20px;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
}
.news:hover {
  background: #8e0107;
}
.news:hover .li1 .news_meta{
  color:#fff;
  border-top: 1px solid #fff;
}
.news:hover .news_title{
  color:#fff;
}
