@charset "UTF-8";
.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: #333;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.tow, .page-list_item a, .list_three-item a, .list_two-item a, .list_one-item a, .one-swiper-item-text .p1 {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mwimg img, .top-logo img {
  display: inline-block;
  max-width: 100%;
}

.dflex, .layout_three-box, .layout_one-box {
  display: flex;
}
@media (max-width: 990px) {
  .dflex, .layout_three-box, .layout_one-box {
    flex-direction: column;
  }
  .dflex > div, .layout_three-box > div, .layout_one-box > div {
    width: 100%;
  }
  .dflex > div + div, .layout_three-box > div + div, .layout_one-box > div + div {
    margin-top: 10px;
  }
}

.flex1, .page-list_item a, .list_two-item a, .list_one-item a, .top-search form [name=query] {
  flex: 1;
  min-width: 1px;
}

div,
p,
a,
input,
span,
button,
form {
  box-sizing: border-box;
}

p {
  margin: 0;
}

.bgImgHoverScale, .tuwen_two-item-img, .two-swiper-item-img {
  overflow: hidden;
}
.bgImgHoverScale .inner-bg, .tuwen_two-item-img .inner-bg, .two-swiper-item-img .inner-bg {
  transition: all 0.5s ease;
}
.bgImgHoverScale:hover .inner-bg, .tuwen_two-item-img:hover .inner-bg, .two-swiper-item-img:hover .inner-bg {
  transform: scale(1.1);
}

.wrap {
  max-width: 1220px;
  padding: 0 10px;
  margin: 0 auto;
}

.header {
  background: url(../images/bg1.png) top center no-repeat;
  background-size: cover;
}

.top {
  padding: 19px 0;
}
.top-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-logo {
  display: flex;
  margin-right: 15px;
}
.top-search form {
  display: flex;
  height: 35px;
  width: 215px;
  background: #fff;
}
.top-search form [name=query] {
  padding: 0 0 0 10px;
  color: #333;
  background: transparent;
  font-size: 14px;
  border: none;
}
.top-search form [name=query]:focus {
  outline: none;
}
.top-search form [name=query]::-moz-placeholder {
  color: #999;
}
.top-search form [name=query]::placeholder {
  color: #999;
}
.top-search form [type=submit] {
  background: transparent;
  border: none;
  width: 35px;
  background: url(../images/search.png) center no-repeat;
  cursor: pointer;
}
.top-search form [type=submit]:focus {
  outline: none;
}
.top_search-btn {
  display: none;
}
.top_search-btn i {
  color: rgb(181, 13, 13);
  font-size: 24px;
}
.top_menu-btn {
  display: none;
}
.top_menu-btn i {
  color: rgb(181, 13, 13);
  font-size: 24px;
}
.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-logo {
    width: 70%;
    margin-right: 10px;
  }
  .top_search-btn {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
  }
  .top_menu-btn {
    display: flex;
  }
}

.nav {
  background: rgba(181, 13, 13, 0.9);
}
.nav-box {
  display: flex;
  justify-content: center;
}
.nav-box_item + .nav-box_item {
  border-left: 1px solid #fff;
}
.nav-box_item {
  position: relative;
  width: 11.0833333333%;
}
.nav-box_item > a {
  font-size: 18px;
  display: block;
  text-align: center;
  line-height: 3;
  color: #fff;
}
.nav-box_item.on > a, .nav-box_item:hover > a {
  color: #fcc02e;
}
.nav-box_item-arrow {
  display: none;
}
@media (min-width: 990px) {
  .sub-box {
    display: none;
    position: absolute;
    z-index: 9;
    left: 0;
    width: 110%;
    background: rgb(181, 13, 13);
    overflow: hidden;
  }
}
.sub-box_item {
  text-align: center;
}
.sub-box_item > a {
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: 40px;
}
.sub-box_item > a:hover {
  text-decoration: underline;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 990px) {
  .nav {
    flex-direction: column;
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgb(181, 13, 13);
  }
  .nav-box {
    flex-direction: column;
  }
  .nav-box_item {
    position: relative;
    width: 100%;
    border-left: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
  }
  .nav-box_item > a {
    padding: 0 10px;
    font-size: 15px;
    text-align: left;
    line-height: 42px;
    color: #fff;
  }
  .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 {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .sub-box_item > a {
    padding: 8px 10px 8px 20px;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
    color: #e7e7e7;
  }
}

.layout_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgb(181, 13, 13);
  padding-bottom: 14px;
  margin-bottom: 12px;
}
.layout_title-text {
  font-weight: bold;
  font-size: 20px;
  color: rgb(181, 13, 13);
  margin-bottom: 0;
  line-height: 1.2;
}
@media (max-width: 1430px) {
  .layout_title-text {
    font-size: 18px;
  }
}
@media (max-width: 990px) {
  .layout_title-text {
    font-size: 16px;
  }
}
.layout_title-more {
  font-size: 14px;
  color: #6c6c6c;
}
.layout_title-more:hover {
  color: rgb(181, 13, 13);
}

