html,
body {
  position: relative;
  height: 100%;
}
body {
  background: #eee;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}
/* 入场动画 */
.loading {
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition: all 2s;
}
.loading > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.loading > div > .divLogo {
  width: 100%;
  text-align: center;
  transition: all 1s;
}
.loading > div > .divLogo .animation {
  display: inline-block;
  transition: all 1s;
}
.loading > div > .divLogo .animation > svg {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 600px;
  height: 400px;
}
.loading > div > .divLogo .animationZoomIn {
  transform: scale(0.6);
}
.loading > div > .divLogo .logo {
  fill: transparent;
  animation: fill 2s ease forwards 2.5s;
}
.loading > div > .divLogo .logo path {
  stroke-dasharray: 5000;
  stroke-dashoffset: 5000;
  animation: line-anim 5s ease forwards;
}
.loading > div > .divLogo .icon {
  position: fixed;
  z-index: -1;
  opacity: 0;
}
.loading > div > .divLogo > img {
  transition: all 1s;
}
.loading > div > .divLogo > .img-zoom-in {
  transform: scale(0.5);
}
.loading > div > .divLogo > .logo2 > img {
  width: 0;
  opacity: 0;
  transition: all 1s;
}
.loading > div > .divLogo > .logo2 .logo2-zoom-in {
  opacity: 1;
  width: 300px;
}
.loading > div .divLogoUp {
  top: 0;
  margin-top: 0;
}
.loading > div > .loader {
  opacity: 0;
  transition: all 1s;
  margin-top: 40px;
  text-align: center;
  color: #003ab3;
  font-size: 18px;
}
.loading > div > .loader #loaderNum {
  font-size: 20px;
  margin-right: 10px;
}

.loading span::after {
  display: none !important;
}


.loading > div > .copyright {
  padding-top: 50px;
  text-align: center;
  color: #003ab3;
}
/* 将文字逐步进行显示 */
@keyframes line-anim {
  to {
    stroke-dasharray: 8000;
    stroke-dashoffset: 1000;
  }
}
/* 将文字填充颜色改为白色 */
@keyframes fill {
  to {
    stroke-dasharray: 500;
    fill: #003ab3;
  }
}
/* swiper */
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.arrow {
  width: 150px;
  height: 60px;
  display: inline-block;
  position: absolute;
  right: 50px;
  bottom: 50px;
  z-index: 999;
}
.arrow > div {
  position: unset;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 55px;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  border-radius: 50%;
  transition: all 0.5s;
  text-decoration: none;
  color: white;
  border: 1px solid white;
}
.arrow > div::after {
  display: none !important;
}
.arrow > div:hover {
  border: 1px solid #003ab3;
  background-color: #003ab3;
}
.arrow .swiper-button-prev {
  float: left;
}
.arrow .swiper-button-next {
  float: right;
}
.pagination {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 999;
}
.pagination {
  color: #fff; font-size:18px;
}
.pagination > #curPage {
  font-size: 22px;
}
.pagination > .segm {
  margin: 0 3px;
  opacity: 0.3;
}
.pagination > #totalPage {
  opacity: 0.3;
}

@media (max-width:920px){
	
.swiper {
  width: 100%;
  height: 260px;
}
.pagination {
  position: absolute;
  left: 50px;
  bottom: 20px;
  z-index: 999;
}

	.arrow > div {
  position: unset;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 55px;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  border-radius: 50%;
  transition: all 0.5s;
  text-decoration: none;
  color: white;
  border: 1px solid white;
}
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 17px 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.arrow {bottom:-20px; width:100px; right:40px;}
.pagination {left:40px;}
}
