.d-flex {
  display: flex;
}

.just-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.flex-direction-column {
  flex-direction: column;
}

.just-center {
  justify-content: center;
}

html {
  font-size: 16px;
  color: #333333;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.tow, .page-list_item-title, .three-list_item .title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mwimg img, .footer-logo img, .top-logo img {
  display: inline-block;
  max-width: 100%;
}

.flex, .footer-top {
  display: flex;
}
@media (max-width: 990px) {
  .flex, .footer-top {
    flex-direction: column;
  }
  .flex > div, .footer-top > div {
    width: 100%;
  }
}

.hoverImg, .tuwen-list_item {
  overflow: hidden;
}
.hoverImg img, .tuwen-list_item img {
  display: block;
  transition: all 0.5s;
}
.hoverImg:hover img, .tuwen-list_item:hover img {
  transform: scale(1.1);
}

.flexText, .three-list_item .title {
  flex: 1;
  min-width: 1px;
  padding: 0px 0px 0px 15px;
}

div,
p,
a,
input,
span,
button,
form {
  box-sizing: border-box;
}

p {
  margin: 0;
}

.wrap {
  max-width: 1430px;
  padding: 0 15px;
  margin: 0 auto;
}

.top {
  background: url(../images/bg1.jpg) right center no-repeat;
  background-size: cover;
  padding: 10px 0;
}
.top .wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.top-right {
  display: flex;
  align-items: center;
  padding-top: 10px;
  height: 30px;
}
.top-right > a {
  font-size: 18px;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.5;
  margin-right: 40px;
}
.top-right > a:hover {
  text-decoration: underline;
}
.top-search {
  position: absolute;
  right: 0;
  top: 40px;
  background: #fff;
  padding: 5px;
  display: none;
}
.top-search form {
  width: 265px;
  height: 42px;
  border: 1px solid #a82328;
  display: flex;
}
.top-search input {
  border: none;
  background: transparent;
  flex: 1;
  padding: 0 10px;
  font-size: 14px;
  color: #333;
}
.top-search input::-moz-placeholder {
  color: #333333;
}
.top-search input::placeholder {
  color: #333333;
}
.top-search input:focus {
  outline: none;
}
.top-search button {
  background: #a82328 url(../images/search.png) center no-repeat;
  width: 55px;
  cursor: pointer;
  border: none;
}
.top-search_btn {
  cursor: pointer;
}
.top_menu-btn {
  display: none;
}
.top_menu-btn i {
  color: #fff;
  font-size: 25px;
}
.top_menu-btn i.icon-system-close {
  display: none;
}
.top_menu-btn.on .icon-menu {
  display: none;
}
.top_menu-btn.on .icon-system-close {
  display: block;
}
@media (max-width: 990px) {
  .top {
    position: relative;
  }
  .top .wrap {
    height: auto;
    align-items: center;
  }
  .top-logo {
    margin-right: 10px;
  }
  .top-logo img {
    width: 100%;
  }
  .top-logo span {
    font-size: 14px;
    padding-left: 10px;
    margin-left: 0;
  }
  .top-right {
    padding-top: 0;
  }
  .top-right > a {
    display: none;
  }
  .top .top-search_btn img {
    height: 20px;
  }
  .top-search {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 9;
    top: 100%;
    padding: 10px;
    background: #dfdfdc;
    border-top: 1px solid #7b7b7a;
  }
  .top-search form {
    width: 100%;
  }
  .top-search.on {
    display: flex;
    justify-content: flex-end;
  }
  .top-search input {
    flex: 1;
    color: #333;
    width: auto;
  }
  .top-search_btn {
    display: flex;
    margin-left: auto;
  }
  .top_menu-btn {
    display: flex;
    margin-left: 10px;
  }
}

