@charset "utf-8";
*{
	font-family:arial, 'microsoft yahei';
}
.wrap {
  width: 1300px;
  margin: 0 auto;
  max-width: 100%;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

header .wrap {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: 0.6s;
}

header.header-fixed {
  background-color: #fff;
  box-shadow: 0 0 0.1rem 0.015rem rgba(174, 174, 174, 0.4);
  transition: all .5s;
}

.logo {
  /* filter: grayscale(100%) brightness(1000%); */
}

header.header-fixed .logo {
  filter: unset;
}

.flex-r {
  display: flex;
  align-items: center;
}

.nav ul {
  display: flex;
}

.nav > ul > li {
  padding: 25px 0;
  position: relative;
}

.nav > ul > li > a {
  margin-right: 30px;
  font-size: 18px;
  color: #ffffff;
}

header.header-fixed .nav > ul > li > a {
  color: #333333;
}

.search {}

header.header-fixed .search {
  /* filter: grayscale(100%) brightness(1000%); */
}

.nav-deployed header.header-fixed .search {
  filter: unset;
}
.tel {
  font-size: 22px;
  color: #0f228c;
  font-weight: bold;
}

.tel img {
  margin: 0 15px 0 18px;
}

header.header-fixed .tel {
  /* -webkit-filter: grayscale(100%) brightness(1000%);
  filter: grayscale(100%) brightness(1000%); */
}

.lan {
  font-size: 14px;
  color: #0f228c;
  margin-left: 20px;
  padding: 7px 21px;
  border-radius: 16px;
  border: 1px solid #ffffff;
  background-color: #ffffff;
}

header.header-fixed .lan {
  border: 1px solid #0f228c;
}

.burger {
  cursor: pointer;
  z-index: 900;
  width: 50px;
  height: 50px;
  position: relative;
  transition: 0.6s;
  left: 15px;
  display: none;
}

.burger div {
  width: 20px;
  height: 2px;
  background: #333333;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  will-change: transform;
  -webkit-transition: .75s cubic-bezier(.19, 1, .22, 1);
  transition: .75s cubic-bezier(.19, 1, .22, 1);
}

.public_on .other .menu .burger {
  filter: brightness(0.1);
}

.burger div:nth-child(1) {
  -webkit-transform: translateY(-6px) scaleX(1);
  transform: translateY(-6px) scaleX(1);
}

.burger div:nth-child(1) {
  -webkit-transition-delay: .4s;
  transition-delay: .4s;
}

.burger div:nth-child(2) {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.burger div:nth-child(2) {
  -webkit-transition-delay: 350ms;
  transition-delay: 350ms;
}

.burger div:nth-child(3) {
  -webkit-transform: translateY(6px) scaleX(1);
  transform: translateY(6px) scaleX(1);
}

.burger div:nth-child(3) {
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

.burger div:nth-child(4) {
  -webkit-transform: rotate(45deg) scaleX(0);
  transform: rotate(45deg) scaleX(0);
  background: #333333;
}

.burger div:nth-child(4) {
  -webkit-transition-delay: 50ms;
  transition-delay: 50ms;
}

.burger div:nth-child(5) {
  -webkit-transform: rotate(-45deg) scaleX(0);
  transform: rotate(-45deg) scaleX(0);
  background: #333333;
}

.burger div:nth-child(5) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.nav-deployed .burger div:nth-child(1) {
  -webkit-transform: translateY(-6px) scaleX(0);
  transform: translateY(-6px) scaleX(0);
}

.nav-deployed .burger div:nth-child(1) {
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
}

.nav-deployed .burger div:nth-child(2) {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.nav-deployed .burger div:nth-child(2) {
  -webkit-transition-delay: 50ms;
  transition-delay: 50ms;
}

.burger div:nth-child(2) {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-deployed .burger div:nth-child(3) {
  -webkit-transform: translateY(6px) scaleX(0);
  transform: translateY(6px) scaleX(0);
}

.nav-deployed .burger div:nth-child(3) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.nav-deployed .burger div:nth-child(4) {
  -webkit-transform: rotate(45deg) scaleX(1);
  transform: rotate(45deg) scaleX(1);
}

.nav-deployed .burger div:nth-child(4) {
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

.nav-deployed .burger div:nth-child(5) {
  -webkit-transform: rotate(-45deg) scaleX(1);
  transform: rotate(-45deg) scaleX(1);
}

.nav-deployed .burger div:nth-child(5) {
  -webkit-transition-delay: 350ms;
  transition-delay: 350ms;
}


@media (max-width: 1440px) {
  header .wrap {
    height: 75px;
    padding: 0 40px;
  }
  .wrap {
    padding: 0 40px;
  }
  .logo {
    width: 120px;
  }

  .nav ul li a {
    margin-right: 20px;
    font-size: 16px;
  }

  .tel {
    font-size: 20px;
  }

  .tel img {
    margin: 0 10px 0 15px;
  }

  .lan {
    font-size: 14px;
    margin-left: 15px;
    padding: 4px 15px;
  }
}
@media (max-width: 1200px) {
  .wrap {
    padding: 0 15px;
  }
  .logo {
    width: 100px;
  }
  .tel {
    font-size: 18px;
  }
}
@media (max-width: 1065px) {
  header .wrap {
    padding: 0;
  }
  .burger {
    display: block;
  }
  .nav,.tel {
    display: none;
  }
  .moblie {
    display: flex;
    align-items: center;
  }
  header {
    height: auto;
    padding: 0 15px;
  }
  .nav-deployed header {
    box-shadow: 0 7px 32px -12px rgb(192 196 204 / 72%);
    background-color: unset;
  }
  .nav-deployed header .logo {
    -webkit-filter: unset;
    filter: unset;
  }
  .nav-deployed header .burger div {
    background-color: #333333;
  }
  
}

.fixed-chat {
  position: fixed;
  top: 20%;
  right: 15px;
  z-index: 77;
  transition: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fixed-chat ul {
  border-radius: 34px;
  padding: 15px 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  box-shadow: 0px 0px 8.9px 1.1px rgba(168, 168, 168, 0.4);
  background-color: #ffffff;
}

.fixed-chat ul li {
  width: 50px;
  text-align: center;
  cursor: pointer;
}

.fixed-chat ul li a {
  position: relative;
  /* height: 56px; */
  display: flex;
  padding: 5px 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 34px;
  background-color: #ffffff;
  color: #333333;
}

.fixed-chat ul li img {
  margin-bottom: 8px;
}

.fixed-chat ul li p {
  width: 24px;
  font-size: 12px;
  line-height: normal;
}

.fixed-chat-position {
  position: absolute;
  bottom: 0;
  right: 80px;
  background-color: #fff;
  padding: 10px;
  opacity: 0;
  transform: translateX(10px);
  visibility: hidden;
  box-shadow: 0 0 30px 0 rgba(64, 74, 127, 0.1);
  box-sizing: border-box;
  transition: all 0.3s;
}

.fixed-chat-position img {
  width: 150px;
  margin-bottom: 0 !important;
}

.fixed-chat-tel {
  opacity: 0;
  visibility: hidden;
  width: 186px;
  position: absolute;
  top: -26px;
  right: 84px;
  background-color: #fff;
  border-radius: 15px;
  padding: 22px 19px;
  height: 95px;
  font-size: 12px;
  box-sizing: border-box;
}

.fixed-chat-tel h3 {
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  font-weight: bold;
  font-family: Arial;
}

.fixed-chat-tel p {
  font-size: 13px !important;
  color: #919090;
  width: auto !important;
  margin-top: 6px;
}

.fixed-chat-tel:after {
  content: "";
  display: inline-block;
  border-left: 15px solid #fff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  position: absolute;
  right: -15px;
  top: 30px;
}

.fixed-chat-tel img {
  width: auto;
  margin-bottom: 0 !important;
  margin-right: 6px;
}

.fixed-chat ul li a:hover .fixed-chat-position {
  opacity: 1;
  visibility: visible;
}

.fixed-chat ul li a:hover .fixed-chat-position:not(.fixed-chat-tel) {
  width: 150px;
  box-sizing: content-box;
}

/* 修改滚动条宽度和颜色 */
::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

/* 修改滚动条轨道颜色 */
::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

/* 修改滚动条滑块颜色 */
::-webkit-scrollbar-thumb {
  background-color: #0f228c;
}

/* 修改滚动条滑块在hover状态下的颜色 */
::-webkit-scrollbar-thumb:hover {
  background-color: #0f47aa;
}

.footer {
  width: 100%;
  padding: 70px 0;
  color: #ffffff;
  font-size: 16px;
  overflow: hidden;
  background-color: #0b46a0;
}

.footer .com-info {
  float: left;
}

.footer .com-info .com-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.footer .com-info .com-meta img {
  margin-right: 10px;
  /* -webkit-filter: grayscale(100%) brightness(1000%);
    filter: grayscale(100%) brightness(1000%); */
}

.footer .com-info .com-meta span {
  display: block;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 2px;
}

.footer .com-info .com-h p,
.footer .com-info .com-h a {
  margin-bottom: 12px;
  font-size: 16px;
  color: #ffffff;
}

.footer .com-info>a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  background-color: #2f79ea;
  color: #ffffff;
  font-size: 16px;
  width: 120px;
  line-height: 35px;
  text-align: center;
}

.footer .com-info>a img {
  width: 18px;
  margin-right: 5px;
}

.footer-linksr {
  float: right;
  overflow: hidden;
  width: 50%;
}

.footer-linksr .fast-nav {
  overflow: hidden;
  float: left;
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-linksr .fast-nav ul {
  float: left;
}

.footer-linksr .fast-nav ul li p {
  font-weight: bold;
  margin-bottom: 18px;
  font-size: 15px;
}

.footer-linksr .fast-nav ul li a {
  color: #ffffff;
  display: block;
  margin-bottom: 10px;
  position: relative;
  font-size: 14px;
  opacity: 0.84;
}

.footer-linksr .fast-nav ul li a::before {
  position: absolute;
  width: 5px;
  height: 5px;
  display: none;
  background-color: #ffffff;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

/* .footer-linksr .fast-nav ul li a:hover {padding-left: 12px;} */
.footer-linksr .fast-nav ul li a:hover::before {
  display: block;
}

.footer-linksr .qr-code {
  float: right;
  text-align: center;
}

.footer-linksr .qr-code p {
  margin-top: 15px;
  font-size: 14px;
}

.site-copyright {
  background-color: #333333;
  font-size: 12px;
  color: #999999;
  padding: 10px 0;
  overflow: hidden;
}

.site-copyright>.container-width>p {
  display: inline-block;
}

.site-copyright a {
  color: #999999;
}

.site-copyright a:hover {
  color: #ffffff;
}

.links {
  margin-bottom: 6px;
}

.links ul {
  overflow: hidden;
}

.links ul li {
  display: inline-block;
}

.links ul li span {
  float: left;
}

.links ul li a {
  display: inline-block;
  margin: 0 6px;
}

.alert-search {position: fixed;top: 0;left: 0;z-index: 999999;width: 100%;height: 100%;background-color: rgba(255, 255, 255, .9);visibility: hidden;opacity: 0;-webkit-transition: .8s;-o-transition: .8s;transition: .8s;}
.alert-search-box {width: 100%;height: 100%;padding: 150px 0;-webkit-transform: translateY(-10px);-ms-transform: translateY(-10px);transform: translateY(-10px);visibility: hidden;opacity: 0;-webkit-transition: .3s;-o-transition: .3s;transition: .3s;}
.alert-search-box .img {display: block;max-width: 160px;margin: 0 auto 25px;}
.alert-search-box .img img {max-width: 100%;}
.alert-search-form {max-width: 600px;margin: 0 auto;padding: 0 15px;}
.alert-search-form form {display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: center;-ms-flex-align: center;align-items: center;}
.alert-search-form input {-webkit-box-flex: 1;-ms-flex: 1;flex: 1;padding: 0 10px 0 20px;background: none;border: 1px solid #333333;line-height: 44px;color: #333333;font-size: 14px;outline: none;}
.alert-search-form button {width: 120px;border: none;line-height: 42px;font-size: 16px;background-color: #ffffff;border: 1px solid #333333;border-left: none;color: #333333;outline: none;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;-webkit-box-align: center;-ms-flex-align: center;align-items: center;}
.alert-search-form button img {display: block;margin-right: 5px;width: 20px;}
.alert-search-form ul {overflow: hidden;margin-top: 14px;}
.alert-search-form ul li {float: left;margin-right: 10px;font-size: 14px;color: #333333;}
.alert-search-form ul li a {font-size: 14px;color: #333333;}
@media (max-width:768px) {
  .search img {width: 28px;}
	.alert-search-box {height: 100%;padding: 75px 0;}
	.alert-search-box .img {margin-bottom: 40px;}
	.alert-search-form input {line-height: 40px;font-size: 16px;}
	.alert-search-form button {width: 90px;line-height: 40px;font-size: 14px;}
}

.close-alert-search {position: absolute;top: 45px;right: 45px;width: 35px;height: 35px;cursor: pointer;}
.close-alert-search span {position: absolute;top: 17px;left: 6px;width: 25px;height: 2px;background-color: #333333;}
.close-alert-search span:first-child {-webkit-transform: rotate(45deg);-ms-transform: rotate(45deg);transform: rotate(45deg);}
.close-alert-search span:last-child {-webkit-transform: rotate(-45deg);-ms-transform: rotate(-45deg);transform: rotate(-45deg);}

@media (max-width:768px) {
	.close-alert-search {top: 15px;right: 15px;width: 35px;height: 35px;cursor: pointer;}
  header {padding: 0 15px;}
  header .wrap {height: 65px;}
  .fixed-chat {left: 10px;right: auto;}
  .footer .com-info .com-meta span {font-size: 12px;}
}

.alert-search-show {visibility: visible;opacity: 1;-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}



.mobile_background {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 666;
  background: #fff;
  overflow: scroll;
  pointer-events: none;
  transition: 1s;
  transform: translateX(-100%);
  box-shadow: 0 7px 32px -12px rgb(192 196 204 / 72%);
}

.mobile_background_active {
  pointer-events: auto !important;
  transform: translateX(0);
}

.mobile_background .joke {
  position: relative;
  margin: 140px 0 0 0;
}

.mobile_background .joke ul li {
  width: 100%;
  border-bottom: 1px solid rgb(170 170 170 / 10%);
  text-align: left;
  padding: 0 5%;
}

.mobile_background .joke ul li > a {
  padding: 16px 0;
  display: block;
}

.mobile_background .joke ul li a {
  font-size: 16px;
  color: #232323;
  font-weight: normal;
  position: relative;
}

.mobile_background .joke ul li .hidden {
  overflow: hidden;
  display: none;
}

.mobile_background .joke ul li .hidden div {
  margin: 0 0 15px 0;
}

.mobile_background .joke ul li .hidden div a {
  display: block;
  font-size: 13px;
  color: #232323;
  opacity: 0.5;
  line-height: 35px;
}

@media (max-width: 1600px) {
	.footer {
		padding: 50px 0;
	}
	.footer .com-info .com-meta img {
		width: 120px;
	}
	.footer-linksr .qr-code img {
		width: 100px;
	}
}
@media (max-width: 1230px) {
	.footer .com-info {margin-bottom: 20px;;}
	.footer .com-info>a {width: 130px;line-height: 35px;}
}
@media (max-width: 1060px) {
	.footer-linksr,.footer .com-info {
	  width: 100%;
	}
	
}
@media (max-width: 768px) {
	.links ul li a {
		margin: 0 2px;
	}
	.footer-linksr .qr-code {
		display: none;
	}
	.footer-linksr .fast-nav {
		width: 100%;
	}
	.site-copyright>.container-width>p {
		display: block;
	}
	.footer .com-info>a {
		width: 120px;
    line-height: 40px;
    margin-top: 20px;
    margin-bottom: 0;
		padding: 0 4px;
    font-size: 13px;
		box-sizing: content-box;
	}
  .footer .com-info>a img {
    width: 16px;
  }
	.footer .com-info .com-h p,.footer .com-info .com-h a {
    font-size: 14px;
		margin-bottom: 5px;
	}
	.footer {
    padding: 40px 0;
  }
}
@media (max-width: 500px) {
	.footer .com-info {margin-bottom: 0;}
	.footer-linksr .fast-nav {
		display: none;
	}
}
@media (max-width: 450px) {
	.footer {
		padding: 45px 0;
	}
	
	.footer .com-info .com-meta img {
		width: 90px;
	}
}



.nav ul li.menu-item ul.sub-menu {
  display: block;
	width: 195px;
  background: #FFFFFF;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  padding: 23px 15px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 3px 29px -8px rgb(192 196 204 / 70%);
  z-index: 9;
}
.nav ul li.menu-item:hover ul.sub-menu {
  transform: translateX(-50%) translateY(25px);
  opacity: 1;
  pointer-events: unset;
}
.nav ul li.menu-item ul.sub-menu:after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  box-shadow: 0 7px 32px -12px rgb(192 196 204 / 72%);
}

.nav ul li.menu-item ul.sub-menu li a {
  font-size: 15px;
  font-weight: normal;
  color: #101010;
  margin-bottom: 23px;
  display: block;
  transition: 0.6s;
}
.nav ul li.menu-item ul.sub-menu li:last-of-type a {
  margin-bottom: 0;
}
.nav ul li.menu-item ul.sub-menu li a:hover {
  color: #0f228c;
}

.mobile_background .joke ul li .sub-menu {
	border-top: 1px solid rgba(255, 255, 255, .06);
	display: none;
	padding: 10px 0;
  padding-top: 0;
}

.mobile_background .joke ul li .sub-menu a {
	display: block;
	width: 100%;
	color: #333;
	font-size: 14px;
	line-height: 34px;
  padding: 5px 0;
}

.mobile_background .joke > ul > li > a:before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 14px;
	background: url(../images/icon_jt.png) no-repeat center center / cover;
}
.mobile_background .joke > ul > li > a.cur:before {
	transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	/* IE 9 */
	-moz-transform: rotate(90deg);
	/* Firefox */
	-webkit-transform: rotate(90deg);
	/* Safari 和 Chrome */
	-o-transform: rotate(90deg);
	/* Opera */
	top: 32%;
	transition: all 1s;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}


.pagination {
  margin: .45rem 0;
  padding: 0 10px;
  text-align: center;
  font-size: 12px;
  display: block;
  border-radius: 0
}

.excerpts .pagination {
  margin-bottom: 10px;
}

.pagination ul {
  display: inline-block !important;
  *display: inline;
  *zoom: 1;
  margin-left: 0;
  margin-bottom: 0;
  padding: 0
}

.pagination ul>li {
  display: inline;
  transition: all .3s;
}

.pagination ul>li>a,
.pagination ul>li>span {
  margin: 0 5px;
  float: left;
  display: block;
  padding: 7px 12px;
  background-color: #ffffff;
  color: var(--mColor);
  border: 1px solid var(--mColor);
  font-size: 14px;
  transition: all .3s;
  border-radius: 5px;
}


.pagination ul>li:nth-last-of-type(3) {}

.pagination ul>li>a:hover,
.pagination ul>li>a:focus {
  opacity: 1;
  background-color: #004ea2;
  color: #fff
}

.pagination ul>.active>a,
.pagination ul>.active>span {
  background-color: #004ea2;
  color: #fff;
  transition: all .3s;
}

.pagination ul>.active>a,
.pagination ul>.active>span {
  cursor: default;
  transition: all .3s;
}

.pagination ul>li>span,
.pagination ul>.disabled>span,
.pagination ul>.disabled>a,
.pagination ul>.disabled>a:hover,
.pagination ul>.disabled>a:focus {
  color: #999999;
  background-color: transparent;
  cursor: default
}

@keyframes rollIn {
  0% {
      opacity: 0;
      clip-path: inset(0% 100% 0% 0%);
  }

  100% {
      opacity: 1;
      clip-path: inset(0% 0% 0% 0%);
  }
}
.rollIn {
  animation-name: rollIn;
  transition-property: all;
  transition-duration: 10s;
  transition-timing-function: cubic-bezier(.375, .885, .52, 1.275);
}


@keyframes rollIn2 {
  0% {
      opacity: 0;
      clip-path: inset(0% 0% 0% 100%);
  }

  100% {
      opacity: 1;
      clip-path: inset(0% 0% 0% 0%);
  }
}
.rollIn2 {
  animation-name: rollIn2;
  transition-property: all;
  transition-duration: 10s;
  transition-timing-function: cubic-bezier(.375, .885, .52, 1.275);
}


li.listUp:nth-child(1){animation-delay: .2s;}
li.listUp:nth-child(2){animation-delay: .4s;}
li.listUp:nth-child(3){animation-delay: .6s;}
li.listUp:nth-child(4){animation-delay: .8s;}
li.listUp:nth-child(5){animation-delay: 1s;}
li.listUp:nth-child(6){animation-delay: 1.2s;}
li.listUp:nth-child(7){animation-delay: 1.4s;}
li.listUp:nth-child(8){animation-delay: 1.6s;}
li.listUp:nth-child(9){animation-delay: 1.8s;}
li.listUp:nth-child(10){animation-delay:2s;}