.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-text .p1, .list_three-item a, .list-two-item_text .p1, .list-one-item a {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mwimg img, .footer-logo img, .top-logo img {
  display: inline-block;
  max-width: 100%;
}

.dflex, .boxb-flex, .boxal-flex, .boxa-flex {
  display: flex;
}
@media (max-width: 990px) {
  .dflex, .boxb-flex, .boxal-flex, .boxa-flex {
    flex-direction: column;
  }
  .dflex > div, .boxb-flex > div, .boxal-flex > div, .boxa-flex > div {
    width: 100%;
  }
  .dflex > div + div, .boxb-flex > div + div, .boxal-flex > div + div, .boxa-flex > div + div {
    margin-top: 15px;
  }
}

.flex1, .list_three-item a, .list-two-item_text, .list-one-item a, .top-search_input {
  flex: 1;
  min-width: 1px;
}

div,
p,
a,
input,
span,
button,
form {
  box-sizing: border-box;
}

p {
  margin: 0;
}

.bgImgHoverScale {
  overflow: hidden;
}
.bgImgHoverScale .inner-bg {
  transition: all 0.5s ease;
}
.bgImgHoverScale:hover .inner-bg {
  transform: scale(1.1);
}

.wrap {
  /*max-width: 1430px;*/
  padding: 0 15px;
  /*margin: 0 auto;*/
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(14, 88, 193, 0.9);
}

.top-links {
  background: #0E58C1;
}
.top-links .wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 2.1em;
  font-size: 18px;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.5;
}
@media (max-width: 1430px) {
  .top-links .wrap {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .top-links .wrap {
    font-size: 14px;
  }
}
.top-links a:hover {
  text-decoration: underline;
}
.top-links span {
  margin: 0 20px;
}

.top {
  padding: 25px 0;
}
.top .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-logo {
  display: flex;
}
.top-search form {
  display: flex;
  width: 220px;
  height: 45px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 23px;
}
.top-search_input {
  font-size: 16px;
  color: #ffffff;
  background: transparent;
  padding: 0 15px;
  border: none;
  outline: none;
}
.top-search_input::-moz-placeholder {
  color: #fff;
}
.top-search_input::placeholder {
  color: #fff;
}
.top-search_input:focus {
  outline: none;
}
.top-search_btn {
  padding: 0 10px;
  background: transparent;
  border: none;
  border-left: 1px solid #fff;
  cursor: pointer;
}
.top-search_btn img {
  max-width: 100%;
}
.top .top-btns {
  display: none;
}
.top .top-btns .mob-search {
  margin-right: 10px;
}
.top .top-btns .mob-search i {
  font-size: 18px;
  color: #fff;
}
.top_menu-btn i {
  color: #fff;
  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 {
    margin-right: 10px;
    width: 70%;
  }
  .top-btns {
    display: flex;
  }
  .top_menu-btn {
    display: flex;
  }
}

.nav {
  padding-bottom: 19px;
}
.nav-box {
  display: flex;
  justify-content: space-between;
}
.nav-box_item {
  position: relative;
}
.nav-box_item > a {
  text-align: center;
  display: block;
  font-size: 22px;
  color: #fff;
  margin-bottom: 0;
  line-height: 1;
  position: relative;
  padding-bottom: 11px;
}
@media (max-width: 1430px) {
  .nav-box_item > a {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .nav-box_item > a {
    font-size: 14px;
  }
}
.nav-box_item > a:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  height: 2px;
  background: #fff;
}
.nav-box_item.on > a:after, .nav-box_item:hover > a:after {
  content: "";
}
.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: #0E58C1;
    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: #0E58C1;
  }
  .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: 14px 20px !important;
    font-size: 15px !important;
    color: #fff;
    text-align: left;
  }
  .nav-box_item > a:after {
    display: none;
  }
  .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;
  }
}

