* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: .16rem;
}

@font-face {
  font-family: Source Han Sans SC;
  src: url(/font/SourceHanSansSC-Regular.otf);
}

@font-face {
  font-family: MiSans;
  src: url(/font/MiSans-Regular.ttf);
}

@font-face {
  font-family: Poppins;
  src: url(../font/Poppins-Regular.otf);
}

@font-face {
  font-family: MiSans-Heavy;
  src: url(../font/MiSans-Heavy.ttf);
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
}

a {
  display: block;
  outline: 0;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
button,
select {
  border: 0;
  resize: none;
  outline: 0;
  background: transparent;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

/*多行溢出*/
.line1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

/* hover-图片放大1.1 */
.scale-box {
  overflow: hidden;
}

.scale-box .scale-img {
  width: 100%;
  height: 100%;
  transition: all .3s linear;
  cursor: pointer;
  object-fit: cover;
}

.scale-box:hover .scale-img {
  transform: scale(1.1);
}


/* 常用盒子阴影 */
.shadow_box {
  box-shadow: 0 .02rem .12rem 0 rgba(0, 0, 0, 0.1)
}

/* 水波纹效果 */
.btn-ripple {
  vertical-align: bottom;
}

.btn-ripple:not(:disabled):hover {
  opacity: 1;
  position: relative;
  overflow: hidden;
}

.btn-ripple:not(:disabled):hover::before {
  animation: ani_ripple 0.75s;
  z-index: 1;
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 0;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  padding-top: 100%;
  transform: translateX(-50%) translateY(-50%);
}

@keyframes ani_ripple {
  0% {
    background: rgba(0, 0, 0, 0.25);
    transform: translateX(-50%) translateY(-50%) scale(0);
  }

  to {
    background: transparent;
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}

@keyframes d1 {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-15deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(15deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes d2 {
  from {
    transform: rotate(-45deg);
  }

  to {
    transform: rotate(135deg);
  }
}

@keyframes d3 {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes d4 {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes d5 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }

}

@keyframes d6 {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }

}

.banner {
  width: 100%;
  height: 6rem;
  position: relative;
}

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

.banner::after {
  content: '';
  width: 100%;
  height: 2.62rem;
  background: linear-gradient(180deg, #005B9E 0%, rgba(11, 18, 37, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.banner .tit {
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: bold;
  font-size: 0.35rem;
  color: #FFFFFF;
  padding-bottom: .18rem;
  position: absolute;
  top: 50%;
  left: 1.6rem;
  transform: translateY(-50%);
}

.banner .tit::after {
  content: '';
  width: 0.5rem;
  height: 0.05rem;
  background: #FFFFFF;
  position: absolute;
  left: 0;
  bottom: 0;
}

.bread {
  width: 100%;
  height: 1rem;
  background: #F8FBFC;
}

.bread .main {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bread .left {
  display: flex;
  gap: .2rem;
}

.bread .left a {
  min-width: 2.13rem;
  display: flex;
  align-items: center;
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: 400;
  font-size: 0.18rem;
  color: #000000;
}

.bread .left a:hover,
.bread .left a.act {
  font-weight: bold;
  color: #3EB6FF;
}

.bread .left a::before {
  content: '';
  width: .03rem;
  height: .16rem;
  background: #3EB6FF;
  transform: skew(-15deg);
  margin-right: .06rem;
  opacity: 0;
  transition: all .3s;
}

.bread .left a:hover::before,
.bread .left a.act::before {
  opacity: 1;
}

.bread .right {
  display: flex;
}

.bread .right a {
  display: flex;
  align-items: center;
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: 400;
  font-size: 0.16rem;
  color: #CCCCCC;
  transition: all .3s;
}

.bread .right a:hover {
  color: #555555;
}

.bread .right a img {
  width: .13rem;
  height: .13rem;
  object-fit: contain;
  margin-right: .12rem;
}

.bread .right a::after {
  content: '>';
  margin: 0 .03rem;
}

.bread .right a:last-child {
  color: #555555;
}

.bread .right a:last-child::after {
  display: none;
}

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

.main {
  width: 94%;
  max-width: 16rem;
  margin: 0 auto;
}

.back {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.tit1 {
  display: flex;
  align-items: center;
  margin-bottom: .2rem;
}

.tit1 span {
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: 500;
  font-size: 0.25rem;
  color: #5A5A6F;
  line-height: 1;
}

.tit2 {
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: bold;
  font-size: 0.45rem;
  color: #000000;
  line-height: 1;
}

.tit2 span {
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: bold;
  font-size: 0.45rem;
  color: #3EB6FF;
  line-height: 1;
}

.qiu {
  display: flex;
}

.qiu::before {
  content: '';
  width: 0.16rem;
  height: 0.16rem;
  background: #3EB6FF;
  border-radius: 50%;
  animation: d3 2s linear infinite;
}

.qiu::after {
  content: '';
  width: 0.11rem;
  height: 0.11rem;
  background: #B3E1FD;
  border-radius: 50%;
  animation: d4 2s linear infinite reverse;
}

.comMore {
  width: 1.8rem;
  height: .6rem;
  background-image: url(../img/btn.png);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: 400;
  font-size: 0.16rem;
  color: #5A5A6F;
  gap: .26rem;
}

.comMoreImg {
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/moreImg.png);
}

.comMore img {
  transition: all .3s;
}

.comMore:hover img {
  transform: rotate(45deg);
}

.homeContact {
  width: 100%;
  height: 5rem;
  background-image: url(../img/contactBack.png);
  background-attachment: fixed;
  position: relative;
}

.homeContact>img {
  position: absolute;
  top: 1.48rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8.29rem;
  height: 1.24rem;
  object-fit: contain;
}

.call {
  position: absolute;
  width: 3.79rem;
  height: 0.73rem;
  background: linear-gradient(44deg, #FFFFFF 0%, #E5E6EA 100%);
  box-shadow: -0.02rem 0.04rem 0.2rem 0.01rem rgba(255, 255, 255, 0.5);
  bottom: 1.17rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: .73rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .06rem;
}

.call img {
  width: .37rem;
  height: .38rem;
  object-fit: contain;
}

.call span {
  font-family: MiSans, MiSans;
  font-weight: bold;
  font-size: 0.26rem;
  color: #6CC7FF;
}

.page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .05rem;
}

.page a {
  width: 0.3rem;
  height: 0.3rem;
  background: #FFFFFF;
  border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
  border: 0.01rem solid #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page a:hover,
.page a.act {
  background: #0057A9;
  color: #FFFFFF;
}

.page a img {
  width: .07rem;
  height: .13rem;
  object-fit: contain;
}

.page .prev:hover,
.page .next:hover {
  background: #0057A9;
}

.page .next img {
  transform: rotate(180deg);
}

.page .prev:hover img,
.page .next:hover img {
  filter: brightness(0) invert(1);
}

.page a.none {
  border: 0;
}

.page form {
  display: flex;
  align-items: center;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.16rem;
  color: #9A9A9A;
  gap: .03rem;
  margin-left: .07rem
}


.numList {
  display: flex;
}

.numList .item {
  flex: 1;
  padding-left: .25rem;
  display: flex;
  flex-direction: column;
  border-left: .01rem solid rgba(62, 182, 255, .5);
  position: relative;
}

.numList .item::after {
  content: '';
  width: .02rem;
  height: .37rem;
  background: #3EB6FF;
  position: absolute;
  top: 0;
  left: -.01rem;
}

.numList .item div {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.18rem;
  color: #000000;
}

.numList .item .num {
  font-family: Poppins, Poppins;
  font-weight: bold;
  font-size: 0.79rem;
  color: #3EB6FF;
  line-height: 1;
  margin-right: .04rem;
}


.flex_box {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}
.max-width{
	width: 78%;
	max-width:15rem;
	margin: auto;
}
.max-width2{
	width: 89%;
	max-width:17.1rem;
	margin-left: auto;
}
.max-width3{
	width: 79%;
	max-width:15rem;
	margin: auto;
}
.n_banner{
  width: 100%;
  height: 6rem;
  position: relative;
}
.n_banner img{
  width: 100%;
  height: 6rem;
}
.n_banner_c{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  justify-content: space-between;
  width: 100%;
}
.n_banner_li img{
  max-width: 2.14rem;
  max-height: 2.14rem;
}
.n_banner_li p{
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: 400;
  font-size: 0.2rem;
  color: #FFFFFF;
  text-align: center;
  margin-top: 0.3rem;
}
.about{
    height: 5rem;
}
.about img{
    height: 5rem;
    width: 100%;
}
hr{
  border: none;
}
.n_banner_c hr{
  width: 0.94rem;
  height: 0.01rem;
  background: #FFFFFF;
}
.banner2_tit{
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: bold;
  font-size: 0.4rem;
  color: #FFFFFF;
  margin-top: 0.34rem;
}
/* 页码 */
.page {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.02rem;
}

.page a,
.page span {
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: 400;
	font-size: 0.18rem;
	color: #9A9A9A;
	transition: all 0.3s;
}
.page p{
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: 400;
  font-size: 0.18rem;
  color: #9A9A9A;
}
.page input{
  width: 0.54rem;
  height: 0.3rem;
  background: #FFFFFF;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #E6E6E6;
  padding: 0.1rem;
}

.pageNum {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.pageNum span{
	margin: 0 0.17rem 0 0.1rem;
}

.page a {
  width: .4rem;
  height: .4rem;
  background: #FFFFFF;
  border-radius: .02rem;
  border: .01rem solid #E6E6E6;
  box-sizing: border-box;
  margin: 0 .075rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pageNum a.active,  
.pageNum a:hover{
  background: #004EBE;
  color: #FFFFFF;
  transition: all 0.3s;
}

.page a img{
  width: .07rem;
  height: .13rem;
}
.next{
	margin-right: 0.13rem !important;
}

.selectNum {
  width: .54rem;
  height: .3rem;
  border-radius: .02rem;
  border: .01rem solid #E6E6E6;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 .1rem;
  box-sizing: border-box;
  cursor: pointer;
  margin: 0 0.12rem 0 0.1rem;
}


.selectNum input {
  width: 100%;
  cursor: pointer;
  font-family: Montserrat, Montserrat;
	font-weight: 300;
	font-size: 0.16rem;
	color: #9A9A9A;
}

.bread{
  background: #FFFFFF;
  height: 0.8rem;
  display: flex;
}
.bread_home{
  margin-right: 0.05rem;
}
.bread_home img{
  width: 0.2rem;
  height: 0.18rem;
  margin-right: 0.08rem;
}
.bread_home p,.bread_home span{
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: 400;
  font-size: 0.16rem;
  color: #999999 !important;
}
.bread p{
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: 400;
  font-size: 0.16rem;
  color: #999999;
  display: flex;
  margin-left: 0.05rem;
}
.bread span{
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: 400;
  font-size: 0.16rem;
  color: #333333;
  margin-left: 0.1rem;
}

.page_pre{
  position: relative;
}
.page_pre::after {
    content: "<";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: block;
}
.page_next{
  position: relative;
}
.page_next::after {
    content: ">";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: block;
}