@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: Microsoft YaHei;
  color: #333;}
p {
  line-height: 1.75;}
a {
  color: #333;
  text-decoration: none;
  transition: all 0.4s ease-in-out;}

.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-line1 {
  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-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 {
  width: 100%;
  background: rgba(180, 25, 0, 0.7);
  padding-top: 30px;}
.head-top {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);}
/**搜索**/
.wp_search {
  display: inline-block;
  position: relative;
  padding-left: 12px;
  background: #fff;
  width: 209px;
  height: 36px;
  opacity: 0.3;
  filter: Alpha(opacity=30);}
.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-radius: 4px;
  border-radius: 20px;
  border: 1px solid #ffffff;
  width: 251px;
  height: 40px;
  position: relative;}
.wp-search form {
  display: block;
  padding-right: 34px;}
.wp-search .search-input {
  margin-right: 0;
  height: 32px;
  position: relative;}
.wp-search .search-input input.search-title {
  width: 100%;
  box-sizing: border-box;
  height: 36px;
  padding: 0px 15px;
  line-height: 32px;
  color: #fff;
  font-size: 14px;
  border: 0;
  outline: 0;
  background: none;}
.wp-search .search-btn {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 0;
  top: 0;}

.wp-search .search-btn input.search-submit {
  width: 23px;
  height: 38px;
  border: 0;
  outline: 0;
  border-radius: 4px;
  background: url(images/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;}

/*默认主导航样式*/
.head-nav {}
#nav {}
.nav .wp-menu {
  height: 63px;
  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: 63px;
  text-align: center;}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 63px;
  line-height: 68px;
  padding: 0 27px;
  position: relative;}
.nav .wp-menu .menu-item a.menu-link {
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  -webkit-transition: all 0.3s;}
.nav .wp-menu .menu-item.hover a.menu-link {
  color: #fff;
  background: #9f0d0e;}
.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 63px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  border-top: 4px solid rgba(255, 174, 0, 1);}
.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;}
.nav .sub-menu .sub-item a {
  display: block;
  height: 40px;
  text-align: left;
  padding: 0 16px;
  font-size: 16px;
  color: #333333;
  line-height: 38px;}
.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #fff;
  background-color: rgba(177, 82, 72, 1);
  display: block;}
/* main1 */
#header {
  width: 100%;
  position: absolute;
  z-index: 99;}
.head-top {
  width: 100%;}
.main1 {
  position: relative;
  z-index: 1;}
/* banner */
.swiper-button-next:after {
  display: none;}
.swiper-button-prev:after {
  display: none;}
.mySwiper1 .swiper-slide img {
  width: 100%;}
.mySwiper1 .swiper-button-next {
  width: 35px !important;
  height: 65px !important;
  background: url(images/bannerbtn-right.png) no-repeat;
  right: 10% !important;
  transition: 0.5s;
  top: 66% !important;}
.mySwiper1 .swiper-button-prev {
  width: 35px !important;
  height: 65px !important;
  background: url(images/bannerbtn-left.png) no-repeat;
  left: 10% !important;
  transition: 0.5s;
  top: 66% !important;}
.mySwiper1 .swiper-button-next:hover {
  background: url(images/bannerbtn-right-on.png) no-repeat;
  right: 10% !important;}
.mySwiper1 .swiper-button-prev:hover {
  background: url(images/bannerbtn-left-on.png) no-repeat;
  right: 10% !important;}
.mySwiper1 .swiper-pagination-bullet {
  width: 50px !important;
  height: 4px !important;
  background: #ffffff !important;
  border-radius: 0 !important;
  opacity: 1 !important;
  margin-right: 15px !important;
  position: relative;
  z-index: 999;}
.mySwiper1 .swiper-pagination-bullet-active {
  width: 49px !important;
  height: 4px !important;
  background: #a9322c !important ;
  position: relative;
  z-index: 999;}
/* main2 */
.main2 {
  padding-top: 52px;
  padding-bottom: 77px;}
/* Title */
.Title .t1 span {
  font-weight: bold;
  font-size: 30px;
  color: #a9322c;
  position: relative;
  z-index: 999;}
.Title .t1 {
  font-weight: bold;
  font-size: 30px;
  color: rgba(51, 51, 51, 1);
  position: relative;}
