@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: 1350px;
  margin: 0 auto;
} /**页面全局宽度**/
.mod {
  padding: 0px;
}
/*head开始*/
#header {
  border-top: 7px solid rgba(126, 0, 0, 1);
  background: rgba(243, 237, 229, 1);
  position: relative;
  padding-top: 58px;
  padding-bottom: 108px;
}
.header .head-left {
  display: inline-block;
}
.header .sitelogo {
  float: left;
}
.header .sitelogo .logo {
  width: 659px;
  height: 40px;
  display: block;
  position: relative;
  z-index: 2;
  margin-left: 230px;
}
.header .sitelogo .logo::before {
  content: url("images/logo2.png");
  position: absolute;
  left: -239px;
  top: -67px;
}
.header .sitelogo .logo img {
  display: block;
  width: 100%;
}
.header .head-right {
  font-size: 26px;
  color: #fff;
}
.search-panel {
  float: right;
  position: relative;
  z-index: 20;
  display: inline-block;
  line-height: 25px;
}
.search-window {
  border: 0px;
  overflow: hidden;
  min-height: 32px;
}
/**搜索**/
.wp_search {
  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: 0px;
  width: 180px;
  position: relative;
}
.wp-search form {
  display: block;
  padding-right: 34px;
}
.wp-search .search-input {
  margin-right: 0;
  height: 32px;
  width: 175px;
  border-bottom: 1px solid rgba(126, 0, 0, 1);
  position: relative;
}
.wp-search .search-input input.search-title {
  width: 100%;
  box-sizing: border-box;
  height: 32px;
  border: 0;
  outline: 0;
  background: none;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #7e0000;
  line-height: 32px;
}
.wp-search .search-btn {
  width: 32px;
  height: 32px;
  position: absolute;
  right: -28px;
  top: 0;
}

.wp-search .search-btn input.search-submit {
  width: 32px;
  height: 32px;
  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 {
  background: #6a0304;
  position: absolute;
  width: 100%;
  z-index: 1;
  bottom: 0;
}
#nav {
}
.nav .wp-menu {
  position: relative;
  z-index: 999 !important;
  width: 70%;
  float: right;
  height: 55px;
  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: 55px;
  text-align: center;
  z-index: 999 !important;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 55px;
  line-height: 55px;
  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;
  background: #9f0d0e;
}
.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 55px;
  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;
}

/**主页开始**/
.min-h1 {
  min-height: 40px;
}
.min-h2 {
  min-height: 360px;
}
.mt64 {
  margin-top: 64px;
}
.index_left {
  float: left;
  width: 44%;
}
.index_right {
  float: right;
  width: 44%;
}
.tucon {
  float: left;
  width: 100%;
  height: 398px;
}
.tucon .swiper-slide {
  width: 100%;
  padding-top: 80%;
  overflow: hidden;
  position: relative;
  height: 100% !important;
}
.tucon .swiper-slide img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  height: 443px;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.tucon .swiper-button-next,
.tucon .swiper-button-prev {
  display: block;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 27px;
  height: 27px;
  display: block;
  z-index: 100;
  cursor: pointer;
  opacity: 1;
  position: absolute;
  top: auto;
  margin: 0;
  bottom: 0;
}
.tucon .swiper-button-prev {
  background: url(images/left.png) center no-repeat;
  left: auto;
  right: 32px;
}
.tucon .swiper-button-next {
  background: url(images/right.png) center no-repeat;
  right: 0px;
}
.tucon .swiper-slide .botbox {
  width: 100%;
  position: absolute;
  right: 25px;
  bottom: -2px;
  box-sizing: border-box;
  width: 539px;
}
.tucon .swiper-slide .botbox .title {
  line-height: 28px;
  font-size: 16px;
  color: #fff;
}
.tucon .swiper-slide .botbox .date {
  margin-top: 5px;
  line-height: 16px;
  font-size: 14px;
  color: #fff;
  background: url(images/date.png) left center no-repeat;
  padding-left: 24px;
}

.index_news {
  float: right;
  width: 424px;
}
.index_title {
  position: relative;
  text-align: left;
  height: 26px;
}
.index_title .bt {
  font-size: 22px;
  font-weight: bold;
  color: #9f0d0e;
  line-height: 24px;
}
.index_title .bt span {
  color: #333;
}
.index_more {
  line-height: 24px;
  padding-left: 22px;
  background: url(images/more.png) left center no-repeat;
  font-size: 16px;
  color: #9f0d0e;
}

