@import url("master.css");
@import url("../fonts/iconfont.css");
@import url("roll.css");
@import url("animate.css");

:root {
  /* --color01: #00AAA7; */
    --color01: #1E9BCD;
  --color02: #2A2A3B;
  --bcr1: cubic-bezier(0.4, 0.4, 0, 1);
  --bcr2: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.onHide {
  display: none;
}
.onShow {
  display: block;
}

/*main*/
#main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#main .scrollbar-track-y {
  background-color: #e5e5e5;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 8px;
}

#main .scrollbar-track-y .scrollbar-thumb-y {
  background-color: var(--color01);
  width: 100%;
}

#main .liTxt {
  padding-right: 15px;
  margin-right: -15px;
}

#main .liTxt .scrollbar-track-y {
  width: 3px;
  border-radius: 3px;
}

#main .liTxt .scrollbar-track-y .scrollbar-thumb-y {
  border-radius: 3px;
}

/*font_effect*/
.font_effect>span {
  display: inline-table;
  overflow: hidden;
}

.font_effect>span>font {
  display: block;
  -webkit-animation-duration: 0.6s !important;
  animation-duration: 0.6s !important;
}

/*相册、视频（打开动画）*/
#spotlight {
  background-color: rgba(0, 0, 0, 0.6);
  clip-path: circle(0px at center);
  -webkit-clip-path: circle(0px at center);
}

#spotlight.show {
  clip-path: circle(100% at center);
  -webkit-clip-path: circle(100% at center);
  transition: clip-path ease 1s;
  -webkit-transition: clip-path ease 1s;
}

/*字体间距*/
.zh {
  letter-spacing: 0.075em;
}

/*href_hover*/
/*线型*/
.hoverable .hoverable_txt {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.hoverable .hoverable_txt:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/*Menu*/
.openMenu {
  display: none;
}

.openMenu>a {
  align-items: center;
  outline: none;
}

.openMenu .openMenu_btn {
  width: 24px;
  height: 24px;
}

.openMenu .openMenu_btn span {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  transition: all 0.4s ease;
  background-color: var(--color01);
}

.openMenu .openMenu_btn span:nth-child(1) {
  top: 3px;
  left: 0;
}

.openMenu .openMenu_btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 16px;
  right: 0;
}

.openMenu .openMenu_btn span:nth-child(3) {
  bottom: 3px;
  left: 0;
}

.header.mobileNav .openMenu .openMenu_btn span:nth-child(1) {
  top: 11px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.header.mobileNav .openMenu .openMenu_btn span:nth-child(2) {
  opacity: 0;
  -webkit-opacity: 0;
  visibility: hidden;
}

.header.mobileNav .openMenu .openMenu_btn span:nth-child(3) {
  bottom: 11px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/*页头*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header::before {
  content: "";
  width: 100vw;
  height: .86rem;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.pc-nav {
  height: .86rem;
}

.pc-nav ._logo>a {
  align-items: center;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.pc-nav ._logo>a>div {
  height: 0.72rem;
}

.pc-nav ._logo>a>div img {
  height: 100%;
}

.pc-nav .nav {
  margin-left: auto;
}

.pc-nav .nav>ul{
  display: flex;
}

.pc-nav .nav .nav_a>a {
  color: rgba(51, 51, 51, 1);
  height: .86rem;
  line-height: .86rem;
  padding: 0 0.3rem;
  transition: all 0.3s ease;
  position: relative;
}

/* .pc-nav .nav .nav_a>a:after {
  content: "";
  position: absolute;
  width: .6rem;
  height: .7rem;
  background: url(../images/icon-logo.png) no-repeat center;
  background-size: contain;
  transform: scale(.5);
  right: -.05rem;
  bottom: -.08rem;
  transition: all 0.5s ease;
  z-index: 1;
  opacity: 0;
} */

/* .pc-nav .nav .nav_a:last-of-type > a:after {
  display: none;
}
.pc-nav .nav .nav_a > a .hoverable_txt:after {
  background-color: var(--color01);
  height: 2px;
  border-radius: 2px;
} */
.pc-nav .nav .nav_a>a:hover,
.pc-nav .active>a {
  color: var(--color01) !important;
}
.pc-nav .active a::after,
.pc-nav .nav .nav_a>a:hover::after {
  content: "";
  width: .72rem;
  height: .02rem;
  position: absolute;
  background-color: var(--color01);
  left: 50%;
  transform: translateX(-50%);
  bottom: 0rem;
}

.pc-nav .nav .nav_a>.nav_b {
  position: absolute;
  top: 100%;
  left: 50%;
  padding: 5px 0;
  color: #666;
  min-width: 130px;
  background-color: #fff;
  transform: translateX(-50%) translateY(10px);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  border: 1px solid #e6e6e6;
  transition: all 0.3s ease-in-out;
}

.pc-nav .nav .nav_a>.nav_b:before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 0;
  height: 0px;
  margin-left: -6px;
  border-style: solid;
  border-width: 6px;
  border-color: #fff #fff transparent transparent;
  transform: rotate(-45deg);
  box-shadow: 2px -2px 2px rgba(100, 100, 100, 0.1);
}

.pc-nav .nav .nav_a>.nav_b>.nav_b_list>li>a {
  white-space: nowrap;
  line-height: 38px;
  color: #666;
  transition: all 0.3s ease;
  padding: 0 15px;
}
.pc-nav .nav .hoverable{
  position: relative;
}
.pc-nav .nav .menuList{
  position: absolute;
  min-width: 100%;
    top: 100%;
    left: 50%;
    padding: 5px 0;
    color: #fff;
    background-color: rgba(30,155,205,0.8);
    transform: translateX(-50%) translateY(10px);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    z-index: 5;
    border: 1px solid rgba(30,155,205,0.8);
    transition: all 0.3s ease-in-out;
}
.pc-nav .nav .menuList .menuItem{
  width: 100%;
}
.pc-nav .nav .menuList .menuItem:hover{
  background: var(--color01);
  font-weight: bold;
}
.pc-nav .nav .menuList .menuItem a{
    white-space: nowrap;
    line-height: 38px;
    color: #fff;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    font-size: .15rem;
}
.pc-nav .nav_a:hover .menuList {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
}

/* header tel */
.header_right{
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 15px;
}
.header_right .header__line{
  height: .32rem;
  width: 1px;
  border-right: 1px dashed #DDDDDD;
  margin: 0 .3rem;
}
.header__search i{
  font-size: .26rem;
  cursor: pointer;
}
.header__search i:hover{
  color: var(--color01);
}
.header__tel {
  align-items: center;
  padding: 0 0 0 .6rem;
  line-height: 1;
  font-size: .16rem;
  color: #333333;
}
.header__tel .tel{
  font-size: .24rem;
  color: var(--color01);
}
.header__tel a {
  margin-right: .1rem;
  font-size: .32rem;
  line-height: 1;
  position: relative;
  color: var(--color01);
}
.header.onWhite::before {
  height: .86rem;
}
/* .header.onShow::before {
  height: 5.2rem;
} */
.search_box {
  position: fixed;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 98;
  transition: all 0.5s ease;
  height: 1.33rem;
}
.search_box.active {
  top: 0;
}
.search_box .close {
  display: block;
  width: .3rem;
  height: .3rem;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 2.6%;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
}
.search_box .close.iconfont{
  font-size: .25rem;
  color: rgba(153, 153, 153, 1);
}
.search_box .cent-form {
  position: absolute;
  width: 86%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: .65rem;
  line-height: .65rem;
}
.search_box form {
  display: flex;
  margin-top: 0em;
  unicode-bidi: isolate;
}
.search_box form .input{
  position: relative;
  width: 100%;
}
.search_box form .input .iconfont{
  position: absolute;
  right: .2rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(153, 153, 153, 1);
  font-size: .3rem;
}
.search_box .cent-form .tex {
  border: none;
  font-size: .2rem;
  height: .5rem;
  list-style: none;
  -height: .5rem;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  color: rgba(153, 153, 153, 1);
  padding-left: .2rem;
  background-color: rgba(245, 245, 245, 1);
  border-radius: .4rem;
}
.search_box .cent-form .tex::placeholder {
  color: rgba(153, 153, 153, 1);
}
.search_box .cent-form .sub-butn {
  border: none;
  width: 1.2rem;
  background: none;
  text-align: center;
  height: .65rem;
  font-size: .22rem;
  line-height: .65rem;
  color: rgba(153, 153, 153, 1);
  cursor: pointer;
}

/*首页*/
.Hbanner {
  width: 100%;
  height: 7rem;
  overflow: hidden;
  background-color: #000;
}

.Hbanner .swiper-button-next,
.Hbanner .swiper-button-prev{
  color: var(--color01);
}
.Hbanner .swiper-button-next{
  right: 1.2rem;
}
.Hbanner .swiper-button-prev{
  left: 1.2rem;
}

#Hbanner {
  width: 100%;
  height: 100%;
}

#Hbanner .swiper-slide {
  overflow: hidden;
}

/* #Hbanner .swiper-slide:nth-child(3) {
  transform: rotateY(180deg);
}

#Hbanner .swiper-slide:nth-child(3) .Hbanner_txt ._item {
  text-align: right;
  transform: rotateY(180deg);
}*/
#Hbanner .swiper-slide:nth-child(3) ._product{
  margin-right: 2rem;
}

#Hbanner .swiper-slide>a {
  width: 100%;
  height: 100%;
  display: block;
}

#Hbanner ._bg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: -1;
}

/* #Hbanner ._bg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/cover-bg2.png) no-repeat 0 center;
  background-size: contain;
  top: 0;
  left: 0;
  z-index: 2;
} */

/* #Hbanner ._bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/cover-bg1.png) no-repeat 0 center;
  background-size: contain;
  top: 0;
  left: 0;
  z-index: 3;
} */

#Hbanner ._bg>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#Hbanner .Hbanner_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: '思源黑体';
}
#Hbanner .Hbanner_txt.row{
  width: 83.5%;
}
#Hbanner .Hbanner_txt1{
  color: var(--color02);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#Hbanner .Hbanner_txt2,
#Hbanner .Hbanner_txt3{
  color: #fff;
}
#Hbanner .Hbanner_txt3{
  text-align: center;
  width: 59vw;
  display: flex;
  justify-content: center;
}
/* #Hbanner .Hbanner_txt2 ._item{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
} */
#Hbanner .Hbanner_txt2{
  display: flex;
  justify-content: space-between;
}
#Hbanner .Hbanner_txt2 ._item{
  width: 48%;
  /* display: flex; */
}
#Hbanner .Hbanner_txt ._item ._title {
  font-size: .6rem;
  font-weight: 500;
  line-height: .8rem;
}
#Hbanner .Hbanner_txt ._item ._tps {
  font-size: .26rem;
  font-weight: 700;
  line-height: .35rem;
  display: flex;
  justify-content: space-between;
}
#Hbanner .Hbanner_txt ._item ._tps_right {
  width: 3rem;
}
#Hbanner .Hbanner_txt ._item ._tps_right img{
  width: 100%;
  height: 100%;
}
#Hbanner .Hbanner_txt ._item ._subtitle {
  font-size: .26rem;
  line-height: .37rem;
  margin-top: .3rem;
}
.more_btn1{
  width: 1.8rem;
  height: .53rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: .2rem;
  font-weight: 500;
  z-index: 5;
  border: 2px solid var(--color02);
  color: var(--color02);
}
.more_btn2{
  width: 1.8rem;
  height: .53rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: .2rem;
  font-weight: 500;
  z-index: 5;
  border: 2px solid #fff;
  color: #fff;
}
.more_btn3{
  width: 1.28rem;
  height: .38rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: .16rem;
  font-weight: 500;
  z-index: 5;
  border: 2px solid #fff;
  color: #fff;
}
.more_btn4{
  width: 1.28rem;
  height: .38rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: .16rem;
  font-weight: 500;
  z-index: 5;
  border: 2px solid var(--color02);
  color: var(--color02);
}
#Hbanner .Hbanner_txt .more_btn1,
#Hbanner .Hbanner_txt .more_btn2{
  margin-top: .6rem;
}
#Hbanner .Hbanner_txt3 ._item .more_btn2{
  margin-left: auto;
  margin-right: auto;
}
.more_btn1:hover,
.more_btn2:hover,
.more_btn3:hover,
.more_btn4:hover,
.product_item:hover .more_btn4,
.news_item:hover .more_btn4{
  color: var(--color01);
  border-color: var(--color01);
}
.more_btn1 .iconfont,
.more_btn2 .iconfont{
  font-size: .3rem;
  transform: rotate(180deg);
}
.more_btn3 .iconfont,
.more_btn4 .iconfont{
  font-size: .22rem;
  transform: rotate(180deg);
}

#Hbanner .Hbanner_txt .animated {
  animation-duration: 1s;
}

#Hbanner .Hbanner_txt ._product {
  width: auto;
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#Hbanner .Hbanner_txt ._product img {
  width: auto;
  height: 100%;
}

#Hbanner .Hbanner_nav {
  position: absolute;
  bottom: 0.6rem;
  left: 6.25vw;
  z-index: 10;
  color: #fff;
  align-items: flex-end;
}

#Hbanner .Hbanner_nav ._page {
  line-height: 1;
  margin-right: 0.5rem;
}

#Hbanner .Hbanner_nav ._page span {
  font-size: 0.48rem;
  font-weight: 400;
  font-family: "DingTalkJinBuTi";
}

#Hbanner .Hbanner_nav ._pvn {
  width: auto;
}

#Hbanner .Hbanner_nav ._pvn span {
  margin-right: 0.2rem;
  margin-left: 0;
  background: var(--color02);
  width: 12px;
  height: 12px;
  opacity: 1;
  transition: opacity 0.3s ease;
  outline: none;
}

#Hbanner .Hbanner_nav ._pvn span:last-of-type {
  margin-right: 0;
}

