.html {
  height: 100vh;
  overflow: hidden;
}

@keyframes fadeInup {
  0% {
    transform: translateY(0.5rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInupBig {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleBox {
  0% {
    transform: scale(1);
    opacity: .5;
  }

  100% {
    transform: scale(6);
    opacity: 0;
  }
}

@keyframes scaleBoxBig {
  0% {
    transform: scale(1);
    opacity: .5;
  }

  100% {
    transform: scale(10);
    opacity: 0;
  }
}

@keyframes pathLeft {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes pathRight {
  0% {
    clip-path: polygon(100% 0, 100% 100%, 100% 100%, 100% 0);
  }

  100% {
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
  }
}

.w1720 {
  width: 90%;
  max-width: 1720px;
  margin: 0 auto;
}

.w1640 {
  width: 85.4%;
  max-width: 1640px;
  margin: 0 auto;
}

.w1450 {
  width: 75%;
  max-width: 1450px;
  margin: 0 auto;
}

:root {
  --pubCol: #00447d;
}

.font-60 {
  font-size: 1.5rem;
  line-height: 1;
}

.font-48 {
  font-size: 1.2rem;
  line-height: 1;
}

.font-36 {
  font-size: 0.9rem;
  line-height: 1;
}

.font-32 {
  font-size: 0.8rem;
  line-height: 1;
}

.pub-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in;
}

.pub-btn::before,
.pub-btn::after {
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  transform: skew(15deg);
  transition: all 0.5s;
  overflow: hidden;
  background: #fff;
  z-index: 1;
}

.pub-btn::before {
  left: -4%;
}

.pub-btn::after {
  right: -4%;
}

.pub-btn:hover::before,
.pub-btn:hover::after {
  width: 58%;
}

.pub-btn:hover span {
  color: #00447d;
  transition: 0.3s;
}

.pub-btn span {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in;
}

.pub-point {
  position: relative;
}

.pub-point:before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform-origin: center center;
  transform: scale(0);
}

.pub-svg {
  overflow: hidden;
  position: relative;
}

.pub-svg .text {
  margin-right: 6px;
}

.pub-svg span {
  transition: 200ms;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.pub-svg svg {
  position: relative;
  top: 0;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #fff;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.pub-svg::after {
  content: "";
  background: white;
  position: absolute;
  z-index: 1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: all 0.5s;
}

.pub-svg:hover span {
  color: #00447d;
}

.pub-svg:hover svg {
  stroke: #00447d;
}

.pub-svg:hover::after {
  transform: skewX(-45deg) scale(1, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.banner .crumb {
  height: 2rem;
  background-color: #fff;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E7E7E7;
}

.banner .crumb a {
  color: #000000;
  line-height: 1;
  padding-right: .6rem;
  margin-right: .6rem;
  position: relative;
}

.banner .crumb a::after {
  content: '>';
  position: absolute;
  font-size: 16px;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  color: #000000;
}

.banner .crumb a:last-child {
  margin-right: 0;
  padding-right: 0;
  color: #00447d;
}

.banner .crumb a:last-child::after {
  display: none;
}

.search-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  z-index: 101;
  transform: translateY(-100%);
  height: 2.1rem;
}

.search-dialog .bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* border-radius: 100%; */
  /* transform: scale(0); */
  transform-origin: center;
  background-color: #fff;
}

.search-dialog .form-box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.search-dialog .form-box form {
  width: 47%;
  height: 1.2rem;
  padding: 0 .6rem;
  display: flex;
  align-items: center;
  border: 1px solid #999999;
  margin-right: .9rem;
  /* transform: translateX(-.5rem); */
  /* opacity: 0; */
}

.search-dialog .form-box form input[type=submit] {
  width: .8rem;
  height: .8rem;
  margin-right: .7rem;
  background-image: url(../img/23.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}

.search-dialog .form-box form input[type=text] {
  width: calc(100% - 2rem);
  height: 100%;
  background: none;
  color: #999999;
  font-size: .6rem;
}

.search-dialog .form-box form input[type=text]::placeholder {
  color: #999999;
}

.search-dialog .form-box .close {
  width: .75rem;
  cursor: pointer;
  /* transform: translateX(.5rem); */
  /* opacity: 0; */
}

.search-dialog .form-box .close img {
  width: 100%;
}

.search-dialog.search-dialog-slide {
  transform: translateY(0);
}

.search-dialog.search-dialog-slide .bg {
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}


/* .search-dialog.search-dialog-slide .form-box form {
  transform: translateX(0);
  opacity: 1;
  transition: transform .8s .8s ease-in-out;
}

.search-dialog.search-dialog-slide .form-box .close {
  transform: translateX(0);
  opacity: 1;
  transition: transform .8s 2s ease-in-out;
} */

.sec-nav {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 1.5rem;
  min-width: max-content;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: none;
  text-align: center;
}

.sec-nav>a {
  display: inline-block;
  line-height: 1.5rem;
  margin-right: 1.5rem;
  /* padding: 10px .5rem; */
  /* line-height: 1.2; */
  color: #000;
  transition: all .3s;
}

.sec-nav>a:last-child {
  margin-right: 0;
}

.sec-nav>a:hover {
  /* background-color: #00447d; */
  color: #00447d;
}

.sec-nav.pro-sec-nav {
height:auto;
  width: 100%;
padding-bottom:1rem !important
}

.sec-nav.pro-sec-nav.yyind {
  height: auto;
    padding-bottom:0 !important;
}

.sec-nav.pro-sec-nav .wrap {
  width: calc(100% - 11.2rem);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: stretch;
  padding-top: 1rem;
  justify-content: center;
}

.sec-nav.pro-sec-nav .wrap .list {
  width: calc(18% - 1rem);
  margin-right: .8rem;
}

.sec-nav.pro-sec-nav .wrap .list:last-child {
  margin-right: 0;
}

.sec-nav.pro-sec-nav .wrap .list .nav-tit {
  display: block;
  color: #000000;
  padding-bottom: .35rem;
  line-height: 1;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  margin-bottom: .5rem;
text-align: left;
}

.sec-nav.pro-sec-nav .wrap .list .a-inner {
 /* display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 6.8rem;
  padding: 0 .5rem;*/
}

.sec-nav.pro-sec-nav .wrap .list .a-inner a {
  display: block;
  color: #999;
  line-height: 1.2;
  margin-bottom: .5rem;
  margin-right: 0!important ;
  text-align: left;
  transition: all .3s;
}

.sec-nav.pro-sec-nav .wrap .list .a-inner a:nth-child(n + 8) {
  margin-right: 0;
}

.sec-nav.pro-sec-nav .wrap .list .a-inner a:hover {
  color: #00447d;
}

.all-container {
  transform: translateY(0);
  transition: all 1s ease-in-out;
}

.all-containerStart {
  transform: translateY(0);
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 999;
  overflow: hidden;
  transition: all .8s ease-in-out;
}

.loading .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 11px;
  z-index: 3;
}

.loading .progress .progress-bar {
  width: 0;
  height: 100%;
  background-color: #017ee6;
  transition: all .3s;
}

.loading .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 3;
}

.loading .content .intro {
  width: 100%;
  margin: 0 auto 1.25rem;
}

.loading .content .intro div {
  width: 44%;
  margin: 0 auto 0.8rem;
}

.loading .content .intro p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  letter-spacing: 0.7rem;
  /* margin-right: -0.7rem; */
  width: max-content;
  margin: 0 auto;
}

.loading .content .percent {
  position: relative;
  margin: auto;
  width: max-content;
  text-align: center;
}

.loading .content .percent p {
  color: #fff;
}

.loading .content .percent span {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  box-shadow: 0 3px 0 #017ee6;
  -webkit-animation: move 1s infinite linear;
  animation: move 1s infinite linear;
}

.loading .ball {
  position: absolute;
  width: 41%;
  left: 50%;
  bottom: -40%;
  transform: translateX(-50%);
}

.loadEnd {
  transform: translateY(100%);
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.head-box {
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 100;
  transition: all .3s;
}

.head-box-top {
  z-index: 101;
}

.head {
  width: 100%;
  /* padding-top: 1rem; */
  position: relative;
  transition: all .3s;
}

.pc-head {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding-right: 2.5rem;
  height: 2.1rem;
}

.head-nav-box {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 4.75rem;
}

.logo a {
  width: 5.6rem;
  height: 2.1rem;
  /* background-color: #00447d; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo a svg {
  width: 100%;
}

.logo a img {
  width: 80%;
}

.head-rg .lan {
  color: #fff;
  margin-right:.5rem;
}
.head-rg .lan .icon{
  width:22px;
  height:22px;
  fill:#fff;
}
.head-scroll .head-rg .lan .icon{
  fill:#333;
}

.pc-menu {
  width: 2.1rem;
  height: 2.1rem;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pc-menu div {
  width: 0.75rem;
  height: 1px;
  background-color: #fff;
  margin-bottom: 6px;
  transition: all 0.3s;
}

.pc-menu div:last-child {
  margin-bottom: 0;
}

.pc-menu:hover div:nth-child(2) {
  width: 0.6rem;
}

.pc-menu:hover div:nth-child(3) {
  width: 0.45rem;
}

.head-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-ls {
  height: 100%;
  line-height: 2.1rem;
  margin-right: 1.5rem;
  transition: all 0.3s;
}


/* .nav-ls:not(:first-child) {
  position: relative;
} */

.nav-ls:last-child {
  margin-right: 0;
}

.nav-ls>a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 2.1rem;
  color: #fff;
  position: relative;
  transition: all .3s;
}

.nav-ls:hover>a {
  color: #00447d;
}

.nav-ls.cur>a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  left: 0;
  bottom: 0;
  transition: all .3s;
}

.head-rg {
  height: 100%;
}

.head-search {
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 100%;
  width: max-content;
  transition: all .3s;
}

.head-search p {
  color: #fff;
  transition: all .3s;
}

.head-search div {
  width: 0.45rem;
  margin-right: 6px;
}

.head-search div img {
  width: 100%;
}

.head-search:hover {
  transform: translateY(-10px);
}

.pos-nav-box {
  display: none;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: -1rem;
  left: 0;
}

.pos-nav {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  background-color: #fff;
}

.pos-nav .lf {
  width: 31.25%;
  height: 100vh;
  background-color: #f7f7f7;
  padding: 1.5rem 2.7rem 1.5rem 1.5rem;
  position: relative;
}

.pos-nav .lf .close {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #313131;
  border-radius: 50%;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(1rem);
  opacity: 0;
  transition: all 1s;
  position: relative;
}

.pos-nav .lf .close img {
  position: relative;
  z-index: 2;
}

.pos-nav .lf .close:before {
  background-color: #00447d;
  transition: all 0.5s;
}

.pos-nav .lf .close:hover:before {
  transform: scale(1);
}

.pos-nav .lf .home {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #00447d;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(1rem);
  opacity: 0;
  transition: all 1s 0.3s;
}

.pos-nav .lf .home img {
  position: relative;
  z-index: 2;
}

.pos-nav .lf .home:before {
  background-color: #313131;
  transition: all 0.5s;
}

.pos-nav .lf .home:hover:before {
  transform: scale(1);
}

.pos-nav .lf .intro {
  font-weight: bold;
  color: #999999;
  line-height: 1.3;
  margin-bottom: 1.1rem;
  transform: translateY(1rem);
  opacity: 0;
  transition: all 1s 0.6s;
}

.pos-nav .lf .intro span {
  color: #333333;
}

.pos-nav .lf .nav {
  transform: translateY(1rem);
  opacity: 0;
  transition: all 1s 0.9s;
}

.pos-nav .lf .nav a {
  display: block;
  color: #333333;
  line-height: 1;
  margin-bottom: 0.35rem;
  transition: all 0.3s;
}

.pos-nav .lf .nav a:hover {
  transform: translateX(10px);
}

.pos-nav .lf .btm {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
}

.pos-nav .lf .btm a {
  display: block;
  color: #999999;
}

.pos-nav .lf .btm a:not(:last-child) {
  margin-bottom: 0.45rem;
}

.pos-nav .rg {
  width: 68.75%;
  background-color: #00447d;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 18vh 7vw 0 7vw;
}

.pos-nav .rg .li:nth-child(0) {
  transition: all 1s 0s;
}

.pos-nav .rg .li:nth-child(1) {
  transition: all 1s 0.3s;
}

.pos-nav .rg .li:nth-child(2) {
  transition: all 1s 0.6s;
}

.pos-nav .rg .li:nth-child(3) {
  transition: all 1s 0.9s;
}

.pos-nav .rg .li:nth-child(4) {
  transition: all 1s 1.2s;
}

.pos-nav .rg .li:nth-child(5) {
  transition: all 1s 1.5s;
}

.pos-nav .rg .li:nth-child(6) {
  transition: all 1s 1.8s;
}

.pos-nav .rg .li:nth-child(7) {
  transition: all 1s 2.1s;
}

.pos-nav .rg .li:nth-child(8) {
  transition: all 1s 2.4s;
}

.pos-nav .rg .li {
  width: 25%;
  margin-bottom: 6vh;
  transform: translateY(1rem);
  opacity: 0;
}

.pos-nav .rg .li a {
  display: block;
  color: #4378a5;
  line-height: 1;
  transition: all 0.3s;
}

.pos-nav .rg .li a:not(:last-child) {
  margin-bottom: 0.35rem;
}

.pos-nav .rg .li a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.pos-nav .rg .li a:first-child {
  color: #fff;
  margin-bottom: 0.9rem;
}

.Up-box .pos-nav .lf .close,
.Up-box .pos-nav .lf .home,
.Up-box .pos-nav .lf .intro,
.Up-box .pos-nav .lf .nav {
  transform: translateY(0);
  opacity: 1;
}

.Up-box .pos-nav .rg .li {
  transform: translateY(0);
  opacity: 1;
}

#all-container {
  height: 100vh;
}

#all-pagination {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  right: 2.75rem;
  top: auto;
  transform: translate(0, 0);
  bottom: 2.1rem;
  width: 0.85rem;
  overflow: initial;
}

#all-pagination .swiper-pagination-bullet {
  width: 0.35rem;
  height: 2px;
  border-radius: 0;
  background-color: #fff;
  transition: all 0.3s;
}

#all-pagination .swiper-pagination-bullet span {
  display: block;
  width: max-content;
  height: max-content;
  position: absolute;
  color: #fff;
  right: calc(100% + .25rem);
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  line-height: 1;
  opacity: 0;
  transition: all .3s;
}

#all-pagination .swiper-pagination-bullet-active {
  width: 0.85rem;
}

#all-pagination .swiper-pagination-bullet-active span {
  opacity: 1;
}

#all-container .ban-container {
  height: 100vh;
}

#all-container .ban-container .swiper-slide {
  height: 100%;
}

#all-container .ban-container .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#all-container .ban-container .swiper-slide .ban-font {
  position: absolute;
  top: 30%;
  left: 7.3%;
}

#all-container .ban-container .swiper-slide .ban-font .h1 {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.75rem;
}

#all-container .ban-container .swiper-slide .ban-font .h2 {
  line-height: 1;
  color: #fff;
  margin-bottom: 1.95rem;
}

#all-container .ban-container .swiper-slide .ban-font .more {
  display: block;
  width: 3.4rem;
  height: 1.1rem;
  line-height: 1.1rem;
  text-align: center;
  background-color: #00447d;
  border-radius: 0.55rem;
  color: #fff;
}

#all-container .ban-container .swiper-pagination {
  text-align: left;
  padding-left: calc(7.3% + 0.5rem);
  line-height: 1;
  bottom: 10vh;
}

#all-container .ban-container .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

#all-container .ban-container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00447d;
}

.scrolldown {
  --color: #fff;
  --sizeX: 0.55rem;
  --sizeY: 0.85rem;
  position: relative;
  width: var(--sizeX);
  height: var(--sizeY);
  margin-left: var(sizeX/2);
  border: calc(var(--sizeX) / 10) solid var(--color);
  border-radius: 1.25rem;
  box-sizing: border-box;
  cursor: pointer;
}

.scrolldown::before {
  content: '';
  position: absolute;
  bottom: .35rem;
  left: 50%;
  width: .1rem;
  height: .1rem;
  margin-left: -2px;
  background-color: var(--color);
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px 1px #2a547066;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: .1rem;
  }

  40% {
    opacity: 1;
    height: .25rem;
  }

  80% {
    transform: translate(0, 0.5rem);
    height: .25rem;
    opacity: 0;
  }

  100% {
    height: 3px;
    opacity: 0;
  }
}

.chevrons {
  padding: 6px 0 0 0;
  margin-left: -2px;
  margin-top: 1rem;
  width: .55rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid var(--color);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: .25rem;
  height: .25rem;
  transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
  animation: pulse54012 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
  animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.5;
  }
}

.side-bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 1.9rem;
  height: 100vh;
  background-color: rgba(1, 0, 7, 0.5);
  backdrop-filter: blur(1%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 0 0 2.75rem;
}

.side-bar .lan {
  height: 2.1rem;
  line-height: 2.1rem;
  color: #fff;
}

.side-bar .share {
  display: flex;
  flex-direction: column;
}

