/*
修改样式请新建css文件,请勿在当前css中修改以免样式丢失!!!
*/
:root {
  --progressBanner: 0;
  --widthInner: 16rem;
  --innerPadding: calc((100vw - 16rem) / 2);
}
@media screen and (max-width: 767px) {
  :root {
    --innerPadding: 0.18rem;
    --widthInner: calc(100% - var(--innerPadding)*2);
  }
}
.loadEnd #zLoading {
  opacity: 0;
  transition: opacity 1s ease-in-out 1s;
}
.info .paging_content {
    padding: 0.3rem;
}
.start #zLoading {
  display: none;
}
#zLoading {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #04267e, #157768);
}
@keyframes headerBG {
	0% {
		background: linear-gradient(180deg, #04267e, rgba(4, 38, 126, 0));
	}
	20% {
		background: linear-gradient(180deg, #04267e, rgba(4, 38, 126, 0.20));
	}
	40% {
		background: linear-gradient(180deg, #04267e, rgba(4, 38, 126, 0.40));
	}
	50% {
		background: linear-gradient(180deg, #04267e, rgba(4, 38, 126, 0.5));
	}
	60%{
		background: linear-gradient(180deg, #04267e, rgba(4, 38, 126, 0.6));
	}
	80% {
		background: linear-gradient(180deg, #04267e, rgba(4, 38, 126, 0.8));
	}
	100% {
		background: linear-gradient(180deg, #04267e, rgba(4, 38, 126, 1));
	}
}
@keyframes cube {
  0% {
    transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
  }
  50% {
    transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
  }
  100% {
    transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
  }
}
#zLoading .pong {
  animation: cube 2s infinite ease;
  height: 0.4rem;
  transform-style: preserve-3d;
  width: 0.4rem;
}
#zLoading .pong div {
  background-color: rgba(255, 255, 255, 0.25);
  height: 100%;
  position: absolute;
  width: 100%;
  border: 2px solid white;
}
#zLoading .pong div:nth-of-type(1) {
  transform: translateZ(calc(0.4rem / 2 * -1)) rotateY(180deg);
}
#zLoading .pong div:nth-of-type(2) {
  transform: rotateY(-270deg) translateX(50%);
  transform-origin: top right;
}
#zLoading .pong div:nth-of-type(3) {
  transform: rotateY(270deg) translateX(-50%);
  transform-origin: center left;
}
#zLoading .pong div:nth-of-type(4) {
  transform: rotateX(90deg) translateY(-50%);
  transform-origin: top center;
}
#zLoading .pong div:nth-of-type(5) {
  transform: rotateX(-90deg) translateY(50%);
  transform-origin: bottom center;
}
#zLoading .pong div:nth-of-type(6) {
  transform: translateZ(calc(0.4rem / 2));
}
* {
  margin: 0;
  padding: 0;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: unset;
}
.inner {
  width: var(--widthInner);
  margin: auto;
}
.cover {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.nowrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navItem,
main .fixedNav .navItem {
  display: flex;
  font-size: 0.18rem;
  font-weight: bold;
  color: #fff;
  transition: 0.6s;
  text-align: center;
  line-height: 2;
}
.navItem .item {
  padding: 0 0.22rem;
  position: relative;
  display: block;
  cursor: pointer;
}
.navItem .item > a {
  text-decoration: none;
  color: #fff;
  line-height: 3;
}
.navItem .item > .open {
  display: none;
  color: #fff;
  font-weight: bold;
  font-family: 'fangsong';
  transition: 0.6s;
}
.navItem .item:nth-child(1) {
  padding-left: 0;
}
.navItem .item:nth-last-child(1) {
  padding-right: 0;
}
.navItem .item:hover .subNav {
  padding: 0.15rem 1em;
  border-top: 0.04rem solid #157768;
  max-height: 50vh;
}
@media screen and (max-width: 767px) {
  .navItem,
  main .fixedNav .navItem {
    flex-direction: column;
  }
  .navItem .item {
    padding: 0;
  }
  .navItem .item .open {
    display: inline-block;
    padding: 1em;
  }
  .navItem .item .subNav {
    max-height: 0 !important;
    padding: 0;
  }
  .navItem .item:hover .subNav {
    padding: 0 !important;
  }
  .navItem .item.active .open {
    transform: rotate(90deg);
  }
  .navItem .item.active .subNav {
    max-height: 200vh !important;
  }
}
.subNav,
main .fixedNav .navItem .subNav {
  background-color: #fff;
  box-shadow: 0rem 0rem 0.15rem -0.1rem rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  max-height: 0;
  box-sizing: border-box;
  overflow: hidden;
  transition: 0.6s;
}
.subNav .subItem {
  font-size: 0.185rem;
  color: #04267e;
  line-height: 2;
  font-weight: initial;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.qr .item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background-color: rgba(204, 255, 255, 0.1);
  cursor: pointer;
  margin-right: 0.15rem;
}
.qr .item svg {
  width: 50%;
  height: 50%;
}
.qr .item .qrImg {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) scale(0);
  transition: 0.6s;
  width: 1rem;
  height: 1rem;
  background-color: rgba(26, 92, 248, 0.1);
  backdrop-filter: blur(0.08rem);
  box-shadow: none;
}
.qr .item:hover .qrImg {
  transform: translateX(-50%) scale(1);
}
.qr .item:not(.source) path {
  fill: #04267e;
}
.qr .item[content='wx'] .qrImg {
  background: url(../image/wxqr.png) no-repeat center / 90%, url("../images/wxqr.png") no-repeat center / 90%, #fff;
}
.qr .item[content='wb'] .qrImg {
  background: url(../image/wxqr.png) no-repeat center / 90%, url("../images/wbqr.png") no-repeat center / 90%, #fff;
}
.qr .item[content='sph'] .qrImg {
  background: url(../image/wxqr.png) no-repeat center / 90%, url("../images/sphqr.png") no-repeat center / 90%, #fff;
}
.qr .item[content='ws'] .qrImg {
  background: url(../image/wxqr.png) no-repeat center / 90%, url("../images/wsqr.png") no-repeat center / 90%, #fff;
}
.qr .item[content='dy'] .qrImg {
  background: url(../image/wxqr.png) no-repeat center / 90%, url("../images/dyqr.png") no-repeat center / 90%, #fff;
}
.qr .item[content='ks'] .qrImg {
  background: url(../image/wxqr.png) no-repeat center / 90%, url("../images/ksqr.png") no-repeat center / 90%, #fff;
}
.qr .item[content='bl'] .qrImg {
  background: url(../image/wxqr.png) no-repeat center / 90%, url("../images/blqr.png") no-repeat center / 90%, #fff;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  justify-items: center;
  align-content: center;
  align-items: center;
  width: 100%;
  padding-left: 0.46rem;
  box-sizing: border-box;
  background: linear-gradient(180deg, #04267e, transparent);
	transition: 0.6s;
	animation: headerBG 1s 3s ease-in-out both;
	/*定位滚动模型*/
	animation-timeline: --scrollcontainer;
	animation-range: 0% 100vh;
}
header .logo img {
  width: 3.61rem;
}
header .navBox {
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .navBox nav .link {
  display: flex;
  font-size: 0.14rem;
  justify-content: flex-end;
  text-transform: uppercase;
  padding-bottom: 0.1rem;
  transition: 0.6s;
}
header .navBox nav .link .item {
  padding: 0 0.15rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: inline-block;
}
header .navBox nav .link .item.globalSearchButton{
  background:url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMy4zMDciIGhlaWdodD0iMTMuMzA3IiB2aWV3Qm94PSIwIDAgMTMuMzA3IDEzLjMwNyI+CiAgPGcgaWQ9Iue7hF82OTc5IiBkYXRhLW5hbWU9Iue7hCA2OTc5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMy41IC0zLjUpIj4KICAgIDxwYXRoIGlkPSLot6/lvoRfMzk5NiIgZGF0YS1uYW1lPSLot6/lvoQgMzk5NiIgZD0iTTkuNDU1LDE0LjkxQTUuNDU1LDUuNDU1LDAsMSwwLDQsOS40NTUsNS40NTUsNS40NTUsMCwwLDAsOS40NTUsMTQuOTFaIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMSIvPgogICAgPHBhdGggaWQ9Iui3r+W+hF8zOTk3IiBkYXRhLW5hbWU9Iui3r+W+hCAzOTk3IiBkPSJNMTguOTc0LDEyLjc1MmEyLjU2NywyLjU2NywwLDAsMC0zLjYzLDAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC03LjcwMyAtNS40MzMpIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxIi8+CiAgICA8cGF0aCBpZD0i6Lev5b6EXzM5OTgiIGRhdGEtbmFtZT0i6Lev5b6EIDM5OTgiIGQ9Ik0zMy4yMjIsMzMuMjIybDIuNzIzLDIuNzIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTkuODQ1IC0xOS44NDUpIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxIi8+CiAgPC9nPgo8L3N2Zz4K) no-repeat center/contain;
  width:0.8em;
}
header .navBox nav .link .item:nth-child(1) {
  padding-left: 0;
}
header .navBox nav .link .item:nth-last-child(1) {
  padding-right: 0;
}
header .navBox .navButton {
  width: 1.43rem;
  height: 1.43rem;
  background: url(../image/navOpen.png) no-repeat center / contain;
  cursor: pointer;
  transition: 1s;
  position: relative;
}
header .navBox .navButton::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20%;
  height: 20%;
  background: #fff;
  transform: translate(-50%, -50%);
  animation: boxShadow 2s ease-in-out infinite alternate;
  z-index: -1;
}
header .navBox .siteSearch {
  /* display: none; */
  position: fixed;
  width:100%;
  height: 0;
  inset:0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  overflow: hidden;
  transition: 0.8s;
  z-index: 1;
}
header .navBox .siteSearch .wp-search{
  width:75%;
}
header .navBox .siteSearch .close {
    position: absolute;
    right: 5%;
    top: 5%;
    color: #fff;
    font-size: 0.32rem;
    cursor: pointer;
}
header .navBox .siteSearch.open {
  height: 100%;
}
@media screen and (max-width: 767px) {
  header {
    padding: 0.1rem var(--innerPadding);
  }
  header .logo img {
    height: 0.52rem;
    width: auto;
  }
  header .navBox nav {
    display: none;
  }
  header .navBox .navButton {
    width: 0.82rem;
    height: 0.82rem;
    background-size: 120%;
  }
}