#Hbanner .Hbanner_nav ._pvn span.swiper-pagination-bullet-active {
  background-color: var(--color01);
  position: relative;
}
#Hbanner .Hbanner_nav ._pvn span.swiper-pagination-bullet-active::before {
  position: absolute;
  content: "";
  width: .3rem;
  height: .3rem;
  background-image: url('../images/pagination-active_bg.png');
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: cover;
}

/* banner-scroll */
.banner-scroll{position: absolute;bottom: .3rem;left: 50%;transform: translateX(-50%);z-index: 10;color: var(--color02);font-size:.16rem;display: flex;flex-direction: column;align-items: center;}
.banner-mouse{margin-left: 0 auto;position: relative;width: 18px;height: 26px;margin-bottom: 12px;}
.banner-mouse:before,.banner-mouse:after{position: absolute;left: 0;border: solid 2px var(--color02);content: '';width: 100%}
.banner-mouse:before{border-radius: 9px 9px 0 0;border-bottom: none;height: 9px;top: 0}
.banner-mouse:after{border-radius:0 0 9px 9px;border-top: none;bottom: 0;height: 15px}
.banner-mouse-line{position: absolute;width: 2px;height: 7px;background: var(--color02);left: 50%;top: 6px;margin-left: -1px;animation: mouseLine 1.5s linear infinite;-webkit-animation: mouseLine 1.5s linear infinite;-moz-animation: mouseLine 1.5s linear infinite;-ms-animation: mouseLine 1.5s linear infinite}
@keyframes mouseLine {
  0%{top: 6px}
  100%{top: 14px}
}
@-webkit-keyframes mouseLine {
  0%{top: 6px}
  100%{top: 14px}
}
@-moz-keyframes mouseLine {
  0%{top: 6px}
  100%{top: 14px}
}
@-ms-keyframes mouseLine {
  0%{top: 6px}
  100%{top: 14px}
}

@-webkit-keyframes scaleAnimate {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  to {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }
}