.nav {
  background: #77161a;
}
.nav-box {
  display: flex;
}
.nav-box_item {
  position: relative;
  flex: 1;
}
.nav-box_item > a {
  text-align: center;
  display: block;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 2.5;
}
.nav-box_item.on > a, .nav-box_item:hover > a {
  background: rgba(0, 0, 0, 0.1);
}
.nav-box_item-arrow {
  display: none;
}
@media (min-width: 990px) {
  .sub-box {
    display: none;
    position: absolute;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%);
    background: #77161a;
    min-width: 100%;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
  }
}
.sub-box_item > a {
  display: block;
  padding: 13px 20px;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
}
.sub-box_item > a:hover {
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 990px) {
  .nav {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #77161a;
  }
  .nav .wrap {
    padding: 0;
  }
  .nav-box {
    flex-direction: column;
  }
  .nav-box_item {
    position: relative;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
  }
  .nav-box_item > a {
    padding: 9px 20px !important;
    font-size: 16px !important;
    line-height: 1.5;
    color: #fff;
    text-align: left;
  }
  .nav-box_item-arrow {
    position: absolute;
    right: 0;
    top: 0;
    height: 42px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    transition: all 0.5s;
  }
  .nav-box_item-arrow i {
    color: #fff;
    font-size: 20px;
  }
  .nav-box_item.act .sub-box {
    display: block;
  }
  .nav-box_item.act > .nav-box_item-arrow {
    transform: rotate(90deg);
  }
  .sub-box {
    display: none;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
  }
  .sub-box_item > a {
    padding: 10px 20px 10px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
    color: #e7e7e7;
  }
}

.home-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background-size: 100%;
  padding-bottom: 2px;
  border-bottom: 2px solid #f1dadb;
  margin-right: 8px;
  position: relative;
}
.home-title:after {
  content: "";
  height: 17px;
  width: 16px;
  background: url(../images/t_bg.png) center no-repeat;
  position: absolute;
  right: -8px;
  bottom: -9px;
}
.home-title p {
  font-size: 23px;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 2;
  background: url(../images/columetitle.png) center no-repeat;
  padding: 0px 0px 0 50px;
  width: 175px;
  height: 45px;
}
.home-title a {
  padding-right: 5px;
  font-size: 16px;
  color: #616161;
  margin-bottom: 0;
  line-height: 1.5;
}
.home-title a:hover {
  color: #a82328;
}

