/*banner*/
.banner{
  width: 100%;
  height: 49.8vw;
  position:relative;
}

.banSwiper{
  width: 100%;
  height: 100%;
  position:relative;
  overflow:hidden;
}
.banSwiper .swiper-slide{
  /*background-repeat: no-repeat;*/
  /*background-position:center;*/
  /*background-size:cover;*/
  /*background: linear-gradient(90deg, #3b9cff, #2d50ff);*/
}
.banSwiper .swiper-slide a{
  display:flex;
  align-items: center;
  width:100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor:grab;
}
.banImg{
  display:flex;
  justify-content: flex-end;
  transform:translateX(40px);
  opacity:0;
  transition:400ms 0s all linear;
}
.banText{
  position:absolute;
  bottom:3vw;
  left:0;
  width: 100%;
}
.banText .banTitle{
  color: #fff;
  font-size: 5rem;
  font-weight: bold;
  transform:translateY(30px);
  opacity:0;
}
.banText .bantit01{transition:400ms 0s all ease;}
.banText .bantit02{transition:400ms 0.15s all ease;}

.banText>i{
  display:block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin-top: 1vw;
  margin-bottom: 1vw;
}
.banDes{
  font-size: 2rem;
  color: #ffffff;
  transform:translateY(30px);
  opacity:0;
  transition:400ms 0.25s all ease;
}
.ani-slide .banImg{
  transform:translateX(0);
  opacity:1;
}
.ani-slide .banText .banTitle,
.ani-slide .banDes{
    transform:translateY(0);
    opacity:1;
}
.banSwiper .swiper-button-prev,
.banSwiper .swiper-button-next{
  display:flex;
  background:#fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  position:initial;
  top: initial;
  left: initial;
  right: initial;
  margin-top: initial;
  margin-left: 10px;
  opacity: 1;
}
.banSwiper .swiper-button-disabled{
  opacity: 0.3;
}
.banSwiper .swiper-button-prev:after,
.banSwiper .swiper-button-next:after{
  display:none;
}
.banSwiper .swiper-button-next{
  transform: rotateY(180deg);
}
.banSwiper .swiper-button-prev:hover,
.banSwiper .swiper-button-next:hover{
  background:#d91a32;
  opacity: 1;
}

.banSwiper .swiper-button-prev svg,
.banSwiper .swiper-button-next svg{
  width: 22px;
}
.banSwiper .swiper-button-prev svg path,
.banSwiper .swiper-button-next svg path{
  fill:#3b3b3b;
}

.banSwiper .swiper-button-prev:hover svg path,
.banSwiper .swiper-button-next:hover svg path{
  fill:#fff;
}

.ban_btn{
  display:flex;
  justify-content: flex-end;
  align-items: center;
  position:absolute;
  bottom:2vw;
  left:50%;
  transform: translateX(-50%);
  z-index: 99;
}
.ban_btn .swiper-pagination{
  color: #fff;
  font-size: 1.8rem;
  position: initial;
  width: initial;
  top: initial;
  left: initial;
  margin-right: 5px;
}
.ban_btn .swiper-pagination .swiper-pagination-current{
  font-size: 2.5rem;
  font-weight: bold;
  color: #dd0000;
}

/*nav*/
.bg-color {
  background: #fff;
}
.nav-bar {
  position:fixed;
  left:0;
  top:0;
  width: 100%;
  z-index: 100000;
  opacity: 1;

  -webkit-transition: all .6s;
  transition: all .6s;
}



.nav-bar .warpper{
  display:flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}