.footer {
  background: rgb(181, 13, 13);
  padding: 2.0833333333vw 0;
  text-align: center;
}
.footer p {
  font-size: 14px;
  color: #fff;
}

.one-swiper {
  position: relative;
  overflow: hidden;
}
.one-swiper-item {
  display: block;
  position: relative;
}
.one-swiper-item-img .inner-bg {
  padding-bottom: 58.4745762712%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.one-swiper-item-text {
  position: absolute;
  z-index: 9;
  left: 0;
  width: 100%;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.one-swiper-item-text .p1 {
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  padding: 0 30% 0 15px;
}
.one-swiper .swiper-pagination {
  position: absolute;
  right: 5px;
  bottom: 15px;
  left: auto;
  width: auto;
}
.one-swiper .swiper-pagination-bullet {
  background: transparent;
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
  opacity: 1;
  background: #d9d9d9;
}
.one-swiper .swiper-pagination-bullet-active {
  background: rgb(181, 13, 13);
}

.two-swiper {
  position: relative;
  overflow: hidden;
}
.two-swiper_arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 20px);
  cursor: pointer;
}
.two-swiper_arrow i {
  color: #fff;
}
.two-swiper_arrow-next {
  left: -80px;
}
.two-swiper_arrow-prev {
  right: -80px;
}
.two-swiper_arrow:hover {
  background: rgba(0, 0, 0, 0.5);
}
.two-swiper-item {
  display: block;
}
.two-swiper-item-img .inner-bg {
  padding-bottom: 38.7596899225%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.three-swiper {
  position: relative;
  overflow: hidden;
}
.three-swiper .swiper-slide {
  width: auto;
}
.three-swiper-item {
  display: block;
}
.three-swiper-item-img img {
  height: 54px;
}

.layout_one {
  padding: 20px 0;
}
.layout_one-box {
  justify-content: space-between;
}
.layout_one-left {
  width: 49.1666666667%;
}
.layout_one-right {
  width: 49.1666666667%;
}

.layout_two {
  background: #e5e5e5;
  padding: 20px 0;
}
.layout_two-box {
  position: relative;
}

.layout_three {
  padding: 20px 0;
}
.layout_three-box {
  justify-content: space-between;
}
.layout_three-left {
  width: 58.75%;
}
.layout_three-right {
  width: 39.1666666667%;
}

.layout_four {
  padding: 20px 0;
}

.list_one-item {
  display: flex;
  align-items: center;
  padding: 6px 0;
}
.list_one-item:last-child {
  margin-bottom: 0;
}
.list_one-item:before {
  content: "•";
  margin-right: 5px;
}
.list_one-item a {
  font-size: 18px;
  color: #333;
  margin-bottom: 0;
  line-height: 1.5;
}
@media (max-width: 1430px) {
  .list_one-item a {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .list_one-item a {
    font-size: 14px;
  }
}
.list_one-item:hover {
  color: rgb(181, 13, 13);
}
.list_one-item:hover a {
  color: rgb(181, 13, 13);
}
.list_one-item span {
  color: #6c6c6c;
  margin-left: 10px;
  font-size: 15px;
}

.tuwen_one {
  display: flex;
  flex-wrap: wrap;
  margin: -20px -10px 0 -10px;
}
.tuwen_one-item {
  width: calc(20% - 20px);
  margin: 20px 10px 0 10px;
}
.tuwen_one-item a {
  display: block;
  position: relative;
  overflow: hidden;
}
.tuwen_one-item a .inner-bg {
  transition: all 0.5s ease;
}
.tuwen_one-item a:hover .inner-bg {
  transform: scale(1.1);
}
.tuwen_one-item-img {
  border-radius: 4px;
  overflow: hidden;
}
.tuwen_one-item-img .inner-bg {
  padding-bottom: 66.3716814159%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.tuwen_one-item-text {
  position: absolute;
  z-index: 9;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(4, 78, 188, 0.9) 0%, rgba(4, 78, 188, 0) 100%);
  padding-left: 16px;
  line-height: 40px;
  color: #fff;
}

.list_two-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.list_two-item:last-child {
  margin-bottom: 0;
}
.list_two-item a {
  line-height: 22px;
}
.list_two-item:hover {
  color: rgb(181, 13, 13);
}
.list_two-item span {
  color: #6d6e71;
  margin-left: 10px;
  font-size: 16px;
}

.list_three-item {
  margin-bottom: 15px;
}
.list_three-item:last-child {
  margin-bottom: 0;
}
.list_three-item a {
  display: block;
  font-size: 14px;
  line-height: 32px;
  color: #044ebc;
  padding-left: 12px;
  background: rgba(4, 78, 188, 0.05);
  border: 1px solid rgba(4, 78, 188, 0.5);
  border-radius: 4px;
}
.list_three-item a:hover {
  background: #044ebc;
  color: #fff;
}

.tuwen_two {
  display: flex;
  flex-wrap: wrap;
  margin: -15px -7px 0 -7px;
}
.tuwen_two-item {
  margin: 15px 7px 0 7px;
  width: calc(33.33% - 15px);
}
.tuwen_two-item a {
  display: block;
}
.tuwen_two-item a:hover .tuwen_two-item-text {
  color: rgb(181, 13, 13);
}
.tuwen_two-item-img .inner-bg {
  padding-bottom: 62.1428571429%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.tuwen_two-item-text {
  font-size: 16px;
  color: #323641;
  margin-top: 16px;
  text-align: center;
}

.tuwen_three {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tuwen_three-item {
  width: 100%;
  background: rgba(4, 78, 188, 0.1);
  border-radius: 4px;
  margin-bottom: 8px;
}
.tuwen_three-item:nth-of-type(1), .tuwen_three-item:nth-of-type(2) {
  width: 49%;
}
.tuwen_three-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
}
.tuwen_three-item a:hover {
  background: #044ebc;
}
.tuwen_three-item a:hover .default {
  display: none;
}
.tuwen_three-item a:hover .hover {
  display: block;
}
.tuwen_three-item a:hover span {
  color: #fff;
}
.tuwen_three-item img {
  width: 24px;
}
.tuwen_three-item img.hover {
  display: none;
}
.tuwen_three-item span {
  margin-left: 12px;
  font-size: 14px;
  color: #044ebc;
}
.tuwen_three-item:last-child {
  margin-bottom: 0;
}

#page {
  text-align: center;
  padding: 10px 12px 6px;
  clear: both;
}

#page .s1 {
  width: 52px;
  text-align: center;
}

#page .s2 {
  background: #1f3a87;
  border: 1px solid #dcdddd;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

#page a.s2:visited {
  color: #fff;
}