.side-bar .share a {
  width: 0.6rem;
  display: flex;
  align-items: center;
  border: none;
  font-size: 0;
  border-radius: 0;
  height: .6rem;
  margin: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.side-bar .share a:not(:last-child) {
  margin-bottom: 0.85rem;
}


/* .side-bar .share a:nth-child(1) {
  background: url(../img/9.png) no-repeat center;
}

.side-bar .share a:nth-child(2) {
  background: url(../img/10.png) no-repeat center;
}

.side-bar .share a:nth-child(3) {
  background: url(../img/11.png) no-repeat center;
} */

.side-bar .social-share .icon-wechat .wechat-qrcode {
  top: 50%;
  transform: translateY(-50%);
  left: calc(-.5rem - 200px);
}

.side-bar .social-share .icon-wechat .wechat-qrcode:after {
  left: 100%;
  margin-left: 0;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  border-color: transparent transparent transparent #fff;
}

.side-bar .share a img {
  max-width: 100%;
}

.side-bar .share a:hover {
  background-color: transparent;
}

.pubSwiper {
  height: 100vh;
  position: relative;
}

.pubSwiper>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scend>img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.scend>img:first-child {
  display: block;
}

.pubSwiper .container {
  position: absolute;
  top: 0;
  left: 7.3%;
  height: 100%;
}

.first .container {
  padding-top: 26vh;
}

.first .container .tit {
  color: #fff;
  margin-bottom: .6rem;
}

.first .container .cont {
  color: #fff;
  line-height: 1.8;
  width: 34%;
  margin-bottom: 2.05rem;
}

.first .container .num {
  width: 34%;
  display: flex;
  flex-wrap: wrap;
  padding: .75rem 0 0;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 1.75rem;
}

.first .container .num .li {
  width: 33.3%;
  margin-bottom: 1rem;
}

.first .container .num .li .intro {
  color: #fff;
  line-height: 1;
  margin-bottom: .3rem;
}

.first .container .num .li .wrap {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.first .container .num .li .wrap span {
  color: #fff;
  font-weight: bold;
  margin-right: 1px;
}

.first .container .num .li .wrap p {
  color: #fff;
  line-height: 1;
}

.first .container .more {
  width: 4.15rem;
  height: 1.1rem;
  border-radius: 0.55rem;
  line-height: 1.1rem;
  text-align: center;
  background-color: #00447d;
  display: block;
  color: #fff;
  border: 1px solid #fff;
}

.first .container .more span {
  margin-right: .25rem;
}

.scend .container {
  padding-top: 30vh;
}

.scend .container .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 60%;
}

.scend .container .wrap .lf {
  width: 36%;
  min-width: max-content;
}

.scend .container .wrap .lf .tit {
  color: #fff;
  line-height: 1;
  margin-bottom: 1.8rem;
}

.scend .container .wrap .lf .tab span {
  display: block;
  line-height: 1;
  color: #fff;
  opacity: .5;
  font-size: .75rem;
  cursor: pointer;
  transition: all .3s;
}

.scend .container .wrap .lf .tab span:not(:last-child) {
  margin-bottom: 0.75rem;
}

.scend .container .wrap .lf .tab span:hover,
.scend .container .wrap .lf .tab span.cur {
  opacity: 1;
  font-weight: bold;
}

.scend .container .wrap .rg {
  width: 64%;
}

.scend .container .wrap .rg .change {
  padding-right: 1.6rem;
  padding-top: .1rem;
  animation: fadeInup 1s ease-in-out forwards;
}

.scend .container .wrap .rg .change .cont {
  color: #fff;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.scend .container .wrap .rg .change .more {
  display: block;
  width: 3.4rem;
  height: 1.1rem;
  line-height: 1.1rem;
  text-align: center;
  border-radius: .55rem;
  background-color: #00447d;
  color: #fff;
}

.scend .container .wrap .rg .change .more span {
  margin-right: .2rem;
}

.scend .container .tab-li {
  position: absolute;
  bottom: 1.7rem;
  left: 50%;
  width: 15.5rem;
  height: 2.2rem;
  transform: translateX(-50%);
}

.scend .container .tab-li>img {
  position: absolute;
  width: 13.5rem;
  height: 0.85rem;
  left: 50%;
  top: .25rem;
  transform: translateX(-50%);
}

.scend .container .tab-li .li-box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
}

.scend .container .tab-li .li {
  width: max-content;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.scend .container .tab-li .li:hover div,
.scend .container .tab-li .li.cur div {
  transform: scale(1);
  margin: 0;
}

.scend .container .tab-li .li:hover div img,
.scend .container .tab-li .li.cur div img {
  transform: scale(1);
}

.scend .container .tab-li .li:hover p,
.scend .container .tab-li .li.cur p {
  opacity: 1;
}

.scend .container .tab-li .li div {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.2);
  transition: all .5s;
}

.scend .container .tab-li .li div img {
  max-width: 90%;
  max-height: 90%;
  object-fit: cover;
  transform: scale(0);
  transition: all .5s .3s;
}

.scend .container .tab-li .li p {
  color: #fff;
  line-height: 1;
  opacity: .5;
  transition: all .5s;
}

.scend .container .tab-li .li:nth-child(2) div {
  margin-top: .2rem;
}

.scend .container .tab-li .li:nth-child(3) div {
  margin-top: -.05rem;
}

.scend .container .tab-li .li:nth-child(4) div {
  margin-top: .25rem;
}

.third .container {
  padding-top: 3.5rem;
}

.third .container .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: .4rem;
}

.third .container .top .intro {
  width: 50%;
  padding-top: 2rem;
}

.third .container .top .intro p {
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.third .container .top .intro a {
  display: block;
  color: #fff;
  width: 3.4rem;
  height: 1.1rem;
  line-height: 1.1rem;
  text-align: center;
  border-radius: .55rem;
  background-color: #00447d;
}

.third .container .top .intro a:hover {
  border: 1px solid #00447d;
}

.third .container .top .pic {
  position: relative;
  width: calc(50% - .5rem);
  height: 9.25rem;
  /* padding-left: .5rem; */
  overflow: hidden;
}

.third .container .top .pic::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  z-index: 1;
}

.third .container .top .pic img {
  width: 100%;
  transition: all .3s;
}

.third .container .top .pic .pos-text {
  position: absolute;
  top: .75rem;
  left: 1.5rem;
  width: calc(100% - 2.4rem);
  z-index: 2;
}

.third .container .top .pic .pos-text p {
  color: #fff;
  margin-bottom: .4rem;
  line-height: 1;
}

.third .container .top .pic .pos-text div {
  color: #fff;
  font-size: .8rem;
  line-height: 1.5;
  font-weight: bold;
}

.third .container .top .pic:hover img {
  transform: scale(1.1);
}

.third .container .btm .tab {
  position: relative;
  margin-bottom: 1.05rem;
}

.third .container .btm .tab::after {
  content: '';
  position: absolute;
  width: 112.5%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  right: -1.6rem;
  bottom: 0;
}

.third .container .btm .tab span {
  color: #000;
  display: inline-block;
  padding: 0 4px .5rem;
  position: relative;
  cursor: pointer;
  transition: all .3s;
}

.third .container .btm .tab span:not(:last-child) {
  margin-right: .7rem;
}

.third .container .btm .tab span::after {
  content: '';
  position: absolute;
  width: 0;
  height: 4px;
  background-color: #00447d;
  bottom: 0;
  left: 0;
  transform-origin: left;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.third .container .btm .tab span.cur,
.third .container .btm .tab span:hover {
  font-weight: bold;
}

.third .container .btm .tab span.cur::after,
.third .container .btm .tab span:hover::after {
  width: 100%;
  transform-origin: right;
}

.third .container .btm .wrap .swiper-container.cur {
  animation: fadeInup 1s ease-in-out forwards;
}

.third .container .btm .wrap .swiper-container .swiper-pagination {
  display: none;
}

.third .container .btm .wrap .swiper-container .swiper-slide {
  width: 23.5%;
  height: 6.3rem;
  background-color: #f6f6f8;
}

.third .container .btm .wrap .swiper-container .swiper-slide:not(:last-child) {
  margin-right: 2%;
}

.third .container .btm .wrap .swiper-container .swiper-slide .img-box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
  overflow: hidden;
  /* clip-path: circle(0 at 50% 50%); */
  transition: all .5s ease-out;
}

.third .container .btm .wrap .swiper-container .swiper-slide .img-box::after {
  content: '';
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
}

.third .container .btm .wrap .swiper-container .swiper-slide .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.third .container .btm .wrap .swiper-container .swiper-slide .pos-con {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 1.2rem 1rem .5rem 0.65rem;
}

.third .container .btm .wrap .swiper-container .swiper-slide .pos-con .time {
  /* color: #333; */
  color: #fff;
  margin-bottom: 1.3rem;
  line-height: 1;
}

.third .container .btm .wrap .swiper-container .swiper-slide .pos-con .time span {
  display: inline-block;
  line-height: 1;
}

.third .container .btm .wrap .swiper-container .swiper-slide .pos-con .time span:not(:last-child) {
  margin-right: .4rem;
  padding-right: .4rem;
  border-right: 1px solid #fff;
}

.third .container .btm .wrap .swiper-container .swiper-slide .pos-con .cont {
  /* color: #333; */
  color: #fff;
  line-height: 1rem;
  max-height: 2rem;
  overflow: hidden;
}

.third .container .btm .wrap .swiper-container .swiper-slide:hover .img-box {
  clip-path: circle(100% at 50% 50%);
}

.third .container .btm .wrap .swiper-container .swiper-slide:hover .pos-con .time,
.third .container .btm .wrap .swiper-container .swiper-slide:hover .pos-con .cont {
  color: #fff;
}

.fouth {
  height: auto;
}

.foot {
  background-color: #F8F8F8;
  padding: 3rem 0 2.6rem;
}

.footer {
  width: 89%;
  margin-left: 5%;
}

.footer .f-nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 2.7rem;
}

.footer .f-nav .lf {
  width: max-content;
}

.footer .f-nav .lf .f-logo {
  width: 5.35rem;
  margin-bottom: .5rem;
}

.footer .f-nav .lf .f-share {
  display: flex;
  margin-bottom: .8rem;
}

.footer .f-nav .lf .f-share a {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #DDDDDD;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 0;
  margin: 0;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.footer .f-nav .lf .f-share a:not(:last-child) {
  margin-right: .2rem;
}

.footer .f-nav .lf .f-share a img {
  max-width: 60%;
}


/* .footer .f-nav .lf .f-share a:nth-child(1) {
  background-image: url(../img/19.png);
}

.footer .f-nav .lf .f-share a:nth-child(2) {
  background-image: url(../img/20.png);
}

.footer .f-nav .lf .f-share a:nth-child(3) {
  background-image: url(../img/21.png);
} */

.footer .f-nav .lf .f-share a:hover {
  background-color: #00447D;
}

.footer .f-nav .lf .f-contact p {
  line-height: 1;
}

.footer .f-nav .lf .f-contact .tel {
  color: #222;
  margin-bottom: .25rem;
}

.footer .f-nav .lf .f-contact .phone {
  color: #00447d;
}

.footer .f-nav .rg {
  display: flex;
}

.footer .f-nav .rg .li:not(:last-child) {
  margin-right: 2rem;
}

.footer .f-nav .rg .li a {
  display: block;
  line-height: 1;
  color: #666666;
  margin-bottom: .25rem;
  transition: all .3s;
}

.footer .f-nav .rg .li a:first-child {
  color: #333333;
  margin-bottom: .75rem;
  font-weight: bold;
}

.footer .f-nav .rg .li a:hover {
  color: #00447d;
}

.footer .cp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .cp .net a {
  color: #666;
  line-height: 1;
  display: inline-block;
}

.footer .cp .net a img {
  display: inline-block;
}

.footer .cp .privacy a {
  display: inline-block;
  line-height: 1;
  color: #666;
  margin-right: .5rem;
}

.footer .cp .privacy a:last-child {
  margin-right: 0;
}

.ban-container .swiper-slide img {
  width: 100%;
  height: auto;
  min-height: 100%;
 transition: 1s linear 2s;
 transform: scale(1.1, 1.1);
}

.ban-container .swiper-slide-active img {
  transition: 6s linear;
  transform: scale(1, 1);
}

.ban-container .swiper-slide .h1 {
  opacity: 0;
  transform: translateY(1rem);
  transition: .5s linear;
}

.ban-container .swiper-slide-active .h1 {
  animation: fadeInupBig 1s ease-in-out forwards;
}

.ban-container .swiper-slide .h2 {
  opacity: 0;
}

.ban-container .swiper-slide-active .h2 {
  animation: fadeInupBig 1s .2s ease-in-out forwards;
}

.ban-container .swiper-slide .more {
  opacity: 0;
}

.ban-container .swiper-slide-active .more {
  animation: fadeInupBig 1s .4s ease-in-out forwards;
}

.all-container .swiper-slide .first .tit {
  opacity: 0;
}

.all-container .ani-slide .first .tit {
  animation: fadeInup 1s ease-in-out forwards;
}

.all-container .swiper-slide .first .cont {
  opacity: 0;
}

.all-container .ani-slide .first .cont {
  animation: fadeInup 1s .2s ease-in-out forwards;
}

.all-container .swiper-slide .first .num {
  opacity: 0;
}

.all-container .ani-slide .first .num {
  animation: fadeInup 1s .4s ease-in-out forwards;
}

.all-container .swiper-slide .first .more {
  opacity: 0;
}

.all-container .ani-slide .first .more {
  animation: fadeInup 1s .6s ease-in-out forwards;
}

.all-container .swiper-slide .scend .tit {
  opacity: 0;
}

.all-container .ani-slide .scend .tit {
  animation: fadeInup 1s ease-in-out forwards;
}

.all-container .swiper-slide .scend .tab {
  opacity: 0;
}

.all-container .ani-slide .scend .tab {
  animation: fadeInup 1s .2s ease-in-out forwards;
}

.all-container .swiper-slide .scend .rg {
  opacity: 0;
}

.all-container .ani-slide .scend .rg {
  animation: fadeInup 1s .3s ease-in-out forwards;
}

.all-container .swiper-slide .third .top .intro p {
  opacity: 0;
}

.all-container .ani-slide .third .top .intro p {
  animation: fadeInup 1s .1s ease-in-out forwards;
}

.all-container .swiper-slide .third .top .intro a {
  opacity: 0;
}

.all-container .ani-slide .third .top .intro a {
  animation: fadeInup 1s .3s ease-in-out forwards;
}

.all-container .swiper-slide .third .top .pic {
  opacity: 0;
}

.all-container .ani-slide .third .top .pic {
  animation: fadeInup 1s .4s ease-in-out forwards;
}

.all-container .swiper-slide .third .btm .tab {
  opacity: 0;
}

.all-container .ani-slide .third .btm .tab {
  animation: fadeInup 1s .6s ease-in-out forwards;
}

.all-container .swiper-slide .third .btm .wrap {
  opacity: 0;
}

.all-container .ani-slide .third .btm .wrap {
  animation: fadeInup 1s .8s ease-in-out forwards;
}
.indexwx{

	position: fixed;
    bottom: calc(3% + 60px);
    right: 2.2%;
    width: 43px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    height: 43px;
    border-radius: 50%;
}
.indexwx .wximg{
	position: absolute;
	width:240px;
	height:240px;
	right:60px;
	top:50%;
	margin-top:-60px;
	z-index:9;
	    opacity: 0;
visibility: hidden;
transition:all .5s linear;

}
.indexwx:hover .wximg{
	opacity: 1;
visibility:visible;

}
.product {
  padding: 2.15rem 0 2.55rem;
  background-color: #F1F1F1;
}

.product .top-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .8rem;
}

.product .top-wrap .tit {
  color: #000000;
  line-height: 1;
}

.product .top-wrap .search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 .6rem;
  height: 1.3rem;
  border-radius: .7rem;
  background-color: #fff;
}

.product .top-wrap .search input {
  background: none;
  width: calc(100% - 1rem);
  height: 100%;
  color: #666;
}

.product .top-wrap .search input::placeholder {
  color: #BDBDBD;
}

.product .top-wrap .search div {
  width: .6rem;
  cursor: pointer;
}

.product .top-wrap .search div img {
  width: 100%;
}

.product .cont-wrap {
  display: flex;
}

.product .cont-wrap .lf-side-box {
  width: 16.5%;
  margin-right: 1.5%;
}

.product .cont-wrap .lf-side {
  width: 100%;
}

.product .cont-wrap .lf-side .fis-li {
  margin-bottom: .35rem;
}

.product .cont-wrap .lf-side .fis-li:last-child {
  margin-bottom: 0;
}

.product .cont-wrap .lf-side .fis-li .clk-tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 .6rem 0 .4rem;
  height: 1.05rem;
  background-color: #fff;
  transition: all .3s;
  cursor: pointer;
}

.product .cont-wrap .lf-side .fis-li .clk-tit .icon {
  display: flex;
  align-items: center;
}

.product .cont-wrap .lf-side .fis-li .clk-tit .icon div {
  width: .4rem;
  margin-right: .3rem;
  position: relative;
  transition: all .3s;
}

.product .cont-wrap .lf-side .fis-li .clk-tit .icon div img {
  max-width: 100%;
  margin: 0 auto;
}

.product .cont-wrap .lf-side .fis-li .clk-tit .icon p {
  color: #000000;
  transition: all .3s;
}

.product .cont-wrap .lf-side .fis-li .clk-tit span {
  line-height: 1;
  color: #000000;
  font-size: 16px;
  transition: all .3s;
}