.logo {
  display:flex;
  align-items: center;
}
.logo a{
  display:block;
}
.logo a img{
  max-width: 186px;
  max-height: 48px;
  filter:grayscale(100%) brightness(100);
}
.logo>i{
  display:block;
  width: 1px;
  height: 32px;
  background:#fff;
  margin-left:15px;
  margin-right: 15px;
}
.logo>p{
  color: #fff;
  font-size: 1.6rem;
}
.topMsg{
  display:flex;
  justify-content: center;
  align-items: center;
  background:#e10f1c;
  border-radius: 8px;
  width: 115px;
  height: 35px;
  position:relative;
  overflow:hidden;
  transition: 300ms 500ms all ease;
}
.topMsg img{
  position:relative;
  max-width: 18px;
}
.topMsg span{
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-left:5px;
  position:relative;
}
.topMsg:before{
  display:block;
  content: '';
  position:absolute;
  border-radius: 50%;
  background: linear-gradient(90deg, #ff961d, #ff7200);
  width: 10px;
  height: 10px;
  left:-10px;
  top: -10px;
}
/* 定义圆弧形移动的关键帧动画 */
@keyframes msgMove {
  0% {
    left:-10px;
    top: -10px;
    opacity: 1;
  }
  50% {
    left:50%;
    top:60%;
    transform: scale(1); /* 向右下方移动，旋转 270 度 */
  }
  100% {
    transform: scale(20); /* 向右下方移动，旋转 270 度 */
    left:50%;
    top:60%;
  }
}
.topMsg:hover:before{
  animation: msgMove 500ms 1 ease normal forwards;
}
.nav-bar ul {
  overflow: hidden;
  width: calc(100% - 400px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-bar ul li {
  line-height: 50px;
  position:relative;
  overflow:hidden;
}

@media screen and (min-width:960px){
  /*.nav-bar ul li:before{*/
  /*  display:block;*/
  /*  content: '';*/
  /*  position:absolute;*/
  /*  left:-10px;*/
  /*  top: -10px;*/
  /*  border-radius: 50%;*/
  /*  width: 10px;*/
  /*  height: 10px;*/
  /*  background:#d91a32;*/
  /*}*/

  /*.nav-bar ul li:hover:before {*/
  /*  animation: arcMove 400ms 1 ease normal forwards;*/
  /*}*/

}

.nav-bar ul li a {
  font-weight: bold;
  position:relative;
  display: block;
  font-size: 1.8rem;
  color: #fff;
  /*text-shadow: 0 0 0 rgba(255, 100, 100, 0);*/
  /*background: linear-gradient(90deg, rgba(217, 26, 50, 0), rgba(255, 94, 94, 0));*/
  transition: 300ms 0ms all ease;
}
.nav-bar ul li.active a,
.nav-bar ul li:hover a {
  color:#d91a32;
  /*background: linear-gradient(90deg, #d91a32, #ff5e5e);*/
  /*-webkit-background-clip: text;*/
  /*-webkit-text-fill-color: transparent;*/
  /*background-clip: text;*/
  /*text-fill-color: transparent;*/
  /*text-shadow: 0 0 8px rgba(255, 100, 100, 0.8);*/
}

.barshow{
  opacity: 0;
  top:-121px;
}
.newsnavfix,
.navfix{
  background:#fff;
  border-bottom: 1px solid #e7e7e7;
  /*transition: 350ms 0s all ease;*/
}
.newsnavfix .logo a img,
.navfix .logo a img{
  filter:grayscale(0) brightness(1);
}
.newsnavfix .logo>i,
.navfix .logo>i{
  background:#898989;
}
.newsnavfix .logo>p,
.navfix .logo>p{
  color: #2a2a2a;
}
.newsnavfix ul li a,
.navfix ul li a{
  color: #2a2a2a;
  position:relative;
}



#main {
  overflow: hidden;
}

/*server*/
.title{
  padding-top:3vw;
  padding-bottom: 1vw;
}
.title h2{
  font-weight: bold;
  font-size: 4.6rem;
  color: #2c2c2c;
}
.title p{
  color: #585858;
  font-size: 2rem;
}
.server ul{
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.server ul li {
  width: 22.9%;
  height: 513px;
  border-radius: 10px;
  position:relative;
  overflow:hidden;
}
.otherlink{
  position:absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.server ul li>img{
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  max-width:100%;
  transition: .3s ease;
  opacity: 1;
}
.server ul li>img{ bottom:15px;}
.sertext{
  position:relative;
  z-index: 99;
  padding:1.5vw 1.5vw;
  box-sizing: border-box;
}
.sertext>h3{
  font-size: 2.6rem;
  font-weight: bold;
  position:relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
  transition: .3s ease;

  padding-top: 15px;
  padding-left: 15px;
}

.sertext>h3:after{
  display:block;
  content: '';
  position:absolute;
  left:15px;
  bottom:0;
  height: 2px;
  width: 20px;
  background:#dd0000;
  transition: .3s ease;

}
.sertext>a{
  font-size: 1.8rem;
  color: #2f2f2f;
  display:block;
  width: 100%;
  margin-top: 10px;
  opacity: 0;
  padding-left: 15px;
  transition: .3s ease;
  transform: translateY(5px);
}
.server ul li:hover .sertext>a{
  transform: translateY(0px);
  opacity: 1;
  padding-left: 0;
}
.server ul li:hover .sertext>h3{
  padding-left: 0;
  padding-top: 0;
}

.server ul li:hover .sertext>h3:after{
  left:0;
}



/*首页案例*/
.indexcase{
  background:#f6f6f6;
  margin-top: 3vw;
  padding-bottom: 1vw;
}
.indexcase ul{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.indexcase ul li{
  width: 32%;
}
.caseStyle li{
  margin-bottom: 2vw;
}
.caseStyle li a{
  display:block;
  width: 100%;
  height: 423px;
  position:relative;
  overflow:hidden;
  border-radius: 10px;
  padding:30px 20px;
  box-sizing: border-box;
}
.caseStyle li a>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: all .5s ease;
  transition: 350ms 0s all ease;


}
.caseStyle li a>i{
  position:absolute;
  width: 100%;
  height: 100%;
  left:0;
  top:0;
  /*background:linear-gradient(to bottom,rgba(0,0,0,0) 20%,rgba(0,0,0,.3) 100%);*/
  transition: 350ms 0s all ease;


  /*background: linear-gradient(45deg,rgba(193, 0, 22, 0),#e10f1c);*/
  background: rgba(4, 34, 85, 0.56);
  opacity: 0;
}
.caseStyle li:hover a>i{
  /*background: rgba(0, 0, 0, 0.4);*/

  opacity: 1;
}
.caseStyle li:hover a>img{
  /*filter: blur(1.25rem);*/
}
.case_pic{
  position:relative;
  overflow:hidden;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.case_pic img{
  max-width: 150px;
  max-height: 40px;
}
.case_text {
  position: absolute;
  z-index: 2;
  bottom: 3%;
  color: #fff;
  width: 100%;
  height: 10%;
  transition: all .5s ease;
}
.caseStyle li:hover .case_text{
  height: 50%;
}

.case_text h5{
  font-size: 2.4rem;
  color: #fff;
  transition: all .5s ease;
}
.caseStyle li:hover .case_text h5{
  font-size: 2.6rem;
}
.case_text h5 small{
  font-size: 2.6rem;
  opacity: 0;
  transition: all .5s ease;
}
.caseStyle li:hover .case_text h5 small{
  opacity: 1;
}
.case_text p{
  font-size: 1.6rem;
  color: #ffffff;
  margin-top:10px;
  margin-bottom: 25px;
  opacity: 0;
  font-weight: lighter;
  transition: all .5s ease;
}

.caseStyle li:hover .case_text p{
  opacity: 1;
}



.btnStyle{
  display:flex;
  justify-content: center;
  align-items: center;
  background:#e10f1c;
  border-radius: 18px;
  height: 38px;
  width: 110px;
}
.btnStyle span{
  color: #fff;
  font-size: 1.6rem;
  font-weight: lighter;
  margin-right: 5px;
}
.btnStyle img{
  transform: rotate(-45deg);
  transition: all .5s ease;
}
.caseStyle li .btnStyle:hover img{
  transform: rotate(0);
}



/*首页关于*/
.indexcom ul{
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.indexcom ul li{
  width: 49.2%;
  position:relative;
}
.indexcom ul li b{
  width: 100%;
  height: 25vw;
  border-radius: 14px 14px 0 0;
}
.indexcom ul li b img{
  transform: scale(1);
  transition: 350ms 0s all linear;
}
.indexcom ul li:hover b img {
  transform: scale(1.08);
}
.indexcom ul li p{
  position:absolute;
  left:0;
  bottom:0;
  width: 100%;
  line-height: 56px;
  text-align: center;
  background: linear-gradient(0deg, rgb(1 38 101 / 71%) 18%, rgba(255, 255, 255, 0));
  /*background: rgba(246, 246, 246, 0.9);*/
  font-size:2.2rem;
  color: #fff;
  box-sizing: border-box;
  padding:0 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow:hidden;
  transition: 350ms 0s all ease;
  opacity: 1;
}
.indexcom ul li:hover p {
  color: #fff;
  background: rgba(246, 246, 246, 0);
  opacity: 0;
  /*background: linear-gradient(45deg, #f11833, #d9001b);*/
}


/*首页合作*/
.indexcoop{
  padding-bottom: 3vw;
}
.indexcoop ul{
  display:flex;
  flex-wrap: wrap;
}

.indexcoop ul li:nth-child(-n+6){
  border-top:1px solid #e7e7e7;
}
.indexcoop ul li{
  width:calc(100% / 6);
  height: 158px;
  box-sizing: border-box;
  border-right:1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  display:flex;
  justify-content: center;
  align-items: center;
  transition: 350ms 0s all ease;
}
.indexcoop ul li:nth-of-type(1),
.indexcoop ul li:nth-of-type(7){
  border-left: 1px solid #e7e7e7;
}
.indexcoop ul li img{
  max-width: 67%;
  max-height: 38%;
}
.indexcoop ul li:hover{
  background:#d91a32;
}
.indexcoop ul li:hover img{
  filter:grayscale(100) brightness(100);
}

/*indexnews*/
.indexnews{
  background:#f6f6f6;
  padding-bottom: 4vw;
}
.indexnews ul{
  display:flex;
  justify-content: space-between;
}
.indexnews ul li{
  width: 32.3%;
}
.innews_top{
  border-radius: 10px;
  width: 100%;
  height: 15.2vw;
  position:relative;
  overflow:hidden;
}
.innews_top>img{
  transition: all 0.3s ease;
}
.innews_top:hover>img{
  transform: scale(1.05);
}
.innews_top>a{
  display:block;
  width: 100%;
  height: 100%;
  position:absolute;
  top:0;
  left:0;
}
.innews_top>a>span{
  color: #fff;
  background:#dd0000;
  font-size: 1.6rem;
  line-height: 32px;
  width: 83px;
  border-radius: 6px;
  text-align: center;
  position:absolute;
  left:20px;
  top:20px;
}
.innews_top>a>div{
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  position:absolute;
  bottom:0;
  left:0;
  width: 100%;
  box-sizing: border-box;
  padding:20px;
}
.innews_top>a>div p{
  font-size: 1.8rem;
  color: #fff;
}
.innews_top>a>div h3{
  color: #fff;
  font-weight: bold;
  font-size: 2.2rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow:hidden;
}
.innews_top>a>div i{
  transition: 350ms 0s all ease;
  height: 2px;
  width: 0;
  display:block;
  background:#d91a32;
  margin-top: 0;
}
.innews_top>a:hover>div i{
  margin-top: 10px;
  width: 100px;
}
.innews_bom{
  background:#fff;
  border-radius: 6px;
  margin-top: 17px;
  box-sizing: border-box;
  padding:35px;
}
.innews_bom a{
  display:block;
  padding-left:18px;
  box-sizing: border-box;
  position:relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow:hidden;
  font-size: 1.8rem;
  color: #4d4d4d;
  margin-bottom: 35px;

  transition: all 0.3s ease;
  text-shadow: 0 0 0 rgba(255, 100, 100, 0);
}
.innews_bom a:last-of-type{
  margin-bottom: 0;
}
.innews_bom a:before{
  display:block;
  content: '';
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background:#9e9e9e;
  transition: 350ms 0s all ease;
}
.innews_bom a:hover{
  background: linear-gradient(90deg, #d91a32, #ff5e5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  /* 文字轻微放大 */
  transform: scale(1.05);
  /* 文字发光效果 */
}
.innews_bom a:hover:before{
  background:#d91a32;
}

/*indexcontact*/
.indexcontact{
  width: 100%;
  box-sizing: border-box;
  padding:3vw 0;
  /*background:url("../images/contbg.jpg") no-repeat center;*/
  background:url("../images/msg2.jpg") no-repeat center/cover;
  background-attachment: fixed;
}
.indexcontact .warpper>p{
  color: #fff;
  font-size: 3.5rem;
  font-weight: lighter;
}
.indexcontact .warpper>h3{
  font-size: 4rem;
  color: #fff;
  margin-top: 0;
  font-weight: bold;
  margin-bottom: 10px;
}
.indexcontact .warpper>small{
  font-weight: lighter;
  color: #fff;
  font-size: 2rem;
}
.incont_btn{
  display:flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  margin-top: 2vw;
  padding-top: 1vw;
}
.incont_btn>h5{
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
}
.incont_btn button{
  text-align: center;
  width: 178px;
  line-height: 54px;
  border-radius: 29px;
  margin-left: 2vw;
}
.incont_btn button>span{
  display:flex;
  justify-content: center;
  align-items: center;
}
.incont_btn button>span>img{
  width: 24px;
}
.incont_btn button>span>span{
  font-size: 1.8rem;
  color: #fff;
  position:relative;
  margin-left: 10px;
}

/*btn style*/
.light-beam {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
          to right,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 215, 0, 0.4) 50%,
          rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: lightBeam 3s infinite;
}
.btn-gradient {
  background: linear-gradient(135deg, #9b0000, #d32f2f);
}
.btn-gradient-hover {
  background: linear-gradient(135deg, #d32f2f, #ff3a3a);
}

@keyframes lightBeam {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}
.cool-btn{
  position:relative;
  overflow:hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(135deg, #f57a0c, #d32f2f);
  box-shadow: 0 0 15px rgba(211, 47, 47, 0.5);
}
.cool-btn:hover .light-beam {
   animation: lightBeam 1.5s infinite;
}
.cool-btn:hover{
  background: linear-gradient(135deg, #f57a0c, #ff3a3a);
  box-shadow: 0 0 25px rgba(255, 58, 58, 0.8);
}





/*footer*/
.footer{
  padding-top: 3vw;
  padding-bottom: 13px;
  display:flex;
  justify-content: space-between;
}
.fot_left {
  width: 65%;
}
.fot_left_top{
  display:flex;
  justify-content: space-between;
  margin-bottom: 4vw;
}
.fot_left_top li a{
  position:relative;
  overflow:hidden;
  display:block;
}
.fot_left_top li a:before{
  display:block;
  content: '';
  position:absolute;
  left:0;
  right:0;
  width: 100%;
  bottom: 0;
  height: 3px;
  background:#d91a32;
  transform: rotateY(90deg);
  transition: 300ms 0ms all ease;
}
.fot_left_top li a:hover:before{
  transform: rotateY(0);
}
.fot_left_top li a h3{
  position:relative;
  font-size: 2.2rem;
  color: #2a2a2a;
  font-weight: bold;
  margin-bottom: 5px;
  transition: 300ms 0ms all ease;
}
.fot_left_top li a:hover h3{
  color: #e10f1c;
}

.fot_left_top li a p{
  position:relative;
  text-align: center;
  font-size: 1.8rem;
  color: #5d5d5d;
  padding-bottom: 8px;
  transition: 300ms 0ms all ease;
}
.fot_left_top li a:hover p {
  color: #e10f1c;
}
.fot_left_bom>h2{
  font-size: 2.8rem;
  color: #2a2a2a;
  font-weight: bold;
}
.fot_left_bom h2 span{
  color: #e10f1c;
}
.fot_left_bom>p span{
  color: #5d5d5d;
  font-weight: bold;
  font-size: 1.8rem;
}
.fot_left_bom>p{
  margin-top: 15px;
  font-size: 1.6rem;
  color: #5d5d5d;
  line-height: 31px;
}
.fot_left_bom>p:first-of-type{
  margin-bottom: 26px;
}
.fot_left_bom>p>a{
  font-size: 1.6rem;
  color: #5d5d5d;
  transition: 350ms ease;
}
.fot_left_bom>p>a:hover{
  color: #e10f1c;
}
.fot_rightbg{
  text-align: right;
}
.fot_right>p{
  font-size: 2.2rem;
  color: #2a2a2a;
}
.fot_right>h2{
  font-size: 3.4rem;
  color: #2a2a2a;
  font-weight: bold;
  line-height: 58px;
}
.fot_right>small{
  font-size: 1.6rem;
  color: #2a2a2a;
}
.fot_rightpic{
  text-align: center;
  width: 170px;
  margin-bottom: 1.5vw;
  margin-top: 1.5vw;
  margin-right: 0;
  margin-left: auto;
}
.fot_rightpic>img{
  max-width: 100%;
  margin:0 auto;
}
.fot_rightpic>span{
  font-size: 1.6rem;
  color: #2a2a2a;
}
.fot_rightbg .topMsg{
  width: 158px;
  margin-left: auto;
  margin-right: 0;
}
.foot{
  padding:13px 0;
  border-top: 1px solid #c7c7c7;
  font-size: 1.6rem;
  color: #5d5d5d;
}
.foot a{
  font-size: 1.6rem;
  color: #5d5d5d;
}
.foot a:hover{
  text-decoration: underline;
}

/*indexform*/
.formbg{
  position:fixed;
  width: 100%;
  height: 100%;
  top:0;
  left:0;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  z-index: -1;
  display:flex;
  justify-content: center;
  align-items: center;

  /*display:none;*/
  opacity: 0;
  transition:opacity 0.3s 0.2s ease;
}
.formbgshow{
  opacity: 1;
  z-index: 100000;
}

.formCont{
  position:relative;
  overflow:hidden;
  border-radius: 16px;
  transition:padding-left 0.8s 0.5s ease;
  padding-left:0;
}
.formbgshow .formCont{
  padding-left:617px;
}

.form_left{
  position:absolute;
  left:0;
  top:0;
  background:#bc0711;
  width: 664px;
  height: 100%;
  display:flex;
  flex-direction:column;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding:2.5vw 3vw;
}
.form_l_top{
  width: 100%;
}
.form_l_top h3{
  color: #fff;
  font-weight: bold;
  font-size: 3.6rem;
}

.form_code{
  display:flex;
  align-items: center;
  flex-wrap: wrap;
}
.form_code b{
  background:#fff;
  border-radius: 10px;
  padding:6px;
}
.form_code b img{
  width: 110px;
}
.form_code>div{
  display:flex;
  align-items: center;
  width: 100%;
  order: 2;
}
.form_code>div img{
  margin-left:19px;
  margin-right: 12px;
}
.form_code>div p{
  font-size: 1.8rem;
  color: #fff;
  margin-top: 5px;
  text-align: center;
  width: 122px;
}
.form_l_bom{
  width: 100%;
  color: #fff;
  font-size: 2rem;
}
.form_l_bom h4{
  font-size: 3.6rem;
  font-weight: bold;
  color: #fff;
}


.form_right{
  width: 880px;
  border-radius: 16px;
  position:relative;
  background: linear-gradient(90deg, #eaeaea 20%, rgba(234, 234, 234, 0.56));
  overflow:hidden;
  box-sizing: border-box;
  padding:2.5vw 4vw;
}
#fuform>h3{
  font-size: 2.8rem;
  color: #414141;
  margin-bottom: 15px;
  font-weight: bold;
}
.formclose{
  position:absolute;
  right:35px;
  top:35px;
  cursor: pointer;
}
#fuform input{
  font-size: 1.6rem;
  color: #686868;
  line-height: 48px;
  background:#fff;
  border-radius: 27px;
  box-sizing: border-box;
  padding:0 20px;
}
#fuform input::placeholder{
  font-size: 1.6rem;
  color: #686868;
}

.form_cont1{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0.8vw;
}
.form_cont1 input{
  width: 49%;
  margin-bottom: 16px;
}
.form_cont1 input:nth-of-type(3){
  width: 100%;
}
.form_captcha{
  width: 100%;
  height: 48px;
  border-radius: 27px;
  background:#fff;
  overflow:hidden;
  display:flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 20px;
  position:relative;
}
.captchaFirst{
  width: 100%;
  height: 100%;
  position:absolute;
  top:0;
  left:0;
  background:#fff;
  border-radius: 27px;
  line-height: 48px;
  font-size: 1.6rem;
  color: #686868;
  box-sizing: border-box;
  padding:0 20px;
  cursor: pointer;
}
#fuform .form_captcha input{
  width: calc(100% - 180px);
  line-height: 48px;
}
.form_captcha .code{
  width: 180px;
  height: 100%;
  display:flex;
  align-items: center;
  justify-content: center;
}
.form_captcha .code img{
  max-width: 100%;
  max-height: 100%;
}
.serchose{
  display:flex;
  flex-wrap: wrap;
  margin-bottom: 0.8vw;
}
.serchose li{
  box-sizing: border-box;
  padding:8px 20px;
  text-align: center;
  border-radius: 18px;
  margin-right: 15px;
  background:#fff;
  font-size: 1.4rem;
  color: #414141;
  margin-bottom: 15px;
  cursor: pointer;
}
.serchose li.active{
  color: #fff;
  background: #bc0711;
}
#fuform .btn{
  display:block;
  background:#181818;
  border-radius: 27px;
  width: 100%;
  line-height: 54px;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  transition: 350ms ease;
}
#fuform .btn:hover{
  background:#bc0711;
}







/* 单选组容器（可选：调整选项间距） */
.option-group {
  font-size: 14px;
  color: #333;
  line-height: 24px;
  display:flex;
  flex-wrap: wrap;
  align-items: center;
}
/* 单个选项的布局 */
.option-item {
  margin-right: 40px;
  cursor: pointer;
}

/* 隐藏原生单选按钮 */
.option-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* 自定义单选按钮的样式（label + 伪元素） */
.option-item label {
  position: relative;
  padding-left: 20px; /* 给单选按钮留空间 */
  cursor: pointer;
  font-size: 1.4rem;
  color: #414141;
}
/* 未选中的空心圆 */
.option-item label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 2px solid #8a8a8a;
  border-radius: 50%; /* 圆形 */
  background-color: rgba(193, 0, 22, 0);
}
/* 选中后的红色实心圆 */
.option-item input:checked + label::before {
  /*border-color: #e53935; !* 红色边框 *!*/
  background-color: #e10f1c; /* 红色填充 */
}

.option-item input:checked + label {
  font-weight: bold;
}


















.pro-sider {
  float: left;
  width: 260px;
}
.pro-sider .in-title {
  height: 80px;
  background: url(../images/i-pro-title.jpg) no-repeat center;
  text-align: center;
  line-height: 1;
  overflow: hidden;
}
.pro-sider .in-title h3 {
  margin-top: 20px;
  font-size: 22px;
  color: #fff;
  margin-bottom: 5px;
}
.pro-sider .in-title em {
  font-size: 13px;
  color: #728dbc;
}
.pro-sider .pro-sider-ul {
  border: 1px solid #ededed;
  background: #fff;
  border-top: none;
  overflow: hidden;
}
.pro-sider .pro-sider-ul .ul-li {
  padding: 0 15px;
  height: 59px;
}
.pro-sider .pro-sider-ul .ul-li a {
  position: relative;
  height: 58px;
  line-height: 58px;
  font-size: 14px;
  color: #595959;
  display: block;
  padding-left: 10px;
  padding-right: 30px;
  border-bottom: 1px dashed #ededed;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pro-sider .pro-sider-ul .ul-li a h2{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pro-sider .pro-sider-ul .ul-li a div.icon {
  position: absolute;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  background: #ededed url(../images/sider-bg-01.png) no-repeat center;
  border-radius: 50%;
  right: 8px;
  top: 50%;
  margin-top: -8px;
  font-size: 12px;
}
.pro-sider .pro-sider-ul .ul-li:hover,
.pro-sider .pro-sider-ul .ul-li.active {
  background: #268ae7;
}
.pro-sider .pro-sider-ul .ul-li:hover a,
.pro-sider .pro-sider-ul .ul-li.active a {
  border: none;
  color: #fff;
}
.pro-sider .pro-sider-ul .ul-li:hover div.icon,
.pro-sider .pro-sider-ul .ul-li.active div.icon {
  background: #0058b1 url(../images/sider-bg-02.png) no-repeat center;
}
.pro-sider .pro-sider-ul .ul-li:last-child a {
  border-bottom: none;
}
.pro-sider .pro-sider-tel {
  overflow: hidden;
  height: 100px;
  line-height: 1;
  font-size: 20px;
  color: #0058b1;
  border: 1px solid #ededed;
  border-top: none;
  padding-left: 80px;
  background: url(../images/sider-tel.png) no-repeat 25px center;
}
.pro-sider .pro-sider-tel span {
  display: block;
  margin: 30px 0 8px;
  font-size: 14px;
  color: #808080;
}
.pro-sider .pro-sider-tel em {
  letter-spacing: 2px;
  font-weight: bold;
}


.m-column-t {
  position: relative;
  text-align: center;
  font-size: 0;
}
.m-column-t .center {
  display: inline-block;
  font-size: 0;
}
.m-column-t .center h3 {
  color: #333;
  font-size: 30px;
}
.m-column-t .center p {
  color: #d2d2d2;
  font-size: 30px;
}
.m-column-t span {
  position: absolute;
  width: 415px;
  top: 50%;
  margin-top: -5px;
  height: 5px;
  border-bottom: 1px solid #d2d2d2;
  z-index: 1;
}
.m-column-t span.mcl {
  left: 0;
}
.m-column-t span.mcl em {
  float: right;
}
.m-column-t span.mcr {
  right: 0;
}
.m-column-t span em {
  display: block;
  height: 11px;
  border-left: 1px solid #d2d2d2;
}
.textLine {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.textLine3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.textHidden {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.domHidden {
  overflow: hidden;
}
.about-main {
  padding: 20px 0 70px;
  min-height: 170px;
}
.about-main .ab-content {
  float: right;
  width: 925px;
}
.about-main .ab-content .title {
  line-height: 50px;
}
.about-main .ab-content .title a {
  color: #333;
  padding: 0 5px;
}
.about-main .ab-content .title span.icon-home {
  color: #535353;
}
.about-main .ab-content .title em {
  color: #999;
}
.about-main .ab-content .ab-conBox {
  overflow: hidden;
  background: #fff;
  min-height: 55px;
  padding: 30px 45px 40px;
}
.about-main .ab-content .ab-conBox .de-title {
  text-align: center;
  font-size: 20px;
  color: #333;
  line-height: 25px;
  margin-bottom: 8px;
}
.about-main .ab-content .ab-conBox .sub-co {
  font-size: 14px;
  color: #999;
  text-align: center;
  line-height: 18px;
}
.about-main .ab-content .ab-conBox .ab-detail {
  overflow: hidden;
  margin-top: 30px;
  font-size: 14px;
  color: #777373;
  line-height: 25px;
}
.ab-sild {
  float: left;
  width: 260px;
}
.ab-sild .title {
  position: relative;
  height: 50px;
  text-align: center;
  background: #f3c04b;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.ab-sild .title span {
  position: absolute;
  height: 3px;
  width: 30px;
  top: 50%;
  margin-top: -3px;
  border-bottom: 1px solid #fff;
}
.ab-sild .title span em {
  display: block;
  height: 7px;
  border-left: 1px solid #fff;
}
.ab-sild .title span.stl {
  left: 35px;
}
.ab-sild .title span.stl em {
  float: right;
}
.ab-sild .title span.str {
  right: 35px;
}
.ab-sild .sild-cate {
  background: #fff;
  margin-bottom: 20px;
}
.ab-sild .sild-cate .list {
  overflow: hidden;
}
.ab-sild .sild-cate .list li {
  position: relative;
  border-bottom: 1px solid #eee;
  height: 60px;
  line-height: 60px;
}
.ab-sild .sild-cate .list li a {
  display: block;
  padding-right: 35px;
  font-size: 14px;
  color: #333;
  padding-left: 20px;
}
.ab-sild .sild-cate .list li:last-child {
  border-bottom: none;
}
.ab-sild .sild-cate .list li:hover {
  border-color: #f3c04b;
  background: #f3c04b;
}
.ab-sild .sild-cate .list li:hover a {
  color: #fff;
}
.ab-sild .sild-cate .list li:hover:after {
  color: #fff;
}
.ab-sild .sild-cate .list li:after {
  font-weight: bold;
  right: 20px;
  top: 0;
  color: #999;
  position: absolute;
  content: "\e904";
  font-family: 'icomoon' !important;
}
.ab-sild .sild-cont {
  background: #fff;
}
.ab-sild .sild-cont .cont-list {
  padding: 20px;
}
.ab-sild .sild-cont .cont-list ul li {
  color: #333;
  padding: 5px 0;
  padding-left: 60px;
  font-size: 14px;
}
.ab-sild .sild-cont .cont-list ul li span {
  width: 60px;
  margin-left: -60px;
  display: block;
  height: 20px;
  line-height: 20px;
  float: left;
  color: #666;
}
.pro-center {
  background: #fff;
  padding-bottom: 25px;
}
.pro-center .pro-list {
  overflow: hidden;
  padding: 25px 18px 10px;
}
.pro-center .pro-list ul li {
  float: left;
  width: 200px;
  margin: 0 10px 20px;
  border: 1px solid #fff;
}
.pro-center .pro-list ul li:hover {
  border-color: #f3c04b;
}
.pro-center .pro-list ul li .img {
  overflow: hidden;
  width: 200px;
  height: 200px;
  line-height: 200px;
  text-align: center;
  font-size: 0;
  background: #eee;
}
.pro-center .pro-list ul li .img img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}
.pro-center .pro-list ul li .title {
  background: #f7f8fc;
  height: 40px;
  line-height: 40px;
  padding: 0 5px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.pro-center .pro-list ul li .title:hover {
  color: #f3c04b;
}
.page {
  font-size: 0;
  text-align: center;
}
.page .center {
  display: inline-block;
  overflow: hidden;
}
.page .center .page-span {
  float: left;
  font-size: 14px;
  color: #c3c3c3;
  line-height: 32px;
  margin-right: 30px;
}
.page .center .page-list {
  float: left;
  overflow: hidden;
}
.page .center .page-list ul li {
  float: left;
  width: auto;
  min-width: 30px;
  height: 32px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  margin: 0 4px;
  padding: 0;
  border: none;
  background: transparent;
}
.page .center .page-list ul li a {
  min-width: 20px;
  padding: 0 5px;
  border: 1px solid #eee;
  display: block;
  color: #333;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.page .center .page-list ul li:hover a {
  color: #f3c04b;
}
.page .center .page-list ul li.active a {
  background: #f3c04b;
  color: #fff;
}
.news-center {
  background: #fff;
  padding-bottom: 25px;
}
.news-center .new-list {
  padding: 45px 45px 0px;
}
.news-center .new-list ul li {
  margin-bottom: 35px;
  border-bottom: 1px solid #eee;
}
.news-center .new-list ul li a {
  overflow: hidden;
  display: block;
  height: 90px;
  padding-bottom: 30px;
}
.news-center .new-list ul li a .img {
  float: left;
  width: 130px;
  height: 90px;
  background: #eee;
  line-height: 90px;
  font-size: 0;
  text-align: center;
}
.news-center .new-list ul li a .img img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}
.news-center .new-list ul li a .info {
  float: right;
  width: 690px;
}
.news-center .new-list ul li a .info h3 {
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
  color: #333;
}
.news-center .new-list ul li a .info em {
  display: block;
  font-size: 12px;
  color: #999;
  line-height: 16px;
  margin-bottom: 10px;
}
.news-center .new-list ul li a .info p {
  font-size: 14px;
  line-height: 22px;
  color: #999;
  max-height: 44px;
  overflow: hidden;
}
.news-center .new-list ul li a:hover h3 {
  color: #f3c04b;
}
.message-c {
  background: #fff;
  padding: 40px 50px;
  overflow: hidden;
}
.message-c .p {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  margin-bottom: 35px;
}
.message-c .from input {
  display: block;
  height: 38px;
  line-height: 38px;
  padding: 0 5px;
  border: 1px solid #d2d2d2;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}
.message-c .from input[name=user],
.message-c .from input[name=phone] {
  width: 348px;
}
.message-c .from textarea {
  font-size: 14px;
  color: #333;
  line-height: 20px;
  display: block;
  width: 728px;
  height: 130px;
  border: 1px solid #d2d2d2;
  padding: 5px;
  margin-bottom: 10px;
}
.message-c .from .code {
  overflow: hidden;
}
.message-c .from .code input[name=code] {
  width: 258px;
  float: left;
}
.message-c .from .code a {
  display: block;
  float: left;
  width: 80px;
  height: 38px;
  padding: 1px 0;
  margin-left: 10px;
}
.message-c .from .code a img {
  width: 80px;
  height: 38px;
}
.message-c .from .btn {
  padding-top: 25px;
}
.message-c .from .btn a {
  display: block;
  width: 362px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 16px;
  background: #8fa4de;
}
.message-c .from .btn a:hover {
  background: #8397d0;
}
.contact-o {
  background: #fff;
  overflow: hidden;
  padding: 40px 0;
  text-align: center;
}
.contact-o iframe {
  width: 830px;
  height: 500px;
  margin: 0 auto;
}