* {
  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 {
  
}

.bread a,.bread p{
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 0.14rem;
    color: #7C7C7C;
}
.bread img{
    width: 0.08rem;
    height: 0.09rem;
    margin: 0 0.08rem;
}

.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.38rem;
  height: 0.38rem;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.page .prev:hover,
.page .next:hover {
  color: #000000 !important;
}

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

.page .prev:hover img,
.page .next:hover img {
  filter: brightness(0) invert(1);
}
.prev,.next{
  width: 0.8rem !important;
  height: 0.38rem !important;
  background: #FFFFFF !important;
  border-radius: 4px 4px 4px 4px !important;
  border: 1px solid #E5E5E5 !important;
}
.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: 83%;
	max-width:16rem;
	margin: auto;
}
.max-width2{
	/*width: 52%;*/
	max-width:10rem;
	margin: auto;
}
.n_banner{
  width: 100%;
  height: 6rem;
}
.n_banner img{
  width: 100%;
  height: 6rem;
}

/* 页码 */
.page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.89rem 0 1.58rem;
}

.page a,
.page span {
  font-family: Montserrat, Montserrat;
	font-weight: 300;
	font-size: 0.16rem;
	color: #333333;
	transition: all 0.3s;
}

.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: 0.38rem;
  height: 0.38rem;
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  font-size: 0.16rem;
  color: #000000;
  line-height: 0.38rem;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.15rem;
}

.pageNum a.active,  
.pageNum a:hover{
  background: #ED7A21;
  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;
}


.about1_1 img{
    width: 100%;
    height: 4.4rem;
    object-fit: cover;
}
.about1_2{
    height: 0.8rem;
}
.about1_2 .max-width2{
    justify-content: space-between;
}
.nav_li{
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 0.14rem;
    color: #333333;
    line-height: 0.8rem;
    border-bottom: 0.05rem solid transparent;
    padding: 0 0.19rem;
  transition: all 0.3s;
}
.nav_li:hover{
  border-bottom: 0.05rem solid #ED7A21;
  transition: all 0.3s;
}
.nav_li.active{
    border-bottom: 0.05rem solid #ED7A21;
}
.text_tit{
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: bold;
  font-size: 0.24rem;
  color: #ED7A21;
  text-align: center;
}
.text_dec1{
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}
.text_dec{
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 500;
  font-size: 0.2rem;
  color: #C1C2C2;
  margin-top: 0.1rem;
  position: relative;
  text-align: center;
  /* text-transform: uppercase; */
}
.text_dec::after{
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0,-50%);
  /*right: -76%;*/
  left: 110%;
  width: 1.18rem;
  height: 0.01rem;
  background: #C1C2C2;
}
.text_dec::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0,-50%);
  /*left: -76%;*/
  right: 110%;
  width: 1.18rem;
  height: 0.01rem;
  background: #C1C2C2;
}
@media only screen and (max-width: 1024px) {
.max-width2{
  width: 92%;
}

.about1_2 .max-width2{
  display: block;
}
.bread a, .bread p{
  font-size: 0.24rem;
}
.bread{
  margin-top: .2rem;
}
.about_nav{
  display: block;
  height: auto;
  overflow: hidden;
}
.nav_li{
  float: left;
  font-size: 0.24rem;
  padding: 0 0.1rem;
}
.about1_2{
  height: auto;
}
.text_tit{
  font-size: 0.26rem;
}
.text_dec{
  font-size: 0.24rem;
}
.page a{
  font-size: 0.24rem;
  margin: 0 0.05rem;
}
.page_wrap{
  padding-top: 1rem;
}
.page p{
  font-size: 0.24rem;
}
.max-width{
  width: 100%;
}

}