#page a {
  padding: 2px 5px 2px;
  color: #1e50a2;
  background: #fff;
  border: 1px solid #dcdddd;
  text-align: center;
}

#page a:visited {
  color: #1f3a87;
}

#page a:hover {
  color: #fff;
  background: #1e50a2;
  border: 1px solid #1e50a2;
}

#page .s3 {
  cursor: default;
  padding: 2px 5px 2px;
  margin: 5px 4px 0 0;
  color: #ccc;
  background: #fff;
  border: 1px solid #ccc;
  text-align: center;
}

#page {
  font-size: 16px !important;
}

#page .s2 {
  background: rgba(181, 13, 13, 0.9) !important;
}

.layout_page {
  padding: 25px 0 10px 0;
  background: #fff;
}
.layout_page-top {
  background: url(../images/box2head.gif) left top repeat-x;
  border: 1px solid #e2e2e2;
}
.layout_page-title {
  height: 32px;
  display: flex;
  align-items: center;
}
.layout_page-title img {
  margin: 0 15px;
}
.layout_page-title span {
  font-size: 20px;
  color: #000;
  font-weight: bold;
}
.layout_page-title p {
  font-size: 18px;
  color: rgb(16, 80, 157);
}
.layout_page-con {
  border: 1px solid #e2e2e2;
  padding: 25px;
}

