.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 .txt .tit, .tuwen_three-item-text .p2, .tuwen_two-item-text, .list_one-item-text .p1, .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_two-box, .layout_one-box, .footer-box {
  display: flex;
}
@media (max-width: 990px) {
  .dflex, .layout_two-box, .layout_one-box, .footer-box {
    flex-direction: column;
  }
  .dflex > div, .layout_two-box > div, .layout_one-box > div, .footer-box > div {
    width: 100%;
  }
  .dflex > div + div, .layout_two-box > div + div, .layout_one-box > div + div, .footer-box > div + div {
    margin-top: 20px;
  }
}

.flex1, .tuwen_three-item-text, .list_two-item-text, .list_one-item-text, .banner-search_con-item {
  flex: 1;
  min-width: 1px;
}

div,
p,
a,
input,
span,
button,
form {
  box-sizing: border-box;
}

p {
  margin: 0;
}

.bgImgHoverScale, .tuwen_two-item-img {
  overflow: hidden;
}
.bgImgHoverScale .inner-bg, .tuwen_two-item-img .inner-bg {
  transition: all 0.5s ease;
}
.bgImgHoverScale:hover .inner-bg, .tuwen_two-item-img:hover .inner-bg {
  transform: scale(1.1);
}

.wrap {
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
}

.top {
  padding: 4px 0;
}
.top .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-logo {
  display: flex;
}
.top-logo img {
  height: 100px;
}
.top_menu-btn {
  display: none;
}
.top_menu-btn i {
  color: rgb(5, 80, 148);
  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;
    padding: 10px 0;
  }
  .top .wrap {
    height: auto;
  }
  .top-logo {
    width: 85%;
  }
  .top-logo img {
    width: 100%;
    height: auto;
  }
  .top_menu-btn {
    display: flex;
    margin-left: 10px;
  }
}

.nav {
  background: rgb(5, 80, 148);
}
.nav-box {
  display: flex;
  justify-content: space-between;
}
.nav-box_item {
  position: relative;
}
.nav-box_item > a {
  display: block;
  padding: 0 20px;
  font-size: 16px;
  line-height: 2.5;
  color: #fff;
}
@media (min-width: 990px) {
  .nav-box_item.on > a, .nav-box_item:hover > a {
    color: #777;
  }
}
.nav-box_item-arrow {
  display: none;
}
@media (min-width: 990px) {
  .sub-box {
    display: none;
    position: absolute;
    z-index: 9;
    left: 0;
    background: #fff;
    min-width: 150px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 6px 9px 0 rgba(0, 0, 0, 0.1);
  }
}
.sub-box_item {
  border-bottom: 1px solid #eee;
}
.sub-box_item:last-child {
  border-bottom: none;
}
.sub-box_item > a {
  display: block;
  padding: 16px;
  font-size: 14px;
  color: #333333;
  white-space: nowrap;
}
.sub-box_item > a:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2px;
  border-radius: 4px;
  background: #999;
  vertical-align: middle;
  margin-right: 6px;
  border: 1px solid #999;
}
.sub-box_item > a:hover {
  color: rgb(5, 80, 148);
}

@media (max-width: 990px) {
  .nav {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgb(5, 80, 148);
  }
  .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;
    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;
    text-align: left;
  }
}

.layout_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5625vw;
}
.layout_title-text .p1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 0;
  line-height: 1;
}
@media (max-width: 1230px) {
  .layout_title-text .p1 {
    font-size: 22px;
  }
}
@media (max-width: 990px) {
  .layout_title-text .p1 {
    font-size: 18px;
  }
}
.layout_title-text .p2 {
  text-transform: uppercase;
  margin-top: -2px;
  font-size: 20px;
  color: #d6d6d6;
  margin-bottom: 0;
  line-height: 1;
}
@media (max-width: 1230px) {
  .layout_title-text .p2 {
    font-size: 18px;
  }
}
@media (max-width: 990px) {
  .layout_title-text .p2 {
    font-size: 16px;
  }
}
.layout_title-more {
  font-size: 14px;
  color: #999;
}
.layout_title-more i {
  font-size: 14px;
  margin-left: 5px;
}
.layout_title-more:hover {
  color: rgb(5, 80, 148);
}