.Title .t2 a {
  font-size: 14px;
  color: #999999;}
.t12::before {
  content: url(images/new.png);
  position: absolute;
  bottom: -7px;
  width: 64px;
  height: 62px;}
.t13::before {
  content: url(images/notice.png);
  position: absolute;
  bottom: -7px;
  width: 64px;
  height: 62px;}
/* main1 */
.newspart {
  width: 48%;}
.noticepart {
  width: 48%;}
.newspart2 {
  width: 100%;
  margin-top: 50px;}
.newspart2 li {
  width: 48%;
  transition: 0.5s;
  border: 1px solid #fff;}
.newspart2 li:hover {
  border: 1px solid #a9322c;}
.newspart2 li img {
  width: 100%;
  height: 221px;}
/* 通用样式 */
.n1 {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  margin-bottom: 10px;}
.n2 {
  font-size: 14px;
  color: #898989;
  line-height: 22px;}
.ntime {
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
  line-height: 31px;
  width: 73px;
  height: 25px;
  background: #a9322c;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -26px;}
.ntime2 {
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
  line-height: 31px;
  width: 73px;
  height: 25px;
  background: #a9322c;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;}
.newsinfo {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;}
.news_notice {
  margin-top: 50px;}
.news_notice li {
  border-bottom: 1px solid #e9e7e7;
  padding: 28px;
  background: #f3f3f3;
  margin-bottom: 15px;
  padding-bottom: 48px;
  transition: 0.5s;}
.news_notice li:hover {
  background: #a9322c;}
.news_notice li:hover a .info .bt {
  color: #fff;}
/* .news_notice li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
} */
.news_notice li a {
  display: block;
  position: relative;
  padding-left: 20px;
  padding-right: 18px;}
.news_notice li a .info {
  height: 55px;}
.news_notice li a .info .bt {
  font-size: 16px;
  line-height: 26px;
  color: #333;
  transition: 0.5s;}
.news_notice li:hover a .info .newsmore {
  color: #fff;}
.news_notice li a .news_date {
  position: absolute;
  left: -5px;
  width: 71px;
  height: 67px;
  padding-right: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  text-align: center;
  font-size: 12px;
  background: url(images/timebg.png);
  color: #333;

  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  flex-direction: column;}
.newsmore {
  transition: 0.5s;}
.news_notice li a .news_date:before {
  position: absolute;
  content: "";
  left: 50%;
  margin-left: -8px;
  top: -6px;
  width: 16px;
  height: 12px;
  background: url(images/time.png) no-repeat;}
.news_notice li a .news_date .day {
  font-weight: bold;
  font-size: 18px;
  color: #a9322c;}
.news_notice li a .news_date .year {
  font-weight: bold;
  font-size: 14px;
  color: #a9322c;}

.main3 {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #f3f3f3;}
.t14::before {
  content: url(images/laodong.png);
  position: absolute;
  bottom: -7px;
  width: 64px;
  height: 62px;
  z-index: 1;}
.work {
  width: 48%;}
.text1 {
  width: 48%;}
.t15::before {
  content: url(images/wenjian.png);
  position: absolute;
  bottom: -7px;
  width: 64px;
  height: 62px;
  z-index: 1;}
.work2 {
  margin-top: 50px;}
.work2 li {
  width: 48%;
  border-top: 2px solid #333333;
  padding-top: 22px;
  padding-bottom: 30px;
  transition: 0.5s;}
.work2 li:hover {
  border-top: 2px solid #a9322c;}
.work2 li:hover .newstitle {
  color: #a9322c;}
.ntime3 {
  font-size: 13px;
  color: #898989;
  line-height: 24px;}
.m12text {
  border-top: 2px solid #a9322c;
  background: #fff;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;}
.m12text li {
  border-bottom: 1px dashed rgba(197, 197, 197, 1);}
.m12text li:hover .m1text2 {
  color: rgba(140, 0, 0, 1);}
.m12text .info {
  display: flex;
  justify-content: space-between;
  align-items: center;}
.m1text2 {
  transition: 0.5s;
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  line-height: 62px;}
.m2T {
  font-weight: bold;
  font-size: 14px;
  color: #333333;
  line-height: 62px;}
/* main4 */
.main4 {
  padding-top: 60px;
  padding-bottom: 120px;}

.mySwiper2 {
  margin-top: 60px;
  padding-bottom: 100px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  padding-top: 20px !important;}
.mySwiper2 .swiper-slide {
  transition: 0.5s;
  padding-left: 12px !important;
  padding-right: 12px !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  background: #ffffff;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.19);}
.mySwiper2 .swiper-slide:hover {
  box-shadow: 0px 0px 15px 0px rgba(133, 19, 13, 0.68);}
.mySwiper2 .swiper-slide .simg {
  width: 100%;
  height: 201px;}
.stime {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;}
.stime .day {
  margin-bottom: 5px;
  font-size: 26px;
  color: #a9322c;}
.stime .year {
  font-size: 14px;
  color: #a9322c;}
.st {
  display: flex;
  justify-content:flex-end;
  align-items: center;
padding: 15px
;}
.s1 {
  margin-top: 20px;}
.mySwiper2 .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: #a9322c !important;
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -ms-border-radius: 50% !important;
  -o-border-radius: 50% !important;}
.mySwiper2 .swiper-pagination-bullet-active {
  width: 18px;
  height: 18px;
  background: url(images/btnred2.png);}
.mySwiper2 .swiper-button-next {
  width: 8px !important;
  height: 14px !important;
  background: url(images/btn-right.png) no-repeat;
  right: 40% !important;
  transition: 0.5s;
  top: 100% !important;}
.mySwiper2 .swiper-button-prev {
  width: 8px !important;
  height: 14px !important;
  background: url(images/btn-left.png) no-repeat;
  left: 41% !important;
  transition: 0.5s;
  top: 100% !important;}
.mySwiper2 .swiper-button-next:hover {
  background: url(images/btn-right-on.png) no-repeat;
  right: 40% !important;}
.mySwiper2 .swiper-button-prev:hover {
  background: url(images/btn-left-on.png) no-repeat;
  left: 41% !important;}

/* footer */
.footer {
  background: #93241e;
  padding-top: 40px;
  padding-bottom: 40px;}
 
.f1 li {
  font-size: 16px;
  color: #ffffff;
  line-height: 35px;}
.f1 li a{
  font-size: 16px;
  color: #ffffff;
  line-height: 35px;}
.f2 {
  font-weight: bold;
  font-size: 18px !important;
  color: #ffffff;
  line-height: 35px;
  margin-bottom: 20px;}
.f2:before {
  content: "";
  width: 5px;
  height: 20px;
  background: #e9e9e9;
  display: inline-block;
  position: relative;
  top: 5px;
  margin-right: 20px;}
.f {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;}
/**新闻列表**/

/***********************************************************
 * 列表页
 */

/**主体列表页开始**/
#l-container .inner {
  padding: 25px 0px;}
/**主体文章页开始**/
#d-container .inner {
  background: #fff;}
.col_menu {
  width: 240px;
  float: left;
  margin-right: -240px;
  position: relative;
  top: -100px;}
.col_menu .l-qh {
  margin-bottom: 10px;}
.col_menu .col_menu_head {
  background: #93241e;} /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;} /**位置栏目字体**/
.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: 62px;
  color: #333;
  font-size: 16px;}
.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 0px 6px 0px rgba(0, 0, 0, 0.19);
  margin-top: 20px;
  margin-bottom: 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;}
.m1 {
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 28px;
  padding-right: 28px;
  background: #f3f3f3;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;}
.m1 a {
  display: flex;
  align-items: center;}
.m1 a .news_title {
  font-size: 18px;
  color: #333333;
  transition: 0.5s;}
.m1 .news_date {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid #fff;
  padding-left: 20px;}
.m1 .news_date .day {
  font-weight: bold;
  font-size: 18px;
  color: #a9322c;
  margin-bottom: 5px;
  transition: 0.5s;}
.m1 .news_date .year {
  font-weight: bold;
  font-size: 14px;
  color: #a9322c;
  transition: 0.5s;}
.m1:hover {
  background: rgba(180, 25, 0, 0.7);}
.m1:hover .news_title {
  color: #fff;}
.m1:hover .day {
  color: #fff;}
.m1:hover .year {
  color: #fff;}

/* 侧边链接 */
.QLinks {
  width: 182px;
  background: #a9322c;
  border-radius: 8px;
  position: absolute;
  top: 61px;
  right: 69px;
  padding-bottom: 80px;}
.main2 {
  position: relative;}
.qtitle {
  font-weight: bold;
    font-size: 14px;
    color: #ffffff;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 16px;
text-align: center;}
.QLinks li {
  height: 95px;
  border-bottom: 1px solid #fff;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  z-index:999;
    position: relative;}
.QLinks li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;}
.QLinks::before {
  content: url(images/logo2.png);
  position: absolute;
  bottom: 0px;
  width: 100px;
  height: 140px;
  left: 10px;
  z-index:2;}
.QLinks li:last-child {
  border-bottom: none;}
.qimg img {
  width: 35px;
  height: 35px;
  margin-bottom: 10px;}
.QLinks li:hover {
  background: #961f19;}
.head-right {
  display: flex;
  flex-direction: column;
  align-content: flex-end;
  align-items: flex-end;}
.header-link a {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 20px;}
.header-link  a img{
  margin-right: 10px;}
.s7 {
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 28px;}
.SHFWinfo {}
.SHFWinfo li {
  padding: 15px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #e9e7e7;}
.time3 {
  font-weight: 400;
  font-size: 16px;
  color: #787777;
  margin-left: 10px;}
.SHFWinfo li:hover .s7{
 
  transition:0.5s;
  -webkit-transition:0.5s;
  -moz-transition:0.5s;
  -ms-transition:0.5s;
  -o-transition:0.5s;
  color: #fff;}
.SHFWinfo li:hover .time3{
  transition:0.5s;
  -webkit-transition:0.5s;
  -moz-transition:0.5s;
  -ms-transition:0.5s;
  -o-transition:0.5s;
  color: #fff;}
.news_notice11  .news_date{
display: flex;
    flex-direction: column;
    align-items: flex-start;
background:url(images/timebg.png)  no-repeat;
padding:8px;}
 .news_notice11  .news_date .day{
font-weight: 400;
font-size: 22px;
color: #a9322c;
margin-bottom:10px;}

 .news_notice11  .news_date .year{
font-weight: 400;
font-size: 18px;
color: #a9322c;}

.news_notice11{
padding-top:50px;}
.news_notice11 .info{
width: 86%;}
.news_notice11 li{
padding:15px;
border-bottom:1px dashed  #B6B6B6;}

.news_notice11 li:hover .n1{

color:#a9322c;
 transition:0.5s;}
.news_notice11 li:hover {
padding-left:30px;
transition:0.5s;}