.product .cont-wrap .lf-side .fis-li .clk-tit.cur span {
  transform: rotate(90deg);
}

.product .cont-wrap .lf-side .fis-li .clk-tit:hover,
.product .cont-wrap .lf-side .fis-li .clk-tit.cur {
  background-color: #00447d;
}

.product .cont-wrap .lf-side .fis-li .clk-tit:hover .icon .normal-block,
.product .cont-wrap .lf-side .fis-li .clk-tit.cur .icon .normal-block {
      filter: grayscale(100%) brightness(1000%);
}

.product .cont-wrap .lf-side .fis-li .clk-tit:hover .icon p,
.product .cont-wrap .lf-side .fis-li .clk-tit.cur .icon p {
  color: #fff;
}

.product .cont-wrap .lf-side .fis-li .clk-tit:hover span,
.product .cont-wrap .lf-side .fis-li .clk-tit.cur span {
  color: #fff;
}

.product .cont-wrap .lf-side .fis-li .slide-cont {
  padding: .75rem .65rem .75rem 1rem;
  background-color: #F6F6F6;
  display: none;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li {
  margin-bottom: .75rem;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li:last-child {
  margin-bottom: 0;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit p {
  color: #020202;
  line-height: 1;
  transition: all .3s;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit div span {
  width: 11px;
  height: 1px;
  background-color: #020202;
  transition: all .3s;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit div span:nth-child(2) {
  position: absolute;
  width: 1px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit.cur>p {
  color: #00447d;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit.cur div span:nth-child(2) {
  height: 0;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit:hover p {
  color: #00447d;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-slide {
  padding: .45rem .5rem;
  display: none;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-slide span {
  display: block;
  line-height: 1.2;
  margin-bottom: .4rem;
  color: #555555;
  cursor: pointer;
  transition: all .3s;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-slide span:last-child {
  margin-bottom: 0;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-slide span.cur,
.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-slide span:hover {
  color: #00447d;
}

.product .cont-wrap .rg-box {
  width: 82%;
  font-size: .8rem;
  color: #333;
}

.product .cont-wrap .rg-box .li-box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.product .cont-wrap .rg-box .li-box .li {
  width: 24%;
  margin-right: 1.33%;
  margin-bottom: .55rem;
  position: relative;
}

.product .cont-wrap .rg-box .li-box .li:nth-child(4n) {
  margin-right: 0;
}

.product .cont-wrap .rg-box .li-box .li .pic {
  width: 100%;
  height: 7.5rem;
  background-color: #fff;
  overflow: hidden;
}

.product .cont-wrap .rg-box .li-box .li .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(.8);
  transition: all .3s;
}

.product .cont-wrap .rg-box .li-box .li .intro {
  width: 100%;
  height: 2.8rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.product .cont-wrap .rg-box .li-box .li .intro p {
  line-height: 1;
}

.product .cont-wrap .rg-box .li-box .li .intro .h1 {
  color: #010101;
  margin-bottom: 6px;
  width: 100%;
  padding: 0 .5rem;
  line-height: 1.2;
  max-height: 2.4em;
  overflow: hidden;
  text-align: center;
  word-break: break-all;
}

.product .cont-wrap .rg-box .li-box .li .intro .h2 {
  color: #707070;
  text-align: center;
  padding: 0 .4rem;
  line-height: 1.2;
  max-height: 2.4em;
  overflow: hidden;
  word-break: break-all;
}

.product .cont-wrap .rg-box .li-box .li .pos-more {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .3s;
}

.product .cont-wrap .rg-box .li-box .li .pos-more div {
  width: 3.4rem;
  height: 1.1rem;
  line-height: 1.1rem;
  text-align: center;
  border: 2px solid #F2F2F2;
  border-radius: .55rem;
  color: #fff;
}

.product .cont-wrap .rg-box .li-box .li:hover .pos-more {
  opacity: 1;
}

.product .cont-wrap .rg-box .li-box.dataBox .intro {
  height: 3rem;
  background-color: #F6F6F6;
  display: block;
  padding: .45rem .5rem;
}

.product .cont-wrap .rg-box .li-box.dataBox .intro .h1 {
  padding-bottom: .25rem;
  border-bottom: 1px solid #BCBCBC;
  margin-bottom: .3rem;
}

.product .cont-wrap .rg-box .li-box.dataBox .intro .h2 {
  position: relative;
  padding-left: .4rem;
  color: #666;
  font-size: 12px;
  text-align: left;
}

.product .cont-wrap .rg-box .li-box.dataBox .intro .h2::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #00447d;
}

.product .cont-wrap .rg-box .li-box.dataBox .pos-more {
  display: none;
}

.product .cont-wrap .rg-box .li-box.dataBox .li:hover .pic img {
  transform: scale(1.1);
}

.pub-page {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pub-page div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pub-page a {
  min-width: 1.05rem;
  height: 1.05rem;
  line-height: 1.05rem;
  text-align: center;
  border: 1px solid #AFAFAF;
  color: #656565;
  margin-right: 4px;
  transition: all .3s;
}

.pub-page a:last-child {
  margin-right: 0;
}

.pub-page a.active,
.pub-page a:hover {
  background-color: #00447d;
  border-color: #00447d;
  color: #fff;
}

.pro-info {
  padding: 2.25rem 0 1.75rem;
}

.pro-info .wrap .pro-show {
  display: flex;
  align-items: center;
  margin-bottom: 1.3rem;
}

.pro-info .wrap .pro-show .lf {
  width: 50%;
  border: 1px solid rgba(0, 0, 0, .1);
}

.pro-info .wrap .pro-show .lf img {
  width: 100%;
}

.pro-info .wrap .pro-show .rg {
  width: 50%;
  padding-left: 1.3rem;
  padding-top: 0;
}

.pro-info .wrap .pro-show .rg .h1 {
  color: #00447d;
  line-height: 1.2;
  font-size: .7rem;
  margin-bottom: .3rem;
}

.pro-info .wrap .pro-show .rg .h2 {
  color: #000000;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: .2rem;
}

.pro-info .wrap .pro-show .rg .h3 {
  color: #707070;
  line-height: 2;
  /* margin-bottom: 1.05rem; */
}

.pro-info .wrap .pro-show .rg .info-container {
  width: 14.5rem;
  margin: 0;
}

.pro-info .wrap .pro-show .rg .info-container .swiper-slide {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: .5rem;
  cursor: pointer;
}

.pro-info .wrap .pro-show .rg .info-container .swiper-slide:last-child {
  margin-right: 0;
}

.pro-info .wrap .pro-show .rg .info-container .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pro-info .wrap .pro-show .rg .info-container .swiper-slide.cur {
  border: 1px solid #00447d;
}

.pro-info .wrap .info-vid {
  width: 100%;
  position: relative;
  margin-bottom: 1.75rem;
}

.pro-info .wrap .info-vid .pc-img {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  z-index: 2;
}

.pro-info .wrap .info-vid img,
.pro-info .wrap .info-vid video {
  width: 100%;
}

.pro-info .wrap .info-vid .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  cursor: pointer;
  z-index: 3;
}

.pro-info .wrap .info-vid .play div {
  width: .9rem;
  margin: 0 auto .45rem;
}

.pro-info .wrap .info-vid .play p {
  line-height: 1;
  text-align: center;
  color: #fff;
}

.pro-info .wrap .info-core {
  width: 89%;
  margin: 0 auto .3rem;
}

.pro-info .wrap .info-core .tit {
  color: #00447d;
  line-height: 1;
  font-size: .8rem;
  text-align: center;
  margin-bottom: 2.35rem;
}

.pro-info .wrap .info-core .li-box {
  display: flex;
  flex-wrap: wrap;
}

.pro-info .wrap .info-core .li-box .li {
  width: 33.33%;
  height: 3.5rem;
  border-right: 2px solid rgba(8, 90, 182, 0.1);
  margin-bottom: 2.25rem;
  text-align: center;
  padding: .45rem 1rem 0;
}

.pro-info .wrap .info-core .li-box .li:nth-child(3n) {
  border-right: none;
}

.pro-info .wrap .info-core .li-box .li .h1 {
  line-height: 1;
  color: #00447d;
  margin-bottom: .3rem;
}

.pro-info .wrap .info-core .li-box .li .h1 span {
  display: inline-block;
  line-height: 1;
}

.pro-info .wrap .info-core .li-box .li .h1 .fonb {
  font-size: 1.2rem;
  font-weight: bold;
}

.pro-info .wrap .info-core .li-box .li .h1 .fonl {
  font-size: .6rem;
}

.pro-info .wrap .info-core .li-box .li .h2 {
  color: #707070;
  line-height: 1.6;
}

.pro-info .wrap .tech-para {
  border-top: 1px solid #E2E2E2;
  padding: 2.5rem 0 2rem;
}

.pro-info .wrap .tech-para .tit {
  color: #000000;
  font-size: .8rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 1.05rem;
}

.pro-info .wrap .tech-para .box {
  display: flex;
  flex-wrap: wrap;
}

.pro-info .wrap .tech-para .box .li-wrap {
  width: 48.5%;
  margin-right: 3%;
  margin-bottom: .5rem;
}

.pro-info .wrap .tech-para .box .li-wrap:nth-child(2) {
  margin-right: 0;
}

.pro-info .wrap .tech-para .box .li-wrap .intro {
  width: 100%;
  height: 1.15rem;
  line-height: 1.15rem;
  background-color: #E8E8E8;
  padding-left: 1.5rem;
  color: #000000;
}

.pro-info .wrap .tech-para .box .li-wrap .list p {
  width: 100%;
  padding-left: 1.5rem;
  color: #666;
  display: flex;
  align-items: stretch;
  background-color: #fff;
}

.pro-info .wrap .tech-para .box .li-wrap .list p span {
  display: inline-flex;
  align-items: center;
  min-height: 1.15rem;
  line-height: 1.2;
  width: 50%;
  /* height: 100%; */
  padding: 5px 0;
}

.pro-info .wrap .tech-para .box .li-wrap .list p:nth-child(2n) {
  background-color: #F7F7F7;
}

.pro-info .wrap .about-down {
  border-top: 1px solid #E2E2E2;
  padding: 2.5rem 0 1.75rem;
}

.pro-info .wrap .about-down .tit {
  color: #000000;
  font-size: .8rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.pro-info .wrap .about-down .li-box {
  display: flex;
  flex-wrap: wrap;
}

.pro-info .wrap .about-down .li-box .li {
  width: 49%;
  height: 1.75rem;
  margin-right: 2%;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 .75rem 0 .95rem;
  background-color: #F0F0F0;
  transition: all .3s;
}

.pro-info .wrap .about-down .li-box .li:nth-child(2n) {
  margin-right: 0;
}

.pro-info .wrap .about-down .li-box .li .cont {
  width: 80%;
  color: #000000;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all .3s;
}

.pro-info .wrap .about-down .li-box .li .icon {
  display: flex;
  align-items: center;
}

.pro-info .wrap .about-down .li-box .li .icon p {
  color: #000000;
  line-height: 1;
  margin-right: .2rem;
  transition: all .3s;
}

.pro-info .wrap .about-down .li-box .li .icon div {
  position: relative;
  width: 16px;
}

.pro-info .wrap .about-down .li-box .li .icon div img {
  width: 100%;
}

.pro-info .wrap .about-down .li-box .li:hover {
  background-color: #00447d;
}

.pro-info .wrap .about-down .li-box .li:hover .cont {
  color: #fff;
}

.pro-info .wrap .about-down .li-box .li:hover .icon p {
  color: #fff;
}

.pro-info .wrap .about-down .li-box .li:hover .icon .normal-block {
  opacity: 0;
}

.pro-info .wrap .about-down .li-box .li:hover .icon .hover-block {
  opacity: 1;
}

.plan {
  padding: 2.5rem 0 1.85rem;
}

.plan .tit {
  color: #000000;
  margin-bottom: 1.75rem;
  text-align: center;
}

.plan .wrap .li {
  overflow: hidden;
  margin-bottom: 1.8rem;
}

.plan .wrap .li:last-child {
  margin-bottom: 0;
}

.plan .wrap .li .lf {
  width: 40%;
  float: left;
  padding-top: 3rem;
  padding-right: 3rem;
}

.plan .wrap .li .lf .h1 {
  color: #000000;
  font-size: .8rem;
  line-height: 1;
  margin-bottom: 1.05rem;
}

.plan .wrap .li .lf .cont {
  color: #000000;
  line-height: 2;
  margin-bottom: .75rem;
}

.plan .wrap .li .lf .intro a {
 display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
  padding-left: .5rem;
  position: relative;
  line-height: 1;
 color: #000;
  margin-bottom: .5rem;
  transition: all .3s;
}

.plan .wrap .li .lf .intro a .icon{
 width:.51rem;
 height:.51rem;
 fill:#000;
margin-left:.25rem;
}

.plan .wrap .li .lf .intro a:last-child {
  margin-bottom: .5rem;
}

.plan .wrap .li .lf .intro a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #000;
  transition: all .3s;
}

.plan .wrap .li .lf .intro a:hover {
  color: #00447d;
  text-decoration: underline;
}

.plan .wrap .li .lf .intro a:hover::after {
  background-color: #00447d;
}

.plan .wrap .li .rg {
  width: 60%;
  float: right;
}

.plan .wrap .li .rg img {
  width: 100%;
}

.plan .wrap .li:nth-child(2n) .lf {
  float: right;
  padding-left: 2.25rem;
  padding-right: 0;
}

.plan-info {
  padding: 2.5rem 0 2.3rem;
}

.plan-info .overview {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.plan-info .overview .lf {
  width: 100%;
  margin-bottom: 1.5rem;
}

.plan-info .overview .lf .h1 {
  color: #000000;
  font-size: .8rem;
  line-height: 1;
  margin-bottom: .55rem;
  text-align: center;
}

.plan-info .overview .lf .cont {
  width: 70%;
  color: #707070;
  line-height: 2;
  margin: 0 auto 1.25rem;
}

.plan-info .overview .lf .play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 1.1rem;
  background-color: #00447d;
  box-shadow: 18px 18px 51px 0px rgba(46, 115, 184, 0.05);
  border-radius: .55rem;
  cursor: pointer;
  margin: 0 auto;
}

.plan-info .overview .lf .play span {
  color: #fff;
  margin-right: .25rem;
  transition: all .3s;
}

.plan-info .overview .lf .play div {
  position: relative;
  z-index: 2;
  width: .35rem;
  font-size: .4rem;
  color: #fff;
  transition: all .3s;
}

.plan-info .overview .lf .play div img {
  width: 100%;
}

.plan-info .overview .lf .play:hover {
  border: 1px solid #00447d;
}

.plan-info .overview .lf .play:hover span {
  color: #00447d;
}

.plan-info .overview .lf .play:hover div {
  color: #00447d;
}

.plan-info .overview .rg {
  width: 75%;
}

.plan-info .overview .rg img {
  width: 100%;
}

.plan-info .overview .rg .swiper-pagination {
  position: relative;
  line-height: 1;
  margin-top: 1.25rem;
}

.plan-info .overview .rg .swiper-pagination .swiper-pagination-bullet-active {
  background: #00447d;
}

.plan-info .advance {
  background-color: #F8F8F8;
  padding: 2.25rem 0 4.6rem;
}

.plan-info .advance .tit {
  font-size: .8rem;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1;
}

.plan-info .advance .li-box {
  /* display: flex;
align-items: stretch;
justify-content: center; */
}

.plan-info .advance .li-box .swiper-pagination {
  position: relative;
  line-height: 1;
  margin-top: 1.25rem;
}

.plan-info .advance .li-box .swiper-pagination .swiper-pagination-bullet-active {
  background: #00447d;
}

.plan-info .advance .li-box .swiper-wrapper {
  align-items: stretch;
}

.plan-info .advance .li-box .li {
  width: 25%;
  height: auto;
  padding-left: .7rem;
  padding-right: 1.5rem;
  border-left: 1px solid #DBDBDB;
  padding-bottom: 6px;
  position: relative;
}

.plan-info .advance .li-box .li::after {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  width: 1px;
  height: .6rem;
  background-color: #00447d;
}

.plan-info .advance .li-box .li .num {
  display: flex;
  align-items: center;
  margin-bottom: .4rem;
}

.plan-info .advance .li-box .li .num span {
  line-height: 1;
  color: #282828;
  font-size: .7rem;
  font-weight: 500;
  margin-right: .2rem;
}

.plan-info .advance .li-box .li .num p {
  color: #282828;
  font-size: .6rem;
  line-height: 1;
}

.plan-info .advance .li-box .li .cont {
  color: #797979;
  line-height: 1.6;
}

.plan-info .app-area {
  padding: 2.5rem 0;
}

.plan-info .app-area .tit {
  color: #000000;
  font-size: .8rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 1.75rem;
}

.plan-info .app-area .appArea-container .swiper-button-prev,
.plan-info .app-area .appArea-container .swiper-button-next {
  width: 1.1rem;
  height: 1.1rem;
  background-color: #fff;
  border-radius: 50%;
  color: #00447d;
  transition: all .3s;
}

.plan-info .app-area .appArea-container .swiper-button-prev::after,
.plan-info .app-area .appArea-container .swiper-button-next::after {
  font-size: .4rem;
}

.plan-info .app-area .appArea-container .swiper-button-prev:hover,
.plan-info .app-area .appArea-container .swiper-button-next:hover {
  background-color: #00447d;
  color: #fff;
}

.plan-info .app-area .appArea-container .swiper-button-prev {
  left: 0;
}

.plan-info .app-area .appArea-container .swiper-button-next {
  right: 0;
}

.plan-info .app-area .appArea-container .swiper-pagination {
  position: relative;
  line-height: 1;
  margin-top: 1rem;
  display: none;
}

.plan-info .app-area .appArea-container .swiper-slide {
  width: 32%;
  background-color: #F8F8F8;
  margin-right: 2%;
}

.plan-info .app-area .appArea-container .swiper-slide:last-child {
  margin-right: 0;
}

.plan-info .app-area .appArea-container .swiper-slide .pic {
  width: 100%;
  height: 7.5rem;
  overflow: hidden;
}

.plan-info .app-area .appArea-container .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}

.plan-info .app-area .appArea-container .swiper-slide .intro {
  width: 100%;
  padding: 1rem 1rem;
}

.plan-info .app-area .appArea-container .swiper-slide .intro .h1 {
  color: #000000;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plan-info .app-area .appArea-container .swiper-slide:hover .pic img {
  transform: scale(1.1);
}

.plan-info .hot-pro {
  padding: 2.5rem 0 1rem;
}

.plan-info .hot-pro .tit {
  color: #000000;
  font-size: .8rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 1.75rem;
}

.plan-info .hot-pro .hotPro-container .swiper-button-prev,
.plan-info .hot-pro .hotPro-container .swiper-button-next {
  width: 1.1rem;
  height: 1.1rem;
  background-color: #fff;
  border-radius: 50%;
  color: #00447d;
  transition: all .3s;
}

.plan-info .hot-pro .hotPro-container .swiper-button-prev::after,
.plan-info .hot-pro .hotPro-container .swiper-button-next::after {
  font-size: .4rem;
}

.plan-info .hot-pro .hotPro-container .swiper-button-prev:hover,
.plan-info .hot-pro .hotPro-container .swiper-button-next:hover {
  background-color: #00447d;
  color: #fff;
}

.plan-info .hot-pro .hotPro-container .swiper-button-prev {
  left: 0;
}

.plan-info .hot-pro .hotPro-container .swiper-button-next {
  right: 0;
}

.plan-info .hot-pro .hotPro-container .swiper-slide {
  width: 32%;
  background-color: #F8F8F8;
  margin-right: 2%;
}

.plan-info .hot-pro .hotPro-container .swiper-slide:last-child {
  margin-right: 0;
}

.plan-info .hot-pro .hotPro-container .swiper-slide .pic {
  width: 100%;
  height: 7.5rem;
  overflow: hidden;
}

.plan-info .hot-pro .hotPro-container .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}

.plan-info .hot-pro .hotPro-container .swiper-slide .intro {
  width: 100%;
  height: 3.9rem;
  padding: 1.1rem 1rem 0;
}

.plan-info .hot-pro .hotPro-container .swiper-slide .intro .h1 {
  color: #000000;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: .95rem;
}

.plan-info .hot-pro .hotPro-container .swiper-slide .intro .h2 {
  display: flex;
  align-items: center;
  color: #000000;
  line-height: 1;
  transition: all .3s;
}

.plan-info .hot-pro .hotPro-container .swiper-slide .intro .h2 i {
  margin-left: 4px;
}

.plan-info .hot-pro .hotPro-container .swiper-slide:hover .pic img {
  transform: scale(1.1);
}

.plan-info .hot-pro .hotPro-container .swiper-slide:hover .intro .h2 {
  color: #00447d;
}

.plan-info .about-case {
  padding-top: 1.5rem;
}

.plan-info .about-case .tit {
  color: #000000;
  line-height: 1;
  text-align: center;
  font-size: .8rem;
  margin-bottom: 1.5rem;
}

.plan-info .about-case .li-box {
  display: flex;
}

.plan-info .about-case .li-box .li {
  width: 32%;
  margin-right: 2%;
  background-color: #F8F8F8;
  display: block;
}

.plan-info .about-case .li-box .li :last-child {
  margin-right: 0;
}

.plan-info .about-case .li-box .li .pic {
  width: 100%;
  height: 7rem;
  overflow: hidden;
}

.plan-info .about-case .li-box .li .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}

.plan-info .about-case .li-box .li .intro {
  padding: 1.5rem 1.7rem 0;
  height: 6.6rem;
}

.plan-info .about-case .li-box .li .intro .h1 {
  color: #000000;
  line-height: 1;
  margin-bottom: .45rem;
}

.plan-info .about-case .li-box .li .intro .h2 {
  color: #000000;
  line-height: .8rem;
  height: 1.6rem;
  overflow: hidden;
  margin-bottom: .55rem;
}

.plan-info .about-case .li-box .li .intro .h3 {
  display: flex;
  align-items: center;
  color: #00447d;
  line-height: 1;
  transition: all .3s;
}

.plan-info .about-case .li-box .li .intro .h3 i {
  margin-left: 4px;
}

.plan-info .about-case .li-box .li:hover .pic img {
  transform: scale(1.1);
}

.cases {
  padding: 2.25rem 0 2.3rem;
}

.cases .wrap .top-screen {
  margin-bottom: 1.65rem;
  background-color: #F7F7F7;
  padding: 1.2rem 1rem;
  box-shadow: 0px -2px 0px 0px #00447d;
}

.cases .wrap .top-screen .li {
  display: flex;
  align-items: center;
  margin-bottom: .9rem;
}

.cases .wrap .top-screen .li:last-child {
  margin-bottom: 0;
}

.cases .wrap .top-screen .li p {
  color: #333333;
  line-height: 1;
  margin-right: .5rem;
}

.cases .wrap .top-screen .li span {
  min-width: 1.45rem;
  height: .9rem;
  line-height: .9rem;
  text-align: center;
  padding: 0 .3rem;
  margin-right: .8rem;
  color: #333333;
  border-radius: 5px;
  cursor: pointer;
  transition: all .3s;
}

.cases .wrap .top-screen .li span:last-child {
  margin-right: 0;
}

.cases .wrap .top-screen .li span:hover,
.cases .wrap .top-screen .li span.cur {
  background-color: #00447d;
  color: #fff;
}

.cases .wrap .change-wrap .change-cont {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: .5rem;
  animation: fadeInup 1.5s forwards linear;
}

.cases .wrap .change-wrap .change-cont .li {
  width: 30%;
  margin-right: 5%;
  background-color: #F8F8F8;
  margin-bottom: 1.05rem;
}

.cases .wrap .change-wrap .change-cont .li:nth-child(3n) {
  margin-right: 0;
}

.cases .wrap .change-wrap .change-cont .li .intro {
  padding: 1.5rem 1.35rem 0;
  height: 6.1rem;
}

.cases .wrap .change-wrap .change-cont .li .intro .h1 {
  font-size: .75rem;
  color: #000000;
  line-height: 1rem;
  height: 2rem;
  overflow: hidden;
  margin-bottom: .4rem;
  transition: all .3s;
}

.cases .wrap .change-wrap .change-cont .li .intro .cont {
  color: #000000;
  line-height: .8rem;
  height: 1.6rem;
  overflow: hidden;
  margin-bottom: .5rem;
}

.cases .wrap .change-wrap .change-cont .li .intro .h2 {
  display: flex;
  align-items: center;
  color: #00447d;
  line-height: 1;
  transition: all .3s;
}

.cases .wrap .change-wrap .change-cont .li .intro .h2 i {
  margin-left: 4px;
}

.cases .wrap .change-wrap .change-cont .li .pic {
  width: 100%;
  height: 7.5rem;
  overflow: hidden;
}

.cases .wrap .change-wrap .change-cont .li .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}

.cases .wrap .change-wrap .change-cont .li:hover .intro .h1 {
  color: #00447d;
}

.cases .wrap .change-wrap .change-cont .li:hover .pic img {
  transform: scale(1.1);
}

.case-info {
  padding: 3rem 0 2.6rem;
}

.case-info .top {
  padding-bottom: 2.6rem;
}

.case-info .top .wrap {
  overflow: hidden;
}

.case-info .top .wrap .lf {
  /* float: left; */
  width: 80%;
  /* padding-top: 3.25rem; */
  /* padding-right: 3.8rem; */
  margin: 0 auto 1rem;
}

.case-info .top .wrap .lf .h1 {
  color: #00447d;
  font-size: .6rem;
  line-height: 1;
  margin-bottom: .5rem;
}

.case-info .top .wrap .lf .h2 {
  color: #000000;
  font-size: .8rem;
  line-height: 1;
  margin-bottom: .8rem;
}

.case-info .top .wrap .lf .cont {
  color: #707070;
  line-height: 2;
}

.case-info .top .wrap .rg {
  /* float: right; */
  width: 100%;
}

.case-info .top .wrap .rg .swiper-pagination-bullet-active {
  background: #00447d;
}

.case-info .top .wrap .rg img {
  width: 100%;
}

.case-info .btm {
  background-color: #F2F2F2;
  padding: 2.5rem 0;
}

.case-info .btm .wrap {
  overflow: hidden;
}

.case-info .btm .wrap .intro {
  width: 48%;
  float: right;
  padding-top: 3.25rem;
  padding-left: 3.65rem;
}

.case-info .btm .wrap .intro .h1 {
  color: #00447d;
  font-size: .6rem;
  line-height: 1;
  margin-bottom: .5rem;
}

.case-info .btm .wrap .intro .h2 {
  color: #000000;
  font-size: .8rem;
  line-height: 1;
  margin-bottom: .8rem;
}

.case-info .btm .wrap .intro .cont {
  color: #707070;
  line-height: 2;
}

.case-info .btm .wrap .pic {
  width: 52%;
  float: left;
}

.case-info .btm .wrap .pic img {
  width: 100%;
}

.case-info .hot-pro {
  padding: 2.55rem 0 0;
  /* background-color: #F2F2F2; */
}

.case-info .hot-pro .tit {
  color: #000000;
  font-size: .8rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 1.75rem;
}

.case-info .hot-pro .wrap {
  display: flex;
}

.case-info .hot-pro .wrap .li {
  width: 30%;
  margin-right: 5%;
  background-color: #F8F8F8;
}

.case-info .hot-pro .wrap .li:last-child {
  margin-right: 0;
}

.case-info .hot-pro .wrap .li .pic {
  width: 100%;
  height: 7.5rem;
  overflow: hidden;
}

.case-info .hot-pro .wrap .li .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}

.case-info .hot-pro .wrap .li .intro {
  width: 100%;
  height: 3.85rem;
  padding: 1.1rem 1rem 0;
}

.case-info .hot-pro .wrap .li .intro .h1 {
  color: #000000;
  line-height: 1;
  margin-bottom: .9rem;
}

.case-info .hot-pro .wrap .li .intro .h2 {
  display: flex;
  align-items: center;
  color: #000;
  line-height: 1;
  transition: all .3s;
}

.case-info .hot-pro .wrap .li .intro .h2 i {
  margin-left: 4px;
}

.case-info .hot-pro .wrap .li:hover .pic img {
  transform: scale(1.1);
}

.case-info .hot-pro .wrap .li:hover .intro .h2 {
  color: #00447d;
}

.service {
  padding: 1.9rem 0 2.7rem;
}

.service .wrap .h1 {
  color: #000000;
  line-height: 1.3;
  text-align: center;
  margin-bottom: .55rem;
  font-size: 1.2rem;
}

.service .wrap .h2 {
  color: #00447d;
  line-height: 1;
  text-align: center;
  margin-bottom: 1.85rem;
}

.service .wrap .li-box {
  display: flex;
}

.service .wrap .li-box .li {
  width: 28%;
  height: 10rem;
  margin-right: 8%;
  border: 1px solid #D6D6D6;
  padding-top: 1.4rem;
  position: relative;
}

.service .wrap .li-box .li:last-child {
  margin-right: 0;
}

.service .wrap .li-box .li::after {
  content: '';
  position: absolute;
  width: 0;
  height: 7px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #00447d;
  transition: all .3s;
}

.service .wrap .li-box .li .icon {
  width: 2.7rem;
  height: 2.7rem;
  margin: 0 auto .8rem;
}

.service .wrap .li-box .li .icon img {
  max-width: 100%;
  margin: 0 auto;
}

.service .wrap .li-box .li .line {
  width: .6rem;
  height: 2px;
  background-color: #00447d;
  margin: 0 auto 1rem;
}

.service .wrap .li-box .li .h1 {
  color: #000000;
  line-height: 1;
  font-size: .7rem;
  text-align: center;
  margin-bottom: .4rem;
  transition: all .3s;
}

.service .wrap .li-box .li .cont {
  color: #000000;
  line-height: 1.7;
  text-align: center;
}

.service .wrap .li-box .li:hover::after {
  width: 100%;
}

.service .wrap .li-box .li:hover .h1 {
  color: #00447d;
}

.domestic {
padding:1rem 0;
  position: relative;
background: #f4f4f4;
}

.domestic img {
  width: 100%;
}

.domestic .intro {
  width: 33%;
  position: absolute;
  right: 2.5rem;
  top: 28.4%;
}

.domestic .intro .tit {
  margin-bottom: .8rem;
}

.domestic .intro .cont {
  color: #000000;
  line-height: 2;
}

.domestic .point {
  position: absolute;
  top: 76.1%;
  left: 33%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #06438D;
 display:none;
}

.domestic .point::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: .5;
  background-color: #06438D;
  transform-origin: center center;
  animation: scaleBox 5s 2.5s linear infinite;
}

.domestic .point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: .5;
  background-color: #06438D;
  transform-origin: center center;
  animation: scaleBox 5s linear infinite;
}

.overseas {
  padding:1.5rem 0 1rem;
  border-bottom: 1px solid #D5D5D5;
}

.overseas .wrap {
  display: flex;
//width: 75%;
  //  max-width: 1450px;
    //margin: 0 auto;
}

.overseas .wrap .lf {
  width: 34%;
}

.overseas .wrap .lf .tit {
  margin-bottom: 1.2rem;
}

.overseas .wrap .lf .cont {
  color: #333333;
  line-height: 1.8;
}

.overseas .wrap .rg {
  width: 58%;
  position: relative;
}

.overseas .wrap .rg img {
  width: 100%;
}

.overseas .wrap .rg .point {
  position: absolute;
  top: 43%;
  left: 41%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #06438D;
}

.overseas .wrap .rg .point::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: .5;
  background-color: #06438D;
  transform-origin: center center;
  animation: scaleBox 5s linear infinite;
}

.overseas .wrap .rg .point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: .5;
  background-color: #06438D;
  transform-origin: center center;
  animation: scaleBox 5s 2.5s linear infinite;
}