.footer-top {
  background: url(../images/bg3.jpg) center no-repeat;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 60px;
  justify-content: space-around;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1200px) {
  .footer-top {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 990px) {
  .footer-top {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.footer-info p {
  font-size: 18px;
  color: #fff;
}
.footer-info p + p {
  margin-top: 10px;
}
.footer .copyright {
  padding: 20px 0;
  background: #94221b;
  font-size: 19px;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 990px) {
  .footer-logo {
    margin-bottom: 15px;
  }
  .footer-logo img {
    max-width: 100%;
  }
  .footer-info p {
    font-size: 14px;
  }
  .footer .copyright {
    padding: 10px 15px;
  }
  .footer .copyright p {
    font-size: 14px;
  }
}
.banner {
  position: relative;
  overflow: hidden;
}
.banner .swiper-slide a {
  display: block;
  padding-bottom: 23.854%;
  position: relative;
}
.banner .swiper-slide a > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.banner .swiper-pagination {
  bottom: 30px;
  text-align: right;
  padding-right: 18.75%;
}
.banner .swiper-pagination-bullet {
  opacity: 1;
  width: 22px;
  height: 24px;
  margin: 0 0 0 13px !important;
  border-radius: 0;
  background: url(../images/i1.png) center no-repeat;
  background-size: 100%;
}
.banner .swiper-pagination-bullet-active {
  background: url(../images/i2.png) center no-repeat;
}
@media (max-width: 1025px) {
  .banner .swiper-pagination {
    bottom: 10px !important;
    text-align: center;
    padding-right: 0;
  }
  .banner .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 5px !important;
  }
}
@media (max-width: 768px) {
  .banner .swiper-slide a {
    padding-bottom: 36%;
    position: relative;
  }
  .banner .swiper-slide a > img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
    left: 0;
  }
}

.main {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 1200px) {
  .main {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 990px) {
  .main {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.one {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 13px;
}
@media (max-width: 1200px) {
  .one {
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 10px;
  }
}
@media (max-width: 990px) {
  .one {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
  }
}
.one-item {
  display: flex;
  
  height: 116px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 1px;
  box-shadow: 0px 4px 4.2px 0.8px rgba(44, 44, 44, 0.08);
  border: 1px solid #e7c3c3;
}
.one-item img {
  margin-bottom: 10px;
}
.one-item p {
  font-size: 18px;
  color: #333333;
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 700;
}
@media (max-width: 1430px) {
  .one-item p {
    font-size: 16px;
  }
}

.two {
  margin-bottom: 50px;
}
.two-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 35px;
  grid-row-gap: 55px;
}
@media (max-width: 1200px) {
  .two-list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
  }
}
@media (max-width: 990px) {
  .two-list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }
}

.tuwen-list_item {
  display: block;
  padding-bottom: 77%;
  position: relative;
}
.tuwen-list_item > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.tuwen-list_item p {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
  right: 0;
  padding: 15px 50px 15px 20px;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.5s;
}
.tuwen-list_item p span {
  font-size: 18px;
  color: #fff;
  margin-bottom: 0;
  line-height: 24px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.tuwen-list_item:hover {
  box-shadow: 0px 7px 8.82px 0.18px rgba(0, 0, 0, 0.38);
}
.tuwen-list_item:hover p {
  background: url(../images/bg2.png) left bottom no-repeat;
  background-size: 100% 100%;
  padding-left: 30px;
}

.three {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 35px;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .three {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}
@media (max-width: 990px) {
  .three {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }
}
.three-item {
  min-width: 1px;
}
.three-list {
  border-radius: 8px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 4px 11.76px 0.24px rgba(0, 0, 0, 0.15);
  padding: 10px 30px;
}
.three-list_item {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #333333;
  margin-bottom: 0;
  line-height: 68px;
  border-bottom: 1px dashed #d0d0d0;
  background: url(../images/dianbg.png) center left no-repeat;
}
.three-list_item:last-child {
  border-bottom: none;
}
.three-list_item .time {
  color: #7a7a7a;
}
.three-list_item:hover .title {
  color: #a82328;
}

.four {
  margin-bottom: 50px;
}
.four-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  grid-row-gap: 20px;
}
@media (max-width: 1200px) {
  .four-list {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
  }
}
@media (max-width: 990px) {
  .four-list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }
}

.five-box {
  position: relative;
  padding: 0 35px;
}
.five-box_swiper {
  overflow: hidden;
  position: relative;
}
.five-box .swiper-slide a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.five-box .swiper-slide img {
  max-width: 100%;
  display: inline-block;
  height: 70px;
}
.five-box_left,
.five-box_right {
  position: absolute;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
}
.five-box_left {
  right: 0;
}
.five-box_right {
  left: 0;
}

@media (max-width: 990px) {
  .five-box_left img,
  .five-box_right img {
    width: 15px;
  }
}

.page_banner {
  padding-bottom: 23.4375%;
  position: relative;
  position: relative;
}
.page_banner > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.page-wrap_left .page-title {
  display: flex;
}

.page-wrap_left .page-title h3 {
  background: url(../images/columetitle.jpg) center no-repeat;
  background-size: cover;
  line-height: 105px;
  font-size: 30px;
  font-weight: normal;
  color: #fff;
  margin: 0;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.page-wrap_left .page-title-menu {
  display: none;
}

.page-wrap_left .page-title-menu i {
font-size: 20px;
color: #fff;
}
@media (max-width: 990px) {
.page-wrap_left .page-title-menu {
display: block;
}
  .page_banner {
    padding-bottom: 40%;
  }
 .page-wrap_left .page-title {
    padding: 0 15px;
    justify-content: space-between;
    align-items: center;
    background: #a82328;
  }

  .page-wrap_left .page-title .wrap {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .page-wrap_left .page-title h3 {
    background: transparent;
    line-height: 40px;
    font-size: 20px;
    width: auto;
    padding-left: 0;
  }
  .page_banner .page-title-menu {
    display: block;
  }
}

.page-wrap .wrap {
  display: flex;
  justify-content: space-between;
}
.page-wrap_left {
  width: 320px;
  margin-right: 50px;
  position: relative;
  
}
.page-menu {
  border-left: 5px solid #a82328;
}
.page-menu_item {
  border-bottom: 1px solid #dddddd;
}
.page-menu_item a {
  display: block;
  font-size: 18px;
  line-height: 70px;
  padding-left: 40px;
  color: #333;
  transition: all 0.3s;
  position: relative;
}
.page-menu_item a:after {
  content: "\e644";
  font-family: iconfont;
  font-size: 20px;
  position: absolute;
  right: 10%;
}
.page-menu_item.on a, .page-menu_item:hover a {
  color: #a82328;
}
.page-menu_item.on {
  font-weight: bold;
}

.page-wrap_right {
  flex: 1;
  padding: 20px 0 40px 0;
}
.page-wrap_right-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}
.page-wrap_right-title {
  display: flex;
  align-items: center;
}
.page-wrap_right-title i {
  font-size: 20px;
  color: #a82328;
}
.page-wrap_right-title span {
  font-size: 20px;
  font-weight: bold;
  color: #a82328;
  margin-left: 5px;
}
.page-wrap_right .crumbs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 20px;
}
.page-wrap_right .crumbs i {
  color: #a82328;
  font-size: 18px;
}
.page-wrap_right .crumbs a:hover {
  color: #a82328;
}
@media (max-width: 1025px) {
  .page-wrap .wrap {
    flex-direction: column;
    padding: 0;
  }
  .page-wrap_left {
    width: 100%;
    margin-right: 0;
    position: relative;
    z-index: 999;
  }
  .page-menu {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 99;
    background: #fff;
    border: none;
    display: none;
  }
  .page-menu.on {
    display: block;
  }
  .page-menu_item a {
    font-size: 14px;
    line-height: 35px;
    text-align: left;
    padding: 0 15px;
    border-top: 1px solid #a82328;
    background-position: right 10px center;
  }
  .page-menu_item a:after {
    font-size: 16px;
    right: 10px;
  }
  .page-wrap_right {
    width: 100%;
    padding: 15px;
  }
  .page-wrap_right-top {
    margin-bottom: 15px;
    padding: 10px 0;
  }
  .page-wrap_right-title span {
    font-size: 18px;
  }
}

.page_content {
  font-size: 16px;
  line-height: 2;
}
.page_content img {
  max-width: 100% !important;
  max-height: auto !important;
}

.paging {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.paging_item,
.paging span {
  border: 1px solid #ccc;
  padding: 4px 8px;
  margin: 0 3px;
  color: #333;
}
.paging_item:hover,
.paging span:hover {
  background: #a82328;
  border-color: #a82328;
  color: #fff;
}
.paging span {
  border: none;
}

.page-title h1 {
  font-size: 20px;
  margin: 0 0 15px 0;
  text-align: center;
}

.page-info {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #efefef;
  padding-bottom: 10px;
}
.page-info span {
  color: #666;
  margin: 0 10px;
}

.page-next-prev {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.page-next-prev > div {
  width: 48%;
  border: 1px solid #efefef;
  padding: 10px;
}
.page-next-prev a {
  font-size: 14px;
  color: #333;
}
.page-next-prev a:hover {
  color: #a82328;
}

.page-list_item {
  display: block;
  border-bottom: 1px dashed rgba(168, 35, 40, 0.29);
  transition: all 0.5s;
  padding:12px;
}
.page-list_item:last-child {
  border-bottom: none;
}
.page-list_item > span {
  
  transition: all 0.5s;
}
.page-list_item-time {
  font-size: 14px;
  color: rgba(168, 35, 40, 0.6);
  margin-bottom: 10px;
  line-height: 1.5;
}
.page-list_item-title {
  font-size:20px;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.5;
  font-family: "Microsoft YaHei",SimSun,SimHei;
  background: url(../images/dianbg.png) center left no-repeat;
  padding: 0px 0px 0px 15px;
}
.page-list_item-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}
.page-list_item:hover {
  background: rgba(168, 35, 40, 0.8);
}
.page-list_item:hover > span {
  color: #fff !important;
}
@media (max-width: 990px) {
  .page-list_item {
    padding: 10px;
  }
  .page-list_item-title {
    margin-bottom: 10px;
  }
}

@media (max-width: 1430px) {
  .wrap {
    max-width: 1054px;
  }
}
@media (max-width: 990px) {
  .one {
    margin-bottom: 20px;
  }
  .one-item {
    display: flex;
    height: auto;
    padding: 10px;
    flex-direction: row;
    justify-content: flex-start;
  }
  .one-item img {
    margin: 0 10px 0 0;
    height: 16px;
  }
  .one-item p {
    font-size: 14px;
  }
  .home-title {
    margin-bottom: 20px;
  }
  .home-title p {
    font-size: 20px;
  }
  .home-title a {
    font-size: 14px;
  }
  .two {
    margin-bottom: 20px;
  }
  .tuwen-list_item p {
    padding: 10px 30px 10px 15px;
  }
  .tuwen-list_item p span {
    font-size: 14px;
    line-height: 20px;
  }
  .three {
    margin-bottom: 20px;
  }
  .three-list {
    padding: 10px 15px;
  }
  .three-list_item {
    font-size: 14px;
    line-height: 40px;
  }
  .three-list_item .time {
    margin-left: 10px;
  }
  .four {
    margin-bottom: 20px;
  }
}
/*# sourceMappingURL=main.css.map */