.page-list_item {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.page-list_item:hover {
  background: #fbfbfb;
}
.page-list_item:hover a {
  color: rgb(181, 13, 13);
  text-decoration: underline;
}
.page-list_item:before {
  content: "";
  width: 3px;
  height: 3px;
  background: #014fa1;
  margin-right: 10px;
}
.page-list_item a {
  font-size: 14px;
  color: rgb(69, 69, 69);
}
.page-list_item span {
  font-size: 14px;
  color: #656668;
  margin-left: 10px;
}

.closepage {
  margin: 13px auto 0;
  width: 97%;
  text-align: center;
}

.closepage span {
  background: url("../images/submit_btn_bg.gif") repeat-x scroll 0 0 transparent;
  border: 1px solid #555555;
  color: #333333;
  width: 120px;
  height: 21px;
  padding: 1px 3px;
  margin-left: 10px;
  font-size: 12px;
  line-height: 24px;
}
.closepage span a:hover {
  text-decoration: underline;
  color: rgb(181, 13, 13);
}

.page-detail {
  background: #fafafa;
  padding: 25px;
}
.page-detail_title {
  font-size: 36px;
  color: rgb(181, 13, 13);
  margin-bottom: 0;
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 1430px) {
  .page-detail_title {
    font-size: 30px;
  }
}
@media (max-width: 990px) {
  .page-detail_title {
    font-size: 20px;
  }
}
.page-detail_info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #f4f4f4;
  border: 1px solid #e2e2e2;
  margin: 20px 0;
  padding: 6px 0;
}
.page-detail_info span {
  line-height: 1.7;
  font-size: 14px;
  margin: 0 5px;
  color: #999999;
}
.page-detail_pn-item {
  font-size: 16px;
  color: #000;
  display: flex;
  flex-wrap: wrap;
}
.page-detail_pn-item span {
  display: flex;
  align-items: center;
  color: rgb(181, 13, 13);
}
.page-detail_pn-item span img {
  margin-right: 10px;
}
.page-detail_pn-item a:hover {
  color: rgb(181, 13, 13);
  text-decoration: underline;
}
.page-detail_pn-item + .page-detail_pn-item {
  margin-top: 10px;
}

@media (max-width: 990px) {
  #page {
    padding: 10px 0;
  }
  #page a,
  #page span {
    display: inline-block;
  }
  #page .s1 {
    width: auto;
  }
  #page {
    font-size: 12px !important;
  }
  .layout_page-title span {
    font-size: 16px;
  }
  .layout_page-title p {
    font-size: 14px;
  }
  .layout_page-con {
    padding: 12px;
  }
  .page-list_item {
    padding: 5px 0;
  }
  .page-detail {
    padding: 10px;
  }
  .page-detail_info {
    margin: 10px 0;
  }
  .page-detail_con img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  .page-detail_pn-item {
    font-size: 14px;
  }
  .page-detail_pn-item + .page-detail_pn-item {
    margin-top: 5px;
  }
}
@media (max-width: 1430px) {
  .wrap {
    max-width: 1054px;
  }
  .two-swiper_arrow {
    z-index: 99;
  }
  .two-swiper_arrow-next {
    left: 0;
  }
  .two-swiper_arrow-prev {
    right: 0;
  }
}
@media (max-width: 990px) {
  .top {
    padding: 10px 0;
  }
  .top-search {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 99;
    top: 100%;
    background: rgb(181, 13, 13);
    padding: 10px;
  }
  .top-search form {
    width: 100%;
  }
  .top-search.on {
    display: block;
  }
}
/*# sourceMappingURL=main.css.map */
