/*color select*/
/* 定义一组颜色变量 */
:root {
  --theme-color: #ed5400;
  --secondary-color: #232323;
  --tertiary-color: #0000FF;
}


.img_jz{
  display:block;
  position:relative;
  overflow:hidden;
}
.img_jz>img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.headbg{
  position:relative;
  overflow:hidden;
}

.head {
  position: absolute;
  top:0;
  width:100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.31);
  z-index: 1000;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.head .warpper{
  height: 110px;
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.logo{
  display:flex;
  align-items: center;
}
.logo>img{
  height: 85px;
  filter:grayscale(1) brightness(100);
  margin-right: 8px;
}
.logo>div>h1{
  color: #fff;
  font-weight: bold;
  font-size: 2.8rem;
  letter-spacing: 12px;
  line-height: 31px;
}
.logo>div>small{
  font-size: 1rem;
  font-weight: lighter;
  color: #fff;
  text-transform: uppercase;
}
.nav{
  width: 50%;
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.nav>li>a{
  display:block;
  font-size: 1.8rem;
  color: #fff;
  line-height: 110px;
  position:relative;
  overflow:hidden;
}
.nav>li>a:after{
  display:block;
  content: '';
  position:absolute;
  left:0;
  bottom:0;
  width: 100%;
  height: 4px;
  background:var(--theme-color);
  transform-origin:100%;
  -webkit-transform-origin:100%;
  -webkit-transition:-webkit-transform .6s cubic-bezier(.4,0,.2,1);
  transition:-webkit-transform .32s cubic-bezier(.4,0,.2,1);
  transition:transform .6s cubic-bezier(.4,0,.2,1);
  transition:transform .6s cubic-bezier(.4,0,.2,1),-webkit-transform .6s cubic-bezier(.4,0,.2,1);
  transform:scaleX(0);
  -webkit-transform:scaleX(0);
  visibility:hidden\9;
}

.nav>li>a:hover:after,.nav>li>a.active:after{
  transform:scaleX(1);
  -webkit-transform:scaleX(1);
  -moz-transform:scaleX(1);
  transform-origin:0;
  -webkit-transform-origin:0;
  visibility:visible\9;
}

.tel{
  background:url("../images/tel.png") no-repeat left center;
  padding-left:39px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
}


#prodown{
  position:relative;
}
.prolist{
  position:absolute;
  top:105%;
  left:50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  display:flex;
  justify-content: center;
  align-items: center;
  z-index: -1000;
  opacity: 0;

}
.prolistshow{
  display:flex;
  /*z-index: 99;*/
  top:100%;
  opacity: 1;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  z-index: 1000;
}
.navlist_right{
  padding:35px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left:0;
}
.navlist_right>img{
  max-height:198px;
}
.navlist_left{
  padding-left:30px;
  padding-right: 30px;
  width: 380px;
}
.navlist_left h3{
  color: #fff;
  font-size: 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  position:relative;
  padding-bottom: 10px;
  margin-bottom: 6px;
}
.navlist_left h3:after{
  display:block;
  content: '';
  position:absolute;
  left:0;
  bottom:-1px;
  width: 54px;
  height: 1px;
  background:var(--theme-color);
}
.navlist_left h3 span{
  text-transform: uppercase;
  font-weight: lighter;
  font-size: 1.4rem;
}
.navlist_left>div{
  display:flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.navlist_left>div>a{
  display:block;
  width: 24%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow:hidden;
  font-size: 1.4rem;
  color: #fff;
  margin-top: 15px;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.navlist_left>div>a:hover{
  color: var(--theme-color);
}



.banner {
  position: relative;
  height: 50vw;
}
.swiper-banner{
  height: 100%;
  width: 100%;
}
.banner .swiper-slide {
  position: relative;
  height: 100%;
}
.banner .swiper-slide a{
  display:block;
  width:100%;
  height: 100%;
}
.banner .swiper-pagination-bullet {
  width:40px;
  height: inherit;
  background:none;
  opacity: 1;
  margin-right: 8px;
}
.banner .warpper {
  position: absolute;
  bottom: 4vw;
  left:50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 9;
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.banner .swiper-pagination {
  position: relative;
  width: 500px;
  display:flex;
  align-items: center;
}
.banner .swiper-pagination span{
  font-weight: bold;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  line-height: 32px;
}
.banner .swiper-pagination b{
  display: block;
  width: 40px;
  height: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border:1px solid #fff;
  cursor: pointer;
}
.banner .swiper-pagination-bullet-active b{
  background:var(--theme-color);
  border:1px solid var(--theme-color);
}
.banner .swiper-pagination-bullet-active span{
  background:none;
}
.scroll_down{
  position:absolute;
  left:50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 100;
  bottom:2.5vw;
  cursor: pointer;
}
.scroll_down img{
  margin:0 auto;
}
.scroll_down p{
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}
.ban_btn{
  width: 115px;
  height: 50px;
  display:flex;
  align-items: center;
  justify-content: space-between;
}
.ban_btn>div{
  position:relative;
  left:inherit;
  right:inherit;
  top:inherit;
  bottom:inherit;
  width: 50px;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.ban_btn>div.swiper-button-disabled{
  opacity: 1;
}
.ban_btn>div:after{
  color: #fff;
  line-height: 50px;
  font-size: 16px;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.ban_btn>div:hover{
  background:#fff;
}
.ban_btn>div:hover:after{
  color: #3a3a3a;
}


/*public*/
.title{
  text-align: center;
  padding-top:5vw;
  padding-bottom: 2vw;
}
.title h3{
  color: var(--secondary-color);
  font-size: 3.6rem;
  margin-bottom: 10px;
  font-weight: bold;
}
.title h3 span{
  color: var(--theme-color);
}
.title small{
  font-size: 1.6rem;
  color: #575757;
  position:relative;
}
.title small:after,.title small:before{
  display:block;
  content: '';
  width:100px;
  height: 2px;
  background:#eaeaea;
  position:absolute;
  top:50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.title small:after{
    left:105%;
}
.title small:before{
  right:105%;
}
#main {
  overflow: hidden;
}
/*产品分类*/
.indexprotype{
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.indexprotype a{
  margin-bottom: 15px;
  color: #404040;
  font-size: 1.8rem;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.indexprotype a:hover{
  color: var(--theme-color);
}
.indexprotype i{
  font-size: 1.8rem;
  color: #404040;
  display:block;
  margin:0 27px;
  margin-bottom: 15px;
}
.indexprotype i:last-of-type{
  display:none;
}

/*产品列表*/
.indexpro{
  margin-bottom: 4vw;
}
.indexpro a{
  float:left;
  width: 24%;
  margin-right: 1.3%;
  margin-bottom: 1.3vw;
  height: 16vw;
  position:relative;
  overflow:hidden;
}
.indexpro a:nth-of-type(4n){
  margin-right: 0;
}
.indexpro a>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexpro a>div{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height: 100%;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.indexpro a:hover>div{
  background: rgba(237, 84, 0, 0.7);
}
.indexpro a>div>b{
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  opacity: 0;
  position:absolute;
  left:0;
  top:-45px;
  width:100%;
  text-align: center;
  font-size: 4.8rem;
  color: #fff;
  font-weight: bold;
}
.indexpro a:hover>div>b {
  opacity: 1;
  top:32%;
}
.indexpro a>div>p{
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.6rem;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  line-height: 53px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow:hidden;
}

.indexpro a:hover>div>p {
  background:none;
  bottom:30%;
}

/*服务优势*/
.indexadv{
  background:#f5f5f5;
  padding-bottom: 4vw;
  overflow:hidden;
}
.adv_text{
  text-align: center;
  padding:1vw 0;
  width: 100%;
}
.adv_text>h3{
  font-size: 2.2rem;
  color: #313131;
    -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.adv_text>small{
  font-size: 1.2rem;
  color: #8c8c8c;
  text-transform: uppercase;
  font-weight: lighter;
    -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.adv_text>i img{
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.adv_text>i{
  display:block;
  width:100%;
  height: 54px;
}
.indexadv .swiper-slide:hover .adv_text>i img{
  filter:grayscale(100) brightness(100);
}
.indexadv .swiper-slide:hover .adv_text>h3,.indexadv .swiper-slide:hover .adv_text>small{
  color: #fff;
}

.swiper-adv .swiper-slide{
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  background:#fff;
}
.indexadv .swiper-slide:hover{
  background: var(--theme-color);
}
.swiper-adv .swiper-slide>b{
  display:block;
  width:100%;
  height: 13vw;
  position:relative;
  overflow:hidden;
}
.swiper-adv .swiper-slide>b>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*indexcompany*/
.indexcompany{
  background:url("../images/combg.jpg") no-repeat center;
  background-size:cover;
  padding-bottom: 4vw;
}
.indexcompany .title h3{
  color: #fff;
}
.indexcompany .title small{
  color: #fff;
}
.indexcompany .warpper{
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.indexcompany .warpper>b{
  display:block;
  width:48%;
  height: 538px;
  position:relative;
  overflow:hidden;
}
.indexcompany .warpper>b>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexcom_right{
  width: 51%;
}
.intro_top{
  background:#fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding:30px;
  width:100%;
  margin-bottom: 30px;
}
.intro_top>h3{
  font-size: 2.6rem;
  color: #383838;
  font-weight: bold;
}
.intro_top>p{
  font-size: 1.2rem;
  color: #979797;
}
.intro_top>i{
  width: 29px;
  height: 3px;
  background: var(--theme-color);
  display:block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.intro_top>small{
  font-size: 1.4rem;
  color: #535353;
  line-height: 26px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.intro_top>a{
  width: 136px;
  line-height: 42px;
  border:1px solid #dfdfdf;
  display:block;
  text-align: center;
  margin-top: 1vw;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.intro_top>a:hover{
  background: var(--theme-color);
  border:1px solid var(--theme-color);
}
.intro_top>a span{
  font-size: 1.4rem;
  color: #3b3b3b;
  background:url("../images/comjt.png") no-repeat right center;
  padding-right: 48px;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.intro_top>a:hover span {
  color: #fff;
  background:url("../images/comjts.png") no-repeat right center;
}
.intro_bom{
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.intro_bom>a{
  display:block;
  width: 32%;
  height: 203px;
  position:relative;
  overflow:hidden;
}
.intro_bom>a>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro_bom>a>div>i{
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  color: #fff;
  font-weight: bold;
  font-size: 4.6rem;
  text-align: center;
  opacity: 0;
  position:absolute;
  width:100%;
  top:-50px;
}
.intro_bom>a:hover>div>i {
  top:26%;
  opacity: 1;
}
.intro_bom>a>div{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  height: 54px;
}
.intro_bom>a p{
  font-size: 1.6rem;
  line-height: 54px;
  color: #fff;
  position:absolute;
  width:100%;
  bottom:0;
  left:0;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.intro_bom>a:hover>div{
  height: 100%;
  background: rgba(237, 84, 0, 0.7);
}
.intro_bom>a:hover p{
  bottom:28%;
}

/*新闻*/
.indexnews{
  padding-bottom:4vw;
}
.indexnews .warpper{
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.indexnews_left{
  display:block;
  width: 32.5%;
  background:#f5f5f5;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.indexnews_left b{
  display:block;
  width:100%;
  height: 330px;
  position:relative;
  overflow:hidden;
}
.indexnews_left b>img{
  width:100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.indexnews_left:hover b>img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.news_text{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding:13px;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.indexnews_left:hover{
  background:var(--theme-color);
}
.news_text>p{
  font-size: 1.4rem;
  color: #575757;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.news_text>h4{
  font-size: 2rem;
  color: #3b3b3b;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow:hidden;
  line-height: 45px;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.news_text>small{
  display:block;
  font-size: 1.4rem;
  color: #626262;
  line-height: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 42px;
  margin-bottom:25px;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.indexnews_left:hover .news_text>p,.indexnews_left:hover .news_text>h4,.indexnews_left:hover .news_text>small{
  color: #fff;
}
.news_text>span{
  font-size: 1.4rem;
  color: #3b3b3b;
  padding-right: 47px;
  background:url("../images/newsjt.png") no-repeat right center;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.indexnews_left:hover .news_text>span{
  color: #fff;
  background:url("../images/newsjts.png") no-repeat right center;
}
.indexnews_right{
  width: 32.5%;
}
.indexnews_right a{
  width:100%;
  display:block;
  background:#f5f5f5;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
  margin-bottom:15px;
}
.indexnews_right a:last-of-type{
  margin-bottom: 0;
}
.indexnews_right a:hover{
  background:var(--theme-color);
}
.indexnews_right a h4{
  font-size: 2rem;
  color: #3b3b3b;
  font-weight: bold;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.indexnews_right a small{
  font-size: 1.4rem;
  color: #575757;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.indexnews_right a p{
  font-size: 1.4rem;
  color: #575757;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.indexnews_right a:hover h4,.indexnews_right a:hover small,.indexnews_right a:hover p{
  color: #fff;
}

/*在线留言*/
.indexform{
  padding-bottom: 3.5vw;
  background:#f5f5f5;
}
.indexform .warpper{
  display:flex;
  justify-content: space-between;
  align-items: center;
  height: 580px;
}
.indexform .warpper>b{
  display:block;
  width:calc(98% - 572px);
  height: 100%;
  position:relative;
  overflow:hidden;
}
.indexform .warpper>b>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexform_right{
  height: 100%;
  width: 572px;
  background:#fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding:45px 30px;
}
.indexform_right>h5{
  width: 100%;
  line-height: 76px;
  text-align: center;
  color: #fff;
  background:#373737;
  font-size: 2.2rem;
  font-weight: lighter;
}
#indexform input,#indexform textarea{
  line-height: 76px;
  height: 76px;
  border:1px solid #e4e4e4;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding:0 18px;
  font-size: 1.6rem;
  color: #565656;
  margin-top: 10px;
  overflow:hidden;
}
#indexform input::placeholder,#indexform textarea::placeholder{
  font-size: 1.6rem;
  color: #565656;
}
.formlistbg{
  display:flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
#indexform .code{
  background:#919191;
  display:flex;
  justify-content: space-between;
  align-items: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding:0 18px;
  width: 49.5%;
}
#indexform .code input{
  padding:0;
  color: #fff;
  border:none;
  margin-top: 0;
  background:none;
}
#indexform .code input::placeholder{
  color: #fff;
}
#indexform .code .verify{
  width:190px;
  display:flex;
  align-items: center;
  justify-content: center;
}
#indexform .code .verify img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.indexsubmit{
  display:block;
  width: 49.5%;
  line-height: 76px;
  text-align: center;
  background:var(--theme-color);
  font-weight: bold;
  color: #fff;
  font-size: 2rem;
}
.indexform_right>p{
  font-size: 1.6rem;
  color: #626262;
  margin-top: 15px;
}


/*footer*/
.footer{
  background:url("../images/fotbg.jpg") no-repeat center;
  background-size:cover;
}
.fot_top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  height: 160px;
}
.fot_top_left{
  display:flex;
  align-items: center;
}
.fot_top_left>img{
  height: 85px;
}
.fot_top_left>div{
  margin-left:8px;
}
.fot_top_left>div>h1{
  color: #fff;
  letter-spacing: 18px;
  font-size: 2.3rem;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
.fot_top_left>div>small{
  text-transform: uppercase;
  color: #fff;
  font-weight: lighter;
  line-height: 10px;
  font-size: 1rem;
}
.fot_top_left>h3{
  color: #fff;
  font-size: 1.8rem;
  width: 180px;
  font-weight: bold;
}
.fot_top_right{
  display:flex;
  justify-content: flex-end;
  align-items: center;
}
.fot_top_right li{
  padding-left:55px;
  font-size: 1.4rem;
  font-weight: lighter;
  color: #fff;
  margin-left: 4vw;
  background:url("../images/foticon01.png") no-repeat left center;
}
.fot_top_right li:first-of-type{
  margin-left: 0;
}
.fot_top_right li h4{
  font-size: 2.2rem;
  font-weight: bold;
}
.fot_top_right li:nth-of-type(2){
  background:url("../images/foticon02.png") no-repeat left center;
}
.fot_top_right li:nth-of-type(3){
  background:url("../images/foticon03.png") no-repeat left center;
}
.fot_mid{
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding:3vw 0;
}
.fm01{
  display:flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3vw;
}
.fm01>div{
  display:flex;
}
.fm01_text{
  margin-right: 4vw;
  width: 342px;
}
.fm01_text>h3{
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  text-transform: uppercase;
}
.fm01_text>h3 span{
  font-weight: bold;
  color: #fff;
  font-size: 2.6rem;
}
.fm01_text>b{
  display:block;
  margin-top: 1vw;
  width: 28px;
  background:var(--theme-color);
  height: 3px;
}
.fm01_text>div{
  width:100%;
  display:flex;
  flex-wrap: wrap;
}
.fm01_text>div>a{
  color: #fff;
  display:block;
  width:50%;
  font-size: 1.4rem;
  margin-top: 1vw;

  text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
 
    -webkit-transition: 350ms 0s all ease;


}



.wxcode{
  display:flex;
  align-items: center;
  justify-content: flex-end;
}
.wxcode>h3{
  color: #fff;
  font-size: 2.2rem;
}
.wxcode>h3 span{
  font-size: 2.6rem;
  color: #fff;
  font-weight: bold;
}
.wxcode>img{
  height: 137px;
}





.fot_bom{
  background:#0e1c2a;
}
.fot_bom>.warpper{
  display:flex;
  justify-content: space-between;
  align-items: center;
  height: 97px;
}
.fot_bom>.warpper p,.fot_bom>.warpper a{
  font-size: 1.6rem;
  color: #fff;
  font-weight: lighter;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.fot_bom>.warpper a:hover{
  text-decoration: underline;
}



















.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;
}