.footer {
  border-top: 0.78125vw solid rgb(241, 246, 255);
  background: #282e4e;
  padding: 15px 0 10px 0;
}
.footer-box {
  justify-content: space-between;
}
.footer-left {
  width: 75.8333333333%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-right {
  width: 12.5%;
}
.footer-links {
  margin-bottom: 8px;
}
.footer-links a:hover {
  color: #777;
}
.footer-contact {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #3e4360;
}
.footer-contact span {
  margin-right: 1.0416666667vw;
}
.footer-copyright span {
  margin-right: 1.0416666667vw;
}

.ai_btn {
  position: fixed;
  left: 0;
  z-index: 9999;
  font-size: 14px;
  padding: 0 0.8571428571em;
  line-height: 2.6;
  background: rgb(5, 80, 148);
  color: #fff;
  bottom: 40%;
}
.ai_btn:hover {
  color: #777;
}

.banner {
  position: relative;
}
.banner-swiper {
  position: relative;
  overflow: hidden;
}
.banner-swiper .swiper-slide a {
  display: block;
  padding-bottom: 36.4583333333%;
  position: relative;
}
.banner-swiper .swiper-slide a > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .banner-swiper .swiper-slide a {
    padding-bottom: 51%;
    position: relative;
  }
  .banner-swiper .swiper-slide a > img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
    left: 0;
  }
}
.banner-search {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 46.875%;
  height: 200px;
  margin: auto;
  z-index: 99;
  display: flex;
  flex-direction: column;
}
.banner-search_tag {
  display: flex;
}
.banner-search_tag-item {
  font-size: 16px;
  color: rgb(5, 80, 148);
  margin-bottom: 0;
  line-height: 1.5;
  padding: 0.625em 1.25em;
  margin-right: 0.375em;
  border-radius: 0.375em 0.375em 0 0;
  background: #fff;
  cursor: pointer;
}
@media (max-width: 1230px) {
  .banner-search_tag-item {
    font-size: 15px;
  }
}
@media (max-width: 990px) {
  .banner-search_tag-item {
    font-size: 14px;
  }
}
.banner-search_tag-item.on {
  background: rgb(5, 80, 148);
  color: #fff;
}
.banner-search_con {
  border-top: 6px solid #415285;
  background: #fff;
  flex: 1;
  display: flex;
  padding: 0 2.6041666667vw;
  align-items: center;
  border-radius: 0 6px 6px 6px;
}
.banner-search_con-item {
  display: none;
}
.banner-search_con-item.on {
  display: block;
}
.banner-search_form {
  display: flex;
  align-items: stretch;
  height: 50px;
  border: 1px solid rgb(5, 80, 148);
  border-radius: 4px;
  overflow: hidden;
}
.banner-search_form-select {
  height: 100%;
  width: 16%;
  border-right: 1px solid rgb(5, 80, 148);
}
.banner-search_form-select select {
  height: 100%;
  border: none;
  background: #f5f6f9;
  display: block;
  width: 100%;
  font-size: 16px;
  color: rgb(5, 80, 148);
  text-align: center;
  cursor: pointer;
}
.banner-search_form-select select:focus {
  outline: none;
}
.banner-search_form-input {
  flex: 1;
}
.banner-search_form-input input {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  font-size: 16px;
  color: #333;
  margin-bottom: 0;
  line-height: 1.5;
  padding: 0 3%;
}
@media (max-width: 1230px) {
  .banner-search_form-input input {
    font-size: 15px;
  }
}
@media (max-width: 990px) {
  .banner-search_form-input input {
    font-size: 14px;
  }
}
.banner-search_form-input input:focus {
  outline: none;
}
.banner-search_form-input input::-moz-placeholder {
  color: #999999;
}
.banner-search_form-input input::placeholder {
  color: #999999;
}
.banner-search_form-btn {
  background: rgb(5, 80, 148);
  align-items: center;
  width: 13.75%;
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.5;
  border: none;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 1230px) {
  .banner-search_form-btn {
    font-size: 15px;
  }
}
@media (max-width: 990px) {
  .banner-search_form-btn {
    font-size: 14px;
  }
}
.banner-search_form-btn:focus {
  outline: none;
}
.banner-search_form-btn i {
  margin-right: 5px;
}