.overseas .wrap .rg .line {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.overseas .wrap .rg .line img {
  width: 100%;
}

.overseas .wrap .rg .line1 {
  /* width: 6.7rem;
  right: 70%;
  bottom: 50%; */
  animation: pathRight 10s ease-in-out infinite;
}

.overseas .wrap .rg .line2 {
  /* width: 7.1rem;
  bottom: -1.2rem;
  right: 110%; */
  animation: pathRight 10s ease-in-out infinite;
}

.overseas .wrap .rg .line3 {
  /* width: 2.25rem;
  top: -.1rem;
  left: 15%; */
  animation: pathLeft 10s ease-in-out infinite;
}

.overseas .wrap .rg .line4 {
  /* width: 11.8rem;
left: 20%;
top: -1.1rem; */
  animation: pathLeft 10s ease-in-out infinite;
}
@media (max-width: 769px){

	.overseas .wrap{
		width:100%;
		padding:0 5%;
	}
}
.warranty {
  padding: 1.75rem 0 2rem;
}

.warranty .tit {
  color: #666666;
  font-size: .8rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 2.25rem;
}

.warranty .wrap .top-box {
  margin-bottom: .75rem;
}

.warranty .wrap .top-box .li {
  border-bottom: 1px solid #D5D5D5;
  padding-bottom: .8rem;
  margin-bottom: .75rem;
}

.warranty .wrap .top-box .li:last-child {
  margin-bottom: 0;
}

.warranty .wrap .top-box .li .top-clk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.warranty .wrap .top-box .li .top-clk p {
  color: #000000;
  line-height: 1;
}

.warranty .wrap .top-box .li .top-clk div {
  position: relative;
  width: .65rem;
display:none;
}

.warranty .wrap .top-box .li .top-clk div img {
  width: 100%;
}

.warranty .wrap .top-box .li .btm-cont {
  padding: .5rem 1rem;
  color: #999;
  line-height: 1.5;
  display: block;
}

.warranty .wrap .top-box .li.cur .top-clk div .normal-block {
  opacity: 0;
}

.warranty .wrap .top-box .li.cur .top-clk div .hover-block {
  opacity: 1;
}

.warranty .wrap .btm-box {
  display: flex;
}

.warranty .wrap .btm-box .list {
  width: 50%;
  padding-right: 4rem;
}

.warranty .wrap .btm-box .list>p {
  color: #666666;
  line-height: 1;
  margin-bottom: 6px;
}

.warranty .wrap .btm-box .list div {
  color: #666666;
  line-height: 2;
}

.investor {
  padding: 2.5rem 0 2.4rem;
}

.investor .wrap .top-wrap {
  display: flex;
  align-items: center;
  background-color: #F8F8F8;
  margin-bottom: 3rem;
}

.investor .wrap .top-wrap .lf {
  width: 58%;
}

.investor .wrap .top-wrap .lf img {
  width: 100%;
}

.investor .wrap .top-wrap .rg {
  width: 42%;
}

.investor .wrap .top-wrap .rg p {
  color: #000000;
  line-height: 1;
  font-size: .8rem;
  text-align: center;
  margin-bottom: 1rem;
}

.investor .wrap .top-wrap .rg a {
  display: block;
  width: 4.25rem;
  height: 1.25rem;
  line-height: 1.25rem;
  background-color: #00447d;
  text-align: center;
  border-radius: .6rem;
  color: #fff;
  margin: 0 auto;
}

.investor .wrap .top-wrap .rg a:hover {
  border: 1px solid #00447d;
}

.investor .wrap .btm-wrap .tab {
  display: flex;
  padding-bottom: .9rem;
  border-bottom: 3px solid #EFEFEF;
  margin-bottom: 1rem;
}

.investor .wrap .btm-wrap .tab span {
  width: max-content;
  line-height: 1;
  margin-right: 1rem;
  cursor: pointer;
  transition: all .3s;
}

.investor .wrap .btm-wrap .tab span:last-child {
  margin-right: 0;
}

.investor .wrap .btm-wrap .tab span:hover,
.investor .wrap .btm-wrap .tab span.cur {
  color: #00447d;
}

.investor .wrap .btm-wrap .li-box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.investor .wrap .btm-wrap .li-box .li {
  width: 49%;
  height: 1.75rem;
  margin-right: 2%;
  background-color: #F0F0F0;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 .75rem;
  transition: all .3s;
}

.investor .wrap .btm-wrap .li-box .li:nth-child(2n) {
  margin-right: 0;
}

.investor .wrap .btm-wrap .li-box .li .tit {
  color: #000000;
  width: 80%;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all .3s;
}

.investor .wrap .btm-wrap .li-box .li .cont {
  display: flex;
  align-items: center;
}

.investor .wrap .btm-wrap .li-box .li .cont span {
  color: #000000;
  line-height: 1;
  margin-right: .2rem;
  transition: all .3s;
}

.investor .wrap .btm-wrap .li-box .li .cont div {
  width: 16px;
  position: relative;
}

.investor .wrap .btm-wrap .li-box .li .cont div img {
  width: 100%;
}

.investor .wrap .btm-wrap .li-box .li:hover {
  background-color: #00447d;
}

.investor .wrap .btm-wrap .li-box .li:hover .tit {
  color: #fff;
}

.investor .wrap .btm-wrap .li-box .li:hover .cont span {
  color: #fff;
}

.investor .wrap .btm-wrap .li-box .li:hover .cont .normal-block {
  opacity: 0;
}

.investor .wrap .btm-wrap .li-box .li:hover .cont .hover-block {
  opacity: 1;
}

.contact {
  padding: 2.5rem 0 2.5rem;
}

.contact .tit {
  color: #000000;
  text-align: center;
  margin-bottom: 2rem;
}

.contact .wrap .top {
  border: 1px solid #D5D5D5;
  width: 100%;
  padding: 1.8rem 1rem;
  margin-bottom: 1.45rem;
}

.contact .wrap .top .h1 {
  color: #00447d;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact .wrap .top .box {
  display: flex;
  justify-content: center;
}

.contact .wrap .top .box .list-box {
  width: max-content;
  max-width: 48%;
  margin-right: 4%;
}

.contact .wrap .top .box .list-box .li {
  display: flex;
  align-items: flex-start;
  margin-bottom: .3rem;
}

.contact .wrap .top .box .list-box .li:last-child {
  margin-bottom: 0;
}

.contact .wrap .top .box .list-box .li div {
  width: 20px;
  margin-right: 20px;
  margin-top: 4px;
}

.contact .wrap .top .box .list-box .li div img {
  max-width: 100%;
  margin: 0 auto;
}

.contact .wrap .top .box .list-box .li p {
  color: #666666;
  line-height: 1.6;
  width: calc(100% - 40px);
}

.contact .wrap .top .box .list-box .li p span {
  color: #000000;
}

.contact .wrap .top .box .cont-box {
  width: max-content;
  max-width: 50%;
}

.contact .wrap .top .box .cont-box .intro {
  display: flex;
  align-items: center;
  margin-bottom: .5rem;
}

.contact .wrap .top .box .cont-box .intro div {
  width: 20px;
  margin-right: 20px;
}

.contact .wrap .top .box .cont-box .intro p {
  width: calc(100% - 40px);
  color: #000000;
  line-height: 1;
}

.contact .wrap .top .box .cont-box .cont-list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 40px;
}