.news_list {
  margin-top: 27px;
}
.news_list li {
  border: 1px solid #e9e7e7;
  margin-bottom: 20px;
}
.news_list li:last-child {
  margin-bottom: 0;
}
.news_list li a {
  display: block;
  height: 54px;
  position: relative;
  padding-left: 72px;
  padding-right: 35px;
}
.news_list li a .bt {
  line-height: 54px;
  font-size: 16px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news_list li a .news_date {
  position: absolute;
  left: -1px;
  top: -1px;
  height: 56px;
  width: 58px;
  text-align: center;
  font-size: 12px;
  background: #9f0d0e;
  color: #fff;
}
.news_list li a .news_date .day {
  font-size: 20px;
}
.news_list li a .wz {
  margin-top: 5px;
  line-height: 19px;
  font-size: 13px;
  color: #999;
  display: none;
}
.news_list li.hover {
  border: 1px solid #9f0d0e;
}
.news_list li.hover a {
  padding: 7px 30px;
  height: auto;
}
.news_list li.hover .bt {
  margin-left: 42px;
  font-weight: 600;
  height: 54px;
  line-height: 26px;
  color: #9f0d0e;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: normal;
}
.news_list li.hover .wz {
  display: -webkit-box;
}

.news_notice {
  margin-top: 15px;
}
.news_notice li {
  border: 1px solid rgba(155, 0, 15, 0.3);
  padding-top: 18px;
  padding-bottom: 50px;
  margin-bottom: 35px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.news_notice li:last-child {
  margin-bottom: 0;
}
.news_notice li a {
  position: relative;
  padding-left: 45px;
  padding-right: 18px;
}
.news_notice li a .info {
  padding-left: 50px;
  padding-right: 30px;
}
.news_notice li a .info .bt {
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 29px;
}
.news_notice li a .news_date {
  position: absolute;
  left: -61px;
  top: 18px;
  text-align: center;
  width: 85px;
  height: 60px;
  background: #ffffff;
  border-radius: 3px;
  border: 1px solid #9b000f;
}
.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 {
  margin-bottom: 3px;
  margin-top: 3px;
  font-family: SourceHanSerifCN;
  font-weight: 800;
  font-size: 26px;
  color: #9b000f;
  line-height: 26px;
}

.news_notice li a .news_date .year {
  width: 100%;
  background: #9b000f;
  font-family: SourceHanSerifCN;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  line-height: 26px;
}
.news_notice li a:hover .info .bt,
.news_notice li a:hover .news_date {
  color: #9f0d0e;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.news_tu li {
  width: calc(33.3% - 26px);
}
.news_tu li .title {
  width: 100%;
  max-width: 247px;
  height: 56px;
  background: url(images/bt.png) no-repeat;
  padding-left: 20px;
  font-size: 22px;
  color: #fff;
}
.news_tu li .bk {
  padding: 16px 26px 26px 26px;
  background: #fff;
  box-shadow: 0px 6px 16px 0px rgb(0 0 0 / 8%), 0px 9px 4px 0px rgb(0 0 0 / 5%),
    0px 12px 48px 16px rgb(0 0 0 / 3%);
}
.tu_pic {
  width: 100%;
  padding-top: 139%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.tu_pic img {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: 1.5s all ease;
  -ms-transition: 1.5s all ease;
  transition: 1.5s all ease;
}

.list_news li {
}
.list_news li a {
  display: block;
  padding-right: 100px;
  position: relative;
}
.list_news li .news_title {
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 20px;
}
.list_news li .news_date {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  text-align: right;
  line-height: 32px;
  font-size: 12px;
  color: #999;
}

.link_list {
  margin-top: 14px;
}
.link_list li {
  border-bottom: 1px dashed #dcdcdc;
  padding-top: 10px;
}
.link_list li:first-child {
  padding-top: 0;
}
.link_list a {
  display: block;
  height: 46px;
  line-height: 46px;
  padding-left: 48px;
  font-size: 16px;
  font-weight: 600;
  color: #9f0d0e;
  position: relative;
  background: url(images/link.png) 10px center no-repeat;
}
.main_link {
  margin-top: 35px;
  border: 1px solid #e7e3e3;
  border-radius: 6px;
  background: linear-gradient(180deg, #fffefe 0%, #dcc4c5 100%);
  padding: 54px 26px 22px;
  position: relative;
}
.main_link .name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 16px;
  line-height: 25px;
  font-size: 22px;
  font-weight: bold;
  color: #9f0d0e;
}
/**链接样式**/
.mlink {
  width: 100%;
}
.botlinks .links-wrap {
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 30px;
  background: #8a010e;
  border: 1px solid #ffffff;
}
.botlinks .links-wrap a.links-arrow {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 38px 0 12px;
  color: #fff;
  font-size: 16px;
  background: url(images/arrow.png) no-repeat right bottom;
}
.botlinks .links-wrap a.links-arrow:hover,
.botlinks .wrap-open a.links-arrow {
  color: #fff;
  background-position: right top;
  cursor: pointer;
}
.botlinks .links-wrap .link-items {
  display: none;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 40px;
  height: auto;
  max-height: 300px;
  overflow: auto;
  overflow-x: hidden;
  background: #f3eaea;
}
.botlinks .links-wrap .link-items a {
  display: block;
  line-height: 24px;
  padding: 5px 0;
  color: #444;
}
.botlinks .links-wrap .link-items a span {
  display: block;
  padding: 0 16px;
  white-space: nowrap;
}
.botlinks .links-wrap .link-items a:hover {
  color: #9f0d0e;
  cursor: pointer;
}

/**页脚开始**/
#footer {
  padding-top: 60px;
  padding-bottom: 52px;
  background: rgba(121, 5, 14, 1);
  background-size: cover;
  position: relative;
}
.copyright_wz {
  line-height: 24px;
  text-align: center;
  font-size: 16px;
  color: #fff;
}
.copyright_wz p {
  margin-top: 10px;
}
.copyright_wz a {
  color: #fff;
}

/*滚动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: #8e0107;
} /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  font-family: Microsoft YaHei;
} /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 75px;
  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: 16px;
  font-weight: normal;
  background: none;
  border-top: 0px solid #fff;
}
.col_list .wp_listcolumn .wp_column a .column-name {
  padding: 5px 0px 5px 28px;
  line-height: 50px;
  font-weight: bold;
}
.col_list .wp_listcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  color: #8e0107;
}
.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-weight: bold;
}
.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;
  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 20px 10px 20px;
  margin: 0 0px;
background: #fff;
margin-bottom:30px;
}
.wp_paging{
margin-top:100px!important;
}
.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 {
  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;
}

.main1 {
  padding-top: 76px;
  padding-bottom: 66px;
  background: url(images/bg.png) no-repeat;
  background-size: cover;
}
.jianjie {
  font-size: 16px;
  color: #898989;
  line-height: 28px;
}
.news_notice li:hover {
  box-shadow: 0px 0px 8px 0px rgba(155, 0, 15, 0.6);
  border: 1px solid rgba(155, 0, 15, 0.6);
}
.news_notice li a:hover .info .bt {
  font-weight: bold;
  font-size: 18px;
  color: #9b000f;
  line-height: 29px;
}
.More {
  display: flex;
  justify-content: center;
  margin-top:80px;
}
.botbox li a .news_date {
  position: absolute;
  left: -98px;
  top: 25px;
  text-align: center;
  width: 85px;
  height: 60px;
  background: #ffffff;
  border-radius: 3px;
  border: 1px solid #9b000f;
}
.botbox li {
  border: none;
  padding-top: 0;
  width: 539px;
  padding-top: 28px;
  padding-bottom: 22px;
  padding-right: 16px;
  margin-bottom: 10px;
  background: #fff;
  padding-left: 20px;
}
.botbox li:hover {
  box-shadow: 0px 0px 8px 0px rgba(155, 0, 15, 0.6);
  border: none;
}
.swiper-container {
  padding-bottom: 60px !important;
}
.swiper-container .swiper-wrapper {
  padding-bottom: 50px !important;
}
.swiper-container .swiper-wrapper .swiper-slide img {
  height: 443px;
}

.botbox li .info {
  padding-right: 30px;
  margin-left: 20px;
}
.f1 {
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  line-height: 30px;
  margin-bottom: 35px;
}
.f2 {
  font-size: 16px;
  color: #ffffff;
  line-height: 36px;
}
.Footer {
  display: flex;
  justify-content: space-between;
}

.mlink {
  width: 216px;
  height: 35px;
  margin-top: 16px;
}
.f4 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.logo3 {
  display: none;
}
.more li:hover a img {
  transform: scale(1.03);
  transition: transform 0.8s ease;
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
}
#footer {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.footer2 {
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 23px;
  background: rgba(121, 5, 14, 1);
  display: flex;
  justify-content: center;
}

.list_news li {
  border-left: 2px solid rgba(121, 5, 14, 1);
  padding-left: 20px;
  margin-top: 30px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  padding-top: 15px;
  padding-bottom: 15px;
}
.list_news li:hover {
  padding-left: 30px;
}
.jianjie {
  font-size: 16px;
  color: #898989;
  line-height: 28px;
}
.news_date2 {
  font-size: 16px;
  color: #898989;
  line-height: 28px;
}
.list_news li a {
  display: flex;
  justify-content: space-between;
flex-direction: column;
}
.list_news2  li a {
  display: flex;
  justify-content: space-between;

}
.list_news2  li {
  border-left: 2px solid rgba(121, 5, 14, 1);
  padding-left: 20px;
  margin-top: 20px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  padding-top: 15px;
  padding-bottom: 15px;
}
.list_news2  li:hover {
  padding-left: 30px;
}


.botbox li {
  display: flex;
  align-items: center;
  transition: 0.5s;
}
.botbox li .info .bt {
}
.botbox li .news_date .day {
  font-family: SourceHanSerifCN;
  font-weight: 800;
  font-size: 26px;
  color: #9b000f;
  line-height: 26px;
}
.botbox li .news_date .year {
  font-family: SourceHanSerifCN;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  line-height: 26px;
  background: #9b000f;
}

.botbox li .info .bt {
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 29px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.botbox li:hover .info .bt {
  color: rgba(155, 0, 15, 1);
}
.newsimg img{
width: 100%;
    height: 100%;
}
.newsimg{
width: 30%;
}
.newsimg2{
 width: 100%;
}

.f3 li a img{
width:100%;
}

.newsimg2  .news_title{
font-family: Microsoft YaHei;
font-weight: bold;
font-size: 18px;
color: #131313;
line-height: 28px;
}
.list_news2 li:hover{
background:  rgba(121, 5, 14, 1);
}
.list_news2 li:hover .news_title,
.list_news2 li:hover .jianjie,
.list_news2 li:hover .news_date2{
color:#fff
}