/* 关于我们 */
.Habout {
  width: 100%;
  padding: .36rem 1.23rem 0rem 1.6rem;
  background: linear-gradient(135.79deg, #E1F9FA 0%, #FCFDFF 100%);
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.Habout .about_info{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #000;
  margin-right: .75rem;
  padding: 1.1rem 0;
}
.Habout::before{
  position: absolute;
  content: "";
  width: 2.95rem;
  height: 2.02rem;
  background-image: url('../images/index_point.png');
  background-repeat: no-repeat;
  background-size: cover;
  left: .22rem;
  bottom: -1.34rem;
}
.Habout .about_info .info_title{
  font-size: .44rem;
  line-height: .5rem;
}
.Habout .about_info .info_entitle{
  font-size: .2rem;
  font-weight: 700;
  line-height: .29rem;
}
.Habout .about_info .slogan1{
  font-size: .28rem;
  line-height: .4rem;
  color: var(--color02);
}
.Habout .about_info .slogan2{
  font-size: .44rem;
  font-weight: 500;
  line-height: .64rem;
  color: var(--color02);
}
.Habout .about_info .infos{
  font-size: .18rem;
  line-height: 2;
  color: rgba(102, 102, 102, 1);
  overflow: hidden;
  -webkit-line-clamp: 6;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-align: justify;
  text-indent: 2em;
}
.Habout .about_img{
  min-width: 7.78rem;
  height: 8.92rem;
}
.Habout .about_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 解决方案 */
.Hplan{
  width: 100%;
  padding: .89rem .53rem;
  background-color: #F5F5F5;
}
.Hplan .container{
  width: 100%;
  height: 9.02rem;
  background-image: url('../images/plan_bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 1.2rem 1.45rem 1.5rem 1.07rem;
}
.Hplan .container::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  z-index: 1;
}
.Hplan ._header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(245, 245, 245, 1);
  position: relative;
  z-index: 6;
  margin-bottom: .61rem;
}
.Hplan ._header ._title{
  font-size: .44rem;
  line-height: .64rem;
}
.Hplan ._header ._entitle{
  font-size: .2rem;
  font-weight: 700;
  line-height: .29rem;
}
.Hplan .subtitle{
  font-size: .18rem;
  line-height: .36rem;
  color: rgba(204, 204, 204, 1);
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-align: justify;
  margin-bottom: .58rem;
  position: relative;
  z-index: 2;
  width: 7.83rem;
}
.Hplan .planList{
  height: 3.38rem;
  overflow: visible;
  position: relative;
}
.Hplan .planList .swiper{
  height: 100%;
}
.Hplan .planList .swiper ._img{
  height: 2.26rem;
  width: auto;
}
.Hplan .planList .swiper img{
  width: 100%;
  height: 100%;
}
.Hplan .planList .swiper ._name{
  font-size: .18rem;
  line-height: .26rem;
  color: rgba(245, 245, 245, 1);
  margin-top: .28rem;
}
.Hplan .planList .iconfont{
  color: #fff;
  font-size: .3rem;
  position: absolute;
  z-index: 19;
}
.Hplan .planList .swiper-button-prev{
  left: -.5rem;
  transform: rotate(180deg);
}
.Hplan .planList .swiper-button-next{
  right: -.5rem;
}
.Hplan .planList .swiper-button-prev::after,
.Hplan .planList .swiper-button-next::after{
  content: none;
}

/* 产品中心 */
.Hproduct{
  background-image: url('../images/index-product.webp');
  background-repeat: no-repeat;
  background-size: cover;
  padding: .8rem .58rem 1.09rem .56rem;
}
.index_header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2F333C;
  position: relative;
  z-index: 6;
  margin-bottom: .61rem;
  padding: 0 1.04rem;
}
.index_header ._title{
  font-size: .44rem;
  line-height: .64rem;
}
.index_header ._entitle{
  font-size: .2rem;
  font-weight: 700;
  line-height: .29rem;
}
.index_header ._right{
  /* width: 9.3rem; */
  height: .7rem;
  display: flex;
  align-items: center;
}
.index_header .productNav{
  width: 100%;
  /* align-items: center;
  flex-wrap: wrap; */
}
.index_header ._right ._item{
  margin-right: .7rem;
}
.index_header ._right ._item:last-child{
  margin-right: 0rem;
}
.index_header ._right ._item{
  font-size: .18rem;
  line-height: .24rem;
  line-height: 2;
  color: var(--color02);
  cursor: pointer;
  white-space: nowrap;
}
.index_header ._right ._item::after{
  content: '';
  width: 0%;
  display: block;
  transition: all 0.3s ease;
}
.index_header ._right ._item:hover,
.index_header ._right ._item.active{
  color: var(--color01);
  position: relative;
}
.index_header ._right ._item.active::after,
.index_header ._right ._item:hover::after{
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color01);
  left: 0;
  bottom: -.1rem;
  display: block;
  transition: all 0.3s ease;
}
.Hproduct ._content{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.Hproduct ._content ._left{
  width: calc((100% - .3rem)/2);
  height: 6.28rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: rgba(255, 255, 255, 1);
  background-image: url('../images/product-left_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 1.04rem;
}
/*.Hproduct ._content ._left::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  top: 0;
  left: 0;
}*/
.Hproduct ._content .titles{
  position: relative;
  z-index: 10;
}
.Hproduct ._content ._title{
  font-size: .36rem;
  font-weight: 700;
  line-height: .52rem;
  margin-bottom: .1rem;
}
.Hproduct ._content ._subtitle{
  font-size: .18rem;
  line-height: .26rem;
}
.Hproduct ._content .more_btn3{
  margin-top: .51rem;
}
.Hproduct ._content ._img{
  width: 4.01rem;
  height: 5.35rem;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.Hproduct ._content ._img img{
  width: 100%;
  height: 100%;
}
.Hproduct ._content ._right{
  width: calc((100% - .3rem)/2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.Hproduct ._content ._right a{
  width: 100%;
  display: block;
  height: 3.04rem;
  /* height: calc((100% - .3rem)/2); */
}
.Hproduct ._content ._right a:first-child{
  margin-bottom: 0.2rem;
}
.Hproduct ._content .product_item{
  width: 100%;
  height: 100%;
  background-color: #F5F5F5;
  padding: .27rem .94rem .37rem .84rem;
  display: flex;
  color: var(--color02);
}
.Hproduct .product_item .item_img{
  min-width: 30%;
  max-width: 30%;
  /*height: 100%;*/
  height: 2.5rem;
  margin-right: 1rem;
}
.Hproduct .product_item img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.Hproduct .product_item .item_info{
  width: calc(70% - .5rem);
}
.Hproduct .product_item ._title{
  font-size: .36rem;
  font-weight: 700;
  line-height: .52rem;
  white-space: nowrap;
  text-overflow:ellipsis;
  overflow:hidden;
}
.Hproduct .product_item ._subtitle{
  font-size: .18;
  line-height: .26rem;
  color: rgba(153, 153, 153, 1);
  margin-top: .1rem;
  white-space: nowrap;
  text-overflow:ellipsis;
  overflow:hidden;
}
.Hproduct .product_item .more_btn4{
  margin-top: .51rem;
}

/* 资讯中心 */
.Hnews {
  background-color: #F5F5F5;
  padding: 1.04rem 1.6rem 1.45rem 1.6rem;
  position: relative;
}
.Hnews .index_header{
  padding: 0;
}
.Hnews::after {
  position: absolute;
  content: "";
  width: 2.95rem;
  height: 2.02rem;
  background-image: url('../images/index_point.png');
  background-repeat: no-repeat;
  background-size: cover;
  right: 0;
  bottom: -.8rem;
}
.Hnews .container .listing {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
}
.Hnews .news_item{
  width: calc((100% - 1rem)/3);
  height: 5.86rem;
  margin-right: .5rem;
}
.Hnews .news_item:last-child{
  margin-right: 0;
}
.Hnews .news_item:hover img{
  transform: scale(1.1);
  transition: all .3s ease;
}
.Hnews .news_item .item_img{
  width: 100%;
  height: 3.29rem;
  overflow: hidden;
}
.Hnews .news_item .item_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.Hnews .news_item ._time{
  display: inline-block;
  padding: 0 .05rem;
  background-color: var(--color01);
  color: #fff;
  font-size: .16rem;
  line-height: .21rem;
  margin-top: .17rem;
}
.Hnews .news_item ._title{
  width: 100%;
  font-size: .2rem;
  font-weight: 700;
  color: var(--color02);
  margin-top: .16rem;
  white-space: nowrap;
  text-overflow:ellipsis;
  overflow:hidden;
}
.Hnews .news_item ._desc{
  font-size: .16rem;
  line-height: .38rem;
  color: rgba(102, 102, 102, 1);
  margin-top: .12rem;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.Hnews .news_item .more_btn4{
  margin-top: .46rem;
}

/* 产品中心 */
.Pproduct{
  padding: 1.02rem 1.3rem .8rem 1.3rem;
}
.Pproduct .product_list{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.product_list .product_item{
  width: calc((100% - .6rem)/4);
  margin-right: .2rem;
  padding-top: .2rem;
  display: block;
  background-color: rgba(245, 245, 245, 1);
  margin-bottom: .5rem;
}
.product_list .product_item:nth-child(4n){
  margin-right: 0;
}
.product_list .product_item:hover ._img img{
  transform: scale(1.1);
  transition: all .3s ease-in-out;
}
.product_item ._img{
  width: 100%;
  height: 3.72rem;
  overflow: hidden;
}
.product_item ._img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all .3s ease-in-out;
}
.product_item ._name{
  font-size: .24rem;
  font-weight: 700;
  line-height: .35rem;
  color: rgba(51, 51, 51, 1);
  text-align: center;
  margin-top: .2rem;
}
.product_item .infos{
  padding: .2rem;
}
.product_item ._subname{
  font-size: .21rem;
  line-height: .3rem;
  color: rgba(102, 102, 102, 1);
  text-align: center;
  margin-top: .16rem;
  height: .6rem;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.product_item .more{
  font-size: .18rem;
  line-height: .26rem;
  color: var(--color01);
  text-align: center;
  margin-top: .2rem;
}
.page_num{
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_num ._item{
  width: .37rem;
  height: .37rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .18rem;
  color: rgba(153, 153, 153, 1);
  border: 1px solid rgba(217, 217, 217, 1);
  margin-right: .1rem;
}
.page_num ._item .iconfont{
  font-size: .24rem;
}
.page_num .prev .iconfont{
  display: block;
  transform: scaleX(-1);
}
.page_num ._item.active,
.page_num ._item:hover{
  background-color: var(--color01);
  color: #fff;
}
.page_num a:first-child {
    display: none;
}
.page_num a, .page_num b {
    margin: 5px;
    height: .37rem;
    border-color: #fff;  
    padding: 0 12px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    color: #777;
    line-height: .37rem;
}
.page_num a, .page-end, .page-start {
    display: inline-block;
    height: .37rem;
    line-height: .37rem;
    padding: 0 12px;
    border: solid 1px var(--color01);
    background: #fff;
    color: var(--color01);
    font-size: 14px;
}
.page_num b, .page-this {
    display: inline-block;
    margin: 0 5px;
    padding: 0 12px;
    height: .37rem;
    line-height: .37rem;
    border: solid 1px var(--color01);
    background: var(--color01);
    color: #fff;
    font-size: 14px;
}

.product_detail{
  width: 100%;
   padding: 0 1.6rem;
}
.product_detail .container{
  width: 100%;
  margin: .3rem auto;
}
.product_detail ._header{
  display: flex;
  padding-left: 0.2rem;
  position: relative;
}
.product_detail ._header::before{
  content: "";
  width: 2px;
  height: 60%;
  background-color: var(--color01);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.product_detail ._header ._name{
  font-size: 0.3rem;
  font-weight: 600;
}
.product_detail ._header ._back{
  padding: 0rem 0.2rem;
  color: var(--color01);
  font-size: 0.2rem;
  border: 1px solid var(--color01);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.product_detail ._header ._back i{
  margin-right: 0.1rem;
  font-size: 0.16rem;
  line-height: 1;
}
.product_detail .content{
  display: flex;
  justify-content: space-between;
  margin-top: .5rem;
}
.product_detail .detail_img{
  width: 45%;
  height: 5.4rem;
}
.product_detail .detail_info{
  width: 45%;
  height: 5.4rem;
}
.product_detail .detail_info ._title{
  font-weight: bold;
}
.product_detail .detail_info ._infos{
  color: #666666;
  font-size: .18rem;
  word-spacing: .1rem;
  text-wrap: wrap;
  text-indent: 2em;
  text-align: justify;
  line-height: 1.8;
}
.product_detail .pdetailSwiper{
  height: 100%;
}
.product_detail .pdetailSwiper img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product_detail .pdetailSwiper .swiper-button-next,
.product_detail .pdetailSwiper .swiper-button-prev{
  color: var(--color01);
}
.product_detail .pdetailSwiper .swiper-pagination-bullet-active{
  background-color: var(--color01);
}
.product_detail ._desc{
  margin: .6rem 0;
}
.product_detail ._desc ._title{
  font-size: 0.3rem;
  font-weight: 600;
}
.product_detail ._desc .contents{
  color: #666666;
  font-size: .18rem;
  word-spacing: .1rem;
  text-wrap: wrap;
  text-indent: 2em;
  margin-top: 0.2rem;
  text-align: justify;
  line-height: 1.8;
}

/* 仪器租赁 */
.Llease{
  padding: 1.02rem 1.6rem .8rem 1.6rem;
}
.Llease .lease_list{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.lease_list .lease_item{
  width: calc((100% - 1rem)/3);
  margin-right: .5rem;
  padding: .38rem .4rem .3rem .4rem;
  display: block;
  background-color: rgba(245, 245, 245, 1);
  margin-bottom: .5rem;
  border: 1px solid rgba(217, 217, 217, 1);
  cursor: pointer;
  box-sizing: border-box !important;
  position: relative;
}
.lease_list .lease_item:nth-child(3n){
  margin-right: 0;
}
.lease_item ._img{
  width: 100%;
  height: 4.12rem;
  overflow: hidden;
  border-radius: .2rem .2rem 0 0;
  background-color: #fff;
}
.lease_item ._img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lease_item ._name{
  font-size: .24rem;
  font-weight: 700;
  line-height: .35rem;
  color: rgba(42, 42, 59, 1);
  text-align: center;
  margin-top: .3rem;
}
.lease_item .more{
  width: 50%;
  height: .6rem;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(217, 217, 217, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .18rem;
  color: rgba(102, 102, 102, 1);
  margin: 0 auto;
  margin-top: .37rem;
}
.lease_item .more .iconfont{
  font-size: .2rem;
  margin-right: .16rem;
}
.lease_list .lease_item:hover::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 3px solid var(--color01);
}
.lease_list .lease_item:hover .more{
  background-color: var(--color01);
  color: #fff;
}
.consult_pop{
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.85);
}
.consult_pop .consult_pop_box{
  margin: 0 auto;
  width: 10rem;
  max-width: 90%;
  max-height: 90%;
  background-color: #fff;
  position: relative;
  top: 52%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 2% 0;
}
.consult_pop_box .consult_pop_close{
  position: absolute;
  width: .5rem;
  height: .5rem;
  right: 0;
  bottom: 100%;
  z-index: 100;
  background-color: #e60014;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.consult_pop_box .consult_pop_close i{
  font-size: .3rem;
  color: #fff;
}
.consult_pop_box .consult_pop_con{
  box-sizing: border-box;
  padding: 0 5%;
}
.consult_form{
  /* width: 10rem; */
  padding: .4rem 0;
  margin: 0 auto;
  box-sizing: border-box;
}
.consult_form .title{
  font-size: .24rem;
  line-height: .3475rem;
  color: rgba(51, 51, 51, 1);
  text-align: center;
  box-sizing: border-box;
}
.consult_form .subtitle{
  margin-top: 16px;
  font-size: .16rem;
  line-height: .2317rem;
  color: rgba(102, 102, 102, 1);
  text-align: center;
  box-sizing: border-box;
}
.consult_form .forms{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.consult_form .forms .form_item{
  width: 48%;
  margin-top: .3rem;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.form_item .form_label{
  font-size: .16rem;
  color: rgba(102, 102, 102, 1);
  text-align: left;
  white-space: nowrap;
  margin-right: .4rem;
}
.form_item .form_input,.form_select{
  width: 100%;
}
.form_item .form_input input,
.form_item .form_input textarea,
.form_item .form_select{
  width: 100%;
  padding: 12px 15px;
  background: #F5F7F9;
  border: none;
  color: #5a646c;
  display: block;
  font-size: 0.16rem;
}
.form_item .form_select{
  display: flex;
  justify-content: space-between;
}
.form_item .form_textarea{
  width: 100%;
}
.form_item .form_textarea textarea{
  width: 100%;
  resize: none;
}
.consult_form .sub_btn{
  width: 100%;
  margin-top: .67rem;
}
.consult_form .sub_btn button{
  width: 1.6rem;
  height: .46rem;
  border-radius: 6px;
  background: var(--color02);
  border: 1px solid var(--color02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .16rem;
  margin: 0 auto;
}
.consult_pop .form_item{
  margin-top: .3rem !important;
}

/* 工程案例 */
.Ccase{
  padding: .8rem 1.6rem;
}
.Ccase .case_list{
  padding-bottom: .8rem;
}
.Ccase .case_item{
  display: flex;
  margin-bottom: .5rem;
}
.case_item .case_img{
  width: 34%;
  height: 4.67rem;
  overflow: hidden;
}
.case_item .case_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-in-out;
}
.case_item:hover .case_img img{
  transform: scale(1.1);
  transition: all .3s ease-in-out;
}
.case_item .case_info{
  padding: .4rem .6rem .6rem .6rem;
  width: 66%;
  position: relative;
}
.case_item .case_info ._header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(153, 153, 153, 1);
}
.case_item .case_info ._type{
  font-size: .22rem;
  line-height: .38rem;
}
.case_item .case_info ._time{
  font-size: .2rem;
  line-height: .26rem;
}
.case_item .case_info ._title{
  font-size: .26rem;
  font-weight: 700;
  line-height: .5rem;
  color: rgba(51, 51, 51, 1);
  margin-top: .4rem;
  text-align: justify;
  white-space: nowrap;
  text-overflow:ellipsis;
  overflow:hidden;
}
.case_item .case_info ._content{
  font-size: .22rem;
  line-height: .5rem;
  color: rgba(102, 102, 102, 1);
  text-align: justify;
  margin-top: .2rem;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.case_item .case_info .more_btn{
  width: 1.8rem;
  height: .53rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: .2rem;
  font-weight: 500;
  z-index: 5;
  border: 2px solid rgba(153, 153, 153, 1);
  color: rgba(153, 153, 153, 1);
  margin-top: .66rem;
}
.case_item .case_info .more_btn .iconfont{
  font-size: .3rem;
  transform: rotate(180deg);
}
.case_item:hover ._title{
  color: var(--color01);
}
.case_item:hover .case_info::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 3px solid var(--color01);
  border-right: 3px solid var(--color01);
  border-bottom: 3px solid var(--color01);
}
.case_item:hover .more_btn{
  color: var(--color01);
  border-color: var(--color01);
}

/* 资讯中心 */
.Nnews{
  padding: .6rem 1.6rem;
}
.Nnews .news_list{
  display: flex;
  flex-wrap: wrap;
}
.Nnews .news_item{
  width: calc((100% - .7rem)/3);
  display: block;
  margin-right: .35rem;
  margin-bottom: .5rem;
}
.Nnews .news_item:nth-child(3n){
  margin-right: 0;
}
.Nnews .news_item .item_img{
  width: 100%;
  height: 3.14rem;
  overflow: hidden;
}
.Nnews .news_item .item_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-in-out;
}
.Nnews .news_item:hover .item_img img{
  transform: scale(1.1);
  transition: all .3s ease-in-out;
}
.Nnews .item_info{
  padding: .42rem .29rem .42rem .4rem;
  background-color: rgba(245, 245, 245, 1);
  border-radius: 0 0 .3rem .3rem;
  transition: all .3s ease-in-out;
  position: relative;
}
.Nnews .item_info ._time{
  font-size: .14rem;
  line-height: .2rem;
  color: rgba(153, 153, 153, 1);
}
.Nnews .item_info ._title{
  font-size: .24rem;
  font-weight: 700;
  line-height: .35rem;
  color: rgba(51, 51, 51, 1);
  height: .7rem;
  text-align: justify;
  margin-top: .2rem;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  transition: all .3s ease-in-out;
}
.Nnews .item_info .more{
  font-size: .16rem;
  line-height: .23rem;
  color: rgba(102, 102, 102, 1);
  margin-top: .24rem;
  transition: all .3s ease-in-out;
}
.Nnews .news_item:hover ._title,
.Nnews .news_item:hover .more{
  color: var(--color01);
  transition: all .3s ease-in-out;
}
.Nnews .news_item:hover .item_info{
  border-radius: 0;
  transition: all .3s ease-in-out;
  background-color: #fff;
}
.Nnews .news_item:hover .item_info::after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-left: 3px solid var(--color01);
  border-right: 3px solid var(--color01);
  border-bottom: 3px solid var(--color01);
  transition: all .3s ease-in-out;
}

/* 联系我们 */
.Ccontact .contact_info{
  padding: 1.2rem 1.6rem .9rem 1.6rem;
  display: flex;
}
.contact_info .infos,
.contact_info .contact_form{
  width: 50%;
}
.contact_info .infos{
  padding-right: 2rem;
}
.contact_info .infos ._name{
  font-size: .4rem;
  font-weight: 500;
  line-height: .6rem;
  color: rgba(51, 51, 51, 1);
}
.contact_info .infos .phone{
  display: flex;
  align-items: center;
  margin-top: .5rem;
  margin-bottom: .3rem;
}
.contact_info .infos .phone .iconfont{
  font-size: .7rem;
  color: var(--color01);
  margin-right: .1rem;
}
.contact_info .infos .text ._title{
  font-size: .16rem;
  line-height: .18rem;
  color: rgba(102, 102, 102, 1);
}
.contact_info .infos .text ._num{
  font-size: .6rem;
  font-weight: 700;
  line-height: .6rem;
  color: var(--color01);
  margin-top: .1rem;
}
.contact_info .infos .email{
  font-size: .18rem;
  line-height: .5rem;
  color: rgba(102, 102, 102, 1);
}
.contact_info .infos .codes{
  display: flex;
  margin: .64rem 0;
}
.contact_info .infos .code_item{
  width: 1.24rem;
  margin-right: .47rem;
}
.contact_info .infos .code_item img{
  width: 100%;
}
.contact_info .infos .code_item .code_text{
  margin-top: .11rem;
  font-size: .16rem;
  line-height: .36rem;
  color: rgba(51, 51, 51, 1);
  text-align: center;
}
.contact_info .infos .desc{
  font-size: .16rem;
  line-height: .36rem;
  color: rgba(153, 153, 153, 1);
}
.contact_form .form_header ._title{
  font-size: .34rem;
  font-weight: 700;
  line-height: .5rem;
  color: rgba(51, 51, 51, 1);
}
.contact_form .form_header ._subtitle{
  font-size: .18rem;
  line-height: .26rem;
  color: rgba(102, 102, 102, 1);
}
.contact_form .form_item{
  margin-top: .5rem;
}
.contact_form .form ._name{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact_form .form .form_item input,
.contact_form .form .form_item select{
  width: 100%;
  height: .57rem;
  padding: 0 .23rem;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(217, 217, 217, 1);
}
.contact_form .form .form_item textarea{
  width: 100%;
  padding: .23rem;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(217, 217, 217, 1);
}
.contact_form .form ._name input{
  width: 48%;
  height: .57rem;
  padding: 0 .23rem;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(217, 217, 217, 1);
}
.contact_form .form .btn_box{
  display: flex;
  align-items: center;
}
.contact_form .form .btn_box .form-submit{
  width: 1.62rem;
  height: .57rem;
  line-height: .57rem;
  background: var(--color01);
  font-size: .18rem;
  font-weight: 500;
  line-height: .26rem;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  border: 1px solid var(--color01);
  margin-left: .29rem;
}
.contact_form .form .code_input{
  position: relative;
  width: 100%;
  border: 1px solid rgba(217, 217, 217, 1);
}
.contact_form .form .code_input input{
  padding-right: 1.2rem;
  border: none;
}
.contact_form .form .code_input .img{
  position: absolute;
  /* height: .57rem;
  width: 1rem;*/
  height: 100%;
  width: 1rem;
  opacity: 1;
  top: .01rem;
  right: .01rem;
}
.Ccontact .contact_map{
  width: 100%;
  height: 8rem;
}
.Ccontact .contact_map #map{
  width: 100%;
  height: 100%;
}

/* 底部 */
.footer {
  position: relative;
  overflow: hidden
}
.footer ._cnt{
  background-color: #1E1E1E;
  padding: .5rem 1.6rem;
}
.footer ._cnt .row{
  width: 100%;
  margin: 0;
}
.footer ._cnt a {
  display: inline-block;
}
.footer ._top{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}
.footer ._logo{
  /* width: 2.49rem; */
  height: .86rem;
}
.footer ._logo img{
  width: 100%;
  height: 100%;
}
.footer ._top ._right ._title{
  font-size: .16rem;
  line-height: .23rem;
  color: rgba(255, 255, 255, 1);
}
.footer ._top ._right ._search{
  margin-top: .16rem;
}
.footer ._top ._right ._search form{
  display: flex;
  align-items: center;
}
.footer ._top ._search .input{
  width: 4.4rem;
  height: .6rem;
  padding: .16rem;
  border: none;
}
.footer ._top .btn_search{
  width: 1.2rem;
  height: .6rem;
  background-color: var(--color01);
  color: #fff;
  font-size: .2rem;
  line-height: .29rem;
  color: rgba(255, 255, 255, 1);
  border: 1px solid var(--color01);
}
.footer ._left {
  padding-top: 0.7rem;
  padding-bottom: 0.6rem;
  padding-right: 5rem;
  width: 68%;
}
.footer .content{
  padding: .6rem 0;
  display: flex;
  font-family: '思源黑体';
}
.footer .content .contact{
  margin-right: 1.76rem;
}
.footer .contact ._title{
  font-size: .2rem;
  line-height: .29rem;
  color: rgba(219, 219, 219, 1);
}
.footer .contact ._phone{
  font-size: .5rem;
  font-weight: 700;
  line-height: .72rem;
  color: var(--color01);
}
.footer .contact ._address{
  font-size: .2rem;
  line-height: .29rem;
  color: rgba(219, 219, 219, 1);
  margin-top: .11rem;
}
.footer .contact .codes{
  display: flex;
  margin-top: .52rem;
}
.footer .codes ._item{
  width: 1.3rem;
  margin-right: .2rem;
}
.footer .codes ._item img{
  width: 100%;
}
.footer .codes ._item ._txt{
  font-size: .18rem;
  line-height: .26rem;
  color: rgba(219, 219, 219, 1);
  margin-top: .18rem;
  text-align: center;
}
.footer ._menu{
  flex: 1;
}
.footer ._menu>div {
  justify-content: space-between;
  line-height: 2;
}
.footer ._menu ._item ._a a {
  font-size: .2rem;
  margin-bottom: .15rem;
  color: #fff;
  transition: color .3s ease;
}
.footer ._menu ._item ._b a {
  padding: 6px 0;
  color: #5E5F61;
  transition: opacity .3s ease;
  opacity: .8;
}
.footer ._menu ._item ._b a .hoverable_txt {
  padding: 3px 0;
}
.footer ._menu ._item ._b a .hoverable_txt:after {
  background-color: var(--color01);
}
.footer ._keep {
  overflow: hidden;
  background-color: #000;
}
.footer ._keep ._left{
  padding: .15rem .15rem .15rem 0;
  color: rgba(255,255,255, .8);
  position: relative;
}
.footer ._keep ._right{
  padding: .15rem 0 .15rem .15rem;
  color: #fff;
}
.footer ._keep .flex {
  justify-content: space-between;
  padding: 0 1.6rem;
}

.footer ._keep ._left a {
  color: #fff;
}
.footer ._keep ._right a {
  color: #fff;
}



/* 右侧悬浮咨询框 */
.fixed_server {
  position: fixed;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 1rem;
  transition: all 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99);
}

.fixed_top {
  width: 1.28rem;
  position: absolute;
  right: 0;
  top: 0;
}

.fixed_top img {
  display: block;
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-58%);
  transition: ease 0.5s;
}

.fixed_box {
  padding: 0.1rem 0 0.2rem;
  background: var(--color01);
  border-radius: 0.1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.fixed_box_hd {
  padding: 0 0.05rem;
  color: #fff;
  text-align: center;
}

.fixed_box_hd span {
  font-size: 0.13rem;
  line-height: 1.6;
}

.fixed_box_hd p {
  font-size: 0.12rem;
  line-height: 1.8;
}

.fixed_server .fixed_btn {
  margin: 0.1rem 0.15rem 0;
  padding: 0.08rem;
  display: block;
  position: relative;
  font-size: 0.12rem;
  background-color: #fff;
  border-radius: 0.1rem;
  cursor: pointer;
}

.fixed_server .fixed_btn .iconfont {
  line-height: 1;
  text-align: center;
  color: #666666;
  font-size: 0.24rem;
}

.fixed_server .fixed_btn p {
  font-size: 0.12rem;
  color: #666666;
  line-height: 2;
}

.fixed_server .fixed_btn .fixed_n {
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  color: rgba(26, 45, 122, 1);
  line-height: 1;
  transition: opacity 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99);
}

.fixed_server .weixin_btn .fixed_n {
  position: relative;
}

.fixed_server .fixed_btn .fixed_n > .sec_box {
  position: absolute;
  white-space: nowrap;
  transition: all 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99);
  padding: 15px;
  background-color: #ffffff;
  box-shadow: 0.1rem 0.2rem 0.3rem -0.05rem rgba(0, 103, 171, 0.2);
  opacity: 0;
  pointer-events: none;
  right: 115%;
  top: 50%;
  transform: translate(-30px, -50%);
  font-size: 0.18rem;
  color: #232830;
  line-height: 1.5;
}

.fixed_server .fixed_btn .fixed_n > .sec_box p {
  font-size: 0.18rem;
}

.fixed_server .fixed_btn .fixed_n > .sec_box img {
  display: block;
  width: 150px;
  max-height: 150px;
  max-width: none;
}

.fixed_server .fixed_btn .fixed_n > .sec_box:before {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  content: "";
  display: block;
  background-color: #ffffff;
  box-shadow: 0.1rem 0.2rem 0.3rem -0.05rem rgba(0, 103, 171, 0.2);
}

.fixed_server .fixed_btn .fixed_n:hover > .sec_box {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: all;
}
#back_top {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 888;
  transition: all 0.6s ease;
}
#back_top.onshow {
  display: block;
  opacity: 1;
  -webkit-opacity: 1;
  visibility: visible;
  transform: none;
  -webkit-transform: none;
}
/* 弹窗 */
.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.popup.open{
  opacity: 1;
  visibility: visible
}
.popup.slideFadeIn-enter, .popup.slideFadeIn-leave-to {
  background: transparent
}
.popup.slideFadeIn-enter .body, .popup.slideFadeIn-leave-to .body {
  transform: translateY(.8rem);
  opacity: 0
}
.popup.slideFadeIn-enter .mask, .popup.slideFadeIn-leave-to .mask {
  opacity: 0
}
.popup.slideFadeIn-enter .video-box, .popup.slideFadeIn-leave-to .video-box {
  opacity: 0;
  transform: scale(0)
}
.popup.slideFadeIn-enter .img-box, .popup.slideFadeIn-leave-to .img-box {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0)
}
.popup.slideFadeIn-enter-active, .popup.slideFadeIn-leave-active {
  transition: background .3s ease
}
.popup.slideFadeIn-enter-active .mask, .popup.slideFadeIn-leave-active .mask {
  transition: opacity .3s ease
}
.popup.slideFadeIn-enter-active .body, .popup.slideFadeIn-enter-active .img-box, .popup.slideFadeIn-enter-active .video-box, .popup.slideFadeIn-leave-active .body, .popup.slideFadeIn-leave-active .img-box, .popup.slideFadeIn-leave-active .video-box {
  transition: transform .3s ease, opacity .3s ease
}
.popup .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
  z-index: 999
}
.popup .body {
  position: relative;
  z-index: 999;
  background: #fff;
  transform: translateY(0);
  width: 10.5rem;
  height: 5rem;
  opacity: 1
}
.popup .body .deal {
  font-size: .14rem;
  color: #999;
  display: flex;
  cursor: pointer;
  align-items: center
}
.popup .body .deal.active i b {
  opacity: 1
}
.popup .body .deal i {
  width: 14PX;
  height: 14PX;
  border: 1px solid #ed5400;
  border-radius: 100%;
  margin-right: .05rem;
  display: flex;
  align-items: center;
  justify-content: center
}
.popup .body .deal i b {
  width: 8PX;
  height: 8PX;
  background: #ed5400;
  border-radius: 100%;
  opacity: 0;
  transition: .1s
}
.popup .body .deal span {
  color: #ed5400
}
.popup .body .close {
  width: .18rem;
  height: .18rem;
  display: block;
  position: absolute;
  right: .4rem;
  top: .4rem;
  cursor: pointer;
  transition: .3s;
  z-index: 3;
}
.popup .body .close img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.popup .body .close img:nth-child(1){
  opacity: 1;
}
.popup .body .close:hover {
  transform: rotate(-90deg)
}
.make-appointment .body {
  height: 4.7rem !important;
  background: transparent
}
.make-appointment .body > div {
  display: flex
}
.make-appointment .body > div.height .from {
  height: 5.3rem
}
.make-appointment .body > div .from {
  width: 5.85rem;
  padding: .69rem 0 0 1.1rem;
  background: #fff;
  height: 4.7rem
}
.make-appointment .body > div .from h2 {
  font-size: .32rem;
  font-weight: 400;
  color: #000;
  line-height: 2
}
.make-appointment .body > div .from h3 {
  height: .16rem;
  font-size: .16rem;
  font-weight: 400;
  color: #666;
  margin: .19rem 0 .45rem
}
.make-appointment .body > div .from h3 span {
  color: #f00;
  font-family: Gilroy-Bold
}
.make-appointment .body > div .from ul li {
  width: 3.65rem;
  height: .45rem;
  background: #f6f8f9;
  margin-bottom: .2rem;
  display: flex;
  align-items: center;
  padding: 0 .3rem;
  position: relative
}
.make-appointment .body > div .from ul li i {
  width: .18rem;
  height: .2rem;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAABK0lEQVQokYWQvUoDQRRGB/G30igRBMHGykpEsBMU0lnYSRAhYTPnm2UYSN5gBH0EQcR30EItBFsLG1vFFIpCEMu8gI1i3OwmA9Pcb869544xmQOsATdAF+haa6+ttavZd1loC3iXtBdjHA8hTEiqAh+SNougMaAtaT0n2wBeYoyjfaCkiqTLATZXjUZjOy/wQBwAHgNpX2CtPQBOi0BJ55KqeR0XgA4wnc3SNC1J6jjn5gt1JN2maVr6rSVJMivpTtJhkY2RtCepC3wCFz/3CziSVMmFrLUWePDeL3nv55xzO8BuCKFcq9UmgUeg9Q9KkmRZ0lOz2ZwpsqnX62XgTdJKr+KJc26/cIe/P/CSznoLz61Wa2oYGEJYBF57J94Pg4wxJsY4ArSNMeYbV1+DniKciioAAAAASUVORK5CYII=) no-repeat;
  background-size: 100% auto
}
.make-appointment .body > div .from ul li b {
  position: absolute;
  right: .2rem;
  top: 50%;
  transform: translateY(-30%);
  font-size: .18rem;
  font-weight: 400;
  color: #ed5400
}
.make-appointment .body > div .from ul li input {
  height: 100%;
  background: none;
  border: none;
  color: #000;
  font-size: .18rem;
  font-family: Microsoft Yahei, -apple-system, PingFang SC, Helvetica Neue, STHeiti, Tahoma, Simsun, sans-serif;
  font-weight: 700;
  padding-left: .19rem
}
.make-appointment .body > div .from ul li input::-moz-placeholder {
  font-family: Microsoft Yahei, -apple-system, PingFang SC, Helvetica Neue, STHeiti, Tahoma, Simsun, sans-serif;
  color: #999;
  font-weight: 400
}
.make-appointment .body > div .from ul li input:-ms-input-placeholder {
  font-family: Microsoft Yahei, -apple-system, PingFang SC, Helvetica Neue, STHeiti, Tahoma, Simsun, sans-serif;
  color: #999;
  font-weight: 400
}
.make-appointment .body > div .from ul li input::placeholder {
  font-family: Microsoft Yahei, -apple-system, PingFang SC, Helvetica Neue, STHeiti, Tahoma, Simsun, sans-serif;
  color: #999;
  font-weight: 400
}
.make-appointment .body > div .from ul li:nth-child(2) i {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAABGUlEQVQokY2Su0oDYRCFR4KNWmilhfoCxgsWQioVGzsLWQVhIbC735n9UfMaoul8AAsLX0AClkGx8xYUO0ntU9isIJrgP9VM8c2cORwzM5ME8AkcWGxJaki6b7Va05Ie3b0eBQI3WZbVzczcfQ3oxoIvv+YrSY0oEBitLu4B78BqDHjq7mnV90MIc1FSQwgzQA8Yk3QCHEeBZmaSjoDzNE3HgacQwkosOwJ0JO0XRbEAvElarpbuANfuvjGQLMtyCnguy3IdWARegcPKvE1Jd0A7SZLaHxiYB3qStprN5qSkM0luZpYkSc3d25IuBl7O83wWeCiKIgxR9TH04RDChKRLoPMdwTzPl6qFu/86Jmkb6AJ94PZnor4A5AaBtBA0kzUAAAAASUVORK5CYII=) no-repeat;
  background-size: 100% auto
}
.make-appointment .body > div .from ul li:nth-child(3) i {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAVCAYAAACkCdXRAAAA2UlEQVQ4je2UMQrCQBBFnxKsRNTKzkZQBCGFtVew9Qi26Sw9huAFJJW5gIUnUKystLRTsLBUFmZlHV0JkkLED2Eny9tHWGaSi+P4ymPWQOjszIG+YirASe0RyDoAtlJfFBMBY6mbwExLtMyIVh5m5zusk08L/mX3BCk5nWOWsh5wdt67wPRT2UY1bdn9siFwkNqskxeCUDiTkTB7F7Ay09k1qX1NWhUmAVpAUQNWFr2ZAJuFPN78zgS05dJLWcgKQN137nvvzO2zNLFcR41Tw5V5f8WeLJ/2gRvRbx/rbbBRuQAAAABJRU5ErkJggg==) no-repeat;
  background-size: 100% auto
}
.make-appointment .body > div .from .btns {
  width: 3.65rem;
  display: flex;
  margin-top: .35rem;
  justify-content: space-between
}
.make-appointment .body > div .from .btns div {
  width: 1.68rem;
  height: .45rem
}
.make-appointment .body > div .from .btns div .btn {
  height: .45rem;
  line-height: .45rem
}
.make-appointment .body > div .from .btns div:nth-child(2) .btn {
  height: .45rem;
  line-height: .45rem;
  background: #122133
}
.make-appointment .body > div .right {
  width: 4.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.make-appointment .body > div .right.active {
  background: url(../images/about-bg.png) no-repeat;
  background-size: 100% 100%
}
.make-appointment .body > div .right.active::before{
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(102, 45, 145, 0.88);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.make-appointment .body > div .right > div p {
  font-size: .24rem;
  font-weight: 400;
  color: #fff;
  line-height: .4rem;
  text-align: center
}
.make-appointment .body > div .right > div img {
  width: 1.32rem;
  height: 1.32rem;
  display: block;
  margin: .52rem auto 0
}
.button-wrap {
  width: 100%
}
.button-wrap .btn {
  width: 1.7rem;
  height: .53rem;
  background: var(--color01);
  font-size: .18rem;
  font-weight: 400;
  color: #fff;
  line-height: .53rem;
  border: none;
  text-shadow: 0 0 .3rem rgba(185, 52, 0, .55);
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  text-align: center;
  transition: transform .3s
}
.button-wrap .btn:hover {
  transform: translateY(-.03rem)
}
.button-wrap .btn:after, .button-wrap .btn:before {
  content: "";
  position: absolute;
  border: .02rem solid #fff;
  width: .08rem;
  height: .08rem
}
.button-wrap .btn:after {
  left: .04rem;
  top: .04rem;
  border-right: none;
  border-bottom: none
}
.button-wrap .btn:before {
  right: .04rem;
  bottom: .04rem;
  border-top: none;
  border-left: none
}
.dialog.slideDownward-enter, .dialog.slideDownward-leave-to {
  background: transparent
}
.dialog.slideDownward-enter .hsycms-model, .dialog.slideDownward-leave-to .hsycms-model {
  transform: scale(0)
}
.dialog.slideDownward-enter .hsycms-model-mask, .dialog.slideDownward-leave-to .hsycms-model-mask {
  opacity: 0
}
.dialog.slideDownward-enter-active, .dialog.slideDownward-leave-active {
  transition: background .3s ease
}
.dialog.slideDownward-enter-active .hsycms-model-mask, .dialog.slideDownward-leave-active .hsycms-model-mask {
  transition: opacity .3s ease
}
.dialog.slideDownward-enter-active .hsycms-model, .dialog.slideDownward-leave-active .hsycms-model {
  transition: transform .3s ease
}
.dialog .hsycms-model-mask {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, .3);
  z-index: 10000
}
.dialog .hsycms-model {
  position: fixed;
  z-index: 10001;
  left: 0;
  right: 0;
  top: 50%;
  transform-origin: center;
  max-width: 80%;
  max-height: 80%;
  background: #fff;
  border-radius: 5PX;
  overflow: hidden;
  margin: -43PX auto auto
}
.dialog .hsycms-model.hsycms-model-error, .dialog .hsycms-model.hsycms-model-success {
  padding: 40PX 12PX;
  width: 240PX
}
.dialog .hsycms-model .hsycms-model-text {
  font-size: .18rem;
  text-align: center;
  color: #333;
  line-height: 23PX;
  padding: 0 20PX;
  opacity: 0;
  transform: translateY(10PX);
  -webkit-animation: hsycms-alert-text-data-v-6df8e98d .3s ease forwards;
  animation: hsycms-alert-text-data-v-6df8e98d .3s ease forwards;
  -webkit-animation-delay: .4s;
  animation-delay: .4s
}
.dialog .hsycms-model .hsycms-model-icon {
  padding-bottom: 12PX
}
.dialog .hsycms-model .hsycms-model-icon svg {
  margin: 0 auto;
  display: block
}
.dialog .hsycms-model.hsycms-model-error .hsycms-model-text, .dialog .hsycms-model.hsycms-model-success .hsycms-model-text {
  color: #65b75a;
  padding: 0;
  opacity: 0;
  transform: translateY(10PX);
  -webkit-animation: hsycms-alert-text-data-v-6df8e98d .3s ease forwards;
  animation: hsycms-alert-text-data-v-6df8e98d .3s ease forwards;
  -webkit-animation-delay: .9s;
  animation-delay: .9s
}
.dialog .hsycms-model.hsycms-model-error .hsycms-model-text {
  color: #f34f4f
}
.dialog .hsycms-model .hsycms-model-content {
  padding-top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overflow: hidden auto;
  max-height: 80%;
  font-size: 14PX
}
.dialog .hsycms-model .hsycms-model-btn {
  display: flex;
  align-items: center;
  border-top: 1px solid #f1f1f1;
  justify-content: center;
  margin-top: 20PX;
  opacity: 0;
  -webkit-animation: hsycms-alert-button-data-v-6df8e98d .6s ease forwards;
  animation: hsycms-alert-button-data-v-6df8e98d .6s ease forwards;
  -webkit-animation-delay: .6s;
  animation-delay: .6s
}
.dialog .hsycms-model .hsycms-model-btn button {
  flex: 1;
  color: #999;
  cursor: pointer;
  border: 0;
  background: none;
  padding: 12PX
}
.dialog .hsycms-model .hsycms-model-btn button:last-child {
  color: #f34f4f
}
.dialog .hsycms-model .hsycms-model-btn button.cancel {
  border-right: 1px solid #f1f1f1
}
.dialog .hsycms-model .hsycms-model-btn button:active {
  opacity: .8
}
@-webkit-keyframes hsycms-open-data-v-6df8e98d {
  0% {
    transform: scale(0);
    opacity: 0
  }
  to {
    transform: scale(1);
    opacity: 1
  }
}
@keyframes hsycms-open-data-v-6df8e98d {
  0% {
    transform: scale(0);
    opacity: 0
  }
  to {
    transform: scale(1);
    opacity: 1
  }
}
@-webkit-keyframes hsycms-close-data-v-6df8e98d {
  0% {
    transform: scale(1);
    opacity: 1
  }
  30% {
    transform: scale(1.05);
    opacity: .5
  }
  to {
    transform: scale(.7);
    opacity: 0
  }
}
@keyframes hsycms-close-data-v-6df8e98d {
  0% {
    transform: scale(1);
    opacity: 1
  }
  30% {
    transform: scale(1.05);
    opacity: .5
  }
  to {
    transform: scale(.7);
    opacity: 0
  }
}
.dialog .hsycms-alert-svgcircle {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  -webkit-animation: hsycms-alert-ruand-data-v-6df8e98d .5s ease-in-out forwards;
  animation: hsycms-alert-ruand-data-v-6df8e98d .5s ease-in-out forwards
}
.dialog .hsycms-alert-svgca1, .dialog .hsycms-alert-svggou {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  -webkit-animation: hsycms-alert-tick-data-v-6df8e98d .6s ease-out forwards;
  animation: hsycms-alert-tick-data-v-6df8e98d .6s ease-out forwards;
  -webkit-animation-delay: .75s;
  animation-delay: .75s
}
.dialog .hsycms-alert-svgca2 {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  -webkit-animation: hsycms-alert-tick-data-v-6df8e98d .6s ease-out forwards;
  animation: hsycms-alert-tick-data-v-6df8e98d .6s ease-out forwards;
  -webkit-animation-delay: .85s;
  animation-delay: .85s
}
@-webkit-keyframes hsycms-alert-ruand-data-v-6df8e98d {
  form {
    stroke-dashoffset: 200
  }
  to {
    stroke-dashoffset: 400
  }
}
@keyframes hsycms-alert-ruand-data-v-6df8e98d {
  form {
    stroke-dashoffset: 200
  }
  to {
    stroke-dashoffset: 400
  }
}
@-webkit-keyframes hsycms-alert-tick-data-v-6df8e98d {
  0% {
    stroke-dashoffset: 80
  }
  to {
    stroke-dashoffset: 0
  }
}
@keyframes hsycms-alert-tick-data-v-6df8e98d {
  0% {
    stroke-dashoffset: 80
  }
  to {
    stroke-dashoffset: 0
  }
}
@-webkit-keyframes hsycms-alert-text-data-v-6df8e98d {
  0% {
    transform: translateY(10PX);
    opacity: 0
  }
  to {
    transform: translateY(0);
    opacity: 1
  }
}
@keyframes hsycms-alert-text-data-v-6df8e98d {
  0% {
    transform: translateY(10PX);
    opacity: 0
  }
  to {
    transform: translateY(0);
    opacity: 1
  }
}
@-webkit-keyframes hsycms-alert-button-data-v-6df8e98d {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
@keyframes hsycms-alert-button-data-v-6df8e98d {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
@-webkit-keyframes hsycms-alert-load-data-v-6df8e98d {
  0% {
    transform: translateY(0);
    opacity: 0
  }
  50% {
    transform: translateY(-10PX);
    opacity: 1
  }
  to {
    transform: translateY(0);
    opacity: 0
  }
}
@keyframes hsycms-alert-load-data-v-6df8e98d {
  0% {
    transform: translateY(0);
    opacity: 0
  }
  50% {
    transform: translateY(-10PX);
    opacity: 1
  }
  to {
    transform: translateY(0);
    opacity: 0
  }
}


/* 次页 */
.pageBanner {
  width: 100%;
  overflow: hidden;
  background-color: #ddd;
}

.pageBanner ._box {
  width: 100%;
  height: 100%;
}

.pageBanner ._box>div {
  width: 100%;
  height: 100%;
  position: relative;
}

.pageBanner ._bg {
  width: 100%;
  height: 100%;
  transform: scale(1.15);
  transform-origin: 50% 100%;
  transition: transform 3s cubic-bezier(0.25, 0.74, 0.22, 0.99);
  position: relative;
}

.pageBanner ._bg>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.pageBanner ._bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.pageBanner ._info {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  padding: 0 15.625vw;
  width: 100%;
  color: #fff;
  padding-top: 0.9rem;
}

.pageBanner ._info ._title {
  line-height: 1;
}

.pageBanner.on ._bg {
  transform: none;
}

.pageBanner ._info ._cir {
  text-align: center;
  margin-top: 0.8rem;
}

.pageBanner ._info ._cir span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 5px;
  display: inline-block;
}

.pageBanner.style1 {
  height: 31.2499999vw;
}

.pageBanner.style1 ._info ._title .en {
  font-size: 0.48rem;
  font-weight: 900;
  line-height: .69rem;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  font-family: "思源宋体";
}

.pageBanner.style1 ._info ._title .cn {
  margin-top: -0.45rem;
  font-size: 0.48rem;
  font-weight: 600;
  font-family: "思源宋体";
}

.pageBanner.style1 ._info ._title .sub {
  font-size: 0.28rem;
  line-height: 2.4;
  font-weight: 400;
  letter-spacing: 0.5;
}

.pageBanner.style2 {
  height: 34.895833333333336vw;
}

.pageBanner.style2 ._info ._title {
  text-align: center;
}

.pageBanner.style2 ._info ._title .cn {
  font-size: 0.56rem;
  margin-bottom: 0.2rem;
}

.pageBanner.style2 ._info ._title .en {
  font-size: 0.3rem;
  text-transform: uppercase;
}

.pageBanner.style3 {
  height: 31.25vw;
}
/* 次页子菜单栏 */
.below {
  height: 1rem;
  line-height: 1rem;
  padding: 0 1rem;
  background-color: var(--color01);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.below::-webkit-scrollbar {
  display: none; /* 隐藏滚动条 */
}
.below ._left ul{
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.below ._left ul li a{
  padding: 0 .1rem;
  height: 100%;
  line-height: 1rem;
  text-align: center;
  display: inline-block;
  color: #fff;
}
.below ._left ul li.active a{
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--color01) !important;
  position: relative;
}
.below ._left ul li:hover a{
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--color01);
  position: relative;
  transition: all .3s ease-in-out;
}
/* .below ._left ul li.active a::after,
.below ._left ul li:hover a::after{
  content: "";
  width: 0.1rem;
  height: 0.1rem;
  position: absolute;
  border-radius: .05rem;
  border: 1px solid var(--color01);
  bottom: .14rem;
  left: 50%;
  transform: translateX(-50%);
  transition: all .3s ease-in-out;
} */
.below ._right,
.below ._right a{
  color: rgba(255, 255, 255, 0.5);
}
.below ._right a:hover{
  color: #fff;
}
.below ._right .current{
  color: rgba(255, 255, 255, 1);
}
.below ._right{
  line-height: 1.6;
}



/* 关于我们-走进星图测 */
.Aabout ._info{
  padding: .79rem .3rem 0 1.6rem;
  background-image: url('../images/about_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-between;
}
.Aabout ._info ._left{
  padding-right: .6rem;
}
.Aabout .index_header{
  padding: 0;
}
.Aabout .info_slogan{
  margin-top: .74rem;
}
.Aabout .info_slogan .slogan1{
  font-size: .28rem;
  line-height: .4rem;
  color: var(--color02);
}
.Aabout .info_slogan .slogan2{
  font-size: .44rem;
  font-weight: 500;
  line-height: .64rem;
  color: var(--color02);
}
.Aabout .desc{
  font-size: .18rem;
  line-height: .5rem;
  color: rgba(102, 102, 102, 1);
  text-align: justify;
  /* overflow: hidden;
  -webkit-line-clamp: 9;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical; */
  margin-top: .43rem;
  text-indent: 2em;
}
.Aabout ._info ._right{
  min-width: 51.52%;
  /* height: 8.21rem; */
  position: relative;
  transform: translateY(.2rem);
}
.Aabout ._info ._right::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(30, 155, 205, 0.5);
  right: -.2rem;
  bottom: -.2rem;
  filter: blur(60px);
  z-index: -1;
}
.Aabout ._info ._right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Aabout .bottom{
  width: 100%;
  height: 1.4rem;
  opacity: 1;
  background: rgba(30, 155, 205, 0.05);
}
/* 关于我们-发展历程 */
.Adevelopment{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.Adevelopment ._left{
  width: 44.58%;
  height: 10.8rem;
  background-image: url('../images/development-left.webp');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 1);
  padding: 0.8rem;
}
.Adevelopment ._left ._subtitle{
  font-size: .18rem;
  line-height: .26rem;
}
.Adevelopment ._left ._title{
  font-size: .36rem;
  font-weight: 500;
  line-height: .52rem;
  margin-top: .17rem;
}
.Adevelopment ._right{
  width: 55.42%;
}
.Adevelopment ._header{
  padding: .68rem 1.6rem .82rem .68rem;
  color: rgba(0, 0, 0, 1);
  text-align: right;
}
.Adevelopment ._header ._title{
  font-size: .44rem;
  line-height: .64rem;
}
.Adevelopment ._header ._entitle{
  font-size: .2rem;
  font-weight: 700;
  line-height: .29rem;
}
.Adevelopment ._bottom{
  display: flex;
  justify-content: flex-end;
  padding-right: .5rem;
}
.Adevelopment ._info{
  padding: 0 .5rem;
  display: flex;
  justify-content: space-between;
  /* height: 7.77rem; */
}
.Adevelopment ._info .info_left{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: .42rem;
}
.Adevelopment ._info .year_item{
  display: flex;
  justify-content: space-between;
}
.Adevelopment .year_item .year{
  font-size: .24rem;
  font-weight: 700;
  line-height: .35rem;
  color: var(--color01);
  margin-right: .17rem;
}
.Adevelopment .year_item .content{
  flex: 1;
}
.Adevelopment .year_item .content p{
  font-size: .18rem;
  line-height: .36rem;
  color: rgba(102, 102, 102, 1);
  text-align: justify;
}
.Adevelopment ._info .info_right{
  flex: 1;
  padding-left: .63rem;
  padding-bottom: .27rem;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.Adevelopment .info_right .right_item{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.Adevelopment .right_item ._line{
  display: inline-block;
  width: .16rem;
  height: 2px;
  background-color: rgba(204, 204, 204, 1);
  margin-top: .16rem;
}
.Adevelopment ._bottom .unit{
  width: 1.06rem;
  height: .6rem;
  background: var(--color01);
  font-size: .14rem;
  line-height: .6rem;
  color: rgba(255, 255, 255, 1);
  text-align: center;
}
/* 关于我们-经营范围 */
.Ascope{
  padding: .79rem 1.33rem 1.44rem 1.15rem;
  background-color: rgba(250, 250, 250, 1);
}
.Ascope ._header{
  text-align: center;
}
.Ascope ._header ._title{
  font-size: .44rem;
  line-height: .64rem;
  color: rgba(0, 0, 0, 1);
  margin-bottom: .2rem;
}
.Ascope ._header ._subtitle{
  font-size: .18rem;
  line-height: .36rem;
  color: rgba(102, 102, 102, 1);
}
.Ascope .swipers{
  margin-top: .7rem;
  height: 5.7rem;
}
.Ascope .scopeSwiper{
  margin-top: .7rem;
  height: 5.46rem;
}
.Ascope .scopeSwiper .swiper-slide{
  height: 100%;
}
.scopeSwiper .swiper-slide ._img{
  width: 100%;
  height: 4.16rem;
  overflow: hidden;
  position: relative;
}
.scopeSwiper .swiper-slide ._img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-in-out;
}
.Ascope .scopeSwiper .swiper-slide:hover img{
  transform: scale(1.1);
  transition: all .3s ease-in-out;
}
.scopeSwiper .swiper-slide ._name{
  font-size: .2rem;
  line-height: .36rem;
  color: rgba(102, 102, 102, 1);
  text-align: justify;
  margin-top: .32rem;
  white-space: nowrap;
  text-overflow:ellipsis;
  overflow:hidden;
}
.scopeSwiper ._infos{
  width: 100%;
  height: 4.16rem;
  position: absolute;
  top: -100%;
  left: 0;
  display: flex;
  align-items: flex-end;
  transition: all .3s ease-in-out;
  padding: .46rem .35rem;
  font-size: .18rem;
  line-height: .42rem;
  color: rgba(255, 255, 255, 1);
  text-align: center;
}
.Ascope .scopeSwiper .swiper-slide:hover ._infos{
  background: rgba(30, 155, 205, 0.8);
  transition: all .3s ease-in-out;
  top: 0;
}
.Ascope .swiper-pageation{
  height: .92rem;
  position: relative;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  z-index: 19;
}
.Ascope .swiper-pageation .swiper-scrollbar{
  height: 1px;
  width: 85% !important;
  top: 50%;
  transform: translateY(-50%);
}
.Ascope .swiper-pageation .swiper-scrollbar-drag{
  background-color: var(--color01);
}
.swiper-pageation .swiper-button-next:after,
.swiper-pageation .swiper-button-prev:after{
  content: none;
}
.swiper-pageation .swiper-btn{
  width: 2rem;
  height: 100%;
  position: absolute;
  right: 0;
}
.swiper-pageation .swiper-btn .iconfont{
  font-size: .9rem;
  color: rgba(126, 126, 126, 1);
}
.swiper-pageation .swiper-btn .swiper-button-prev{
  transform: scaleX(-1);
  position: absolute;
  left: .5rem;
}
/* 关于我们-荣誉证书 */
.Ahonor{
  width: 100%;
  background: url('../images/honor-bg.webp') no-repeat 100% 100%;
  background-size: 100% 100%;
}
.tops{
  text-align: center;
  color: rgba(0, 0, 0, 1);
  font-family: '思源黑体';
  padding-top: .7rem;
  padding-bottom: .8rem;
}
.tops ._title{
  font-size: .44rem;
  line-height: .64rem;
}
.tops ._entitle{
  font-size: .2rem;
  font-weight: 700;
  line-height: .29rem;
}
.Ahonor .honorary_list{
  width: 100%;
  height: 7.5rem;
  position: relative;
  overflow: hidden;
}
.honorary_list .top_right{
  width: 56%;
  position: absolute;
  right: 0;
}
.honorary_list .top_right .swiper{
  height: 2.13rem;
  position: relative;
}
.honorary_list .top_right .swiper-slide {
  width: 2rem;
  height: 1.93rem;
}
.honorary_list .top_right .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.honorary_list .top_right .right_footer{
  width: 100%;
  height: .4rem;
  background-color: #fff;
  position: relative;
}
.honorary_list .top_right .right_footer::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 1.39rem;
  top: .4rem;
  transform: skewX(40deg) translateX(.57rem);
  background: linear-gradient(180deg, rgba(199, 199, 199, 0.3) 0%, rgba(199, 199, 199, 0) 100%);
}
.honorary_list .bottom_left{
  width: 56%;
  position: absolute;
  left: 0;
  top: 3.5rem;
}
.honorary_list .bottom_left .swiper{
  height: 2.13rem;
  position: relative;
}
.honorary_list .bottom_left .swiper-slide {
  width: 2rem;
  height: 1.93rem;
}
.honorary_list .bottom_left .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.honorary_list .bottom_left .left_footer{
  width: 100%;
  height: .4rem;
  background-color: #fff;
  position: relative;
}
.honorary_list .bottom_left .left_footer::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 1.39rem;
  top: .4rem;
  transform: skewX(-40deg) translateX(-.57rem);
  background: linear-gradient(180deg, rgba(199, 199, 199, 0.3) 0%, rgba(199, 199, 199, 0) 100%);
}
/* 关于我们-部门团队 */
.Ateam{
  width: 100%;
  background: url('../images/team-bg.jpg') no-repeat center;
  background-size: 100% 100%;
  padding: 1rem 1.6rem 1.07rem 1.6rem;
}
.team{
  width: 100%;
  padding: 1rem 1.6rem 1.07rem 1.6rem;
}
.top{
  width: 100%;
  padding-top: .46rem;
  padding-bottom: .9rem;
  text-align: center;
}
.top ._title-en{
  font-size: .63rem;
  font-weight: 700;
  color: rgba(239, 242, 248, 1);
  z-index: -1;
}
.top .white{
  color: rgba(255, 255, 255, 0.5);
}
.top ._title-cn{
  font-size: .4rem;
  font-weight: 700;
  line-height: .5792rem;
  color: rgba(0, 0, 0, 1);
  position: relative;
  z-index: 1;
  margin-top: -0.4rem;
}
.top .subtitle{
  font-size: .18rem;
  line-height: .2606rem;
  color: rgba(102, 102, 102, 1);
}
.team .list{
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.team .list .team_item{
  width: calc((100% - 20px *2) / 3);
  margin-bottom: 20px;
}
.team .list .team_item:last-child{
  margin-left: 20px;
  margin-right: auto;
}
.team .list .team_item:last-child.team_item:nth-child(3n){
  margin-left: 0;
  margin-right: 0;
}
.Ateam .photo{
  height: 3.64rem;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.Ateam .photo img,
.team .photo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all .3s ease-in-out;
}
.Ateam .photo:hover img,
.team .photo:hover img{
  -webkit-transform: scale3d(1.2, 1.2, 1.2);
  transform: scale3d(1.2, 1.2, 1.2);
  transition: all .3s ease-in-out;
}
.team .info{
  padding: .32rem .42rem;
  background-color: #f5f5f5;
}
.team .name{
  font-size: .34rem;
  line-height: .4923rem;
  color: rgba(51, 51, 51, 1);
}
.team .en_name{
  font-size: .18rem;
  font-weight: 500;
}
.team .position{
  font-size: .2rem;
  line-height: .2896rem;
  color: rgba(102, 102, 102, 1);
}
.team .desc{
  font-size: .2rem;
  line-height: .2896rem;
  color: rgba(102, 102, 102, 1);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.index_team .list{
  width: 100%;
  overflow: hidden;
}
.Ateam .team_swiper{
  overflow: hidden;
}
.team_swiper .more i{
  font-size: .16rem;
}
.index_team .list .team_swiper{
  position: relative;
}
.team_swiper .swiper-slide .photo{
  height: 3.64rem;
  width: 100%;
  overflow: hidden;
}
.team_swiper .swiper-slide .photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 10%;
}
.team_swiper .swiper-slide .info{
  padding: .32rem .42rem;
  background-color: #f5f5f5;
  transition: all .3s ease-in-out;
}
.team_swiper .swiper-slide .name{
  font-size: .34rem;
  line-height: .4923rem;
  color: rgba(51, 51, 51, 1);
}
.team_swiper .swiper-slide .en_name{
  font-size: .18rem;
  font-weight: 500;
}
.team_swiper .swiper-slide .position{
  font-size: .2rem;
  line-height: .2896rem;
  color: rgba(102, 102, 102, 1);
}
.team_swiper .swiper-slide .desc{
  font-size: .2rem;
  line-height: .2896rem;
  color: rgba(102, 102, 102, 1);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.team_swiper .more{
  color: rgba(102, 102, 102, 1);
}
.team_swiper .more i{
  font-size: .16rem;
}
.team_swiper .swiper-slide:hover .photo img{
  transform: scale(1.1);
  transition: all .3s ease-in-out;
}
.team_swiper .swiper-slide:hover .info{
  background-color: var(--color01);
  transition: all .3s ease-in-out;
}
.team_swiper .swiper-slide:hover .name{
  color: #fff;
  transition: all .3s ease-in-out;
}
.team_swiper .swiper-slide:hover .position,
.team_swiper .swiper-slide:hover .desc{
  color: rgba(204, 238, 237, 1);
  transition: all .3s ease-in-out;
}
.team_swiper .swiper-slide:hover .more{
  color: rgba(102, 204, 202, 1);
  transition: all .3s ease-in-out;
}
.team_detail {
  width: 100%;
  padding: 1rem 8.3vw 1.36rem 8.3vw;
}
.team_detail .details {
  width: 100%;
  border: 1px solid rgba(243, 243, 243, 1);
  display: flex;
  justify-content: space-between;
  padding: 0.3rem;
}
.team_detail .photo {
  width: 33.33%;
}
.team_detail .photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.team_detail .infos {
  width: 66.67%;
  padding-left: 20px;
}
.team_detail .infos .infos_title{
  font-size: .18rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.team_detail .infos p {
  margin-bottom: 0.8em;
  line-height: 1.6em !important;
  text-align: justify;
  font-family: '思源黑体';
  text-align: justify;
  color: #000000;
  font-size: 16px;
}
.team_detail .infos p span{
  font-family: '思源黑体';
}
.pre_next {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0.3rem;
}

.pre_next a {
  color: #333;
  font-size: 14px;
}
.pre_next a {
  color: var(--color01);
}


/* 新闻详情 */
.newsDel {
  padding-bottom: 7.8125vw;
  padding-top: 0.4rem;
  background-color: #f0f4f7;
}

.newsDel ._place {
  line-height: 1;
}

.newsDel ._place span,
.newsDel ._place a {
  color: #666;
  transition: color 0.3s ease;
}

.newsDel ._cnt {
  margin-top: 0.5rem;
}

.newsDel ._info {
  background-color: #fff;
  padding: 3.125vw;
  margin-right: 0.2rem;
  padding-bottom: 4.166666666666667vw;
}

.newsDel ._info ._top {
  border-bottom: 1px solid #eee;
  padding-bottom: 0.2rem;
}

.newsDel ._info ._top ._title {
  font-size: 0.36rem;
  margin-bottom: 0.25rem;
}

.newsDel ._info ._top ._line {
  color: #999;
}

.newsDel ._sell {
  width: 4.9rem;
}

.newsDel ._sell ._cont{
  padding: 3.125vw 0.3rem;
  background-color: #fff;
}

.newsDel ._sell ._title {
  font-weight: bold;
  color: var(--color01);
}

.newsDel ._sell ._list {
  margin-top: 0.3rem;
}

.newsDel ._sell ._list ._item>a {
  border-bottom: 1px solid #ddd;
  position: relative;
}

.newsDel ._sell ._list ._item>a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 1px solid var(--color01);
  transition: width 0.6s ease;
}

.newsDel ._sell ._list ._item ._img {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.20608899297423%;
  overflow: hidden;
}

.newsDel ._sell ._list ._item ._img>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.newsDel ._sell ._list ._item ._txt {
  padding: 0.4rem 0;
  line-height: 1;
}

.newsDel ._sell ._list ._item ._txt ._name {
  color: #333;
  margin-bottom: 0.2rem;
  transition: color 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newsDel ._sell ._list ._item ._txt ._time {
  color: #999;
}

.newsDel ._info ._contin {
  padding-top: 0.4rem;
  padding-bottom: 0.6rem;
  color: #666;
  line-height: 2.5;
}
.newsDel ._info ._contin img{
  max-width: 100%;
  height: auto !important;
  display: inline-block;
}

.newsDel ._info ._skip {
  align-items: center;
  padding-top: 0.6rem;
  border-top: 1px solid #eee;
}

.newsDel ._info ._skip ._jump {
  padding-right: 0.2rem;
  text-align: justify;
}

.newsDel ._info ._skip ._jump>div {
  margin-bottom: 0.15rem;
}

.newsDel ._info ._skip ._jump a {
  transition: color 0.3s ease;
  color: #666;
  /* display: inline-block; */
}

.newsDel ._info ._skip ._jump>div:last-child {
  margin-bottom: 0;
}

.newsDel ._info ._skip ._back {
  margin-left: auto;
}

.newsDel ._info ._skip ._back>a {
  width: 0.6rem;
  height: 0.6rem;
  line-height: 0.6rem;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  z-index: 2;
  position: relative;
  transition: box-shadow 0.5s var(--bcr1);
  background-color: var(--color01);
  font-weight: bold;
}

.newsDel ._info ._skip ._back>a:before,
.newsDel ._info ._skip ._back>a:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s var(--bcr1);
  background-color: var(--color01);
}

.newsDel ._info ._skip ._back>a:before {
  z-index: -1;
  opacity: 0.2;
}

.newsDel ._info ._skip ._back>a:after {
  z-index: -2;
  opacity: 0.1;
}

/*富文本强制定义*/
.richText {
  text-align: justify;
}

.richText p,
.richText span,
.richText em {
  font-size: 16px !important;
}

.richText video {
  max-width: 100%;
  display: inline-block;
}

/* 搜索页 */
.search_container{
  margin: 1rem auto;
  padding: 0 1.6rem;
}
.search_container ._header{
  background-color: var(--color01);
  padding: .32rem;
  color: #fff;
}
.search_container ._result{
  font-size: .3rem;
  font-weight: 600;
  margin-bottom: .2rem;
}
.search_container ._subtitle{
  font-size: .2rem;
}
.search_container ._list ._item{
  display: block;
  padding: .4rem 0;
  color: #333;
  border-bottom: 1px solid rgba(241, 241, 241, 1);
}
.search_container ._item ._title{
  font-size: 1.5em;
  white-space: nowrap;
  text-overflow:ellipsis;
  overflow:hidden;
}
.search_container ._item .smalltext{
  white-space: nowrap;
  text-overflow:ellipsis;
  overflow:hidden;
}
.search_container ._list ._item:hover {
  color: var(--color01);
}

/*电端加上鼠标效果/动画 */
@media screen and (min-width: 1025px) {

  .rollAni,
  .font_effect {
    visibility: hidden;
  }

  .hoverable:hover .hoverable_txt:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  .pc-nav .operation ._item:hover {
    background-color: rgba(0, 0, 0, 0.2);
  }

  .pc-nav .language .language_item a:hover {
    background-color: #eee;
    color: var(--color01);
  }

  .pc-nav .operation ._item:hover .search {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .pc-nav .search ._dt>button:hover {
    color: var(--color01);
  }

  .menu ._list ._item ._b li a:hover {
    color: var(--color01);
  }

  .header .menu ._list ._item ._a,
  .header .menu ._list ._item ._b li {
    animation-name: fadeInUpSmall;
    animation-duration: 0.65s;
    animation-fill-mode: both;
  }

  .header .menu ._list ._item ._a {
    animation-delay: 0.2s;
  }

  .header .menu ._list ._item ._b li:nth-child(1) {
    animation-delay: 0.3s;
  }

  .header .menu ._list ._item ._b li:nth-child(2) {
    animation-delay: 0.4s;
  }

  .header .menu ._list ._item ._b li:nth-child(3) {
    animation-delay: 0.5s;
  }

  .header .menu ._list ._item ._b li:nth-child(4) {
    animation-delay: 0.6s;
  }

  .header .menu ._list ._item ._b li:nth-child(5) {
    animation-delay: 0.7s;
  }

  .header .menu ._list ._item ._b li:nth-child(6) {
    animation-delay: 0.8s;
  }

  .header .menu ._list ._item ._b li:nth-child(7) {
    animation-delay: 0.9s;
  }

  .header .menu ._list ._item ._b li:nth-child(8) {
    animation-delay: 1s;
  }

  .HprojectInfo ._item ._column ._li a:hover:before {
    background-color: #fff;
  }

  .clock ._list ._li>div>a:hover ._icon:after {
    opacity: 1;
  }

  .footer ._menu ._item ._b a:hover {
    opacity: 1;
  }

  .footer ._link ._list li a:hover {
    opacity: 1;
  }

  .footer ._keep a:hover {
    text-decoration: underline;
  }

  .newsDel ._sell ._list ._item>a:hover ._img>img {
    transform: scale(1.1);
  }

  .newsDel ._sell ._list ._item>a:hover ._txt ._name {
    color: var(--color01);
  }

  .newsDel ._sell ._list ._item>a:hover:after {
    width: 100%;
  }

  .newsDel ._info ._skip ._back>a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .newsDel ._info ._skip ._back>a:hover:before {
    transform: scale(1.4);
  }

  .newsDel ._info ._skip ._back>a:hover:after {
    transform: scale(1.8);
  }

  .newsDel ._info ._skip ._jump a:hover {
    color: var(--color01);
  }

  .newsDel ._place a:hover {
    color: var(--color01);
  }

  .pc-nav .nav .nav_a:hover .nav_b {
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
  }

  .pc-nav .nav .nav_a>.nav_b>.nav_b_list>li>a:hover {
    color: var(--color01);
    background-color: #f5f5f5;
  }
}

@media screen and (max-width: 1600px) {

  .richText em {
    font-size: 15px !important;
  }

  .richText p,
  .richText span,
  .richText em {
    font-size: 16px !important;
  }

  .project ._item>div {
    height: 366px;
  }

  #recruitList ._info ._txt>div p,
  #recruitList ._info ._txt>div span,
  #recruitList ._info ._txt>div em {
    font-size: 15px !important;
  }
}

@media screen and (max-width: 1440px) {

  .richText em {
    font-size: 14px !important;
  }

  .richText p,
  .richText span,
  .richText em {
    font-size: 14px !important;
  }

  .header.onShow .menu {
    height: 5.8rem;
  }

  .menu ._box {
    height: 5.8rem;
  }

  .pc-nav .search ._dd>input {
    height: 0.5rem;
  }

  .pc-nav .search ._dt>button {
    width: 0.5rem;
    height: 0.5rem;
    line-height: 0.5rem;
  }

  .row {
    width: 90%;
  }

  #recruitList ._info ._txt>div p,
  #recruitList ._info ._txt>div span,
  #recruitList ._info ._txt>div em {
    font-size: 14px !important;
  }
}

@media screen and (max-width: 1280px) {

  .pc-nav .nav .nav_a>a{
    padding: 0 .25rem;
  }

  .richText em {
    font-size: 13px !important;
  }

  .richText p,
  .richText span,
  .richText em {
    font-size: 13px !important;
  }

  .welfare ._hot ._item>span {
    padding: 0 0.2rem;
  }

  .Hnews{
    padding: 1rem .5rem;
  }
}

@media screen and (max-width: 1024px) {

  #main {
    position: initial;
  }

  .header .menu {
    display: none;
  }

  .light_open {
    display: none;
  }

  .light {
    display: none;
  }

  .openMenu {
    display: flex;
    align-items: center;
  }

  .header.mobileNav .pc-nav>.nav {
    transform: none;
  }

  .pc-nav .operation {
    margin-left: auto;
  }

  .pc-nav {
    width: 100%;
    height: 50px;
    justify-content: space-between;
  }
  .header::before{
    height: 50px;
  }

  .pc-nav ._logo>a>div {
    height: 40px;
  }

  .pc-nav ._logo>a {
    padding: 0 5vw;
  }

  .pc-nav>.nav {
    position: fixed;
    background-color: #fff;
    width: 100%;
    justify-content: center;
    z-index: -1;
    text-align: center;
    top: 50px;
    bottom: 0;
    display: flex;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.65s ease;
  }
  .pc-nav .nav>ul{
    flex-direction: column;
  }

  .pc-nav>.nav .nav_a {
    float: none;
  }

  .pc-nav>.nav .nav_a>a:after {
    display: none;
  }
  .pc-nav .nav .menuList{
     display: none;
  }

  .header__tel{
    margin-left: auto;
    padding-left: 0;
    font-size: .266rem;
  }
  .header__tel a{
    font-size: .42rem;
  }
  .header__tel span{
    display: none;
  }

  .openMenu {
    padding: 0 0.35rem;
  }

  .pc-nav .nav .nav_a>a {
    height: 1rem;
    line-height: 1rem;
    padding: 0;
    font-size: 16px;
    color: #333;
  }
  .Hbanner{
    margin-top: 50px;
    height: 32vh;
  }
  #Hbanner .swiper-slide:nth-child(3){
    transform: none;
  }
  #Hbanner .swiper-slide:nth-child(3) .Hbanner_txt ._item{
    text-align: left;
    transform: none;
  }
  #Hbanner .Hbanner_txt ._item ._title{
    font-size: .56rem;
  }
  #Hbanner .Hbanner_txt ._item ._tps{
    font-size: .28rem;
  }
  .Habout{
    padding: 1.2rem 0;
  }

  .footer ._cnt>div {
    flex-wrap: wrap;
  }

  .footer ._address {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0.7rem;
  }

  .footer ._left {
    display: none;
  }

  .footer ._top ._logo>a {
    height: 50px;
  }

  .footer ._code .item>a {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .footer ._code .item .follow .follow_text {
    width: 100px;
  }

  .footer ._code .item .follow .follow_text .follow_name {
    font-size: 16px;
  }
  .footer ._keep .row{
    width: 100%;
    flex-direction: column;
  }
  .footer ._keep ._left{
    padding: 0;
    width: 100%;
    display: block;
    text-align: center;
    border-right: none;
  }
  .footer ._keep ._left::before{
    display: none;
  }
  .footer ._keep ._right{
    margin-left: 0;
    padding: 0;
    text-align: center;
  }
  .fixed_server{
    display: none;
  }

  .pageBanner.style1 {
    height: 50vw;
  }

  .pageBanner ._info {
    padding: 0 5%;
  }

  .pageBanner ._info ._mouse {
    display: none;
  }

  .below .below_l {
    display: none;
  }

  .below {
    height: 1rem;
    line-height: 1rem;
    padding: 0;
    /* flex-direction: column; */
  }
  .below ._left{
    width: 100%;
  }
  .below ._right, .below ._right a{
    
  }

  .style {
    padding: 1.2rem 0;
  }

  .newsDel ._sell {
    display: none;
  }

  .newsDel ._info {
    margin-right: 0;
  }

  .newsDel {
    padding-top: 0.5rem;
    padding-bottom: 1.2rem;
  }

  .pc-nav .nav .nav_a>.nav_b {
    display: none;
  }
  .make-appointment .body{
    height: auto!important;
  }
  .make-appointment .body > div .from{
    margin: 0 auto;
    padding: .4rem .5rem .6rem .5rem;
    width: 6.9rem;
    border-radius: .2rem;
  }
  .make-appointment .body > div.height .from{
    height: auto;
  }
  .make-appointment .body > div .from h2{
    text-align: center;
    font-size: .46rem;
    font-weight: bold;
  }
  .make-appointment .body > div .from ul li{
    width: 100%;
    height: .73rem;
    padding: 0 .3rem;
  }
  .make-appointment .body > div .from ul li i{
    width: .24rem;
    height: .24rem;
  }
  .make-appointment .body > div .from ul li input{
    font-size: .24rem;
  }
  .make-appointment .body > div .from .btns{
    width: 100%;
    justify-content: center;
  }
  .make-appointment .body > div .from .btns div{
    width: 2.16rem;
    height: .72rem;
    line-height: .72rem;
    text-align: center;
  }
  .make-appointment .body > div .from .btns div .btn{
    font-size: .24rem;
    height: 100%;
    line-height: .72rem;
  }
  .make-appointment .body > div .from .btns div:nth-child(2) .btn{
    margin-left: .2rem;
    height: 100%;
  }
  .button-wrap .btn{
    width: 100%;
    height: 100%;
  }
  .make-appointment .body > div .right.active{
    display: none;
  }
  .popup .body .close{
    width: .24rem;
    height: .24rem;
    right: .68rem;
    top: .29rem;
  }
  .popup .body .close img:nth-child(1){
    opacity: 0;
  }
  .popup .body .close img:nth-child(2){
    opacity: 1;
  }
  .mobile{
    display: block;
  }


  /* 首页 */
  #Hbanner .Hbanner_txt ._product{
    width: 6rem;
    height: 4.15rem;
  }
  .index_header{
    padding: 0;
  }
  .index_header ._right ._item{
    font-size: .25rem;
  }
  .index_header ._right {
    width: 100%;
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .Hproduct ._content .product_item{
    padding: .3rem;
  }
  .Hproduct .product_item .item_img{
    margin-right: .5rem;
  }
  .Adevelopment ._header{
    padding: .5rem 1.6rem;
  }

  /* 产品中心 */
  .Pproduct,
  .Llease{
    padding: 1rem .5rem;
  }
  .Nnews{
    padding: .6rem .3rem;
  }
  .Ccontact .contact_info{
    padding: 1rem .3rem;
  }
  .contact_info .infos{
    padding-right: .8rem;
  }
}