.contact .wrap .top .box .cont-box .cont-list p {
  width: 50%;
  line-height: 1;
  margin-bottom: .3rem;
}

.contact .wrap .li-wrap {
  display: flex;
  align-items: stretch;
}

.contact .wrap .li-wrap .li {
  width: 48%;
  margin-right: 4%;
  border: 1px solid #D5D5D5;
  padding: 1.25rem;
  transition: all .3s;
}

.contact .wrap .li-wrap .li:last-child {
  margin-right: 0;
}

.contact .wrap .li-wrap .li .h1 {
  color: #000000;
  line-height: 1;
  margin-bottom: .9rem;
  transition: all .3s;
}

.contact .wrap .li-wrap .li .line {
  width: 100%;
  height: 1px;
  background-color: #D3D3D3;
  margin-bottom: 1.2rem;
  transition: all .3s;
}

.contact .wrap .li-wrap .li .list {
  display: flex;
  align-items: center;
  margin-bottom: .45rem;
}

.contact .wrap .li-wrap .li .list:last-child {
  margin-bottom: 0;
}

.contact .wrap .li-wrap .li .list div {
  width: 20px;
  margin-right: 12px;
  position: relative;
}

.contact .wrap .li-wrap .li .list div img {
  max-width: 100%;
  margin: 0 auto;
}

.contact .wrap .li-wrap .li .list p {
  color: #666666;
  line-height: 1;
  transition: all .3s;
}

.contact .wrap .li-wrap .li .list p span {
  color: #000000;
  transition: all .3s;
}

.contact .wrap .li-wrap .li:hover {
  background-color: #00447d;
  border-color: #00447d;
}

.contact .wrap .li-wrap .li:hover p {
  color: #fff;
}

.contact .wrap .li-wrap .li:hover p span {
  color: #fff;
}

.contact .wrap .li-wrap .li:hover .line {
  background-color: rgba(255, 255, 255, .5);
}

.contact .wrap .li-wrap .li:hover .normal-block {
  opacity: 0;
}

.contact .wrap .li-wrap .li:hover .hover-block {
  opacity: 1;
}

.way {
  padding-bottom: 2.85rem;
}

.way .tit {
  text-align: center;
  margin-bottom: 2.5rem;
}

.way .wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: .25rem;
}

.way .wrap .li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: .75rem;
  border: 1px solid #D5D5D5;
  padding: 1.25rem;
  transition: all .3s;
}

.way .wrap .li:nth-child(2n) {
  margin-right: 0;
}

.way .wrap .li:last-child {
  margin-right: 0;
}

.way .wrap .li .h1 {
  color: #000000;
  line-height: 1;
  margin-bottom: .9rem;
  transition: all .3s;
}

.way .wrap .li .line {
  width: 100%;
  height: 1px;
  background-color: #D3D3D3;
  margin-bottom: 1.2rem;
  transition: all .3s;
}

.way .wrap .li .list {
  display: flex;
  align-items: center;
  margin-bottom: .45rem;
}

.way .wrap .li .list:last-child {
  margin-bottom: 0;
}

.way .wrap .li .list div {
  width: 20px;
  margin-right: 12px;
  position: relative;
}

.way .wrap .li .list div img {
  max-width: 100%;
  margin: 0 auto;
}

.way .wrap .li .list p {
  color: #666666;
  line-height: 1;
  transition: all .3s;
}

.way .wrap .li .list p span {
  color: #000000;
  transition: all .3s;
}

.way .wrap .li:hover {
  background-color: #00447d;
  border-color: #00447d;
}

.way .wrap .li:hover p {
  color: #fff;
}

.way .wrap .li:hover p span {
  color: #fff;
}

.way .wrap .li:hover .line {
  background-color: rgba(255, 255, 255, .5);
}

.way .wrap .li:hover .normal-block {
  opacity: 0;
}

.way .wrap .li:hover .hover-block {
  opacity: 1;
}

.way .intro {
  color: #939393;
  line-height: 1;
  text-align: center;
}

.sales {
  padding-bottom: 2.05rem;
}

.sales .tit {
  text-align: center;
  margin-bottom: 2.15rem;
}

.sales .sub {
  font-size: .8rem;
  color: #666666;
  line-height: 1;
  text-align: center;
  margin-bottom: 1.1rem;
}

.sales .wrap {
  display: flex;
  flex-wrap: wrap;
}

.sales .wrap .li {
  width: 18.5%;
  height: 6rem;
  margin-right: 1.875%;
  margin-bottom: .95rem;
  padding: 1.25rem 1rem 0;
  border: 1px solid #D5D5D5;
  transition: all .3s;
}

.sales .wrap .li:nth-child(5n) {
  margin-right: 0;
}

.sales .wrap .li .h1 {
  color: #000000;
  line-height: 1;
  text-align: center;
  margin-bottom: .9rem;
  transition: all .3s;
}

.sales .wrap .li .line {
  width: 100%;
  height: 1px;
  background-color: #D3D3D3;
  margin-bottom: .8rem;
  transition: all .3s;
}

.sales .wrap .li .phone {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sales .wrap .li .phone div {
  width: .4rem;
  position: relative;
  margin-right: .4rem;
}

.sales .wrap .li .phone div img {
  width: 100%;
}

.sales .wrap .li .phone p {
  color: #000000;
  line-height: 1;
  transition: all .3s;
}

.sales .wrap .li:hover {
  background-color: #00447d;
  border-color: #00447d;
}

.sales .wrap .li:hover .h1 {
  color: #fff;
}

.sales .wrap .li:hover .line {
  background-color: rgba(255, 255, 255, .5);
}

.sales .wrap .li:hover .phone .normal-block {
  opacity: 0;
}

.sales .wrap .li:hover .phone .hover-block {
  opacity: 1;
}

.sales .wrap .li:hover .phone p {
  color: #fff;
}

.sales .wrap.other {
  justify-content: center;
  margin-bottom: 1rem;
}

.sales .wrap.other .li {
  width: 32%;
  margin-right: 0;
}

.sales .sub2 {
  color: #666666;
  font-size: .8rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.sales .wrap2 {
  display: flex;
  flex-wrap: wrap;
}

.sales .wrap2 .li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: .75rem;
  border: 1px solid #D5D5D5;
  padding: 1.25rem;
  transition: all .3s;
}

.sales .wrap2 .li:nth-child(2n) {
  margin-right: 0;
}

.sales .wrap2 .li:last-child {
  margin-right: 0;
}

.sales .wrap2 .li .h1 {
  color: #000000;
  line-height: 1;
  margin-bottom: .9rem;
  transition: all .3s;
}

.sales .wrap2 .li .line {
  width: 100%;
  height: 1px;
  background-color: #D3D3D3;
  margin-bottom: 1.2rem;
  transition: all .3s;
}

.sales .wrap2 .li .list {
  display: flex;
  align-items: center;
  margin-bottom: .45rem;
}

.sales .wrap2 .li .list:last-child {
  margin-bottom: 0;
}

.sales .wrap2 .li .list div {
  width: 20px;
  margin-right: 12px;
  position: relative;
}

.sales .wrap2 .li .list div img {
  max-width: 100%;
  margin: 0 auto;
}

.sales .wrap2 .li .list p {
  color: #666666;
  line-height: 1;
  transition: all .3s;
}

.sales .wrap2 .li .list p span {
  color: #000000;
  transition: all .3s;
}

.sales .wrap2 .li:hover {
  background-color: #00447d;
  border-color: #00447d;
}

.sales .wrap2 .li:hover p {
  color: #fff;
}

.sales .wrap2 .li:hover p span {
  color: #fff;
}

.sales .wrap2 .li:hover .line {
  background-color: rgba(255, 255, 255, .5);
}

.sales .wrap2 .li:hover .normal-block {
  opacity: 0;
}

.sales .wrap2 .li:hover .hover-block {
  opacity: 1;
}

.office {
  padding: 2.6rem 0 1.5rem;
}

.office .tit {
  text-align: center;
  margin-bottom: 1.5rem;
}

.office .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.office .wrap .li {
  width: 48%;
  min-height: 7.5rem;
  margin-right: 4%;
  margin-bottom: 1rem;
  display: flex;
  padding: 1.05rem .9rem .5rem 1rem;
  border: 1px solid #D5D5D5;
}

.office .wrap .li:nth-child(2n) {
  margin-right: 0;
}

.office .wrap .li .icon {
  width: 3.25rem;
  margin-right: 1.1rem;
  margin-top: .95rem;
}

.office .wrap .li .icon img {
  width: 100%;
}

.office .wrap .li .intro {
  width: calc(100% - 4.35rem);
}

.office .wrap .li .intro .top {
  display: flex;
  align-items: flex-end;
  padding-bottom: .65rem;
  border-bottom: 1px solid #D3D3D3;
  margin-bottom: .7rem;
}

.office .wrap .li .intro .top p {
  font-size: .8rem;
  color: #000000;
  line-height: 1;
  margin-right: 1rem;
  transition: all .3s;
}

.office .wrap .li .intro .top span {
  color: #000000;
  line-height: 1;
  transition: all .3s;
}

.office .wrap .li .intro .list {
  display: flex;
  margin-bottom: .1rem;
}

.office .wrap .li .intro a.list:hover span {
  color: #00447d;
}

.office .wrap .li .intro a.list:hover p {
  color: #00447d;
}

.office .wrap .li .intro .list:last-child {
  margin-bottom: 0;
}

.office .wrap .li .intro .list .lf {
  width: 20px;
  margin-right: 12px;
  height: max-content;
  margin-top: 3px;
}

.office .wrap .li .intro .list .lf img {
  max-width: 100%;
  margin: 0 auto;
}

.office .wrap .li .intro .list .rg {
  width: calc(100% - 32px);
  line-height: 1.5;
}

.office .wrap .li .intro .list .rg span {
  display: inline-block;
  color: #000000;
  width: 3em;
  vertical-align: top;
}

.office .wrap .li .intro .list .rg p {
  display: inline-block;
  color: #666;
  width: calc(100% - 4em);
}

.agent {
  position: relative;
}

.agent img {
  width: 100%;
}

.agent .point {
  position: absolute;
  top: 75.7%;
  left: 33.1%;
  width: 9px;
  height: 9px;
  background-color: #00447d;
  border-radius: 50%;
display:none;
}

.agent .point::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: .5;
  background-color: #06438D;
  transform-origin: center center;
  animation: scaleBox 5s linear infinite;
}

.agent .point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: .5;
  background-color: #06438D;
  transform-origin: center center;
  animation: scaleBox 5s 2.5s linear infinite;
}

.agent .wrap {
  position: absolute;
  width: 17.75rem;
  right: 3.75rem;
  top: 3rem;
}

.agent .wrap .tit {
  text-align: center;
  margin-bottom: 1.4rem;
  color: #000;
}

.agent .wrap .top-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .85rem;
  position: relative;
  z-index: 2;
}

.agent .wrap .top-tab .li {
  width: 7.8rem;
  height: 1.3rem;
  border-radius: .7rem;
  position: relative;
  margin-right: 1.25rem;
}

.agent .wrap .top-tab .li:last-child {
  margin-right: 0;
}

.agent .wrap .top-tab .li p {
  width: 100%;
  height: 100%;
  line-height: 1.3rem;
  padding-left: .75rem;
  color: #222222;
  background-color: #fff;
  border-radius: .7rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all .3s;
}

.agent .wrap .top-tab .li .arr {
  position: absolute;
  z-index: 2;
  right: .7rem;
  top: 50%;
  transform: translateY(-50%);
  color: #222222;
  font-size: 16px;
  transition: all .3s;
}

.agent .wrap .top-tab .li .pos-box-wrap {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 50%;
  left: 0;
  border-bottom-right-radius: .7rem;
  border-bottom-left-radius: .7rem;
  overflow: hidden;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  display: none;
}

.agent .wrap .top-tab .li .pos-box {
  width: 100%;
  max-height: calc(5rem + 4px + .65rem);
  overflow-y: auto;
  background-color: #fff;
  padding-top: .65rem;
  border-bottom-right-radius: .7rem;
  border-bottom-left-radius: .7rem;
  transition: all .3s;
}

.agent .wrap .top-tab .li .pos-box::-webkit-scrollbar {
  width: 2px;
}

.agent .wrap .top-tab .li .pos-box::-webkit-scrollbar-thumb {
  background: #00447d;
}

.agent .wrap .top-tab .li .pos-box span {
  display: block;
  width: 100%;
  height: 1rem;
  line-height: 1rem;
  padding-left: .75rem;
  color: #666;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  cursor: pointer;
  transition: all .3s;
}

.agent .wrap .top-tab .li .pos-box span:last-child {
  border-bottom: none;
}

.agent .wrap .top-tab .li .pos-box span:hover {
  background-color: #00447d;
  color: #fff;
}