.layout_one-left-swiper {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}
.layout_one-left-swiper.on {
  position: relative;
  opacity: 1;
  z-index: 9;
  visibility: visible;
}
.layout_one-left-swiper .swiper-pagination {
  position: absolute;
  bottom: 11px;
  width: 60px;
  text-align: center;
  left: auto;
  right: 0;
}
.layout_one-left-swiper .swiper-pagination-bullet {
  opacity: 1;
  width: 6px;
  height: 6px;
  background: transparent;
  border: 1px solid #fff;
  margin: 0 4px !important;
}
.layout_one-left-swiper .swiper-pagination-bullet-active {
  background: #fff;
}

.one-swiper-item {
  display: block;
  position: relative;
}
.one-swiper-item:hover .one-swiper-item-text .p2 {
  color: rgb(5, 80, 148);
}
.one-swiper-item:hover .one-swiper-item-img .inner-bg {
  transform: scale(1.1);
}
.one-swiper-item-img {
  overflow: hidden;
}
.one-swiper-item-img .inner-bg {
  padding-bottom: 82.1428571429%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.one-swiper-item-img .inner-bg {
  transition: all 0.5s;
}
.one-swiper-item-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.7142857143em 4.2857142857em 0.7142857143em 1.1428571429em;
}
.one-swiper-item-text .p1 {
  color: #fff;
}