@media screen and (max-width: 768px) {

  .richText em {
    font-size: 14px !important;
  }

  .richText em {
    font-size: 14px !important;
  }

  #Hbanner .Hbanner_nav ._pvn span {
    width: 6px;
    height: 6px;
  }

  .footer ._menu>div {
    flex-wrap: wrap;
  }

  .footer ._menu>div ._item {
    width: 50%;
    margin-bottom: 0.6rem;
  }

  .footer ._top ._mail {
    display: none;
  }

  .footer ._top ._logo {
    margin-right: 0;
    height: 1.2rem;
  }

  .footer ._link ._list li {
    padding: 4px 0;
  }

  .footer ._keep {
    padding: 0.2rem 5%;
  }
  .footer .codes ._item ._txt{
    font-size: .28rem;
  }

  .contact ._tHd ._img {
    margin-left: 0;
    width: 100%;
    height: 1.4rem;
  }

  .contact ._tHd ._img img {
    margin: 0 auto;
  }

  .contact ._tHd ._img ._tName {
    padding-top: 30px;
    width: 100%;
    left: 0;
    font-size: .48rem;
    line-height: 2;
    justify-content: center;
    text-align: center;
  }

  .contact ._tHd ._slogan {
    display: none;
  }

  .contact ._list {
    flex-direction: column;
  }

  .contact ._list ._item {
    margin-right: 0;
    margin-bottom: .3rem;
    width: 100%;
    box-shadow: 0 0 .3rem rgba(102, 102, 102, .15);
  }

  .newsDel ._info {
    padding: 0.5rem 0.4rem;
  }

  .newsDel ._info ._contin img {
    max-width: 100%;
    width: 100%;
    height: auto !important;
  }

  .newsDel ._info ._skip ._back {
    display: none;
  }

  .newsDel ._info ._skip ._jump {
    padding-right: 0;
  }


  /* 首页 */
  #Hbanner .Hbanner_txt1.row{
    width: 96.5%;
  }
  #Hbanner .Hbanner_txt ._product{
    width: 4rem;
    height: 2.15rem;
  }
  #Hbanner .Hbanner_txt ._item ._subtitle{
    margin-top: .2rem;
  }
  #Hbanner .Hbanner_txt .more_btn1, #Hbanner .Hbanner_txt .more_btn2{
    margin-top: .4rem;
  }
  #Hbanner .Hbanner_txt1 .more_btn1{
    display: none;
  }
  #Hbanner .Hbanner_txt3{
    width: 90%;
  }
  #Hbanner .Hbanner_txt ._item ._title{
    font-size: .41rem;
  }
  .Hbanner .swiper-button-prev{
    left: 10px;
  }
  .Hbanner .swiper-button-next{
    right: 10px;
  }
  .Habout{
    flex-direction: column;
  }
  .Habout .about_info .infos{
    font-size: .27rem;
  }
  .Habout .about_img{
    height: 4.9rem;
  }
  .Habout .about_info{
    margin: 0 5%;
    padding: .5rem 0;
  }
  .Habout .info_slogan,
  .Habout .about_info .infos,
  .Habout .more_btn1{
    margin-top: .2rem;
  }
  .Hproduct{
    padding: .8rem 5%;
  }
  .index_header{
    flex-direction: column;
  }
  .index_header ._right{
    margin-top: .4rem;
  }
  .index_header .productNav ._item,
  .index_header .productNav ._item a{
    font-size: .3rem;
  }
  .Hproduct ._content{
    flex-direction: column;
  }
  .Hproduct ._content ._left,
  .Hproduct ._content ._right{
    width: 100%;
  }
  .Hproduct ._content ._left{
    height: 5.28rem;
  }
  .Hproduct ._content ._right a{
    margin-top: .5rem;
  }
  .Hproduct ._content ._title{
    font-size: .5rem;
  }
  .Hproduct ._content ._subtitle{
    font-size: .25rem;
    line-height: 1.5;
  }
  .Hproduct ._content .more_btn3{
    width: 1.6rem;
    height: .5rem;
    font-size: .2rem;
  }
  .more_btn4{
    width: 1.5rem;
    height: .5rem;
    font-size: .2rem;
  }
  .Hnews{
    padding: .3rem 5%;
  }
  .Hnews .container{
    flex-direction: column;
  }
  .Hnews .news_item{
    width: 100%;
    margin-bottom: 1rem;
    height: auto;
  }
  .Hnews .news_item ._time{
    padding: .05rem;
    font-size: .3rem;
    line-height: 1;
  }
  .Hnews .news_item ._title{
    font-size: .32rem;
    margin-top: .2rem;
  }
  .Hnews .news_item ._desc{
    font-size: .3rem;
    margin-top: .2rem;
    line-height: 1.8;
  }
  .Hplan{
    padding: .89rem .3rem;
  }
  .Hplan .container{
    padding: 1rem .6rem;
  }
  .Hplan .subtitle{
    width: 100%;
    font-size: .3rem;
  }
  .Hplan .planList{
    height: 4.5rem;
  }
  .Hplan .planList .swiper ._img{
    height: 3.5rem;
  }
  .Hplan .planList .swiper ._name{
    font-size: .3rem;
  }
  .Hplan .planList .iconfont{
    font-size: .5rem;
  }
  .team_detail{
    padding: 1rem .3rem;
  }
  .team_detail .details{
    flex-direction: column;
  }
  .team_detail .photo{
    width: 100%;
  }
  .team_detail .infos{
    width: 100%;
    padding-left: 0;
    margin-top: .3rem;
    line-height: 1.8;
  }
  .pre_next{
    flex-direction: column;
  }
  .footer ._cnt{
    padding: .3rem 5%;
  }
  .footer ._menu{
    display: none;
  }
  .footer ._top{
    flex-direction: column;
    align-items: flex-start;
  }
  .footer ._right{
    margin-top: .2rem;
    width: 100%;
  }
  .footer ._top ._right ._title{
    font-size: .3rem;
  }
  .footer ._top ._search .input{
    flex: 1;
  }
  .footer ._top .btn_search{
    width: 70px;
    font-size: .3rem;
  }
  .footer .content{
    display: block;
  }
  .footer .content .contact{
    margin-right: 0;
  }
  .footer .contact ._title{
    font-size: .28rem;
  }
  .footer .contact ._phone{
    font-size: .8rem;
    line-height: 1.5;
  }
  .footer .contact ._address{
    font-size: .28rem;
  }
  .footer .codes ._item{
    width: 2rem;
    margin-right: .5rem;
  }
  #back_top{
    display: none !important;
  }
  .footer ._keep .flex{
    padding: 0;
    flex-direction: column;
  }
  

  /* 关于我们 */
  .pageBanner ._info{
    transform: translateY(0);
  }
  .below {
    height: 1.8rem;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .below ._left{
    overflow-x: scroll;
  }
  .below ._left{
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .below ._left::-webkit-scrollbar {
    display: none;
  }
  .below ._right{
    height: .8rem;
    line-height: .8rem;
    padding: 0 .1rem;
  }
  .Aabout ._info{
    padding: .3rem 5%;
    flex-direction: column;
  }
  .Aabout ._info ._left{
    padding: 0;
  }
  .Aabout ._info ._right{
    width: 100%;
  }
  .index_header{
    align-items: flex-start;
  }
  .Aabout .desc{
    font-size: .3rem;
        line-height: 2;
  }
  .Adevelopment{
    flex-direction: column;
  }
  .Adevelopment ._left{
    width: 100%;
    height: 6.8rem;
    padding: .8rem .2rem;
  }
  .Adevelopment ._left ._subtitle{
    font-size: .3rem;
  }
  .Adevelopment ._right{
    width: 100%;
  }
  .Adevelopment ._info{
    padding: 0 .3rem;
    height: auto;
  }
  .Adevelopment .year_item .year{
    font-size: .32rem;
        line-height: 1.6;
  }
  .Adevelopment .year_item .content p{
    font-size: .3rem;
    line-height: 1.6;
  }
  .Adevelopment ._info .year_item{
    margin-bottom: .1rem;
  }
  .Adevelopment ._bottom{
    padding-right: .3rem;
  }
  .Adevelopment ._bottom .unit {
    width: 1.56rem;
    height: .8rem;
    font-size: 0.28rem;
    line-height: .8rem;
  }
  .Ascope{
    padding: .8rem .3rem;
  }
  .Ascope ._header ._subtitle{
    font-size: .26rem;
        line-height: 1.8;
  }
  .scopeSwiper .swiper-slide ._name{
    font-size: .3rem;
  }
  .scopeSwiper ._infos{
    font-size: .28rem;
  }
  .Ascope .swiper-pageation .swiper-scrollbar{
    width: 70% !important;
  }
  .swiper-pageation .swiper-btn{
    width: 2.3rem;
  }
  .Ateam,.Pproduct{
    padding: 1rem .3rem;
  }
  .team_swiper .swiper-slide .photo{
    height: 6.2rem;
  }
  .team_swiper .swiper-slide .name{
    font-size: .4rem;
  }
  .team_swiper .swiper-slide .en_name{
    font-size: .3rem;
  }
  .team_swiper .swiper-slide .position{
    font-size: .28rem;
  }
  .team_swiper .swiper-slide .desc{
    font-size: .3rem;
        line-height: 1.6;
  }

  /* 产品中心 */
  .product_list .product_item,
  .lease_list .lease_item{
    width: calc((100% - .4rem) / 2);
  }
  .product_list .product_item,
  .lease_list .lease_item{
    margin-right: .4rem !important;
  }
  .product_list .product_item:nth-child(2n),
  .lease_list .lease_item:nth-child(2n){
    margin-right: 0 !important;
  }
  .product_item ._name{
    font-size: .3rem;
  }
  .product_item ._subname{
    font-size: .28rem;
  }
  .product_item .more{
    font-size: .28rem;
  }
  .product_detail ._header ._name{
    font-size: .4rem;
  }
  .product_detail ._header ._back{
    font-size: .3rem;
  }
  .product_detail ._header ._back i{
    font-size: .28rem;
  }
  .product_detail .content{
    flex-direction: column;
  }
  .product_detail .container,
  .product_detail .detail_img,
  .product_detail .detail_info{
    width: 100%;
  }
  .product_detail .detail_info{
    padding: .3rem;
    height: auto;
    font-size: .3rem;
    line-height: 1.7;
  }
  .product_detail ._desc{
    padding: 0 .3rem;
  }
  .product_detail ._desc .content{
    font-size: .3rem;
    line-height: 1.7;
  }
  .page_num ._item{
    width: 30px;
    height: 30px;
    font-size: .3rem;
  }
  .page_num ._item .iconfont{
    font-size: .3rem;
  }

  /* 租赁中心 */
  .Llease{
    padding: 1rem 5%;
  }
  .lease_item ._img{
    height: 3.12rem;
  }
  .lease_item ._name{
    font-size: .3rem;
  }
  .lease_item .more{
    width: 100%;
    height: .8rem;
    font-size: .3rem;
  }
  .lease_item .more .iconfont{
    font-size: .3rem;
  }
  .contact_form .form_header ._subtitle{
    font-size: .26rem;
    line-height: 2;
  }
  .contact_form .form .btn_box .form-submit{
    width: 2rem;
    height: .8rem;
    font-size: .28rem;
  }
  .Ccase{
    padding: .8rem 5%;
  }
  .case_item .case_img{
    height: 3.8rem;
  }
  .case_item .case_info{
    padding: 0 .3rem;
  }
  .case_item .case_info ._type{
    font-size: .3rem;
  }
  .case_item .case_info ._time{
    font-size: .26rem;
  }
  .case_item .case_info ._title{
    font-size: .34rem;
  }
  .case_item .case_info ._content{
    font-size: .3rem;
  }

  /* 资讯中心 */
  .Nnews{
    padding: .6rem .3rem;
  }
  .Nnews .news_item{
    width: 100%;
    margin-right: 0;
  }
  .Nnews .item_info ._time{
    font-size: .28rem;
  }
  .Nnews .item_info ._title{
    font-size: .34rem;
    height: 1.2rem;
    line-height: 1.7;
  }
  .Nnews .item_info .more{
    font-size: .28rem;
  }

  /* 联系我们 */
  .Ccontact .contact_info{
    padding: 1rem .3rem;
    flex-direction: column;
  }
  .contact_info .infos ._name{
    font-size: .6rem;
  }
  .contact_info .infos,
  .contact_info .contact_form{
    width: 100%;
    padding: 0;
  }
  .contact_info .infos .phone .iconfont{
    font-size: .9rem;
  }
  .contact_info .infos .text ._title{
    font-size: .26rem;
  }
  .contact_info .infos .email{
    font-size: .28rem;
  }
  .contact_info .infos .code_item{
    width: 2rem;
  }
  .contact_info .infos .code_item .code_text,
  .contact_info .infos .desc{
    font-size: .26rem;
    line-height: 1.7;
  }
  .contact_info .contact_form{
    margin-top: .7rem;
  }
  .contact_form .form .form_item input, .contact_form .form .form_item select{
    height: .8rem;
  }
.contact_form .form .code_input .img,
  .consult_pop #canvas{
    width: 1.6rem;
  }
  .search_container{
    padding: 0 .3rem;
    margin: 1.2rem auto;
  }
  .search_container ._result{
    font-size: .5rem;
  }
  .search_container ._subtitle{
    font-size: .32rem;
  }
}