.agent .wrap .top-tab .li:hover p {
  background-color: #00447d;
  color: #fff;
}

.agent .wrap .top-tab .li:hover .arr {
  color: #fff;
}

.agent .wrap .top-tab .li.cur p {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #00447d;
  color: #fff;
}

.agent .wrap .top-tab .li.cur .arr {
  color: #fff;
}

.agent .wrap .top-bar {
  width: 100%;
  height: 1.5rem;
  display: flex;
  padding: 0 1rem;
  background-color: #00447d;
}

.agent .wrap .top-bar p {
  width: 31.5%;
  color: #fff;
  line-height: 1.5rem;
}
.agent .wrap .top-bar p:nth-child(3){
	width:36%;
}

.agent .wrap .btm-cont .box {
  max-height: 10.5rem;
  overflow-y: auto;
  animation: fadeInup 1.5s linear forwards;
}

.agent .wrap .btm-cont .box::-webkit-scrollbar {
  width: 2px;
}

.agent .wrap .btm-cont .box .li {
  width: 100%;
  display: flex;
  padding: 14px 1rem;
  background-color: #fff;
  border-bottom: 1px solid #E6E6E6;
}

.agent .wrap .btm-cont .box .li:last-child {
  border-bottom: none;
}

.agent .wrap .btm-cont .box .li p {
  width: 31.5%;
  color: #000000;
  line-height:1.6;
}
.agent .wrap .btm-cont .box .li p:nth-child(3){
	width:36%;
}

.impower {
  padding: 2.4rem 0 2.5rem;
}

.impower .tit {
  color: #000000;
  margin-bottom: 1.4rem;
  text-align: center;
}

.impower .top-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.05rem;
}

.impower .top-tab .li {
  width: 7.8rem;
  height: 1.3rem;
  border-radius: .7rem;
  position: relative;
  margin-right: 1.25rem;
  position: relative;
  z-index: 2;
}

.impower .top-tab .li:last-child {
  margin-right: 0;
}

.impower .top-tab .li p {
  width: 100%;
  height: 100%;
  line-height: 1.3rem;
  padding-left: .75rem;
  color: #222222;
  background-color: #F1F1F1;
  border-radius: .7rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all .3s;
}

.impower .top-tab .li .arr {
  position: absolute;
  z-index: 2;
  right: .7rem;
  top: 50%;
  transform: translateY(-50%);
  color: #222222;
  font-size: 16px;
  transition: all .3s;
}

.impower .top-tab .li .pos-box-wrap {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 50%;
  left: 0;
  overflow: hidden;
  border-bottom-right-radius: .7rem;
  border-bottom-left-radius: .7rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  display: none;
}

.impower .top-tab .li .pos-box {
  width: 100%;
  max-height: calc(5rem + 4px + .65rem);
  overflow-y: auto;
  background-color: #fff;
  padding-top: .65rem;
  border-bottom-right-radius: .7rem;
  border-bottom-left-radius: .7rem;
  transition: all .3s;
}

.impower .top-tab .li .pos-box::-webkit-scrollbar {
  width: 2px;
}

.impower .top-tab .li .pos-box::-webkit-scrollbar-thumb {
  background: #00447d;
}

.impower .top-tab .li .pos-box span {
  display: block;
  width: 100%;
  height: 1rem;
  line-height: 1rem;
  padding-left: .75rem;
  color: #666;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  cursor: pointer;
  transition: all .3s;
}

.impower .top-tab .li .pos-box span:last-child {
  border-bottom: none;
}

.impower .top-tab .li .pos-box span:hover {
  background-color: #00447d;
  color: #fff;
}

.impower .top-tab .li:hover p {
  background-color: #00447d;
  color: #fff;
}

.impower .top-tab .li:hover .arr {
  color: #fff;
}

.impower .top-tab .li.search {
  padding: 0 .6rem 0 .75rem;
  display: flex;
  align-items: center;
  background-color: #F1F1F1;
}

.impower .top-tab .li.search input {
  width: calc(100% - .6rem);
  height: 100%;
  background: none;
  color: #333;
}

.impower .top-tab .li.search div {
  width: .6rem;
  cursor: pointer;
}

.impower .top-tab .li.search div img {
  width: 100%;
}

.impower .top-tab .li.cur p {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #00447d;
  color: #fff;
}

.impower .top-tab .li.cur .arr {
  color: #fff;
}

.impower .map-wrap {
  height: 20rem;
  position: relative;
}

.impower .map-wrap .mapbox {
  width: 100%;
  height: 100%;
}

.impower .map-wrap .map-text-box {
  position: absolute;
  top: 2.5rem;
  left: 10%;
  width: 12.4rem;
  height: 15.45rem;
  background-color: #fff;
  padding: 1.5rem .75rem 0 1rem;
}

.impower .map-wrap .map-text-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to bottom, transparent, white);
  z-index: 10;
}

.impower .map-wrap .map-text-box .detail-info {
  color: #000000;
  font-size: .7rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.impower .map-wrap .map-text-box .maptext-list {
  height: calc(100% - 2rem);
}

.impower .map-wrap .map-text-box .maptext-container {
  height: 100%;
}

.impower .map-wrap .map-text-box .maptext-container .swiper-scrollbar {
  width: 1px;
  height: 100%;
  background: #CFCFCF;
}

.impower .map-wrap .map-text-box .maptext-container .swiper-scrollbar .swiper-scrollbar-drag {
  width: 5px;
  background: #044EB2;
  left: -2px;
}

.impower .map-wrap .map-text-box .maptext-container .swiper-slide {
  width: calc(100% - .6rem);
  height: max-content;
  border-bottom: 1px solid #CFCFCF;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  cursor: pointer;
}

.impower .map-wrap .map-text-box .maptext-container .swiper-slide:last-child {
  margin-bottom: 0;
}

.impower .map-wrap .map-text-box .maptext-container .swiper-slide .tits {
  color: #5D5D5D;
  line-height: 1.2;
  margin-bottom: .35rem;
}

.impower .map-wrap .map-text-box .maptext-container .swiper-slide .txts {
  color: #5D5D5D;
  line-height: 1.2;
  margin-bottom: .9rem;
}

.impower .map-wrap .map-text-box .maptext-container .swiper-slide .text {
  color: #00447d;
  line-height: 1;
  display: flex;
  align-items: center;
}

.impower .map-wrap .map-text-box .maptext-container .swiper-slide .text span {
  line-height: .8;
  margin-left: 2px;
}

.recruit {
  padding: 2.5rem 0;
}

.recruit .wrap {
  display: flex;
}

.recruit .wrap .pic {
  width: 58%;
}

.recruit .wrap .pic img {
  width: 100%;
}

.recruit .wrap .rg {
  width: 42%;
  padding-top: 1.25rem;
  padding-left: 2.5rem;
}

.recruit .wrap .rg .h1 {
  color: #000000;
  line-height: 1;
  font-size: .8rem;
  margin-bottom: .6rem;
}

.recruit .wrap .rg .cont {
  color: #707070;
  line-height: 1.7;
  padding-bottom: .95rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  margin-bottom: .8rem;
}

.recruit .wrap .rg .intro {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: .9rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1.4rem;
}

.recruit .wrap .rg .intro p {
  width: 50%;
  color: #000000;
  line-height: 1;
  margin-bottom: .5rem;
}

.recruit .wrap .rg .more {
  display: block;
  width: max-content;
  padding: 0 .75rem;
  height: 1.35rem;
  line-height: 1.35rem;
  background-color: #00447d;
  border-radius: .7rem;
  color: #FFFFFF;
}

.about-nav .nav-container .swiper-slide {
  margin-right: 3.4rem;
}

.about-nav .nav-container .swiper-slide:last-child {
  margin-right: 0;
}

.about {
  padding: 1.95rem 0 2.4rem;
}

.about .wrap {
  display: flex;
}

.about .wrap .lf {
  width: 44%;
  padding-right: 4rem;
}

.about .wrap .lf .h1 {
  color: #000000;
  line-height: 1;
  margin-bottom: 1.9rem;
}

.about .wrap .lf .intro {
  display: flex;
  align-items: flex-end;
  margin-bottom: .5rem;
}

.about .wrap .lf .intro p {
  color: #000000;
  font-size: .8rem;
  line-height: 1;
  margin-right: .3rem;
}

.about .wrap .lf .intro span {
  color: #666666;
  line-height: 1;
}

.about .wrap .lf .cont {
  color: #565656;
  line-height: 1.7;
  margin-bottom: 2.1rem;
}

.about .wrap .lf .li-wrap {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding: .75rem 0 0;
}

.about .wrap .lf .li-wrap .li {
  width: 33.33%;
  margin-bottom: 1rem;
}

.about .wrap .lf .li-wrap .li .top {
  color: #1C1C1C;
  font-weight: bold;
  line-height: 1;
  margin-bottom: .3rem;
}

.about .wrap .lf .li-wrap .li .num {
  display: flex;
  align-items: flex-end;
  font-weight: bold;
}

.about .wrap .lf .li-wrap .li .num p {
  color: #00447d;
  line-height: 1;
  font-size: .9rem;
  letter-spacing: -1px;
}

.about .wrap .lf .li-wrap .li .num span {
  color: #00447d;
  line-height: 1;
}

.about .wrap .pic {
  width: 56%;
}

.dev {
  padding: 2rem 0;
  background-color: #F4F4F4;
}

.dev .tit {
  color: #000000;
  line-height: 1;
  margin-bottom: 1.5rem;
  padding: 0 5%;
}

.dev .wrap {
  position: relative;
}

.dev .wrap .dev-scrollbar {
  position: relative;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  margin-bottom: 2.5rem;
  padding: 0 5%;
}

.dev .wrap .dev-scrollbar .swiper-scrollbar-drag {
  height: 5px;
  background-color: #00447d;
  top: -5px;
}

.dev .wrap .dev-container .swiper-button-prev,
.dev .wrap .dev-container .swiper-button-next {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  box-shadow: 0.45rem 0.45rem 1.25rem 0px rgba(46, 115, 184, 0.05);
  font-size: .5rem;
  color: #1567C6;
  background-color: #fff;
  transition: all .3s;
}

.dev .wrap .dev-container .swiper-button-prev::after,
.dev .wrap .dev-container .swiper-button-next::after {
  display: none;
}

.dev .wrap .dev-container .swiper-button-prev svg,
.dev .wrap .dev-container .swiper-button-next svg {
  position: relative;
  top: 0;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #1567C6;
  stroke-width: 2;
}

.dev .wrap .dev-container .swiper-button-prev:hover,
.dev .wrap .dev-container .swiper-button-next:hover {
  background-color: #00447d;
}

.dev .wrap .dev-container .swiper-button-prev:hover svg,
.dev .wrap .dev-container .swiper-button-next:hover svg {
  stroke: #fff;
}

.dev .wrap .dev-container .swiper-button-prev {
  transform: rotate(180deg);
  left: 0;
}

.dev .wrap .dev-container .swiper-button-next {
  right: 0;
}

.dev .wrap .dev-container .swiper-slide {
  width: 23%;
  height: 12.5rem;
  margin-right: 2.66%;
}

.dev .wrap .dev-container .swiper-slide:last-child {
  margin-right: 0;
}

.dev .wrap .dev-container .swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(15deg, #1155A3, #1771D8);
  z-index: 1;
  transition: all .5s;
}

.dev .wrap .dev-container .swiper-slide img {
  width: 100%;
  height: 100%;
}

.dev .wrap .dev-container .swiper-slide .pos-cont {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 3.25rem 1.25rem 0;
}

.dev .wrap .dev-container .swiper-slide .pos-cont p {
  color: #fff;
}

.dev .wrap .dev-container .swiper-slide .pos-cont .h1 {
  color: #FFFFFF;
  font-size: 2rem;
  line-height: .8;
  text-align: center;
  margin-bottom: 1.25rem;
}

.dev .wrap .dev-container .swiper-slide .pos-cont .h2 {
  font-size: .8rem;
  text-align: center;
  margin-bottom: .3rem;
  line-height: 1;
}

.dev .wrap .dev-container .swiper-slide .pos-cont .intro {
  line-height: .7rem;
  max-height: 3.5rem;
  overflow-y: auto;
  color: #fff;
  padding-right: 5px;
}

.dev .wrap .dev-container .swiper-slide .pos-cont .intro::-webkit-scrollbar {
  width: 3px;
}

.dev .wrap .dev-container .swiper-slide .pos-cont .intro::-webkit-scrollbar-thumb {
  background: #fff;
}

.dev .wrap .dev-container .swiper-slide:hover::after {
  opacity: 0;
}

.layout {
  position: relative;
}

.layout img {
  width: 100%;
}

.layout .tit {
  position: absolute;
  left: 5%;
  top: 2rem;
  line-height: 1;
  color: #FFFFFF;
}

.layout .pos-intro {
  position: absolute;
  right: 13%;
  top: 50%;
  transform: translateY(-50%);
  /* width: 16.25rem; */
  /* height: 13.5rem; */
  width: 13rem;
  height: 17rem;
  padding: 1.5rem .75rem 1.2rem;
  /* background-color: rgba(28, 110, 192, 0.8); */
  /* box-shadow: 0px 13px 27px 0px rgba(0, 0, 0, 0.24); */
}

.layout .pos-intro .h1 {
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: .5rem;
}

.layout .pos-intro .h2 {
  color: #D0E8FF;
  line-height: 1;
  margin-bottom: .5rem;
}

.layout .pos-intro .li-wrap {
  max-height: calc(100% - 2rem);
  overflow-y: auto;
  padding-right: 5px;
}

.layout .pos-intro .li-wrap::-webkit-scrollbar {
  width: 2px;
}

.layout .pos-intro .li-wrap::-webkit-scrollbar-thumb {
  background: #fff;
}

.layout .pos-intro .li-wrap .li {
  border-top: 2px solid rgba(231, 231, 231, 0.15);
  padding-top: .5rem;
  margin-bottom: .35rem;
}

.layout .pos-intro .li-wrap .li>p {
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: .4rem;
}

.layout .pos-intro .li-wrap .li div {
  color: #D0E8FF;
  line-height: 1.7;
  display: flex;
  flex-wrap: wrap;
}

.layout .pos-intro .li-wrap .li div p {
  width: 50%;
}

.layout .point {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: none;
}

.layout .point::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: .5;
  background-color: #fff;
  transform-origin: center center;
  animation: scaleBoxBig 10s linear infinite;
}

.layout .point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: .5;
  background-color: #fff;
  transform-origin: center center;
  animation: scaleBoxBig 10s 5s linear infinite;
}

.layout .point1 {
  left: 9.5%;
  top: 22%;
}

.layout .point2 {
  left: 5.5%;
  top: 25%;
}

.layout .point3 {
  left: 9%;
  top: 51.6%;
}

.layout .point4 {
  left: 16.3%;
  top: 27%;
}

.layout .point5 {
  left: 16.8%;
  top: 33.3%;
}

.layout .point6 {
  left: 19%;
  top: 42.3%;
}

.layout .point7 {
  left: 30.3%;
  top: 44%;
}

.layout .point8 {
  left: 35.3%;
  top: 55%;
}

.layout .point9 {
  left: 37.3%;
  top: 50%;
}

.layout .point10 {
  left: 40.8%;
  top: 43%;
}

.layout .point11 {
  left: 42.5%;
  top: 35%;
}

.layout .point12 {
  left: 46.4%;
  top: 76.8%;
}

.layout .point13 {
  left: 92.3%;
  top: 64%;
}

.layout .point14 {
  left: 40%;
  top: 41%;
}

.layout .point14 span {
  transform: translateY(-20px);
}

.research {
  padding: 1.7rem 0 2.45rem;
  background-color: #F8F8F8;
}

.research .wrap .tit {
  color: #000000;
  text-align: center;
  margin-bottom: .55rem;
}

.research .wrap .cont {
  color: #565656;
  line-height: 1.9;
  width: 45%;
  margin: 0 auto 1.85rem;
  text-align: center;
}

.research .wrap .box {
  overflow: hidden;
}

.research .wrap .box .lf {
  float: right;
  width: 45%;
  padding-top: 2rem;
  padding-left: 2.8rem;
}

.research .wrap .box .lf .h1 {
  color: #000000;
  line-height: 1;
  margin-bottom: .7rem;
}

.research .wrap .box .lf .h2 {
  color: #565656;
  line-height: 2;
  margin-bottom: 1.4rem;
}

.research .wrap .box .lf .li-wrap {
  display: flex;
}

.research .wrap .box .lf .li-wrap .li {
  width: max-content;
  margin-right: 2.2rem;
}

.research .wrap .box .lf .li-wrap .li:last-child {
  margin-right: 0;
}

.research .wrap .box .lf .li-wrap .li .h3 {
  color: #000000;
  line-height: 1;
  margin-bottom: .4rem;
}

.research .wrap .box .lf .li-wrap .li .intro {
  display: flex;
  align-items: flex-end;
}

.research .wrap .box .lf .li-wrap .li .intro p {
  color: #00447d;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: .8;
  margin-right: 6px;
}

.research .wrap .box .lf .li-wrap .li .intro span {
  color: #00447d;
  font-size: .875rem;
  line-height: .8;
}

.research .wrap .box .pic {
  width: 55%;
  float: left;
}

.research .wrap .box .pic img {
  width: 100%;
}

.advan {
  padding: 2.55rem 0 2.75rem;
}