main .fixedNav {
  position: fixed;
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  z-index: 4;
  background: url(../image/navBG.png) no-repeat center / cover;
  transition: 0.8s;
  overflow: hidden;
}
main .fixedNav .siteSearch {
  display: none;
}
main .fixedNav .link {
  display: none;
}
main .fixedNav .navItem {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  justify-content: space-around;
  padding: 0 10%;
  box-sizing: border-box;
}
main .fixedNav .navItem .item {
  opacity: 0;
  transform: translateY(100%);
}
main .fixedNav .navItem .item:hover .subNav {
  padding: 0.1rem 0 0 0;
  border: 0;
  max-height: none;
}
main .fixedNav .navItem .subNav {
  max-height: none;
  position: initial;
  background: none;
  transform: none;
  padding-top: 0.1rem;
}
main .fixedNav .navItem .subNav .subItem {
  color: #fff;
  line-height: 3;
}
@media screen and (max-width: 767px) {
  main .fixedNav {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  main .fixedNav .navItem {
    order: 1;
    position: initial;
    transform: none;
  }
  main .fixedNav .navItem .item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    text-align: left;
  }
  main .fixedNav .navItem .item a {
    font-size: 0.24rem;
  }
  main .fixedNav .navItem .item .subNav {
    padding: 0;
  }
  main .fixedNav .navItem .item .subNav .subItem {
    font-size: 0.2rem;
    line-height: 2.2;
  }
  main .fixedNav .link {
    display: flex;
    flex-wrap: wrap;
    order: 2;
    padding: 0.2rem 10%;
  }
  main .fixedNav .link .item {
    font-size: 0.2rem;
    color: #fff;
    opacity: 0.7;
    width: 25%;
  }
  main .fixedNav .siteSearch {
    display: block;
    order: 3;
    padding: 0 10%;
  }
  main .fixedNav .siteSearch form {
    display: flex;
    justify-content: space-between;
  }
  main .fixedNav .siteSearch .search-input {
    flex: 1;
  }
  main .fixedNav .siteSearch .search-input .search-title {
    border: 0;
    border-radius: 5px 0 0 5px;
    font-size: 0.22rem;
    color: rgba(102, 102, 102, 0.6);
    line-height: 3;
    width: 100%;
    text-indent: 1em;
  }
  main .fixedNav .siteSearch .search-submit {
    background: #157768 url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMy4zMDciIGhlaWdodD0iMTMuMzA3IiB2aWV3Qm94PSIwIDAgMTMuMzA3IDEzLjMwNyI+CiAgPGcgaWQ9Iue7hF82OTc5IiBkYXRhLW5hbWU9Iue7hCA2OTc5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMy41IC0zLjUpIj4KICAgIDxwYXRoIGlkPSLot6/lvoRfMzk5NiIgZGF0YS1uYW1lPSLot6/lvoQgMzk5NiIgZD0iTTkuNDU1LDE0LjkxQTUuNDU1LDUuNDU1LDAsMSwwLDQsOS40NTUsNS40NTUsNS40NTUsMCwwLDAsOS40NTUsMTQuOTFaIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMSIvPgogICAgPHBhdGggaWQ9Iui3r+W+hF8zOTk3IiBkYXRhLW5hbWU9Iui3r+W+hCAzOTk3IiBkPSJNMTguOTc0LDEyLjc1MmEyLjU2NywyLjU2NywwLDAsMC0zLjYzLDAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC03LjcwMyAtNS40MzMpIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxIi8+CiAgICA8cGF0aCBpZD0i6Lev5b6EXzM5OTgiIGRhdGEtbmFtZT0i6Lev5b6EIDM5OTgiIGQ9Ik0zMy4yMjIsMzMuMjIybDIuNzIzLDIuNzIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTkuODQ1IC0xOS44NDUpIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxIi8+CiAgPC9nPgo8L3N2Zz4K) no-repeat 1em center;
    width: 1.2rem;
    border: 0;
    height: 100%;
    border-radius: 0 5px 5px 0 ;
    color: #fff;
    font-size: 0.22rem;
    text-indent: 1em;
  }
}
footer {
  background: #f7fbff url(../image/main1B.png) no-repeat top left / 100% auto;
  position: relative;
  z-index: 1;
  padding-top: 1.32rem;
}
footer .inner .linkIcon {
  padding-bottom: 0.5rem;
  display: flex;
}
footer .inner .linkIcon .links {
  width: 10%;
  display: block;
  text-align: center;
  font-size: 0.18rem;
  color: #333;
  text-decoration: none;
}
footer .inner .linkIcon .addSvg {
  width: 0.5rem;
  height: 0.5rem;
  margin: auto;
  padding-bottom: 0.4rem;
}
footer .inner .logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 3.23rem;
  background: url(../image/footInner.png) no-repeat top center / cover;
}
footer .inner .logo .left img {
  width: 3.15rem;
}
footer .inner .logo .center img {
  width: 4.96rem;
}
footer .inner .logo .link .newsList {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-gap: 0.32rem 0.63rem;
}
footer .inner .logo .link .newsList .links {
  font-size: 0.18rem;
  color: #04267e;
  text-decoration: none;
}
footer .inner .qr {
  display: none;
  padding-left: 1.1rem;
}
footer .inner .qr .item {
  background-color: rgba(4, 38, 126, 0.1);
}
footer .inner .qr .item svg path {
  fill: #04267e;
}
footer .inner .bottom {
  display: flex;
  justify-content: space-around;
  border: 0.01rem solid #d6deed;
  border-bottom: 0;
}
footer .inner .bottom span {
  color: #58688e;
  font-size: 0.14rem;
  line-height: 0.93rem;
}
footer .inner .bottom span svg {
  width: 0.32rem !important;
  height: 0.32rem;
}
footer .copy {
  background-color: #04267e;
  padding: 0.3rem 0;
  text-align: center;
}
footer .copy span {
  font-size: 0.13rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 0.2rem;
}
@media screen and (max-width: 767px) {
  footer .inner .logo {
    flex-direction: column;
  }
  footer .inner .logo img {
    width: 90%;
    margin: auto;
    padding: 0.2rem 0;
  }
  footer .inner .logo .qr {
    display: none;
  }
  footer .inner .logo .center img {
    width: 90%;
    margin: auto;
  }
  footer .inner .logo .link .newsList {
    grid-gap: 0.12rem 0.43rem;
display: none;
  }
  footer .inner .linkIcon {
    flex-wrap: wrap;
  }
  footer .inner .linkIcon .links {
    width: 25%;
    padding-bottom: 0.2rem;
  }
  footer .inner .linkIcon .links .addSvg {
    padding: 0;
  }
  footer .inner .bottom {
    flex-direction: column;
    border-left: 0;
    border-right: 0;
  }
  footer .inner .bottom span {
    font-size: 0.18rem;
    line-height: 3.5;
    padding-left: 1.5em;
  }
}
html {
  scroll-behavior: smooth;
  font-size: 100px;
}
body {
  scroll-behavior: smooth;
  font-size: 16px;
}
body.openNav header nav .link {
  transform: translateY(0.28rem);
}
body.openNav header nav .navItem {
  opacity: 0;
}
body.openNav header .navButton {
  background: url(../image/navClose.png) no-repeat center / contain;
}
body.openNav .fixedNav {
  height: 100%;
}
body.openNav .fixedNav .navItem .item:nth-child(1) {
  opacity: 1;
  transform: translate(0);
  transition: 0.8s ease-in-out 0.8s;
}
body.openNav .fixedNav .navItem .item:nth-child(2) {
  opacity: 1;
  transform: translate(0);
  transition: 0.8s ease-in-out 1s;
}
body.openNav .fixedNav .navItem .item:nth-child(3) {
  opacity: 1;
  transform: translate(0);
  transition: 0.8s ease-in-out 1.2s;
}
body.openNav .fixedNav .navItem .item:nth-child(4) {
  opacity: 1;
  transform: translate(0);
  transition: 0.8s ease-in-out 1.4s;
}
body.openNav .fixedNav .navItem .item:nth-child(5) {
  opacity: 1;
  transform: translate(0);
  transition: 0.8s ease-in-out 1.6s;
}
body.openNav .fixedNav .navItem .item:nth-child(6) {
  opacity: 1;
  transform: translate(0);
  transition: 0.8s ease-in-out 1.8s;
}
body.openNav .fixedNav .navItem .item:nth-child(7) {
  opacity: 1;
  transform: translate(0);
  transition: 0.8s ease-in-out 2s;
}
body.openNav .fixedNav .navItem .item:nth-child(8) {
  opacity: 1;
  transform: translate(0);
  transition: 0.8s ease-in-out 2.2s;
}
body.openNav .fixedNav .navItem .item:nth-child(9) {
  opacity: 1;
  transform: translate(0);
  transition: 0.8s ease-in-out 2.4s;
}
body.openNav .fixedNav .navItem .item:nth-child(10) {
  opacity: 1;
  transform: translate(0);
  transition: 0.8s ease-in-out 2.6s;
}
body.openNav .fixedNav .navItem .item:nth-child(11) {
  opacity: 1;
  transform: translate(0);
  transition: 0.8s ease-in-out 2.8s;
}
body.openNav .fixedNav .navItem .item:nth-child(12) {
  opacity: 1;
  transform: translate(0);
  transition: 0.8s ease-in-out 3s;
}
body.openNav .fixedNav .navItem .subNav {
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  body.openNav header .navButton {
    background-size: 120%;
  }
  body.openNav .fixedNav {
    padding-top: 1.02rem;
  }
}
body.down header {
  padding-top: 0.1rem;
}
@keyframes up {
  0% {
    top: 0%;
  }
  50% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}