.layout_one {
  padding-top: 70px;
  padding-bottom: 60px;
}
@media (max-width: 1230px) {
  .layout_one {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 990px) {
  .layout_one {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.layout_one-box {
  justify-content: space-between;
}
.layout_one-left {
  width: 46.6666666667%;
  position: relative;
}
.layout_one-right {
  width: 51.6666666667%;
}
.layout_one-right .layout_title {
  margin-bottom: 15px;
}
.layout_one-tag {
  display: flex;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}
.layout_one-tag-item {
  margin-right: 1.5625vw;
  cursor: pointer;
}
.layout_one-tag-item span {
  display: block;
  font-size: 16px;
  color: #333;
  margin-bottom: 0;
  line-height: 1.5;
  padding-bottom: 0.3125em;
  border-bottom: 2px solid transparent;
}
@media (max-width: 1230px) {
  .layout_one-tag-item span {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .layout_one-tag-item span {
    font-size: 12px;
  }
}
.layout_one-tag-item.on span {
  color: rgb(5, 80, 148);
  border-bottom-color: rgb(5, 80, 148);
}
.layout_one-con {
  position: relative;
}
.layout_one-con-item {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.layout_one-con-item.on {
  position: relative;
  opacity: 1;
  z-index: 9;
  visibility: visible;
}

.layout_two {
  padding-top: 0px;
  padding-bottom: 20px;
}
@media (max-width: 1230px) {
  .layout_two {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 990px) {
  .layout_two {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.layout_two-box {
  justify-content: space-between;
}
.layout_two-left {
  width: 64.1666666667%;
}
.layout_two-right {
  width: 31.6666666667%;
}

.layout_three {
  padding-top: 70px;
  padding-bottom: 100px;
  background: rgb(247, 248, 250);
}
@media (max-width: 1230px) {
  .layout_three {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 990px) {
  .layout_three {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.layout_three-tag {
  position: relative;
  margin-bottom: 1.5625vw;
}
.layout_three-tag-text {
  display: flex;
  justify-content: center;
}
.layout_three-tag-item {
  font-size: 16px;
  color: rgb(5, 80, 148);
  margin-bottom: 0;
  line-height: 2.125;
  padding: 0 1em;
  cursor: pointer;
  background: #e0e7f2;
}
@media (max-width: 1230px) {
  .layout_three-tag-item {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .layout_three-tag-item {
    font-size: 14px;
  }
}
.layout_three-tag-item.on {
  background: rgb(5, 80, 148);
  color: #fff;
}
.layout_three-tag-item:first-child {
  border-radius: 4px 0 0 4px;
}
.layout_three-tag-item:last-child {
  border-radius: 0 4px 4px 0;
}
.layout_three-tag a {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  align-items: center;
  display: none;
  font-size: 16px;
  color: rgb(5, 80, 148);
  margin-bottom: 0;
  line-height: 1.5;
}
.layout_three-tag a.on {
  display: block;
}
@media (max-width: 1230px) {
  .layout_three-tag a {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .layout_three-tag a {
    font-size: 14px;
  }
}
.layout_three-tag a img {
  margin-left: 5px;
}
.layout_three-con-item {
  display: none;
}
.layout_three-con-item.on {
  display: block;
}

.layout_four {
  padding-top: 80px;
  padding-bottom: 50px;
}
@media (max-width: 1230px) {
  .layout_four {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 990px) {
  .layout_four {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.list_one-item {
  border-bottom: 1px solid transparent;
  margin-bottom: 10px;
}
.list_one-item:last-child {
  margin-bottom: 0;
}
.list_one-item.on {
  padding-bottom: 10px;
  border-bottom-color: #eeeeee;
}
.list_one-item.on .list_one-item-time1 {
  display: none;
}
.list_one-item.on .list_one-item-time2 {
  text-align: center;
  display: block;
}
.list_one-item.on .list_one-item-time2 .p1 {
  font-size: 38px;
  color: rgb(5, 80, 148);
  margin-bottom: 0;
  line-height: 1.5;
}
@media (max-width: 1230px) {
  .list_one-item.on .list_one-item-time2 .p1 {
    font-size: 30px;
  }
}
@media (max-width: 990px) {
  .list_one-item.on .list_one-item-time2 .p1 {
    font-size: 20px;
  }
}
.list_one-item.on .list_one-item-time2 .p2 {
  font-size: 14px;
}
.list_one-item.on .list_one-item-text .p1 {
  font-size: 16px;
  color: #333;
  margin-bottom: 0;
  line-height: 1.5;
  color: rgb(5, 80, 148);
}
@media (max-width: 1230px) {
  .list_one-item.on .list_one-item-text .p1 {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .list_one-item.on .list_one-item-text .p1 {
    font-size: 12px;
  }
}
.list_one-item.on .list_one-item-text .p2 {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
  margin-bottom: 0;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 4.5em;
  opacity: 0.6;
}
@media (max-width: 1230px) {
  .list_one-item.on .list_one-item-text .p2 {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .list_one-item.on .list_one-item-text .p2 {
    font-size: 12px;
  }
}
.list_one-item a {
  display: flex;
  align-items: center;
}
.list_one-item-time2 {
  display: none;
}
.list_one-item-time1 {
  border-right: 2px solid #d8d8d8;
  font-size: 16px;
  color: #333;
  margin-bottom: 0;
  line-height: 1;
  width: 3.75em;
}
@media (max-width: 1230px) {
  .list_one-item-time1 {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .list_one-item-time1 {
    font-size: 12px;
  }
}
.list_one-item-text {
  margin-left: 0.78125vw;
}
.list_one-item-text .p1 {
  font-size: 14px;
}
.list_one-item-text .p1 span {
  font-size: 12px;
  padding: 0 4px;
  margin-right: 16px;
  line-height: 16px;
  background: rgb(5, 80, 148);
  color: #fff;
  position: relative;
}
.list_one-item-text .p1 span:after {
  content: "";
  border: 8px solid transparent;
  border-left-color: rgb(5, 80, 148);
  width: 0;
  height: 0;
  background: none;
  position: absolute;
  right: -16px;
  top: 0;
}
.list_one-item-text .p2 {
  display: none;
}

.list_two {
  display: flex;
  margin: -0.625vw -0.625vw 0 -0.625vw;
  flex-wrap: wrap;
}
.list_two-item {
  width: calc(50% - 1.25vw);
  margin: 0.625vw 0.625vw 0 0.625vw;
  background: #f7f8fa;
}
.list_two-item a {
  display: flex;
  align-items: center;
  padding: 1.0416666667vw 1.25vw;
}
.list_two-item a:hover * {
  color: rgb(5, 80, 148);
}
.list_two-item-time .p1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 0;
  line-height: 1;
}
@media (max-width: 1230px) {
  .list_two-item-time .p1 {
    font-size: 20px;
  }
}
@media (max-width: 990px) {
  .list_two-item-time .p1 {
    font-size: 16px;
  }
}
.list_two-item-time .p2 {
  font-size: 14px;
  color: #333;
  margin-bottom: 0;
  line-height: 1.5;
}
@media (max-width: 1230px) {
  .list_two-item-time .p2 {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .list_two-item-time .p2 {
    font-size: 12px;
  }
}
.list_two-item-text {
  margin-left: 10px;
}
.list_two-item-text .p1 {
  font-size: 16px;
  color: #333;
  margin-bottom: 0;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3em;
}
@media (max-width: 1230px) {
  .list_two-item-text .p1 {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .list_two-item-text .p1 {
    font-size: 14px;
  }
}

.tuwen_one {
  display: flex;
  flex-wrap: wrap;
  margin: -1.25vw -0.625vw 0 -0.625vw;
}
.tuwen_one-item {
  width: calc(33.3333333333% - 1.25vw);
  margin: 1.25vw 0.625vw 0 0.625vw;
}
.tuwen_one-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f7f8fa;
  border-radius: 4px;
  padding: 14px 4px;
}
.tuwen_one-item a:hover {
  background: #ceddea;
}
.tuwen_one-item-img {
  margin-bottom: 8px;
}
.tuwen_one-item-img img {
  display: inline-block;
  width: 32px;
}
.tuwen_one-item-text {
  font-size: 14px;
  color: rgb(5, 80, 148);
  margin-bottom: 0;
  line-height: 1.5;
}
@media (max-width: 1230px) {
  .tuwen_one-item-text {
    font-size: 12px;
  }
}
@media (max-width: 990px) {
  .tuwen_one-item-text {
    font-size: 12px;
  }
}

.tuwen_two {
  display: flex;
  flex-wrap: wrap;
  margin: -1.5625vw -0.78125vw 0 -0.78125vw;
}
.tuwen_two-item {
  width: calc(25% - 1.5625vw);
  margin: 1.5625vw 0.78125vw 0 0.78125vw;
}
.tuwen_two-item a {
  display: block;
}
.tuwen_two-item-img {
  box-shadow: 0px 2px 12px rgba(93, 99, 109, 0.16);
}
.tuwen_two-item-img .inner-bg {
  padding-bottom: 34.6153846154%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.tuwen_two-item-text {
  font-size: 14px;
  margin-top: 0.5em;
  text-align: center;
}

.tuwen_three {
  display: flex;
  flex-wrap: wrap;
  margin: -1.25vw -0.625vw 0 -0.625vw;
}
.tuwen_three-item {
  width: calc(33.3333333333% - 1.25vw);
  margin: 1.25vw 0.625vw 0 0.625vw;
}
.tuwen_three-item a {
  display: flex;
  align-items: stretch;
  background: #f7f8fa;
  padding: 1.25vw;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.06);
}
.tuwen_three-item a:hover .tuwen_three-item-img .inner-bg {
  transform: scale(1.1);
}
.tuwen_three-item a:hover .tuwen_three-item-text .p1 {
  color: rgb(5, 80, 148);
}
.tuwen_three-item-img {
  width: 29.7297297297%;
  margin-right: 1.0416666667vw;
  overflow: hidden;
}
.tuwen_three-item-img .inner-bg {
  padding-bottom: 136.3636363636%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.tuwen_three-item-img .inner-bg {
  transition: all 0.5s ease;
}
.tuwen_three-item-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tuwen_three-item-text .p1 {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 3.2em;
}
@media (max-width: 1230px) {
  .tuwen_three-item-text .p1 {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .tuwen_three-item-text .p1 {
    font-size: 14px;
  }
}
.tuwen_three-item-text .p2 {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
  line-height: 1.5;
  margin-bottom: auto;
}
@media (max-width: 1230px) {
  .tuwen_three-item-text .p2 {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .tuwen_three-item-text .p2 {
    font-size: 12px;
  }
}
.tuwen_three-item-text .p3 {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 4.8em;
}
@media (max-width: 1230px) {
  .tuwen_three-item-text .p3 {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .tuwen_three-item-text .p3 {
    font-size: 12px;
  }
}

.tuwen_four {
  display: flex;
  justify-content: space-between;
}
.tuwen_four-item {
  width: 40%;
}
.tuwen_four-item-img {
  margin-bottom: 5px;
}
.tuwen_four-item-img .inner-bg {
  padding-bottom: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.tuwen_four-item-text {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.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_banner .page-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
}
.page_banner .page-title h3 {
  background: linear-gradient(90deg, #0060a7 7%, #00a9be 107%);
  background-size: cover;
  line-height: 5.208vw;
  font-size: 30px;
  font-weight: normal;
  color: #fff;
  margin: 0;
  width: 250px;
  text-align: center;
  box-sizing: border-box;
}
.page_banner .page-title-menu {
  display: none;
}
.page_banner .page-title-menu i {
  font-size: 20px;
  color: #fff;
}
@media (max-width: 990px) {
  .page_banner {
    padding-bottom: 40%;
  }
  .page_banner .page-title .wrap {
    background: rgb(5, 80, 148);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .page_banner .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 {
  padding-bottom: 40px;
}
.page-wrap .wrap {
  display: flex;
  justify-content: space-between;
}
.page-wrap_left {
  width: 250px;
  position: relative;
  z-index: 9;
  margin-right: 70px;
}
.page-menu {
  background: url(../images/img1-3.png) right bottom no-repeat #fff;
  background-size: 100%;
  box-shadow: 0 0 0.52vw rgba(0, 0, 0, 0.2);
  padding-bottom: 6.77vw;
}
.page-menu.on {
  display: block;
}
.page-menu_item {
  border-bottom: 1px dashed #d8d8d8;
}
.page-menu_item-inner {
  display: flex;
  align-items: center;
  padding-right: 10px;
}
.page-menu_item-inner.act {
  background: #e9f0f3;
}
.page-menu_item-inner.act > i {
  transform: rotate(90deg);
}
.page-menu_item-inner > i {
  font-size: 18px;
  cursor: pointer;
  color: #c7c7c7;
  padding: 10px;
  transition: all 0.3s;
}
.page-menu_item-inner > a {
  flex: 1;
  min-width: 1px;
  font-size: 18px;
  line-height: 66px;
  color: #333;
  transition: all 0.3s;
  position: relative;
  padding-left: 1.822vw;
}
.page-menu_item:hover .page-menu_item-inner > a,
.page-menu_item:hover .page-menu_item-inner > i {
  color: rgb(5, 80, 148);
}
.page-menu_item.on .page-menu_item-inner {
  background: #e9f0f3;
}
.page-menu_item.on .page-menu_item-inner > a {
  color: rgb(5, 80, 148);
  font-weight: bold;
}

.page-submenu {
  padding: 1.041vw 0;
  display: none;
}
.page-submenu_item {
  margin-bottom: 0.364vw;
}
.page-submenu_item a {
  display: block;
  padding: 0 1.562vw 0 2.604vw;
  font-size: 14px;
  position: relative;
  color: #8d8d8d;
}
.page-submenu_item a:after {
  position: absolute;
  content: "";
  left: 1.822vw;
  top: 50%;
  transform: translateY(-50%);
  width: 0.208vw;
  height: 0.208vw;
  border-radius: 50%;
  background: linear-gradient(180deg, #0060a7 0, #00a3bc 100%);
}
.page-submenu_item a:hover {
  color: rgb(5, 80, 148);
}

.page-wrap_right {
  flex: 1;
  min-width: 1px;
  padding-top: 1.666vw;
}
.page-wrap_right-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.572vw;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 1.041vw;
}
.page-wrap_right-title {
  display: flex;
  align-items: center;
}
.page-wrap_right-title i {
  font-size: 20px;
  color: rgb(5, 80, 148);
}
.page-wrap_right-title span {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  padding-left: 1.145vw;
  line-height: 2;
  position: relative;
}
.page-wrap_right-title span::before {
  content: "";
  display: block;
  width: 5px;
  height: 30px;
  background: linear-gradient(0deg, #0060a7 0, #00a3bc 100%);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.page-wrap_right .crumbs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 20px;
  font-size: 16px;
  color: #626262;
}
.page-wrap_right .crumbs i {
  color: rgb(5, 80, 148);
  margin-right: 5px;
}
.page-wrap_right .crumbs a:hover {
  color: rgb(5, 80, 148);
}
@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-inner > a {
    font-size: 14px;
    line-height: 35px;
    text-align: left;
    padding: 0 15px;
  }
  .page-wrap_left .page-submenu_item a {
    padding-left: 30px;
  }
  .page-wrap_left .page-submenu_item a::after {
    left: 20px;
    width: 3px;
    height: 3px;
  }
  .page-wrap_right {
    width: 100%;
    padding: 15px;
  }
  .page-wrap_right-top {
    margin-bottom: 15px;
    padding: 10px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .page-wrap_right-title {
    margin-bottom: 10px;
  }
  .page-wrap_right-title span {
    line-height: 1.5;
    font-size: 18px;
    padding-left: 10px;
  }
  .page-wrap_right-title span:before {
    height: 25px;
    width: 3px;
  }
  .page-wrap_right .crumbs {
    font-size: 14px;
  }
}

.page_content {
  font-size: 16px;
  line-height: 2;
}
.page_content img {
  max-width: 100% !important;
  max-height: auto !important;
height: auto;
}

.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: rgb(5, 80, 148);
  border-color: rgb(5, 80, 148);
  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: rgb(5, 80, 148);
}

.page-list_item {
  margin-bottom: 1.302vw;
  border: 1px solid #f2f2f2;
  background-color: #fff;
  display: flex;
}
.page-list_item .date {
  width: 135px;
  margin-right: 35px;
  padding-left: 40px;
  box-sizing: border-box;
  font-size: 26px;
  height: 10.41vw;
  padding-top: 2.604vw;
  position: relative;
  transition: 0.5s;
  border-right: 1px solid #f2f2f2;
}
.page-list_item .date:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: 0.5s;
  background: url(../images/img1-5.png) no-repeat;
  background-size: 100% 100%;
}
.page-list_item .date .day {
  z-index: 9;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 0.52vw;
  margin-bottom: 0.781vw;
  position: relative;
  color: rgb(5, 80, 148);
}
.page-list_item .date .day:after {
  content: "";
  bottom: 0;
  left: 0;
  width: 1.3em;
  border-bottom: solid #aaa;
  position: absolute;
}
.page-list_item .date .year {
  position: relative;
  color: #a4a4a4;
  z-index: 9;
  font-size: 16px;
}
.page-list_item .txt {
  padding-right: 2.343vw;
  flex: 1;
  min-width: 1px;
}
.page-list_item .txt .tit {
  font-size: 18px;
  margin-bottom: 13px;
  color: #333;
}
.page-list_item .txt .desc {
  font-size: 14px;
  line-height: 1.8;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #8d8b8b;
}
.page-list_item .txts {
  flex: 1;
  min-width: 1px;
  align-items: center;
  display: flex;
}
.page-list_item .pic {
  width: 16.25vw;
  height: 10.41vw;
  overflow: hidden;
}
.page-list_item .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 4px 5px 10px rgba(60, 60, 60, 0.8);
  display: block;
  transition: all 0.5s;
}
.page-list_item:hover {
  box-shadow: 0.52vw 0.26vw 0.781vw 0 rgba(37, 92, 121, 0.3);
}
.page-list_item:hover .pic img {
  transform: scale(1.1);
}
.page-list_item:hover .tit {
  font-weight: 700;
  color: rgb(5, 80, 148);
}
.page-list_item:hover .date:after {
  opacity: 1;
}
.page-list_item:hover .day,
.page-list_item:hover .year {
  color: #fff;
}
.page-list_item:hover .day:after {
  border-color: #fff;
}

@media (max-width: 990px) {
  .page-list_item {
    margin-bottom: 15px;
    flex-direction: column;
  }
  .page-list_item .date {
    display: flex;
    width: 100%;
    margin-right: 0;
    padding-left: 0;
    font-size: 14px;
    height: auto;
    padding-top: 10px;
    margin-bottom: 10px;
  }
  .page-list_item .date:after {
    display: none;
  }
  .page-list_item .date .day {
    order: 2;
    font-size: 14px;
    padding-bottom: 0;
    margin-bottom: 0;
    color: #a4a4a4;
    font-weight: normal;
  }
  .page-list_item .date .day:after {
    display: none;
  }
  .page-list_item .date .year {
    font-size: 14px;
  }
  .page-list_item .date .year:after {
    content: ".";
  }
  .page-list_item .txt {
    padding-right: 0;
    width: 100%;
    flex: none;
  }
  .page-list_item .txt .tit {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .page-list_item .txt .desc {
    line-height: 1.5;
  }
  .page-list_item .txts {
    padding: 10px;
    order: 2;
    flex-direction: column;
    align-items: flex-start;
  }
  .page-list_item .pic {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 1230px) {
  .wrap {
    max-width: 1054px;
  }
  .nav-box_item > a {
    padding: 0 16px;
  }
  .banner-search {
    width: 55%;
    height: 180px;
  }
}
@media (max-width: 990px) {
  .top {
    padding: 5px 0;
  }
  .banner-search {
    width: 95%;
    height: 120px;
  }
  .banner-search_form {
    height: 40px;
  }
  .banner-search_form-select {
    width: 20%;
  }
  .banner-search_form-btn {
    width: 22%;
  }
  .list_two {
    margin: 0;
  }
  .list_two-item {
    width: 100%;
    margin: 10px 0 0 0;
  }
  .list_two-item a {
    padding: 8px;
  }
  .layout_three-tag-text {
    justify-content: flex-start;
  }
  .layout_three-tag {
    margin-bottom: 15px;
  }
  .tuwen_two-item {
    width: calc(50% - 1.5625vw);
  }
  .tuwen_three {
    margin: 0;
  }
  .tuwen_three-item {
    width: 100%;
    margin: 20px 0 0 0;
  }
  .tuwen_three-item a {
    padding: 10px;
  }
  .tuwen_three-item-text {
    margin-left: 10px;
  }
  .footer-right {
    padding: 0 25%;
  }
}
/*# sourceMappingURL=main.css.map */



.two-swiper {
  position: relative;
  padding: 0 0px;
}
.two-swiper_arrow {
  width: 42px;
  height: 84px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -42px;
}
.two-swiper_arrow:hover {
  background: rgba(255, 255, 255, 0.5);
}
.two-swiper_arrow i {
  font-size: 18px;
  color: #fff;
}
.two-swiper_arrow-left {
  left: 0;
}
.two-swiper_arrow-right {
  right: 0;
}
.two-swiper-box {
  position: relative;
  overflow: hidden;
}
.two-swiper-item {
  display: block;
}
.two-swiper-item-img {

}
.two-swiper-item-img .inner-bg {
  padding-bottom: 67.6666666667%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.two-swiper-item-text {
  background: rgba(8, 95, 191, 0.6);
  padding: 20px;
}
.two-swiper-item-text p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 48px;
}
@media (max-width: 1200px) {
  .two-swiper-item-text p {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .two-swiper-item-text p {
    font-size: 14px;
  }
}