.advan .tit {
  color: #000000;
  text-align: center;
  margin-bottom: 1.95rem;
}

.advan .wrap {
  display: flex;
}

.advan .wrap .lf {
  width: 50%;
  padding-top: 2.15rem;
  padding-right: 2.75rem;
}

.advan .wrap .lf .h1 {
  color: #000000;
  line-height: 1;
  margin-bottom: .9rem;
}

.advan .wrap .lf .cont {
  color: #565656;
  line-height: 2;
}

.advan .wrap .rg {
  width: 50%;
}

.advan .wrap .rg img {
  width: 100%;
}

.cultrue {
  padding: 2.75rem 0 2.5rem;
}

.cultrue .wrap .tit {
  color: #000000;
  text-align: center;
  margin-bottom: 1.95rem;
}

.cultrue .wrap .top-li {
  width: 100%;
  position: relative;
  margin-bottom: 1.5rem;
}

.cultrue .wrap .top-li img {
  width: 100%;
}

.cultrue .wrap .top-li .pos-cont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.cultrue .wrap .top-li .pos-cont .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .9rem;
}

.cultrue .wrap .top-li .pos-cont .icon div {
  width: .9rem;
  margin-right: .3rem;
}

.cultrue .wrap .top-li .pos-cont .icon p {
  color: #FFFFFF;
  font-size: .8rem;
  line-height: 1;
}

.cultrue .wrap .top-li .pos-cont .intro {
  color: #FFFFFF;
  line-height: 2;
  text-align: center;
}

.cultrue .wrap .tit2 {
  color: #000000;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: .75rem;
}

.cultrue .wrap .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cultrue .wrap .tab span {
  color: #000000;
  line-height: 1;
  padding: 0 .4rem .6rem;
  position: relative;
  cursor: pointer;
  margin-right: 2.3rem;
  transition: all .3s;
}

.cultrue .wrap .tab span:last-child {
  margin-right: 0;
}

.cultrue .wrap .tab span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #00447d;
  transition: all .3s;
}

.cultrue .wrap .tab span.cur,
.cultrue .wrap .tab span:hover {
  color: #00447d;
}

.cultrue .wrap .tab span.cur::after,
.cultrue .wrap .tab span:hover::after {
  width: 100%;
}

.cultrue .wrap .swiper-box {
  display: flex;
  justify-content: space-between;
}

.cultrue .wrap .swiper-box .pic {
  position: relative;
  width: 54.5%;
  height: 11rem;
}

.cultrue .wrap .swiper-box .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.cultrue .wrap .swiper-box .pic img:first-child {
  display: block;
}

.cultrue .wrap .swiper-box .cul-container {
  width: 40.5%;
  margin: 1.75rem 0 0;
}

.cultrue .wrap .swiper-box .cul-container .swiper-pagination {
  line-height: 1;
  text-align: left;
  display: flex;
  align-items: center;
}

.cultrue .wrap .swiper-box .cul-container .swiper-pagination .swiper-pagination-bullet {
  width: .25rem;
  height: .25rem;
  border: 1px solid #AAAAAA;
  margin: 0 7px;
  background: none;
  position: relative;
  transition: all .3s;
}

.cultrue .wrap .swiper-box .cul-container .swiper-pagination .swiper-pagination-bullet-active {
  width: .35rem;
  height: .35rem;
}

.cultrue .wrap .swiper-box .cul-container .swiper-pagination .swiper-pagination-bullet-active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #AAAAAA;
  border-radius: 50%;
  width: .25rem;
  height: .25rem;
}

.cultrue .wrap .swiper-box .cul-container .swiper-slide {
  width: 100%;
}

.cultrue .wrap .swiper-box .cul-container .swiper-slide .h1 {
  color: #000000;
  line-height: 1;
  margin-bottom: .5rem;
}

.cultrue .wrap .swiper-box .cul-container .swiper-slide .h2 {
  color: #565656;
  line-height: 1.8;
}

.respon {
  padding: 3rem 0 2.7rem;
}

.respon .tit {
  color: #000000;
  text-align: center;
  margin-bottom: .8rem;
}

.respon .cont {
  line-height: 1.7;
  color: #000000;
  width: 53.33%;
  margin: 0 auto;
  text-align: center;
}

.policy {
  padding: 2.5rem 0 4.4rem;
}

.policy .h1 {
  color: #fff;
  text-align: center;
  margin-bottom: 2.25rem;
}

.policy .h2 {
  color: #fff;
  line-height: 1;
  text-align: center;
  margin-bottom: 1.5rem;
}

.policy .li-wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 2.55rem;
}

.policy .li-wrap .li {
  width: max-content;
  position: relative;
  margin-right: 2rem;
}

.policy .li-wrap .li::after {
  content: '';
  position: absolute;
  width: 1rem;
  height: 2px;
  border-top: 2px dashed #fff;
  left: calc(100% + .5rem);
  top: .5rem;
}

.policy .li-wrap .li:last-child {
  margin-right: 0;
}

.policy .li-wrap .li:last-child::after {
  display: none;
}

.policy .li-wrap .li .icon {
  width: 1.1rem;
  margin: 0 auto .3rem;
}

.policy .li-wrap .li .icon img {
  max-width: 100%;
  margin: 0 auto;
}

.policy .li-wrap .li .intro {
  color: #fff;
  line-height: 1;
  text-align: center;
}

.policy .h3 {
  color: #fff;
  line-height: 1;
  text-align: center;
  margin-bottom: .7rem;
}

.policy .cont {
  color: #FFFFFF;
  line-height: 1.7;
  text-align: center;
  width: 58%;
  margin: 0 auto 1.2rem;
}

.policy .link-li {
  display: flex;
  flex-wrap: nowrap;
  width: 90%;
  margin: 0 auto;
  justify-content: center;
}

.policy .link-li a {
  position: relative;
  width: max-content;
  padding-left: 12px;
  color: #fff;
  margin-right: .7rem;
  transition: all .3s;
}

.policy .link-li a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
  transition: all .3s;
}

.policy .link-li a:last-child {
  margin-right: 0;
}

.policy .link-li a:hover {
  color: #FFFC00;
  text-decoration: underline;
}

.policy .link-li a:hover::after {
  background-color: #FFFC00;
}

.charity {
  padding: 2.65rem 0 2.1rem;
  background-color: #F4F4F4;
}

.charity .tit {
  color: #000000;
  text-align: center;
  margin-bottom: 1.75rem;
  line-height: 1;
}

.charity .charity-container {
  width: 100%;
  padding-left: 5%;
  /* margin-left: 5%; */
}

.charity .swiper-scrollbar {
  position: relative;
  margin-top: 1.9rem;
  height: 1px;
  width: 100%;
}

.charity .swiper-scrollbar .swiper-scrollbar-drag {
  height: 5px;
  background: #00447d;
}

.charity .charity-container .swiper-slide {
  width: 24%;
  margin-right: 1.5rem;
  background-color: #fff;
}

.charity .charity-container .swiper-slide:last-child {
  margin-right: 0;
}

.charity .charity-container .swiper-slide .pic {
  width: 100%;
  height: 6.25rem;
  overflow: hidden;
}

.charity .charity-container .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}

.charity .charity-container .swiper-slide .intro {
  padding: .9rem;
  height: 6.9rem;
}

.charity .charity-container .swiper-slide .intro .h1 {
  color: #000000;
  line-height: .75rem;
  height: 1.5rem;
  overflow: hidden;
  margin-bottom: .5rem;
}

.charity .charity-container .swiper-slide .intro .cont {
  color: #000000;
  line-height: .75rem;
  height: 1.5rem;
  overflow: hidden;
  margin-bottom: .9rem;
}

.charity .charity-container .swiper-slide .intro .more {
  display: flex;
  align-items: center;
  color: #1B1B1B;
  line-height: 1;
  transition: all .3s;
}

.charity .charity-container .swiper-slide .intro .more .text {
  margin-right: 4px;
  line-height: 1;
}

.charity .charity-container .swiper-slide .intro .more svg {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #1B1B1B;
  stroke-width: 1;
  transition: all .3s;
}

.charity .charity-container .swiper-slide:hover .pic img {
  transform: scale(1.1);
}

.charity .charity-container .swiper-slide:hover .more {
  color: #00447d;
}

.charity .charity-container .swiper-slide:hover .more svg {
  stroke: #00447d;
}

.envir {
  padding: 2.25rem 0 2.55rem;
}

.envir .tit {
  color: #000000;
  text-align: center;
  margin-bottom: 2.25rem;
}

.envir .wrap .li {
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.envir .wrap .li:last-child {
  margin-bottom: 0;
}

.envir .wrap .li .lf {
  width: 40%;
  float: left;
  padding-right: 3rem;
  padding-top: 2rem;
}

.envir .wrap .li .lf .h1 {
  color: #000000;
  line-height: 1;
  margin-bottom: 1rem;
}

.envir .wrap .li .lf .cont {
  color: #000000;
  line-height: 2;
  margin-bottom: 3rem;
}

.envir .wrap .li .lf .more {
  background-color: #00447d;
  display: block;
  width: 3.4rem;
  height: 1.1rem;
  line-height: 1.1rem;
  text-align: center;
  color: #fff;
  border-radius: .55rem;
  border: 1px solid #00447d;
  transition: all .1s .4s;
}


/* .envir .wrap .li .lf .more:hover {
  background-color: transparent;
} */

.envir .wrap .li .rg {
  width: 60%;
  float: right;
}

.envir .wrap .li .rg img {
  width: 100%;
}

.envir .wrap .li:nth-child(2n) .lf {
  float: right;
  padding-right: 0;
  padding-left: 2.4rem;
  padding-top: 1.5rem;
}

.moral {
  padding: 2rem 0 2.4rem;
}

.moral .tit {
  color: #fff;
  text-align: center;
  margin-bottom: .7rem;
}

.moral .sub {
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 1.4rem;
  text-align: center;
}

.moral .wrap {
  display: flex;
}

.moral .wrap .li {
  width: 33.3%;
  height: 13.9rem;
  padding: 1.6rem 2.5rem 0;
  transition: all .3s;
}

.moral .wrap .li .pic {
  width: 1.5rem;
  margin: 0 auto .5rem;
}

.moral .wrap .li .pic img {
  max-width: 100%;
  margin: 0 auto;
}

.moral .wrap .li .h1 {
  color: #fff;
  text-align: center;
  margin-bottom: .9rem;
  line-height: 1;
}

.moral .wrap .li .cont {
  color: #fff;
  line-height: .7rem;
  max-height: 7.7rem;
  overflow-y: auto;
  padding-right: 5px;
}

.moral .wrap .li .cont::-webkit-scrollbar {
  width: 3px;
}

.moral .wrap .li:hover {
  background-color: #1B87CA;
}

.purchase {
  padding: 2.9rem 0 2.6rem;
}

.purchase .tit {
  color: #000000;
  text-align: center;
  margin-bottom: .6rem;
}

.purchase .sub {
  color: #000000;
  margin-bottom: 2rem;
  text-align: center;
}

.purchase .wrap {
  display: flex;
}

.purchase .wrap .lf {
  width: 39%;
  padding-top: 1.35rem;
  padding-right: 2.15rem;
}

.purchase .wrap .lf .h1 {
  color: #000000;
  line-height: 1;
  font-size: .8rem;
  margin-bottom: .8rem;
}

.purchase .wrap .lf .cont {
  color: #000000;
  line-height: 1.8;
}

.purchase .wrap .rg {
  width: 61%;
}

.purchase .wrap .rg img {
  width: 100%;
}

.honor {
  padding: 2.3rem 0 2.5rem;
}

.honor .tit {
  color: #000000;
  font-size: .9rem;
  line-height: 1;
  text-align: center;
  margin-bottom: .9rem;
}

.honor .select {
  position: relative;
  width: 7.8rem;
  height: 1.3rem;
  border-radius: .7rem;
  background-color: #F1F1F1;
  margin: 0 auto 2rem;
  z-index: 2;
}

.honor .select .year {
  color: #999999;
  width: 100%;
  height: 100%;
  padding-left: .75rem;
  line-height: 1.3rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
  border-radius: .7rem;
  transition: all .3s;
}

.honor .select .arr {
  position: absolute;
  right: .65rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: .6rem;
  pointer-events: none;
  z-index: 2;
  color: #000;
  transition: all .3s;
}

.honor .select .change {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  border-bottom-right-radius: 0.7rem;
  border-bottom-left-radius: 0.7rem;
  overflow: hidden;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1;
}

.honor .select .change .change-box {
  width: 100%;
  max-height: calc(5rem + 4px + 0.65rem);
  overflow-y: auto;
  background-color: #fff;
  padding-top: 0.65rem;
  border-bottom-right-radius: 0.7rem;
  border-bottom-left-radius: 0.7rem;
  transition: all .3s;
}

.honor .select .change .change-box::-webkit-scrollbar {
  width: 2px;
}

.honor .select .change .change-box::-webkit-scrollbar-thumb {
  background: #00447d;
}

.honor .select .change span {
  display: block;
  width: 100%;
  height: 1rem;
  line-height: 1rem;
  padding-left: .75rem;
  color: #666;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  cursor: pointer;
  transition: all .3s;
}

.honor .select .change span:last-child {
  border-bottom: none;
}

.honor .select .change span:hover {
  background-color: #00447d;
  color: #fff;
}

.honor .select:hover .year {
  background-color: #00447d;
  color: #fff;
}

.honor .select:hover .arr {
  color: #fff;
}

.honor .select.cur .year {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #00447d;
  color: #fff;
}

.honor .select.cur .arr {
  color: #fff;
}

.honor .list-ajax .change-cont {
  animation: fadeInup 1.5s forwards linear;
}

.honor .change-cont {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: .9rem;
}

.honor .change-cont .li {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 1.6rem;
}

.honor .change-cont .li:nth-child(4n) {
  margin-right: 0;
}

.honor .change-cont .li div {
  width: 100%;
  margin-bottom: .65rem;
  border-radius: 12px;
  overflow: hidden;
}

.honor .change-cont .li div img {
  width: 100%;
  transition: all .3s;
}

.honor .change-cont .li p {
  color: #333333;
  line-height: 1;
  text-align: center;
}

.honor .change-cont .li:hover div img {
  transform: scale(1.1);
}

.news {
  padding: 2.4rem 0;
  background-color: #F0F0F0;
}

.news .wrap .top-wrap {
  display: flex;
  align-items: stretch;
  background-color: #fff;
}

.news .wrap .top-wrap {
  margin-bottom: 2.35rem;
}

.news .wrap .top-wrap .pic {
  width: 50%;
  overflow: hidden;
}

.news .wrap .top-wrap .pic img {
  width: 100%;
  transition: all .3s;
}

.news .wrap .top-wrap .box {
  width: 50%;
  padding: 2.5rem 2.4rem 1.5rem 2rem;
}

.news .wrap .top-wrap .box .h1 {
  color: #999999;
  line-height: 1;
  margin-bottom: .8rem;
}

.news .wrap .top-wrap .box .h2 {
  color: #222222;
  font-size: .8rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: .7rem;
  transition: all .3s;
}

.news .wrap .top-wrap .box .cont {
  color: #999999;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.news .wrap .top-wrap .box .more {
  display: block;
  width: 3.4rem;
  height: 1.1rem;
  line-height: 1.1rem;
  text-align: center;
  background-color: #00447d;
  border-radius: .55rem;
  color: #fff;
}

.news .wrap .top-wrap .box .more:hover {
  border: 1px solid #00447d;
}

.news .wrap .top-wrap:hover .pic img {
  transform: scale(1.1);
}

.news .wrap .top-wrap:hover .box .h2 {
  color: #00447d;
}

.news .btm-wrap .li-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: .4rem;
}

.news .btm-wrap .li-wrap .li {
  width: 22%;
  margin-right: 4%;
  margin-bottom: 1.75rem;
  background-color: #fff;
}

.news .btm-wrap .li-wrap .li:nth-child(4n) {
  margin-right: 0;
}

.news .btm-wrap .li-wrap .li .pic {
  width: 100%;
  height: 6.25rem;
  overflow: hidden;
}

.news .btm-wrap .li-wrap .li .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}

.news .btm-wrap .li-wrap .li .cont {
  padding: .65rem .7rem;
}

.news .btm-wrap .li-wrap .li .h1 {
  color: #000000;
  line-height: .75rem;
  height:2.25rem;
  overflow: hidden;
  margin-bottom: 1.4rem;
}

.news .btm-wrap .li-wrap .li .h2 {
  color: #373737;
  line-height: 1;
  transition: all .3s;
}

.news .btm-wrap .li-wrap .li:hover .pic img {
  transform: scale(1.1);
}

.news .btm-wrap .li-wrap .li:hover .h2 {
  color: #00447d;
}

.news-info {
  padding: 2rem 0 2.5rem;
  background-color: #F2F2F2;
}

.news-info .wrap {
  display: flex;
}

.news-info .wrap .side {
  background-color: #fff;
  padding: 1.5rem;
  width: 20%;
  margin-right: .5rem;
}

.news-info .wrap .side .tit {
  color: #000;
  line-height: 1;
  margin-bottom: .75rem;
}

.news-info .wrap .side a {
  display: block;
  position: relative;
  padding-left: 16px;
  margin-bottom: .45rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid #E0E0E0;
}

.news-info .wrap .side a:last-child {
  margin-bottom: 0;
}