.box-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}
.box-title:after {
  content: "";
  position: absolute;
  left: 20px;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #0E58C1;
}
.box-title_text {
  display: flex;
  align-items: center;
  padding: 0 31px 0 13px;
  height: 60px;
  cursor: pointer;
}
.box-title_text img {
  margin-right: 9px;
  width: 30px;
}
.box-title_text span {
  font-size: 20px;
  color: #0E58C1;
  margin-bottom: 0;
  line-height: 1;
 font-family: '黑体';
font-weight: bold;
}
@media (max-width: 1430px) {
  .box-title_text span {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .box-title_text span {
    font-size: 14px;
  }
}
.box-title_text.on {
  background-image: linear-gradient(0deg, rgb(8, 74, 168) 0%, rgb(84, 147, 237) 100%);
  border-radius: 0 16px 0 16px;
}
.box-title_text.on span {
  font-size: 26px;
  color: #fff;
  margin-bottom: 0;
  line-height: 1;
}
@media (max-width: 1430px) {
  .box-title_text.on span {
    font-size: 20px;
  }
}
@media (max-width: 990px) {
  .box-title_text.on span {
    font-size: 18px;
  }
}
.box-title_more {
  display: none;
}
.box-title_more.on {
  display: flex;
  align-items: center;
  margin-left: auto;
  font-size: 18px;
  color: #0E58C1;
  margin-bottom: 0;
  line-height: 1.5;
}
@media (max-width: 1430px) {
  .box-title_more.on {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .box-title_more.on {
    font-size: 14px;
  }
}
.box-title_more.on img {
  margin-left: 10px;
  margin-top: 1px;
  width: 14px;
}

.footer {
  background: url(../images/bg2.png) top center no-repeat;
  background-size: cover;
  padding-top: 6.7708333333vw;
}
.footer-box {
  padding-bottom: 1.3020833333vw;
}
.footer-box .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-text {
  font-size: 18px;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.5;
  text-align: right;
}
@media (max-width: 1430px) {
  .footer-text {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .footer-text {
    font-size: 14px;
  }
}
.footer-text p + p {
  margin-top: 15px;
}
.footer-copyright {
  text-align: center;
  font-size: 18px;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.5;
}
.footer-copyright .wrap {
  border-top: 1px dashed #fff;
  padding: 10px 0;
}
@media (max-width: 1430px) {
  .footer-copyright {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .footer-copyright {
    font-size: 14px;
  }
}

.banner {
  position: relative;
  overflow: hidden;
}
.banner .swiper-slide a {
  display: block;
  padding-bottom: 59.4182825485%;
  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: 3.3854166667vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .swiper-pagination-bullet {
  width: 24px;
  height: 24px;
  border-radius: 0;
  background: url(../images/i2.png) center no-repeat;
  margin: 0 13px !important;
  opacity: 1;
}
.banner .swiper-pagination-bullet-active {
  width: 41px;
  height: 54px;
  background: url(../images/i1.png) center no-repeat;
}

.one-swiper {
  position: relative;
  overflow: hidden;
}
.one-swiper-item {
  display: block;
}
.one-swiper-item-img .inner-bg {
  padding-bottom: 72.0879120879%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.one-swiper .swiper-pagination {
  bottom: 1.5625vw;
  text-align: right;
  padding-right: 1.8229166667vw;
}
.one-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  margin: 0 5px !important;
  border: 1px solid #fff;
  opacity: 1;
}
.one-swiper .swiper-pagination-bullet-active {
  background: #0E58C1;
}

.boxa {
  padding-top: 25px;
  padding-bottom: 15px;
}
@media (max-width: 1430px) {
  .boxa {
    padding-top: 20px;
    padding-bottom:  10px;
  }
}
@media (max-width: 990px) {
  .boxa {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.boxa-flex {
  justify-content: space-between;
}
.boxa-left {
  width: 64.2857142857%;
}
.boxa-right {
  width: 33.5714285714%;
}
.boxal-flex {
  justify-content: space-between;
}
.boxal-left {
  width: 50.5555555556%;
}
.boxal-right {
  width: 48.1111111111%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 9.7px 0.3px rgba(0, 0, 0, 0.08);
  padding: 5px 19px;
}

.boxb {
  padding-top: 20px;
  padding-bottom: 15px;
}
@media (max-width: 1430px) {
  .boxb {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 990px) {
  .boxb {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.boxb-flex {
  justify-content: space-between;
}
.boxb-item {
  width: calc(50% - 15px);
}

.boxc {
  padding-top: 20px;
  padding-bottom: 15px;
}
@media (max-width: 1430px) {
  .boxc {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 990px) {
  .boxc {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.boxc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.boxc-list a {
  font-size: 20px;
  color: #333333;
  margin-bottom: 0;
  line-height: 1;
  height: 2.7em;
  display: flex;
  align-items: center;
  padding: 0 1.2em;
}
@media (max-width: 1430px) {
  .boxc-list a {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .boxc-list a {
    font-size: 14px;
  }
}
.boxc-list a:hover {
  background: url(../images/bg1.png) no-repeat;
  background-size: 100% 100%;
}

.list-one {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.list-one-item {
  flex: 1;
  display: flex;
  align-items: center;
}
.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 a:hover {
  color: #0E58C1;
}
.list-one-item span {
  margin-left: 10px;
  font-size: 16px;
  color: #999999;
  margin-bottom: 0;
  line-height: 1;
}
@media (max-width: 1430px) {
  .list-one-item span {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .list-one-item span {
    font-size: 12px;
  }
}
.list-one-item + .list-one-item {
  border-top: 1px dashed #D6D8DA;
}

.list-two-item {
  padding: 6px 0;
}
.list-two-item a {
  display: flex;
  align-items: center;
}
.list-two-item a:hover .list-two-item_text .p1 {
  color: #0E58C1;
}
.list-two-item_time {
  width: 81px;
  border: 1px solid #0E58C1;
  border-radius: 4px;
  text-align: center;
  text-align: center;
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
  line-height: 2.1;
  margin-right: 15px;
}
@media (max-width: 1430px) {
  .list-two-item_time {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .list-two-item_time {
    font-size: 12px;
  }
}
.list-two-item_time .p1 {
  background: #0E58C1;
}
.list-two-item_time .p2 {
  color: #0E58C1;
}
.list-two-item_text .p1 {
  font-size: 18px;
  color: #333;
  margin-bottom: 0;
  line-height: 1.5;
}
@media (max-width: 1430px) {
  .list-two-item_text .p1 {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .list-two-item_text .p1 {
    font-size: 14px;
  }
}
.list-two-item + .list-two-item {
  border-top: 1px dashed #D6D8DA;
}

.list_three {
  display: none;
}
.list_three.on {
  display: block;
}
.list_three-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.list_three-item a {
  font-size: 18px;
  color: #333;
  margin-bottom: 0;
  line-height: 1.5;
}
@media (max-width: 1430px) {
  .list_three-item a {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .list_three-item a {
    font-size: 14px;
  }
}
.list_three-item a:hover {
  color: #0E58C1;
}
.list_three-item span {
  font-size: 16px;
  color: #999;
  margin-bottom: 0;
  line-height: 1;
  margin-left: 10px;
}
@media (max-width: 1430px) {
  .list_three-item span {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .list_three-item span {
    font-size: 12px;
  }
}

.boxb-right_item .list_three-item:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0E58C1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.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;
  background: #fff;
}
.paging_item:hover,
.paging span:hover {
  background: #0E58C1;
  border-color: #0E58C1;
  color: #fff;
}
.paging span {
  background: transparent;
  border: none;
}

.page-banner_img {
  position: relative;
  padding-bottom: 28%;
}
.page-banner_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-main {
  background: #F3F3F3;
}

.page-main_box {
  display: flex;
  justify-content: space-between;
}

.page-main_left {
  width: 260px;
  margin-right: 50px;
  position: relative;
  z-index: 99;
}
.page-main_right {
  flex: 1;
  min-width: 0;
  padding: 0.8vw 0 2.5vw 0;
}
.page-main_title {
  background: #2154E7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 35px;
  margin-top: -95px;
}
.page-main_title span {
  font-size: 30px;  
  line-height: 1;
  color: #fff;
  letter-spacing: 1px;
  font-family: '宋体';
  font-weight: bold;
}
.page-main_title i {
  display: none;
}
.page-cate_item {
  background: #246BFA;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.page-cate_item-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}
.page-cate_item-inner:hover {
  background: #5089FB;
}
.page-cate_item-inner:hover a {
  font-weight: bold;
}
.page-cate_item-inner:hover i {
  opacity: 1;
}
.page-cate_item-inner a {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  color: #fff;
}
.page-cate_item-inner  i {
  font-size: 12px;
  color: #fff;
  opacity: 0;
  transition: all 0.5s ease;
  cursor: pointer;
}
.page-subcate {
  background: #5089FB;
  display: none;
}
.page-subcate_item a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  padding: 15px 40px 15px 60px;
}
.page-subcate_item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);;
}

.page-list_item {
  margin-bottom: 20px;
  border-left: 2px solid #246BFA;
}
.page-list_item:last-child {
  margin-bottom: 0;
}

.page-list_item a {
  display: block;
  padding: 7px 0 7px 15px;
}

.page-list_item .p1 {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}

.page-list_item .p2 {
  font-size: 14px;
  color: #999;
}
.page-list_item a:hover .p1 {
  color: #246BFA;
} 

.page-position {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
  color: #999999;
  margin-bottom: 20px;
}
.page-position a:hover {
  color: #246bfa;
}
.page-position a {
  margin: 0 5px;
}
.page-position i {
  font-size: 14px;
}

@media (max-width: 990px) {
  .page-banner_img {
    padding-bottom: 50%;
  }
  .page-main_box {
    flex-direction: column;
  }
  .page-main_left,
  .page-main_right {
    width: 100%;
  }
  .page-cate {
    display: none;
  }
  .page-cate.on {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 9;
  }
  .page-cate_item-inner {
    padding: 10px 15px;
  }
  .page-cate_item-inner a {
    font-size: 16px;
  }
  .page-subcate_item a {
    color: rgba(255,255,255,0.8);
    padding: 7px 15px 7px 25px;
  }

  .page-main_title {
    margin-top: -50px;
    justify-content: space-between;
    padding: 15px 15px;
  }
  .page-main_title span {
    font-size: 20px;
  }
  .page-main_title i {
    display: block;
    color: #fff;
  }
  .page-main_right {
    padding: 20px 0;
  }
  .page-list_item {
    margin-bottom: 10px;
    border-left: 1px solid #246BFA;
  }

  .page-list_item a {
    padding: 3px 0 3px 7px;
  }

  .page-list_item .p1 {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .page-list_item .p2 {
    font-size: 13px;
  }
}

.page-about {
  margin-top: 30px;
}
.page-about img, .page-about video {
  max-width: 100%;
}
.page-about p {
  font-size: 18px;
  text-indent: 2em;
  line-height: 1.8;
}

.page-detail {
  padding: 36px 50px;
  border-top: 6px solid #822530;
  background-color: #fff;
}
.page-detail_title {
  margin-bottom: 56px;
  font-size: 30px;
  color: #000;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}
.page-detail_info {
  text-align: center;
  padding-bottom: 18px;
  border-bottom: 2px solid #f3f3f3;
}
.page-detail_info span {
  font-size: 14px;
  color: #666;
  margin: 5px;
}
.page-detail_pn {
  text-align: right;
}
.page-detail_pn-item {
  font-size: 14px;
  margin-top: 10px;
  color: #333;
}
.page-detail_pn-item a:hover {
  color: #0E58C1;
}

@media (max-width: 990px) {
  .page-detail {
    padding: 20px 13px;
    border-top: 4px solid #822530;
  }
  .page-detail_title {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .page-detail_info {
    padding-bottom: 10px;
    border-bottom: 1px solid #f3f3f3;
  }
  .page-about {
    margin-top: 20px;
  }
  .page-about img, .page-about video {
    max-width: 100%;
    width: 100% !important;
    height: auto !important;
  }
  .page-about p {
    font-size: 14px;
  }
}
@media (max-width: 1430px) {
  /*.wrap {
    max-width: 1054px;
  }*/
  .box-title_text img {
    width: 20px;
  }
  .box-title_text {
    height: 50px;
  }
}
@media (max-width: 990px) {
  .top-search {
    display: none;
  }
  .top .top-btns {
    display: flex;
    align-self: center;
  }
  .top .top-btns .mob-search {
    display: flex;
    align-items: center;
  }
  .top {
    padding: 10px 0;
  }
  .top-search.on {
    display: block;
    position: absolute;
    left: 0;
    width: 100vw;
    top: 100%;
    background: #0E58C1;
    padding: 10px;
  }
  .top-search.on form {
    width: 100%;
  }
  .banner .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-size: 100% 100%;
  }
  .banner .swiper-pagination-bullet-active {
    width: 20px;
    height: 27px;
  }
  .list-one-item a {
    padding: 10px 0;
  }
  .footer-box .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-text {
    margin-top: 10px;
    text-align: left;
  }
  .footer-text p + p {
    margin-top: 3px;
  }
}
/*# sourceMappingURL=main.css.map */