@keyframes opacity {
  form {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleProgress {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes boxShadow {
  0% {
    box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0.9);
  }
  100% {
    box-shadow: 0 0 20px 20px rgba(255, 255, 255, 0.9);
  }
}
@keyframes dropShadowcolorPrimary {
  0% {
    filter: drop-shadow(0px 0px 5px #04267e);
  }
  100% {
    filter: drop-shadow(0px 0px 15px #04267e);
  }
}
@keyframes dropShadowColorActive {
  0% {
    filter: drop-shadow(0px 0px 5px #b72929);
  }
  100% {
    filter: drop-shadow(0px 0px 15px #b72929);
  }
}
*::-webkit-scrollbar {
  width: 0.05rem;
  background-color: #04267e;
}
*::-webkit-scrollbar-thumb {
  border-radius: 0.1rem;
  background-color: rgba(255, 255, 255, 0.9);
  border: 0.01rem solid #04267e;
}
.pageBanner {
  padding-top: calc(600 / 1920 * 100%);
  background: url(../image/pageBanner.png) no-repeat center / cover;
  position: relative;
  z-index: 2;
}
.pageBanner:after {
  content: '';
  display: block;
  width: 100%;
  height: 2.8rem;
  position: absolute;
  background: linear-gradient(transparent, #04267e);
  bottom: 0;
  opacity: 0.3;
}
.pageBanner .inner {
  position: relative;
}
.pageBanner .pageBox {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  line-height: 2;
  z-index: 1;
}
.pageBanner .pageBox .pageTitle {
  font-size: 0.44rem;
  font-family: SourceHanSerifCN-Bold;
}
.pageBanner .pageBox .pagePath a {
  font-size: 0.185rem;
  color: #fff;
  text-decoration: none;
}
.pageBanner .pageBox .pagePath .possplit {
  background: none;
  padding: 0;
  margin: 0;
  text-indent: 0;
  width: 1em;
  text-align: center;
}
.pageBanner .pageBox .pagePath .possplit:after {
  content: '/';
  text-align: center;
  font-size: 0.18rem;
  width: 1em;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .pageBanner {
    padding-top: calc(1000 / 1920 * 100%);
  }
  .pageBanner .pageBox {
    bottom: 0;
  }
  .pageBanner .pageBox .pageTitle {
    font-size: 0.34rem;
  }
  .pageBanner .pageNews {
    padding-top: 0.5rem;
  }
}
.pageNews {
  background: url(../image/main1B.png) no-repeat top center / 100%;
  padding: 1rem 0;
}
.pageNews .newsList .news {
  display: flex;
  text-decoration: none;
  width: 100%;
  padding-bottom: 0.6rem;
}
.pageNews .newsList .news .img {
  aspect-ratio: 470/288;
  width: 4.7rem;
}
.pageNews .newsList .news .con {
  flex: 1;
  padding-left: 0.6rem;
  text-align: left;
  overflow: hidden;
}
.pageNews .newsList .news .con time {
  color: #04267e;
}
.pageNews .newsList .news .con time .y {
  font-size: 0.14rem;
}
.pageNews .newsList .news .con time .d {
  font-size: 0.36rem;
}
.pageNews .newsList .news .con .title {
  font-size: 0.18rem;
  color: #333333;
  font-weight: bold;
  padding-top: 0.33rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pageNews .newsList .news .con .text {
  font-size: 0.14rem;
  color: #333;
  opacity: 0.6;
  padding-top: 0.18rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
line-height: 0.3rem;
}
@media screen and (max-width: 767px) {
  .pageNews .newsList .news {
    flex-direction: column-reverse;
    padding: 0;
  }
  .pageNews .newsList .news .img {
    width: 100%;
  }
  .pageNews .newsList .news .con {
    padding: 0.3rem 0;
  }
  .pageNews .newsList .news .con .title {
    padding-top: 0.1rem;
  }
}
.pageInfo {
  padding: 0.8rem 0;
  background: #f7fbff url(../image/main1B.png) no-repeat top center / 100%;
}
.pageInfo .inner .title {
  font-size: 0.36rem;
  font-weight: bold;
  padding-bottom: 0.48rem;
  text-align: center;
}
.pageInfo .inner .infoMore {
  color: #666;
  font-size: 0.185rem;
  text-align: center;
  position: relative;
}
.pageInfo .inner .infoMore span {
  padding: 0 1em;
}
.pageInfo .inner .infoMore .qr {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.185rem;
  color: #666666;
}
.pageInfo .inner .infoMore .qr .item {
  width: 0.3rem;
  height: 0.3rem;
  background-color: rgba(32, 185, 34, 0.1);
}
.pageInfo .inner .infoMore .qr .item:not(.source) path {
  fill: #20b922;
}
.pageInfo .inner .infoMore .qr .item:nth-last-child(1) {
  background-color: rgba(245, 170, 41, 0.1);
}
.pageInfo .inner .content {
  padding-top: 0.94rem;
  font-size: 0.185rem !important;
  line-height: 2 !important;
  color: #333;
  padding-bottom: 1.3rem;
}
.pageInfo .inner .content * {
  font-size: 0.185rem !important;
  line-height: 2 !important;
  color: #333;
}
.pageInfo .inner .content img {
  margin: auto;
height: auto !important;
}
.pageInfo .inner .next-title a,
.pageInfo .inner .prev-title a {
  color: #333;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .pageInfo {
    padding-top: 0.5rem;
  }
  .pageInfo .inner .infoMore .qr {
    transform: translateY(100%);
  }
  .pageInfo .inner .info .title {
    font-size: 0.26rem;
  }
  .pageInfo .inner .info .content {
    font-size: 0.185rem !important;
  }
.xxjj_bjt {
    margin-top: -0.3rem !important;
}
.pageInfo .inner .content.content_xxjj {
    padding: 0.3rem !important;
}
}
.page_list {
  height: 0.9rem;
}
.page_list:after {
  background: #04267e;
  width: calc(50vw + 8rem);
  margin-left: calc((50vw - 8rem) / -1);
  content: '';
  position: absolute;
  height: 0.9rem;
  bottom: 0;
  clip-path: polygon(0 0, 98% 0%, 100% 100%, 0% 100%);
}
.page_list ul {
  height: 100%;
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
}
.page_list .page_column:first-child a.col_item_link {
  border: none;
}
.page_list .page_column.selected a.col_item_link {
  color: #2eeff1;
}
.page_list .page_column.selected a.col_item_link:hover {
  color: #2eeff1;
}
.page_list .page_column.selected a.col_item_link:before {
  content: '';
  display: block;
  width: 0.06rem;
  height: 0.04rem;
  position: absolute;
  left: 0.18rem;
  top: 50%;
  margin-top: -0.02rem;
  background: #2eeff1;
}
.page_list .page_column.selected a.col_item_link:after {
  content: '';
  display: block;
  width: 0.06rem;
  height: 0.04rem;
  position: absolute;
  left: 0.18rem;
  top: 50%;
  background: #385cf8;
}
.page_list .page_column::marker {
  display: none;
  font-size: 0;
}
.page_list .page_column a.col_item_link {
  color: #fff;
  text-decoration: none;
  padding: 0 0.28rem;
  font-size: 0.17rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;font-family: 'Source Han Serif';
}

.pageInfo_xxjj {
    padding-bottom: 0px; background:url('../image/xxjjn_bg.jpg') no-repeat center top; 
        background-size: 100% auto;
}
.pageInfo .inner .content.content_xxjj {
    padding: 0.7rem 1.2rem;
    box-shadow: rgb(4 38 126 / 15%) 0 8px 30px;background: #fff;
}
.pageInfo_xxjj .inner {
    position: relative;

}
.xxjj_bjt {
    margin-top: -1rem;
}


@media screen and (max-width: 767px) {
  .page_list {
    height: 40px;
    position: relative;
    width: 100vw;
    margin-left: -0.18rem;
  }
  .page_list .page_column {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .page_list .page_column.selected a.col_item_link::before,
  .page_list .page_column.selected a.col_item_link::after {
    left: -16px;
  }
  .page_list .page_column a.col_item_link {
    font-size: 16px;
    padding: 0;
    border: none;
    line-height: 43px;
    border-left: none;
  }
  .page_list ul {
    display: block;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    background: #04267e;
    width: 100%;
    height: auto;
    left: 0;
    padding: 0 0.18rem;
    box-sizing: border-box;
    display: none;
  }
  .page_list:after {
    width: 100vw;
    margin-left: 0;
    height: 100%;
    clip-path: polygon(0 0, 97% 0%, 100% 100%, 0% 100%);
  }
  .page_list .page-arrow {
    display: block;
    position: absolute;
    z-index: 1;
    right: 34px;
    top: 12px;
  }
}
.pagetop {
  margin-bottom: 0.7rem;
}
a.page-arrow {
  display: none;
}
@media screen and (max-width: 767px) {
  .pagetop {
    margin-bottom: 0;
  }
}
.xbxxlist .box.box1 {
  margin-top: 0.64rem;
}
footer {
  padding-top: 1rem;
}
/*
修改样式请新建css文件,请勿在当前css中修改以免样式丢失!!!
*/


.siteSearch form {
	display: flex;
	justify-content: space-between;
}
.siteSearch .search-input {
	flex: 1;
}
.siteSearch .search-input .search-title {
	border: 0;
	border-radius: 5px 0 0 5px;
	font-size: 0.22rem;
	color: rgba(102, 102, 102, 0.6);
	line-height: 3;
	width: 100%;
	text-indent: 1em;
}
.siteSearch .search-submit {
	background: #157768
  url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMy4zMDciIGhlaWdodD0iMTMuMzA3IiB2aWV3Qm94PSIwIDAgMTMuMzA3IDEzLjMwNyI+CiAgPGcgaWQ9Iue7hF82OTc5IiBkYXRhLW5hbWU9Iue7hCA2OTc5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMy41IC0zLjUpIj4KICAgIDxwYXRoIGlkPSLot6/lvoRfMzk5NiIgZGF0YS1uYW1lPSLot6/lvoQgMzk5NiIgZD0iTTkuNDU1LDE0LjkxQTUuNDU1LDUuNDU1LDAsMSwwLDQsOS40NTUsNS40NTUsNS40NTUsMCwwLDAsOS40NTUsMTQuOTFaIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMSIvPgogICAgPHBhdGggaWQ9Iui3r+W+hF8zOTk3IiBkYXRhLW5hbWU9Iui3r+W+hCAzOTk3IiBkPSJNMTguOTc0LDEyLjc1MmEyLjU2NywyLjU2NywwLDAsMC0zLjYzLDAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC03LjcwMyAtNS40MzMpIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxIi8+CiAgICA8cGF0aCBpZD0i6Lev5b6EXzM5OTgiIGRhdGEtbmFtZT0i6Lev5b6EIDM5OTgiIGQ9Ik0zMy4yMjIsMzMuMjIybDIuNzIzLDIuNzIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTkuODQ1IC0xOS44NDUpIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxIi8+CiAgPC9nPgo8L3N2Zz4K)
  no-repeat 1em center/1em;
	width: 1.2rem;
	border: 0;
	height: 100%;
	border-radius: 0 5px 5px 0;
	color: #fff;
	font-size: 0.22rem;
	text-indent: 1em;
}
html {
	scroll-timeline: --scrollcontainer;
}

header:before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    z-index:-1;
    display:block;
    width:100%;
    height:100%;
    opacity:0;
    transition:0.5s 0s;
    background:#04267e;
}
body.solid header:before{
    opacity:1;
    transition:0.5s 1s;
}