.news-info .wrap .side a::after {
  content: '';
  position: absolute;
  left: 0;
  top: .25rem;
  width: 6px;
  height: 6px;
  background-color: #838383;
  border-radius: 50%;
  transition: all .3s;
}

.news-info .wrap .side a p {
  color: #707070;
  line-height: .65rem;
  max-height: 1.3rem;
  overflow: hidden;
  transition: all .3s;
}

.news-info .wrap .side a:hover::after {
  background-color: #00447d;
}

.news-info .wrap .side a:hover p {
  color: #00447d;
  border-bottom-color: #00447d;
}

.news-info .wrap .cont {
  width: calc(80% - .5rem);
  background-color: #fff;
  padding: 1.35rem 4.1rem 1.9rem;
}

.news-info .wrap .cont .tit {
  color: #000000;
  line-height: 1.4;
  font-size: .8rem;
  text-align: center;
  margin-bottom: .6rem;
}

.news-info .wrap .cont .time {
  color: #000000;
  line-height: 1;
  text-align: center;
  margin-bottom: 1rem;
}

.news-info .wrap .cont .intro {
  border-top: 3px solid #EFEFEF;
  border-bottom: 3px solid #EFEFEF;
  padding-top: .75rem;
  padding-bottom: 1.2rem;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.news-info .wrap .cont .intro img {
  display: inline-block;
}

.news-info .wrap .cont .info-page {
  display: flex;
  align-items: center;
}

.news-info .wrap .cont .info-page .page-box {
  width: calc(100% - 4rem);
}

.news-info .wrap .cont .info-page .page-box a {
  display: block;
  color: #000000;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: .4rem;
}

.news-info .wrap .cont .info-page .page-box a:last-child {
  margin-bottom: 0;
}

.news-info .wrap .cont .info-page .back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 1.1rem;
  line-height: 1.1rem;
  text-align: center;
  background-color: #00447d;
  border-radius: .55rem;
  box-shadow: 18px 18px 51px 0px rgba(46, 115, 184, 0.05);
  color: #fff;
}

.news-info .wrap .cont .info-page .back .pic {
  width: 12px;
}

.news-info .wrap .cont .info-page .back .pic img {
  width: 100%;
}

.online {
  padding: 2rem 0 2.5rem;
}

.online .wrap .tit {
  color: #000000;
  line-height: 1;
  text-align: center;
  font-size: .8rem;
  margin-bottom: 1.45rem;
}

.online .wrap .form-box {
  max-width: 100%;
  margin: 0 auto 2.5rem;
}

.online .wrap .form-box .top-select {
  margin-bottom: 1.2rem;
}

.online .wrap .form-box .top-select .type {
  color: #000000;
  line-height: 1;
  margin-bottom: .5rem;
}

.online .wrap .form-box .top-select .type span {
  color: #146ED4;
}

.online .wrap .form-box .top-select .box {
  display: flex;
  align-items: center;
}

.online .wrap .form-box .top-select .box .li {
  margin-right: .5rem;
  background-color: #F4F4F4;
}

.online .wrap .form-box .top-select .box .li:last-child {
  margin-right: 0;
}

.online .wrap .form-box .top-select .box .li p {
  width: 4.75rem;
  height: 1.25rem;
  line-height: 1.25rem;
  text-align: center;
  color: #000;
  cursor: pointer;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.online .wrap .form-box .top-select .box .li.cur p {
  background-image: url(../img/156.png);
  color: #fff;
}

.online .wrap .form-box .li-wrap {
  display: flex;
  margin-bottom: .4rem;
}

.online .wrap .form-box .li-wrap:last-child {
  margin-bottom: 0;
}

.online .wrap .form-box .li-wrap .li {
  width: 48%;
  margin-right: 4%;
}

.online .wrap .form-box .li-wrap .li:last-child {
  margin-right: 0;
}

.online .wrap .form-box .li-wrap .li .type {
  color: #000000;
  line-height: 1;
  margin-bottom: .4rem;
}

.online .wrap .form-box .li-wrap .li .type span {
  color: #146ED4;
}

.online .wrap .form-box .li-wrap .li input {
  width: 100%;
  height: 1.25rem;
  border: 1px solid #D5D5D5;
  padding: 0 .5rem;
  color: #666666;
}

.online .wrap .form-box .li-wrap.one-li .li {
  width: 100%;
  margin-right: 0;
}

.online .wrap .form-box .text-wrap {
  margin-bottom: .4rem;
}

.online .wrap .form-box .text-wrap .type {
  color: #000000;
  line-height: 1;
  margin-bottom: .2rem;
}

.online .wrap .form-box .text-wrap .type span {
  color: #146ED4;
}

.online .wrap .form-box .text-wrap textarea {
  width: 100%;
  height: 2.9rem;
  border: 1px solid #D5D5D5;
  padding: .25rem .5rem;
  color: #666666;
}

.online .wrap .form-box .sub-box {
  display: flex;
  align-items: center;
}

.online .wrap .form-box .sub-box .code-input {
  width: 40%;
  height: 1.25rem;
  border: 1px solid #D5D5D5;
  border-radius: 5px;
  display: flex;
  margin-right: .75rem;
}

.online .wrap .form-box .sub-box .code-input div {
  width: 1.6rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.online .wrap .form-box .sub-box .code-input input {
  width: calc(100% - 1.6rem);
  height: 100%;
  background: none;
  padding: 0 .4rem;
  color: #666666;
}

.online .wrap .form-box .sub-box .code {
  width: 3.75rem;
  height: 1.25rem;
  background-color: #F7F7F7;
  border-radius: 5px;
  margin-right: .9rem;
}

.online .wrap .form-box .sub-box .submit {
  width: 6.25rem;
  height: 1.25rem;
  border-radius: .625rem;
  background-color: #00447d;
  color: #fff;
  margin-right: .55rem;
}

.online .wrap .form-box .sub-box .reset {
  width: 6.25rem;
  height: 1.25rem;
  line-height: 1.25rem;
  text-align: center;
  border-radius: .625rem;
  background-color: #F4F4F4;
  color: #3D3C3C;
  cursor: pointer;
}

.online .wrap .btm-online {
  display: flex;
}

.online .wrap .btm-online .pic {
  width: 56%;
}

.online .wrap .btm-online .pic img {
  width: 100%;
}

.online .wrap .btm-online .box {
  width: 44%;
  padding: 3rem 0 0 2.1rem;
}

.online .wrap .btm-online .box .h1 {
  color: #000000;
  font-size: .8rem;
  line-height: 1;
  margin-bottom: .6rem;
}

.online .wrap .btm-online .box .cont {
  color: #707070;
  line-height: 2;
  margin-bottom: .9rem;
}

.online .wrap .btm-online .box .more {
  display: block;
  width: 4.25rem;
  height: 1.25rem;
  color: #fff;
  text-align: center;
  line-height: 1.25rem;
  border-radius: .625rem;
  background-color: #00447d;
}

.download {
  padding: 2.5rem 0 2.25rem;
}

.download .wrap .top-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 2px solid #EFEFEF;
  margin-bottom: 1.5rem;
}

.download .wrap .top-wrap .tab.type {
  margin-bottom: .5rem;
}

.download .wrap .top-wrap .tab {
  display: flex;
}

.download .wrap .top-wrap .tab span {
  color: #000000;
  width: 5em;
  line-height: 1;
  margin-right: 1.25rem;
  cursor: pointer;
}

.download .wrap .top-wrap .tab span:last-child {
  margin-right: 0;
}

.download .wrap .top-wrap .tab span.cur,
.download .wrap .top-wrap .tab span:hover {
  color: #00447d;
}

.download .wrap .top-wrap .search {
  display: flex;
  justify-content: space-between;
  padding: 0 .6rem 0 .75rem;
  width: 7.8rem;
  height: 1.3rem;
  background-color: #F0F0F0;
  border-radius: .7rem;
}

.download .wrap .top-wrap .search input {
  width: calc(100% - 30px);
  background: none;
  color: #333;
}

.download .wrap .top-wrap .search div {
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.download .wrap .top-wrap .search div img {
  width: 100%;
}

.download .wrap .change-cont .li-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: .8rem;
}

.download .wrap .change-cont .li-wrap .li {
  width: 17.5%;
  margin-right: 3.125%;
  margin-bottom: 1.05rem;
  border: 1px solid #B5B5B5;
  transition: all .3s;
}

.download .wrap .change-cont .li-wrap .li:nth-child(5n) {
  margin-right: 0;
}

.download .wrap .change-cont .li-wrap .li .pic {
  width: 100%;
  height: 7.5rem;
  overflow: hidden;
}

.download .wrap .change-cont .li-wrap .li .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}

.download .wrap .change-cont .li-wrap .li .cont {
  padding: .6rem .8rem .9rem;
}

.download .wrap .change-cont .li-wrap .li .cont .h1 {
  color: #000000;
  line-height: .65rem;
  height: 1.3rem;
  overflow: hidden;
  margin-bottom: .45rem;
  transition: all .3s;
}

.download .wrap .change-cont .li-wrap .li .cont .icon {
  display: flex;
  align-items: center;
}

.download .wrap .change-cont .li-wrap .li .cont .icon div {
  width: 13px;
  height: 13px;
  margin-right: 6px;
}

.download .wrap .change-cont .li-wrap .li .cont .icon div svg {
  width: 100%;
  height: 100%;
  fill: #000;
  transition: all .3s;
}

.download .wrap .change-cont .li-wrap .li .cont .icon p {
  color: #000000;
  line-height: 1;
  transition: all .3s;
}

.download .wrap .change-cont .li-wrap .li:hover {
  border-color: #00447d;
}

.download .wrap .change-cont .li-wrap .li:hover .pic img {
  transform: scale(1.1);
}

.download .wrap .change-cont .li-wrap .li:hover .cont .h1 {
  color: #00447d;
}

.download .wrap .change-cont .li-wrap .li:hover .cont .icon svg {
  fill: #00447d;
}

.download .wrap .change-cont .li-wrap .li:hover .cont .icon p {
  color: #00447d;
}

.head-rg {
  display: flex;
  align-items: center;
}

.mb-select {
  display: none;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 0 .5rem;
  height: 35px;
  border: 1px solid rgba(0, 0, 0, .1);
  background-color: #fff;
  margin: 0 auto .5rem;
}

.mb-select p {
  color: #000;
  line-height: 1;
  margin-right: 10px;
}

.mb-select div {
  width: 30px;
}

.mb-select div img {
  width: 100%;
}

.head-move {
  transform: translateY(-2.1rem);
  opacity: 0;
}

.pub-nav .fix-nav {
  width: 100%;
  max-width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 10;
  opacity: 1;
  pointer-events: inherit;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.pos-con {
  position: fixed;
  bottom: 3%;
  right: 2%;
  width: 50px;
  z-index: 100;
}

.pos-con img {
  width: 100%;
}

.wel-side {
  padding-top: 0;
  transition: all .3s;
}

.f-share a {
  position: relative;
}

.f-share .wximg {
  position: absolute;
  width: 120px;
  height: 120px;
  left: 50%;
  margin-left: -60px;
  bottom: 1rem;
  opacity: 0;
  transition: all .5s ease-in-out;
}

.f-share a:hover .wximg {
  opacity: 1;
}
.side-bar{
	background:none;
}
.scrolldown{
	display:none;
}
.side-bar .share a {
  position: relative;
	display:none;
}

.side-bar .share .wximg {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 50%;
  margin-top: -60px;
  right: 1rem;
  opacity: 0;
  transition: all .5s ease-in-out;
}

.side-bar .share a:hover .wximg {
  opacity: 1;
}

.pop-img {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 199;
  top: 0;
  left: 0;
  display: none;
}

.pop-img .close-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.pop-img .close-img {
  position: absolute;
  width: 30px;
  height: 30px;
  top: -30px;
  right: -15px;
}

.pop-img .close-img img {
  width: 100%;
}

.pop-img .img-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 2;
}

.pop-img .img-box img {
  width: 100%;
}

.mb-name-box {
  display: none;
  margin-bottom: .75rem;
  padding: 0 5%;
}

.mb-name-box .sec {
  font-size: 16px;
  line-height: 1;
  margin-bottom: .4rem;
  color: #333;
  font-weight: bold;
}

.mb-name-box .thr {
  font-size: 14px;
  line-height: 1;
  color: #444;
}


/*# sourceMappingURL=all.css.map */

.pop-online {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .5);
  z-index: 199;
}

.pop-online .close-bg {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pop-online .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 80%;
  max-height: 90%;
  background-color: #fff;
  padding: 2rem;
  overflow-y: auto;
}

.pop-online .wrap .form-box {
  margin: 0;
}

.cases-swiper-box {
  width: 100%;
  position: relative;
}

.cases-swiper-box .swiper-button-prev,
.cases-swiper-box .swiper-button-next {
  color: #00447d;
}

.cases-swiper-box .swiper-button-prev::after,
.cases-swiper-box .swiper-button-next::after {
  font-size: 1rem;
}

.cases-swiper-box .swiper-button-prev {
  left: 5%;
}

.cases-swiper-box .swiper-button-next {
  right: 5%;
}

.case-info-swiper-box {
  position: relative;
}

.case-info .top .wrap .rg {
  width: 80%;
}

.case-info-swiper-box .swiper-button-prev,
.case-info-swiper-box .swiper-button-next {
  color: #00447d;
}

.case-info-swiper-box .swiper-button-prev::after,
.case-info-swiper-box .swiper-button-next::after {
  font-size: 1rem;
}

.group-swiper {
  /* margin-top: 2.85rem; */
  padding: 0 5%;
}

#swiper11 {
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem;
  min-height: 1.5rem;
}

#swiper11 .swiper-wrapper {
  align-items: center;
  min-height: 1.5rem;
}

#swiper11 .swiper-slide {
  text-align: center;
  color: #444444;
}

#swiper11 .swiper-slide .tit {
  color: #000;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin-bottom: .6rem;
  position: relative;
  z-index: 2;
}

#swiper11 .swiper-slide .cont {
  color: #666;
  text-align: center;
  width: 60%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  line-height: .6rem;
  height: 3rem;
  overflow-y: auto;
}

#swiper11 .swiper-slide .cont::-webkit-scrollbar {
  width: 3px;
}

#swiper11 .swiper-slide .year {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.75rem;
  line-height: 1;
  color: rgba(0, 105, 193, .1);
}

#swiper11 .swiper-button-prev,
#swiper11 .swiper-button-next {
  width: 35px;
  height: 35px;
  background-color: #BFBFBF;
  border-radius: 50%;
  margin-top: 0;
  transform: translateY(-50%);
}

#swiper11 .swiper-button-prev {
  left: 0;
}

#swiper11 .swiper-button-next {
  right: 0;
}

#swiper11 .swiper-button-prev::after,
#swiper11 .swiper-button-next::after {
  font-size: 14px;
  color: #FFFFFF;
}

#swiper12 {
  overflow: hidden;
  position: relative;
  padding-top: 5px;
}

#swiper12::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #BFBFBF;
  top: 12px;
  left: 0;
}

#swiper12 .swiper-slide {
  color: #444444;
  padding-top: 0.65rem;
  width: 11.1%;
  text-align: center;
}

#swiper12 .swiper-slide::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #BFBFBF;
}

#swiper12 .swiper-slide::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .2);
  /* background-color: #BFBFBF; */
}

#swiper12 .swiper-slide-active::after {
  width: 10px;
  height: 10px;
  background-color: #1543a1;
}

#swiper12 .swiper-slide-active {
  color: #1543a1;
  font-size: .5rem;
}

.layout .point span {
  position: absolute;
  left: calc(100% + .4rem);
  top: 0;
  color: #fff;
  display: block;
  line-height: 1;
  white-space: nowrap;
}

.zhanwei-par {
  position: relative;
  overflow: hidden;
}

.zhanwei-par img {
  width: 100%;
}

.zhanwei-par .zhanwei-pos {
  position: absolute;
  top: 0;
  z-index: 10;
  left: 0;
}

.banner .side-swiper .swiper-pagination {
  line-height: 1;
  text-align: left;
  padding-left: 5%;
  bottom: 10%;
}

.banner .side-swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.banner .side-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00447d;
}



#cookieToast{
  z-index: 9999;
  background: rgba(0,0,0,.4);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#cookieToast .cookie-toast-box{
  padding: 24px 64px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height:auto;
  z-index: 99999;
  background: #f5f5f5;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #dadada;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#cookieToast .cookie-toast-box .title{
  margin-bottom:.45rem;
}
#cookieToast .cookie-toast-box .cookie-toast-msg{
      color: #000;
    font-size: 12px;
    line-height: 16px;
}
#cookieToast .cookie-toast-box .cookie-toast-button-warp div{
      display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 108px;
    height: 48px;
    background: #0b8df5;
    color: #fff;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    margin:0 5px;
}

#cookieToast .cookie-toast-box .cookie-toast-msg{
    width: calc(100% - 260px);
}
@media (max-width: 996px) {
  #cookieToast .cookie-toast-box{
    padding: 16px 6%;
    height:auto;
  }


}
@media (max-width: 767px) {
  #cookieToast .cookie-toast-box{
    flex-flow:row wrap;
  }
  #cookieToast .cookie-toast-box .cookie-toast-msg{
    width:100%;
    margin-bottom:.65rem;
  }
}
