/* Animate.css动画演示 */
@import "../swiper/animate.min.css";

/* Swiper 6.4.1 */
@import "../swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../css/font/css/font-awesome.min.css";

/* 公共样式 */
@import "../css/public.min.css";

/* 头部 */
header {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 12;
  padding: 0 3vw;
  display: flex;
  justify-content: flex-end;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.logo{
  width: 360px;
  padding: 24px 0;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #c7000b;
  display: flex;
  justify-content: center;
  border-radius: 0 0 45px 0;
}
.logo img {
  width: 100%;
  max-width: 243px;
  display: block;
  height: auto;
}
.header_R{
  width: 65%;
  float: left;
  display: flex;
  justify-content: space-between;
}
/* 搜索 */
.search{
  float: left;
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
}
.search_ss{
  width: 24px;
  float: left;
  height: 22px;
  background: url(../images/search_ss.png) no-repeat center center;
  background-size: 100% 100%;
  cursor: pointer;
}
.search_B{
  display: none;
  width: 300px;
  float: left;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 9;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.search_inp1{
  width: calc(100% - 80px);
  float: left;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  font-size: 16px;
  color: #232323;
}
.search_btn{
  width: 80px;
  float: left;
  height: 40px;
  background-color: #c7000b;
  font-size: 18px;
  color: #fff;
}
.header_dianhua {
  float: left;
  display: flex;
  align-items: center;
  color: #c7000b;
  font-size: 20px;
  background: url(../images/header_dianhua.png) no-repeat left center;
  padding-left: 32px;
}

/* 导航 */
nav {
  width: 76%;
}
.nav{
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.nav>li{
  float: left;
  position: relative;
  padding: 35px 0 25px 0;
}
.nav>li>a{
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  color: #232323;
  position: relative;
}
.nav>li>a::before{
  content: "";
  width: 0;
  float: left;
  height: 1px;
  background-color: #c7000b;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  transition: all 0.4s;
}
.nav>li:hover>a,
.nav>li.nav-this>a{
  color: #c7000b;
}
.nav>li:hover>a::before,
.nav>li.nav-this>a::before{
  width: 100%;
}

/* 导航下拉 */
.nav-child{
  display: none;
  width: 200%;
  float: left;
  background-color: rgba(0,0,0,0.8);
  position: absolute;
  left: -50%;
  top: 100%;
  z-index: 9;
}
.nav-child>li{
  display: block;
  overflow: hidden;
}
.nav-child>li>a{
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
.nav-child>li>a:hover{
  background-color: #c7000b;
  color: #fff;
}

/*banner大图*/
.banner {
  width: 100%;
  position: relative;
}
.banner .banner-imgbox img {
  width: 100%;
  display: block;
  height: auto;
}
/*圆点*/
.banner .swiper-pagination {
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 15px;
  display: flex;
  justify-content: center;
}
.banner .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  float: left;
  background: #c7000b;
  opacity: 0.5;
  border-radius: 50%;
  margin: 0 3px;
}
.banner .swiper-pagination-bullet-active {
  opacity: 1;
  background: #c7000b;
}
.banner:hover .swiper-pagination {
  opacity: 1;
}
/*箭头*/
.banner .banner-prev,
.banner .banner-next {
  left: 2%;
  top: 50%;
  position: absolute;
  z-index: 9;
  transform: translateY(-50%);
  width: 30px;
  height: 60px;
  font-size: 20px;
  color: #fff;
  background-color: rgba(0,0,0,0.6);
  opacity: 0;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.banner .banner-next{
  left: initial;
  right: 2%;
}
.banner:hover .banner-next,
.banner:hover .banner-prev {
  opacity: 1;
}
/* END */

/*首页*/
.gsjj{
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
}
.gsjj_title{
  width: 170px;
  float: left;
}
.gsjj_p{
  display: block;
  overflow: hidden;
  line-height: 46px;
  font-size: 48px;
  color: #373737;
  text-transform: uppercase;
}
.gsjj_p>span{
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 36px;
  color: #c7000b;
}
.gsjj_sp{
  display: block;
  overflow: hidden;
  margin-top: 55px;
  font-size: 30px;
  color: #c7000b;
  line-height: 40px;
}
.gsjj_contect{
  width: 81%;
  float: right;
}
.gsjj_txt{
  display: block;
  overflow: hidden;
  height: 150px;
  line-height: 30px;
  font-size: 16px;
  color: #373737;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:5;
  -webkit-box-orient: vertical;
}
.gsjj_txt>span{
  display: block;
  overflow: hidden;
  font-size: 20px;
  font-weight: bold;
}
.gsjj_img{
  display: block;
  overflow: hidden;
  position: relative;
  margin-top: 25px;
}
.gsjj_img::before{
  content: "";
  display: block;
  padding-top: 27.18147%;
}
.gsjj_img>a{
  width: 98px;
  float: left;
  height: 86px;
  background-color: #cc0000;
  position: absolute;
  right: 0;
  bottom: 0;
}
.gsjj_img>a::before{
  content: "";
  width: 28px;
  float: left;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.gsjj_img>a::after{
  content: "";
  width: 3px;
  float: left;
  height: 28px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.gsjj_more{
  width: 100%;
  float: left;
}
.gsjj_more>a{
  width: 152px;
  float: left;
  height: 52px;
  border: 1px solid #ccc;
  line-height: 50px;
  border-radius: 26px;
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: -52px;
  position: relative;
  overflow: hidden;
}
.gsjj_more>a>span{
  position: relative;
  z-index: 2;
  transition: initial;
}
.gsjj_more>a::before{
  content: "";
  width: 100%;
  float: left;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  background-color: #cc0000;
  transition: all 0.4s;
}
.gsjj_more>a:hover{
  color: #fff;
}
.gsjj_more>a:hover::before{
  left: 0;
}

.cpzs{
  width: 100%;
  overflow: hidden;
  background: url(../images/cpzs_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 75px 0 65px 0;
}
.cpzs_title{
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 40px;
}
.cpzs_p{
  font-size: 36px;
  color: #333;
  text-transform: uppercase;
}
.cpzs_sp{
  font-size: 30px;
  color: #cc0000;
  margin-top: 10px;
}
.cpzs_nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 60px;
}
.cpzs_nav>li{
  width: calc(50% - 15px);
  float: left;
  margin-bottom: 20px;
}
.cpzs_nav>li>a{
  width: 100%;
  float: left;
  height: 120px;
  border-bottom: 3px solid #fff;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  background-color: #fff;
}
.cpzs_nav>li>a>span{
  width: calc(100% - 100px);
  float: left;
  font-size: 24px;
  color: #333;
  line-height: 1;
  padding: 0 20px 0 38px;
  position: relative;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cpzs_nav>li>a>span::before{
  content: "";
  width: 13px;
  float: left;
  height: 13px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 3px solid #cc0000;
  border-radius: 50%;
}
.cpzs_nav>li>a>.cpzs_icon{
  width: 100px;
  float: left;
  position: relative;
}
.cpzs_nav>li>a>.cpzs_icon::before{
  content: "";
  display: block;
  padding-top: 80%;
}
.cpzs_nav>li>a>.cpzs_icon>img:first-child{opacity: 1;}
.cpzs_nav>li>a>.cpzs_icon>img:last-child{opacity: 0;}
.cpzs_nav>li.cpzs_active>a{
  border-bottom-color: #cc0000;
}
.cpzs_nav>li.cpzs_active>a>.cpzs_icon>img:first-child{opacity: 0;}
.cpzs_nav>li.cpzs_active>a>.cpzs_icon>img:last-child{opacity: 1;}

.cpzs_contect{
  display: block;
  overflow: hidden;
  padding: 50px 0;
}
.cpzs_contect>div{display: none;}
.cpzs_contect>div:first-child{display: block;}
.cpzs-imgbox{
  padding-bottom: 30px;
}
/* .cpzs-imgbox .swiper-slide{
	width: 370px;
	float: left;
	margin: 0 40px 40px 0;
} */
.cpzs-imgbox .swiper-slide>a{
  width: 100%;
  display: block;
  overflow: hidden;
}
.cpzs-imgbox .swiper-slide>a .cpzs_img{
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}
.cpzs-imgbox .swiper-slide>a .cpzs_img::before{
  content: "";
  display: block;
  padding-top: 66.6667%;
}
.cpzs-imgbox .swiper-slide>a .cpzs_txt{
  display: block;
  overflow: hidden;
  position: relative;
  line-height: 92px;
  text-align: center;
  font-size: 18px;
  color: #333;
  background-color: #fff;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.cpzs-imgbox .swiper-slide>a .cpzs_txt::before{
  content: "";
  width: 74px;
  height: 1px;
  display: block;
  margin: 0 auto;
  background-color: #ccc;
}
.cpzs-imgbox .swiper-slide>a:hover .cpzs_img img{
  transform: scale(1.1);
}
.cpzs-imgbox .swiper-slide>a:hover .cpzs_txt{
  background-color: #cc0000;
  color: #fff;
}
/*圆点*/
.cpzs-imgbox .swiper-pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cpzs-imgbox .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  float: left;
  background: #ccc;
  opacity: 1;
  border-radius: 50%;
  margin: 0 10px;
}
.cpzs-imgbox .swiper-pagination-bullet-active {
  opacity: 1;
  background: #c7000b;
}

.hf{
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hf_ul{
  width: 100%;
  float: left;
  border-left: 1px solid rgba(255,255,255,0.8);
}
.hf_ul li{
  width: 25%;
  float: left;
  border-right: 1px solid rgba(255,255,255,0.8);
  position: relative;
}
.hf_ul li::before{
  content: "";
  display: block;
  padding-top: 175%;
}
.hf_ul li>a{
  width: 100%;
  float: left;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.hf_ul li>a .hf_img{
  width: 100%;
  overflow: hidden;
  height: 0;
  position: relative;
}
.hf_ul li>a .hf_box{
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 16%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.hf_ul li>a .hf_box .hf_icon{
  width: 100%;
  overflow: hidden;
  height: 88px;
  position: relative;
  margin-bottom: 85px;
}
.hf_ul li>a .hf_box .hf_p{
  width: 100%;
  overflow: hidden;
  height: 74px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: space-between;
}
.hf_ul li>a .hf_box .hf_p::before{
  content: "";
  display: block;
  width: 112px;
  height: 2px;
  background-color: #fff;
  margin: 0 auto;
}
.hf_ul li>a .hf_box .hf_p::after{
  content: "";
  display: block;
  width: 112px;
  height: 2px;
  background-color: #fff;
  margin: 0 auto;
}
.hf_ul li>a .hf_box .hf_p>span{
  width: 100%;
  float: left;
  overflow: hidden;
  text-align: center;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  line-height: 1.1;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.hf_ul li>a .hf_box .hf_txt{
  width: 100%;
  overflow: hidden;
  height: 168px;
  line-height: 24px;
  font-size: 16px;
  color: #fff;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  margin-top: 35px;
}
.hf_ul li>a .hf_box .hf_hover{
  width: 176px;
  float: left;
  position: absolute;
  right: -100%;
  bottom: 30px;
}
.hf_ul li>a .hf_box .hf_hover>img{
  width: 100%;
  display: block;
  height: auto;
}
.hf_ul li>a:hover .hf_img{
  height: 50%;
}
.hf_ul li>a:hover .hf_box{
  height: 50%;
  background-color: #cc0000;
}
.hf_ul li>a:hover .hf_box .hf_icon{
  height: 0;
  margin-bottom: 0;
}
.hf_ul li>a:hover .hf_box .hf_hover{
  right: 25px;
}

.case{
  width: 100%;
  overflow: hidden;
  background: url(../images/case_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}
.case_contect{
  display: flex;
  flex-wrap: wrap;
  padding-top: 60px;
}
.case-imgbox{
  width: 100%;
  float: left;
  overflow: visible;
}
.case-imgbox .swiper-slide{
  padding: 0 60px 80px 45px;
}
.case-imgbox .swiper-slide::before{
  content: "";
  width: 92px;
  float: left;
  height: 92px;
  position: absolute;
  left: 0;
  top: 46px;
  background-color: rgba(204,0,0,0.8);
  border-radius: 0 10px 10px 10px;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s;
}
.case-imgbox .swiper-slide .case_img{
  width: 100%;
  overflow: hidden;
  position: relative;
}
.case-imgbox .swiper-slide .case_img::before{
  content: "";
  display: block;
  padding-top: 51.84332%;
}
.case-imgbox .swiper-slide .case_hover{
  width: 350px;
  float: left;
  background-color: #fff;
  border-radius: 0 45px 45px 45px;
  padding: 25px 30px 50px 30px;
  box-shadow: 0 0 50px rgba(0,0,0,0.1);
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
}
.case-imgbox .swiper-slide .case_hover .case_p{
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 24px;
  color: #333;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.case-imgbox .swiper-slide .case_hover .case_txt{
  display: block;
  overflow: hidden;
  height: 168px;
  line-height: 24px;
  font-size: 15px;
  color: #666;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  margin-top: 20px;
}
.case-imgbox .swiper-slide .case_hover .case_more{
  display: block;
  overflow: hidden;
  margin-top: 8px;
}
.case-imgbox .swiper-slide .case_hover .case_more>a{
  width: 152px;
  float: left;
  height: 42px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 21px;
  font-size: 14px;
  color: #666;
  position: relative;
  overflow: hidden;
}
.case-imgbox .swiper-slide .case_hover .case_more>a>span{
  position: relative;
  z-index: 2;
  transition: initial;
}
.case-imgbox .swiper-slide .case_hover .case_more>a::before{
  content: "";
  width: 100%;
  float: left;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  background-color: #cc0000;
  transition: all 0.4s;
}
.case-imgbox .swiper-slide .case_hover .case_more>a:hover{color: #fff;}
.case-imgbox .swiper-slide .case_hover .case_more>a:hover:before{
  left: 0;
}
.case-imgbox .swiper-slide-active::before,
.case-imgbox .swiper-slide-active .case_hover{
  opacity: 1;
}

.news{
  width: 100%;
  overflow: hidden;
}
.news>.container{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news_left{
  width: 260px;
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  padding: 110px 0;
}
.news_title{
  width: 100%;
  overflow: hidden;
}
.news_p{
  display: block;
  overflow: hidden;
  line-height: 46px;
  font-size: 48px;
  color: #373737;
  text-transform: uppercase;
}
.news_p>span{
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 36px;
  color: #c7000b;
}
.news_sp{
  display: block;
  overflow: hidden;
  line-height: 40px;
  font-size: 30px;
  color: #c7000b;
  margin-top: 55px;
}
.news_right{
  width: 80%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news_B{
  width: 49%;
  float: left;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 110px 55px;
}
.news_B>a{
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
}
.news_B .news_R{
  width: 100%;
  overflow: hidden;
}
.news_B .news_R .news_tit{
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 18px;
  color: #373737;
  font-weight: bold;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.news_B .news_R .news_txt{
  display: block;
  overflow: hidden;
  margin-top: 10px;
  height: 96px;
  line-height: 24px;
  font-size: 15px;
  color: #686868;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.news_B .news_R .news_img{
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}
.news_B .news_R .news_img>img{
  transform: scale(1.2);
}
.news_B .news_R .news_img::before{
  content: "";
  display: block;
  padding-top: 60.3054%;
}
.news_B .news_R .news_time{
  display: block;
  overflow: hidden;
  line-height: 24px;
  margin-top: 35px;
  font-size: 14px;
  color: #6c6c6c;
  text-decoration: underline;
}
.news_B>a:hover .news_R .news_tit{
  color: #c7000b;
}
.news_B>a:hover .news_R .news_img>img{
  transform: scale(1);
}
.news_ul{
  width: 51%;
  float: left;
  padding-top: 110px;
}
.news_ul>li{
  width: 100%;
  float: left;
  position: relative;
  padding-left: 50px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.news_ul>li::after{
  content: "";
  width: 1000%;
  float: left;
  height: 1px;
  background-color: #e5e5e5;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.news_ul>li>a{
  width: 100%;
  float: left;
  display: flex;
}
.news_ul>li>a .news_img{
  width: 165px;
  float: left;
  overflow: hidden;
  position: relative;
}
.news_ul>li>a .news_img>img{
  transform: scale(1.2);
}
.news_ul>li>a .news_R{
  width: calc(100% - 165px);
  float: left;
  padding-left: 20px;
}
.news_ul>li>a .news_R .news_tit{
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 18px;
  color: #373737;
  font-weight: bold;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.news_ul>li>a .news_R .news_txt{
  display: block;
  overflow: hidden;
  margin-top: 10px;
  height: 72px;
  line-height: 24px;
  font-size: 15px;
  color: #686868;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news_ul>li>a .news_R .news_time{
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 14px;
  color: #6c6c6c;
  text-decoration: underline;
}
.news_ul>li>a:hover .news_R .news_tit{
  color: #c7000b;
}
.news_ul>li>a:hover .news_img>img{
  transform: scale(1);
}
.news_ul>li:last-child{border-bottom: none;}
.news_ul>li:last-child::after{display: none;}

.agent{
  width: 100%;
  overflow: hidden;
  padding: 85px 0;
  background: url(../images/agent_bj.jpg) no-repeat center center;
  background-size: cover;
}
.agent>.container{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
.agent_left{
  width: 80%;
  float: left;
}
.agent_p{
  display: block;
  overflow: hidden;
  font-size: 48px;
  color: #fff;
  text-transform: uppercase;
  line-height: 46px;
}
.agent_sp{
  display: block;
  overflow: hidden;
  font-size: 30px;
  color: #fff;
  line-height: 40px;
  position: relative;
}
.agent_sp::after{
  content: "";
  width: 235px;
  float: left;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 295px;
  bottom: 14px;
}
.agent_txt{
  display: block;
  overflow: hidden;
  line-height: 26px;
  margin-top: 26px;
  font-size: 16px;
  color: #fff;
}
.agent_more{
  width: 12.5%;
  float: left;
}
.agent_more>a{
  display: flex;
  background-color: #fff;
  border-radius: 27px;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  height: 54px;
  font-size: 18px;
  color: #c7000b;
  font-weight: bold;
  overflow: hidden;
}
.agent_more>a>span{
  width: 26px;
  float: left;
  height: 26px;
  border: 2px solid #c7000b;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  font-family: simsun;
  margin-left: 30px;
  transition: initial;
}
.agent_more>a:hover{
  background-color: #c7000b;
  box-shadow: 0 0 50px rgba(255,255,255,0.5);
  color: #fff;
}
.agent_more>a:hover>span{
  border-color: #fff;
}
/*END-首页*/

/* 底部 */
footer {
  background: #efefef;
  padding: 85px 0;
}
footer>.container{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer_left{
  width: 26%;
  float: left;
  border-top: 1px solid #636363;
  border-bottom: 1px solid #636363;
  padding: 20px 0;
  line-height: 36px;
  font-size: 15px;
  color: #333;
  margin-top: 10px;
}
.footer_center{
  width: 48%;
  float: left;
}
.footer_nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 30px;
}
.footer_nav>a{
  float: left;
  font-size: 16px;
  color: #191919;
}
.footer_nav>a:hover{
  color: #c7000b;
  text-decoration: underline;
}
.footer_logo{
  display: block;
  overflow: hidden;
  margin-top: 50px;
}
.footer_logo img{
  display: block;
  max-width: 100%;
  height: auto;
}
.footer_dianhua{
  display: block;
  overflow: hidden;
  padding-top: 20px;
  line-height: 30px;
  font-size: 16px;
  color: #090909;
}
.footer_dianhua>span{
  font-size: 18px;
  color: #d30303;
  font-weight: bold;
}
.copyright{
  width: 100%;
  overflow: hidden;
  line-height: 24px;
  padding: 8px 0;
  color: #494949;
  font-size: 15px;
}
.copyright a{
  color: #494949;
  margin: 0 5px;
}
.copyright a:hover{
  color: #d30303;
  text-decoration: underline;
}

.footer_right{
  width: 145px;
  float: left;
}
.footer_right img{
  width: 100%;
  display: block;
  height: auto;
}
.footer_right span{
  display: block;
  overflow: hidden;
  line-height: 24px;
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #8f8f8f;
}
/* END-底部 */

/* 关于我们 */
.N_banner{
  width: 100%;
  overflow: hidden;
  height: 52.5926vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.N_banner>.container{
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
}
.N_banner_p{
  display: block;
  overflow: hidden;
  line-height: 46px;
  font-size: 36px;
  color: #fff;
  font-weight: bold;
}
.N_banner_p::after{
  content: "";
  display: block;
  overflow: hidden;
  width: 68px;
  height: 4px;
  background-color: #c7000b;
  margin-top: 35px;
}
.N_banner_txt{
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 24px;
  color: #fff;
  margin-top: 35px;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.4);
}
.main{
	width: 100%;
  float: left;
}
.dqwz_contect{
	width: 100%;
	float: left;
	padding: 90px 0;
}
.company{
	display: block;
	overflow: hidden;
	font-size: 16px;
	line-height: 36px;
	color: #373737;
}
.company>span{
  font-size: 18px;
  font-weight: bold;
}
/* END-关于我们 */

/* 产品展示 */
.dqwz_title{
  width: 100%;
  float: left;
  background-color: #f4f4f4;
  border-bottom: 1px solid #cbcbcb;
  position: relative;
  z-index: 2;
}
.dqwz_nav{
  width: 100%;
  float: left;
}
.dqwz_nav>li{
  width: 12.5%;
  float: left;
  margin-bottom: -1px;
  position: relative;
  z-index: 2;
}
.dqwz_nav>li>a{
  width: 100%;
  float: left;
  position: relative;
  height: 78px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: 10px;
}
.dqwz_nav>li>a>span{
  display: block;
  overflow: hidden;
  line-height: 1;
  font-size: 20px;
  color: #323232;
  font-weight: bold;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient: vertical;
  position: relative;
  z-index: 1;
}
.dqwz_nav>li>a::after{
  content: "";
  width: 100%;
  float: left;
  height: 0;
  background-color: #c7000b;
  border-radius: 0 25px 0 0;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s;
}
.dqwz_nav>li>a:hover::after,
.dqwz_nav>li.dqwz_on>a::after{
  height: calc(100% + 16px);
}
.dqwz_nav>li>a:hover>span,
.dqwz_nav>li.dqwz_on>a>span{
  color: #fff;
}

.abou_ul{
  width: 102%;
  margin-left: -1%;
  overflow: hidden;
  margin-top: -40px;
}
.abou_ul>li{
  width: 14.6666%;
  float: left;
  margin: 0 1% 20px 1%;
}
.abou_ul>li>a{
  display: block;
  overflow: hidden;
  height: 54px;
  line-height: 52px;
  border: 1px solid #cacaca;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  color: #404040;
  padding: 0 10px;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.abou_ul>li>a:hover,
.abou_ul>li.about_on>a{
  border-color: #c7000b;
  color: #c7000b;
}

.cp_ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 75px;
}
.cp_ul li{
  width: calc(50% - 16px);
  float: left;
  margin-bottom: 36px;
}
.cp_ul li>a{
  width: 100%;
  float: left;
  display: flex;
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 95px rgba(0,0,0,0.1);
}
.cp_ul li>a .cp_img{
  width: 43%;
  float: left;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}
.cp_ul li>a .cp_R{
  width: 57%;
  float: left;
  padding-left: 35px;
}
.cp_ul li>a .cp_R .cp_p{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 24px;
  color: #191919;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.cp_ul li>a .cp_R .cp_txt{
  display: block;
  overflow: hidden;
  height: 120px;
  line-height: 24px;
  font-size: 14px;
  color: #757575;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  margin-top: 10px;
}
.cp_ul li>a .cp_R .cp_more{
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  max-width: 180px;
  height: 45px;
  background-color: #c30200;
  margin-top: 20px;
}
.cp_ul li>a .cp_R .cp_more>span{
  float: left;
  font-size: 14px;
  color: #fff;
  background: url(../images/cp_jiantou.png) no-repeat right center;
  padding-right: 64px;
}
.cp_ul li>a:hover{
  background-color: #c30200;
}
.cp_ul li>a:hover .cp_R .cp_p,
.cp_ul li>a:hover .cp_R .cp_txt{
  color: #fff;
}
.cp_ul li>a:hover .cp_R .cp_more{
  background-color: #fff;

}
.cp_ul li>a:hover .cp_R .cp_more>span{
  color: #c30200;
  padding: 0;
  background: none;
}

.cpxq{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 0 95px rgba(0,0,0,0.1);
  border-radius: 10px;
  margin-top: 45px;
  padding: 60px 45px;
}
.cpxq_left{
  width: 48%;
  float: left;
  position: relative;
}
.cpxq_right{
  width: 50%;
  float: right;
}
.cpxq_p{
  display: block;
  overflow: hidden;
  line-height: 40px;
  font-size: 30px;
  color: #191919;
}
.cpxq_txt{
  display: block;
  overflow: hidden;
  margin-top: 20px;
  font-size: 16px;
  color: #757575;
  line-height: 24px;
}
.cpxq_txt>span{
  display: block;
  overflow: hidden;
  margin-bottom: 5px;
  line-height: 30px;
  font-weight: bold;
  font-size: 18px;
  color: #c7000b;
}
/* END-产品展示 */

/* 工程案例 */
.gcal_ul{
  display: block;
  overflow: hidden;
  width: 102%;
  margin-left: -1%;
}
.gcal_ul li{
  width: 23%;
  float: left;
  margin: 0 1% 45px 1%;
}
.gcal_ul li .gcal_img{
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.gcal_ul li .gcal_img::before{
  content: "";
  display: block;
  padding-top: 75%;
}
.gcal_ul li .gcal_img>img{
  transform: scale(1.2);
}
.gcal_ul li .gcal_p{
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 24px;
  color: #2f2f2f;
  margin-top: 25px;
  text-align: center;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.gcal_ul li .gcal_more{
  display: block;
  overflow: hidden;
  margin: 0 auto;
  max-width: 152px;
  line-height: 40px;
  border: 1px solid #c1c1c1;
  border-radius: 20px;
  font-size: 14px;
  color: #757575;
  margin-top: 15px;
  text-align: center;
  position: relative;
}
.gcal_ul li .gcal_more::before{
  content: "";
  width: 100%;
  height: 100%;
  float: left;
  background-color: #c7000b;
  position: absolute;
  left: -100%;
  top: 0;
  transition: all 0.4s;
}
.gcal_ul li .gcal_more>span{
  position: relative;
  z-index: 1;
  transition: initial;
}
.gcal_ul li:hover .gcal_img>img{
  transform: scale(1);
}
.gcal_ul li:hover .gcal_more{
  color: #fff;
}
.gcal_ul li:hover .gcal_more::before{
  left: 0;
}

.gcalxq{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gcalxq_left{
  width: 50%;
  float: left;
  overflow: hidden;
  position: relative;
}
.gcalxq_left::before{
  content: "";
  display: block;
  padding-top: 61.25%;
}
.gcalxq_right{
  width: 50%;
  float: left;
  padding: 30px 0;
  position: relative;
  z-index: 2;
}
.gcalxq_box{
  width: calc(100% + 35px);
  height: 100%;
  float: right;
  background-color: #f7f7f7;
  padding: 35px;
  border-radius: 10px;
}
.gcalxq_p{
  display: block;
  overflow: hidden;
  line-height: 40px;
  font-size: 24px;
  color: #2f2f2f;
  font-weight: bold;
}
.gcalxq_txt{
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 15px;
  color: #707070;
  margin-top: 15px;
}
/* END-工程案例 */

/* 新闻资讯 */
.news_ul1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news_ul1>li{
  width: calc(50% - 20px);
  float: left;
  margin-bottom: 40px;
}
.news_ul1>li>a{
  width: 100%;
  float: left;
  display: flex;
  box-shadow: 0 0 95px rgba(0,0,0,0.1);
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
}
.news_ul1>li>a .news_img{
  width: 165px;
  float: left;
  overflow: hidden;
  position: relative;
}
.news_ul1>li>a .news_img>img{
  transform: scale(1.2);
}
.news_ul1>li>a .news_R{
  width: calc(100% - 165px);
  float: left;
  padding-left: 20px;
}
.news_ul1>li>a .news_R .news_tit{
  display: block;
  overflow: hidden;
  line-height: 1;
  font-size: 18px;
  color: #373737;
  font-weight: bold;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.news_ul1>li>a .news_R .news_txt{
  display: block;
  overflow: hidden;
  margin-top: 10px;
  height: 72px;
  line-height: 24px;
  font-size: 15px;
  color: #686868;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news_ul1>li>a .news_R .news_time{
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 14px;
  color: #6c6c6c;
  text-decoration: underline;
  margin-top: 5px;
}
.news_ul1>li>a:hover{
  background-color: #c7000b;
}
.news_ul1>li>a:hover .news_R .news_tit,
.news_ul1>li>a:hover .news_R .news_txt,
.news_ul1>li>a:hover .news_R .news_time{
  color: #fff;
}
.news_ul1>li>a:hover .news_img>img{
  transform: scale(1);
}

.xwxq{
  display: block;
  overflow: hidden;
}
.xwxq_p{
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 1;
  font-size: 30px;
  font-weight: bold;
  color: #373737;
}
.xwxq_sp{
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #9f9f9f;
  padding: 20px 0;
  border-bottom: 1px solid #c1c1c1;
}
.xwxq_txt{
  display: block;
  overflow: hidden;
  padding-top: 30px;
  font-size: 16px;
  line-height: 24px;
  color: #686868;
}
/* END-新闻资讯 */

/* 代理加盟 */
.dljm{
  display: block;
  overflow: hidden;
}
.dljm_title{
  display: block;
  overflow: hidden;
  font-size: 18px;
  color: #373737;
  line-height: 36px;
  font-weight: bold;
}
.dljm_ul{
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  width: 102%;
  margin-left: -1%;
  padding-top: 40px;
}
.dljm_ul li{
  width: 31.3333%;
  float: left;
  margin: 0 1% 2% 1%;
  background-color: #f5f6fa;
  padding: 30px;
}
.dljm_p{
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 18px;
  color: #c7000b;
  font-weight: bold;
  margin-bottom: 10px;
}
.dljm_txt{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #373737;
}
.dljm_box{
  display: block;
  overflow: hidden;
  padding: 30px;
}
/* END-代理加盟 */

/* 联系我们 */
.contact_ul {
  display: flex;
  flex-wrap: wrap;
  width: 102%;
  margin-left: -1%;
}
.contact_ul li{
  width: 18%;
  float: left;
  margin: 0 1% 20px 1%;
  border: 1px solid #c7c7c7;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  align-items: center;
  align-content: center;
  font-size: 16px;
  color: #373737;
  line-height: 28px;
  overflow: hidden;
}
.contact_ul li>img{
  float: left;
  margin-right: 20px;
}
.contact_ul li .contact_txt{
  word-wrap: break-word;
  display: block;
  overflow: hidden;
}
.contact_ul li span{
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-weight: bold;
}
.contact_map {
  width: 100%;
  overflow: hidden;
  height: 600px;
  border: none;
  margin-top: 40px;
}

.jlfanye{ /*float:right;*/ width:100%;}
.jlfanye a{ padding:5px;  border: solid 1px #dedede; /*float:left;*/ min-width:8px; margin:8px 2px; color:#999;}
.jlfanye a:hover{ color:#f00;}

/* END-联系我们 */
@media (max-width: 1400px) {
/* 头部 */
header {
  padding: 0 2vw;
}
.header_R {
  width: 70%;
}
/* END-头部 */

/* 首页 */
.gsjj {
  padding: 80px 0;
}

.hf_ul li>a .hf_box {
  padding: 0 10%;
}
.hf_ul li>a .hf_box .hf_txt {
  height: 144px;
  -webkit-line-clamp: 6;
  margin-top: 30px;
}
.case-imgbox .swiper-slide {
  padding: 0 40px 60px 30px;
}
.case-imgbox .swiper-slide .case_hover {
  width: 300px;
  padding: 20px;
}
.case-imgbox .swiper-slide .case_hover .case_txt {
  height: 120px;
  -webkit-line-clamp: 5;
}

.news_left {
  padding: 80px 0;
}
.news_right {
  width: calc(100% - 300px);
}
.news_B {
  padding: 80px 30px;
}
.news_ul {
  padding-top: 80px;
}
.news_ul>li {
  padding-left: 40px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.agent {
  padding: 60px 0;
}
/* END-首页 */

/* 底部 */
footer {
  padding: 60px 0;
}
/* END-底部 */

/* 关于我们 */
.dqwz_contect {
  padding: 70px 0;
}
/* END-关于我们 */

/* 产品展示 */
.dqwz_nav>li{
  width: 16.6666%;
}
.abou_ul{
  margin-top: -20px;
}
/* END-产品展示 */


}

@media (max-width: 1220px) {
/* 头部 */
.logo {
  width: 250px;
  padding: 20px 10px;
}
.header_R {
  width: 75%;
}
.nav>li {
  padding: 25px 0 15px 0;
}
.header_dianhua {
  font-size: 16px;
  font-weight: bold;
  padding-left: 25px;
}
/* END-头部 */

/* 首页 */
.gsjj {
  padding: 50px 0;
}

.cpzs {
  padding: 50px 0;
}
.cpzs_nav {
  padding-top: 40px;
}
.cpzs_nav>li>a {
  padding: 0 20px;
}
.cpzs_nav>li>a>span {
  padding: 0 15px 0 25px;
}
.cpzs_contect {
  padding: 40px 0;
}
.cpzs-imgbox {
  padding-bottom: 50px;
}
/* .cpzs-imgbox{
	width: 102%;
	margin-left: -1%;
}
.cpzs-imgbox .swiper-slide{
	width: 23%;
	margin: 0 1% 40px 1%;
} */


.hf_ul li>a .hf_box {
  padding: 0 6%;
}
.hf_ul li>a .hf_box .hf_p>span {
  font-size: 20px;
}
.hf_ul li>a .hf_box .hf_icon {
  margin-bottom: 20px;
}
.hf_ul li>a .hf_box .hf_txt {
  height: 120px;
  -webkit-line-clamp: 5;
  margin-top: 15px;
}

.case {
  padding: 50px 0;
}
.case_contect {
  padding-top: 40px;
}
.case-imgbox .swiper-slide {
  padding: 0 20px 40px 20px;
}
.case-imgbox .swiper-slide::before {
  width: 50px;
  height: 50px;
  top: 20px;
}
.case-imgbox .swiper-slide .case_hover {
  width: 80%;
  padding: 15px;
}
.case-imgbox .swiper-slide .case_hover .case_p {
  line-height: 30px;
  font-size: 20px;
}
.case-imgbox .swiper-slide .case_hover .case_txt {
  height: 96px;
  -webkit-line-clamp: 4;
  margin-top: 10px;
}

.news_left {
  padding: 50px 0;
}
.news_B {
  padding: 50px 20px;
}
.news_ul {
  padding-top: 50px;
}
.news_ul>li {
  padding-left: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.agent {
  padding: 40px 0;
}
.agent_more {
  width: 19%;
}
/* END-首页 */

/* 底部 */
footer {
  padding: 40px 0;
}
/* END-底部 */

/* 关于我们 */
.dqwz_contect {
  padding: 50px 0;
}
/* END-关于我们 */

/* 产品展示 */
.dqwz_nav>li{
  width: 20%;
}
.abou_ul>li{
  width: 18%;
  margin: 0 1% 10px 1%;
}
.cp_ul {
  padding-top: 50px;
}
.cp_ul li>a {
  padding: 30px 20px;
}
.cp_ul li>a .cp_R {
  padding-left: 20px;
}
/* END-产品展示 */

/* 联系我们 */
.contact_ul li{
  width: 18%;
  padding: 10px;
}
.contact_ul li>img{
  margin-right: 10px;
}
.contact_map {
  height: 400px;
  margin-top: 30px;
}
/* END-联系我们 */

}

@media (max-width: 991px) {
/* 导航按钮 */
.icon-menu {
  float: right;
  cursor: pointer;
  width: 50px;
  height: 35px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  position: relative;
  z-index: 11;
  background-size: 100% 100%;
}
.icon-menu>span {
  width: 100%;
  height: 5px;
  float: left;
  background-color: #c7000b;
  transition: all 0.4s;
}
.icon-menu-active>span:nth-child(2){
  opacity: 0;
}
.icon-menu-active>span:nth-child(1){
  -webkit-transform: translateY(15px) rotate(-45deg);
  -ms-transform: translateY(15px) rotate(-45deg);
  transform: translateY(15px) rotate(-45deg);
}
.icon-menu-active>span:nth-child(3){
  -webkit-transform: translateY(-15px) rotate(45deg);
  -ms-transform: translateY(-15px) rotate(45deg);
  transform: translateY(-15px) rotate(45deg);
}

/* 头部 */
header {
  padding: 0 20px;
  justify-content: space-between;
  align-items: center;
}
.logo {
  width: 30%;
  padding: 10px;
  position: relative;
  margin-left: -20px;
}
.header_R {
  width: 70%;
  justify-content: flex-end;
}
.search {
  margin-right: 40px;
}

/* 导航 */
nav {
  position: fixed;
  background-color: rgba(0,0,0,0.8);
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  z-index: 10;
	opacity: 0;
  display: flex;
  justify-content: flex-start;
  transition: all 0.4s;
}
.nav-actived{
  left: 0;
	opacity: 1;
}
.nav{
  width: 85%;
  height: 100%;
  background-color: #fff;
  display: block;
}
.nav>li{
  width: 100%;
  height: 10%;
  border-bottom: 1px solid #ccc;
  padding: 0;
}
.nav>li>a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  color: #000;
}
.nav>li:hover>a,
.nav>li.nav-this>a {
  background-color: #c7000b;
  color: #fff;
}
/* END-头部 */

/* 首页 */
.gsjj {
  padding: 30px 0;
}
.gsjj_sp {
  margin-top: 20px;
}
.gsjj_contect {
  width: 72%;
}
.gsjj_img>a {
  width: 60px;
  height: 50px;
}

.cpzs {
  padding: 30px 0;
}
.cpzs_nav {
  padding-top: 20px;
}
.cpzs_nav>li>a{
  height: 80px;
}
.cpzs_nav>li>a>.cpzs_icon {
  width: 60px;
}
.cpzs_nav>li>a>span {
  width: calc(100% - 60px);
  font-size: 18px;
}
.cpzs_contect {
  padding: 30px 0;
}
.cpzs-imgbox {
  padding-bottom: 40px;
}

/* .cpzs-imgbox .swiper-slide{
	width: 31.3333%;
	margin: 0 1% 20px 1%;
} */

.cpzs-imgbox .swiper-slide>a .cpzs_txt {
  line-height: 70px;
}

.hf_ul li>a .hf_box .hf_icon {
  height: 50px;
  margin-bottom: 15px;
}
.hf_ul li>a .hf_box .hf_p {
  height: 60px;
}
.hf_ul li>a .hf_box .hf_p>span {
  font-size: 18px;
}

.case {
  padding: 30px 0;
}
.case_contect {
  padding-top: 30px;
}
.news_sp {
  margin-top: 20px;
}

.news_left{
  width: 100%;
  padding: 30px 0;
  text-align: center;
}
.news_sp {
  margin-top: 5px;
}
.news_right {
  width: 100%;
  padding-bottom: 20px;
}
.news_B {
  width: 100%;
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
}
.news_ul {
  width: 100%;
  padding-top: 20px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.news_B>a .news_img{
  width: 165px;
  float: left;
  overflow: hidden;
  position: relative;
}
.news_B .news_R {
  width: calc(100% - 165px);
  float: left;
  padding-left: 20px;
}
.news_B .news_R .news_tit {
  line-height: 26px;
}
.news_B .news_R .news_txt {
  margin-top: 5px;
  height: 72px;
  -webkit-line-clamp: 3;
}
.news_B .news_R .news_time {
  line-height: 20px;
  margin-top: 5px;
}
.news_ul>li:last-child{margin: 0;}
.news_ul>li>a .news_R .news_txt {
  margin-top: 5px;
}
.news_ul>li>a .news_R .news_time {
  margin-top: 5px;
}
.gsjj_more{
  display: flex;
  justify-content: center;
}
.gsjj_more>a {
  margin-top: 20px;
}

.agent {
  padding: 20px 0;
}
.agent_left {
  width: 100%;
}
.agent_more {
  width: 25%;
  margin-top: 20px;
}
/* END-首页 */

/* 底部 */
footer {
  padding: 20px 0;
}
.footer_center {
  width: 70%;
}
.footer_logo {
  margin-top: 20px;
}
/* END-底部 */

/* 关于我们 */
.dqwz_contect {
  padding: 30px 0;
}
/* END-关于我们 */

/* 产品展示 */
.dqwz_nav>li{
  width: 25%;
}
.abou_ul>li{
  width: 23%;
  margin: 0 1% 10px 1%;
}
.cp_ul {
  padding-top: 30px;
}
.cp_ul li{
  width: 100%;
}
.cp_ul li>a {
  padding: 20px;
}
/* END-产品展示 */

/* 工程案例 */
.gcal_ul li{
  width: 31.3333%;
  margin: 0 1% 25px 1%;
}
/* END-工程案例 */

/* 新闻资讯 */
.news_ul1>li{
  width: calc(50% - 10px);
  margin-bottom: 20px;
}
.news_ul1>li>a{
  padding: 15px;
}
/* END-新闻资讯 */

/* 联系我们 */
.contact_ul li{
  width: 31.3333%;
  padding: 15px;
}
.contact_map {
  height: 400px;
  margin-top: 20px;
}
/* END-联系我们 */

}

@media (max-width: 767px) {
/* 导航按钮 */
.icon-menu {
  width: 30px;
  height: 21px;
	right: 10px;
}
.icon-menu span {
  height: 3px;
}
.icon-menu-active>span:nth-child(1){
  -webkit-transform: translateY(9px) rotate(-45deg);
  -ms-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
.icon-menu-active>span:nth-child(3){
  -webkit-transform: translateY(-9px) rotate(45deg);
  -ms-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

/* 头部 */
header {
  padding: 0 10px;
}
.logo{
  width: 50%;
  margin-left: -10px;
}
.header_R {
  width: 50%;
}

/* END-头部 */

/* 首页 */
.gsjj {
  padding: 10px 0;
}
.gsjj_title {
  width: 100%;
  text-align: center;
}
.gsjj_p {
  line-height: 30px;
  font-size: 20px;
  display: flex;
  justify-content: center;
}
.gsjj_p>span {
  line-height: 30px;
  font-size: 20px;
  padding-left: 10px;
}
.gsjj_sp {
  margin-top: 5px;
  font-size: 20px;
  line-height: 24px;
}
.gsjj_contect {
  width: 100%;
  padding-top: 10px;
}
.gsjj_txt>span {
  font-size: 16px;
  line-height: 24px;
}
.gsjj_txt {
  height: auto;
  line-height: 24px;
  font-size: 14px;
  -webkit-line-clamp: initial;
}
.gsjj_img {
  margin-top: 10px;
}
.gsjj_img::before {
  padding-top: 50%;
}
.gsjj_more>a {
  margin-top: 10px;
  width: 120px;
  height: 30px;
  line-height: 28px;
  border-radius: 15px;
}

.cpzs {
  padding: 10px 0;
}
.cpzs_title {
  line-height: 24px;
}
.cpzs_p {
  font-size: 18px;
}
.cpzs_sp {
  font-size: 20px;
  margin-top: 5px;
}
.cpzs_nav {
    padding-top: 10px;
}
.cpzs_nav>li {
  width: 100%;
  margin-bottom: 10px;
}
.cpzs_nav>li>a {
  height: 50px;
  padding: 0 10px;
}
.cpzs_nav>li>a>.cpzs_icon {
  width: 40px;
}
.cpzs_nav>li>a>span {
  -webkit-line-clamp: 1;
}
.cpzs_contect {
  padding: 10px 0;
}
.cpzs-imgbox {
  padding-bottom: 20px;
}

/* .cpzs-imgbox .swiper-slide{
	width: 48%;
	margin: 0 1% 10px 1%;
} */

.cpzs-imgbox .swiper-slide>a .cpzs_txt {
  line-height: 40px;
  font-size: 14px;
}

.hf_ul li {
  width: 50%;
  border-bottom: 1px solid rgba(255,255,255,0.8);
}
.hf_ul li>a .hf_box .hf_icon {
  height: 40px;
  margin-bottom: 10px;
}
.hf_ul li>a .hf_box .hf_txt {
  height: 72px;
  -webkit-line-clamp: 3;
  margin-top: 5px;
  font-size: 14px;
}
.hf_ul li>a .hf_box .hf_hover {
  width: 50px;
  bottom: 10px;
}
.hf_ul li>a:hover .hf_box .hf_hover {
  right: 10px;
}

.case {
  padding: 10px;
}
.case_contect {
  padding-top: 10px;
}
.case-imgbox .swiper-slide .case_hover {
  width: 86%;
  padding: 10px;
}
.case-imgbox .swiper-slide .case_hover .case_p {
  line-height: 24px;
  font-size: 18px;
}
.case-imgbox .swiper-slide .case_hover .case_txt {
  height: 72px;
  -webkit-line-clamp: 3;
  margin-top: 5px;
}
.case-imgbox .swiper-slide .case_hover .case_more>a {
  width: 120px;
  height: 30px;
  line-height: 28px;
  border-radius: 15px;
}

.news_left {
  padding: 10px 0;
}
.news_p {
  line-height: 24px;
  font-size: 20px;
}
.news_p>span {
  line-height: 24px;
  font-size: 20px;
}
.news_sp {
  line-height: 20px;
  font-size: 16px;
  margin-top: 0;
}
.news_B {
  padding: 10px;
}
.news_B>a .news_img {
  width: 140px;
}
.news_B .news_R {
  width: calc(100% - 140px);
  padding-left: 10px;
}
.news_ul {
  padding-top: 10px;
}
.news_ul>li {
  padding-left: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
}
.news_ul>li>a .news_img {
  width: 140px;
}
.news_ul>li>a .news_R {
  width: calc(100% - 140px);
  padding-left: 10px;
}

.agent {
  padding: 10px 0;
}
.agent_p {
  font-size: 30px;
  line-height: 30px;
}
.agent_sp {
  font-size: 20px;
  line-height: 30px;
}
.agent_sp::after {
  left: 40%;
}
.agent_txt {
  line-height: 24px;
  margin-top: 10px;
  font-size: 14px;
}
.agent_more {
  width: 50%;
  margin-top: 10px;
}
.agent_more>a {
  border-radius: 20px;
  height: 40px;
  font-size: 16px;
}
/* END-首页 */

/* 底部 */
footer {
  padding: 10px 0;
}
.footer_center {
  width: 100%;
}
.footer_nav {
  line-height: 24px;
  justify-content: center;
}
.footer_nav>a {
  font-size: 14px;
  margin: 0 4px;
}
.copyright {
  line-height: 22px;
  padding: 8px 0 0 0;
  font-size: 14px;
  text-align: center;
}
/* END-底部 */

/* 关于我们 */
.N_banner {
  height: 30vh;
}
.N_banner_p {
  line-height: 30px;
  font-size: 20px;
}
.N_banner_p::after {
  margin-top: 10px;
}
.N_banner_txt {
  line-height: 24px;
  font-size: 16px;
  margin-top: 10px;
}

.dqwz_contect {
  padding: 10px 0;
}
.company{
	line-height: 24px;
  font-size: 14px;
}
.company>span{
  font-size: 16px;
}
/* END-关于我们 */

/* 产品展示 */
.about_title{
  width: calc(100% + 20px);
  text-align: left;
  margin-left: -10px;
  font-size: 18px;
  font-weight: bold;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #fff;
  position: relative;
  background-color: #c7000b;
}
.about_title::after{
  content: "\f078";
  font-family: FontAwesome;
  font-size: 16px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.dqwz_nav{
  display: none;
  transition: initial;
}
.dqwz_nav>li{
  width: 100%;
  margin-top: 3px;
}
.dqwz_nav>li>a{
  height: 40px;
  padding: 0 10px;
}
.dqwz_nav>li>a>span{
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  -webkit-line-clamp: 1;
}
.dqwz_nav>li>a::after{
  border-radius: 0;
  height: 100%;
  opacity: 0;
}
.dqwz_nav>li>a:hover::after,
.dqwz_nav>li.dqwz_on>a::after{
  height: 100%;
  opacity: 1;
}
.abou_ul{
  margin: 0;
}
.abou_ul>li{
  width: 48%;
  margin: 0 1% 1% 1%;
}
.abou_ul>li>a {
  height: 34px;
  line-height: 32px;
  font-size: 14px;
}

.cp_ul {
  padding-top: 10px;
}
.cp_ul li {
  margin-bottom: 10px;
}
.cp_ul li>a {
  padding: 10px;
}
.cp_ul li>a .cp_R {
  padding-left: 10px;
}
.cp_ul li>a .cp_R .cp_p {
  line-height: 24px;
  font-size: 18px;
}
.cp_ul li>a .cp_R .cp_txt {
  height: 72px;
  -webkit-line-clamp: 3;
  margin-top: 5px;
}
.cp_ul li>a .cp_R .cp_more {
  max-width: 120px;
  height: 30px;
  margin-top: 5px;
}
.cp_ul li>a .cp_R .cp_more>span {
  background: url(../images/cp_jiantou.png) no-repeat right center;
  background-size: 30px auto;
  padding-right: 40px;
}

.cpxq {
  margin-top: 10px;
  padding: 10px;
}
.cpxq_left {
  width: 100%;
}
.cpxq_left::before{
  content: "";
  display: block;
  padding-top: 50%;
}
.cpxq_right {
  width: 100%;
  margin-top: 10px;
}
.cpxq_p {
  line-height: 24px;
  font-size: 18px;
  text-align: center;
}
.cpxq_txt {
  margin-top: 10px;
  font-size: 14px;
}
/* END-产品展示 */

/* 工程案例 */
.gcal_ul li {
  width: 48%;
  margin: 0 1% 10px 1%;
}
.gcal_ul li .gcal_p {
  line-height: 30px;
  font-size: 16px;
  margin-top: 5px;
}
.gcal_ul li .gcal_more {
  max-width: 110px;
  line-height: 24px;
  border-radius: 12px;
  margin-top: 5px;
}

.gcalxq_left{
  width: 100%;
}
.gcalxq_right{
  width: 100%;
  padding: 0;
}
.gcalxq_box{
  width: 100%;
  padding: 10px;
}
.gcalxq_p{
  line-height: 24px;
  font-size: 18px;
}
.gcalxq_txt{
  margin-top: 10px;
}
/* END-工程案例 */

/* 新闻资讯 */
.news_ul1>li{
  width: 100%;
  margin-bottom: 10px;
}
.news_ul1>li>a{
  padding: 10px;
}
.news_ul1>li>a .news_img {
  width: 140px;
}
.news_ul1>li>a .news_R{
  width: calc(100% - 140px);
  padding-left: 10px;
}
.news_ul1>li>a .news_R .news_txt {
  margin-top: 5px;
}
.xwxq_p {
  font-size: 18px;
}
.xwxq_sp {
  padding: 10px 0;
}
.xwxq_txt {
  padding-top: 10px;
  font-size: 14px;
}
/* END-新闻资讯 */

/* 代理加盟 */
.dljm_title{
  font-size: 16px;
  line-height: 24px;
}
.dljm_ul{
  width: 100%;
  margin-left: 0%;
  padding-top: 10px;
}
.dljm_ul li{
  width: 100%;
  margin: 0 0 10px 0;
  padding: 10px;
}
.dljm_p{
  line-height: 24px;
  font-size: 16px;
}
.dljm_txt{
  line-height: 24px;
  font-size: 14px;
}
.dljm_box{
  padding: 10px;
}
/* END-代理加盟 */

/* 联系我们 */
.contact_ul{
  width: 100%;
  margin: 0;
}
.contact_ul li{
  width: 100%;
  padding: 10px;
  margin: 0 0 10px 0;
  line-height: 20px;
}
.contact_ul li span {
  line-height: 30px;
}
.contact_map {
  height: 300px;
  margin-top: 10px;
}
/* END-联系我们 */

}

/* 手机底部组件 */
.root_kong {
  width: 100%;
  height: 56px;
  float: left;
  background-color: #fff;
	height: calc(56px +  constant(safe-area-inset-bottom));
	height: calc(56px +  env(safe-area-inset-bottom));
	padding-bottom: constant(safe-area-inset-bottom);
	padding-bottom: env(safe-area-inset-bottom);
}
.root {
  width: 100%;
  height: 54px;
  background-color: #c7000b;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
	height: calc(54px +  constant(safe-area-inset-bottom));
	height: calc(54px +  env(safe-area-inset-bottom));
	padding-bottom: constant(safe-area-inset-bottom);
	padding-bottom: env(safe-area-inset-bottom);
}
.root>li{
  width: 25%;
  float: left;
  border-right: 1px solid #fff;
}
.root>li:last-child{border: none;}
.root>li>a {
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 6px 0;
}
.root>li>a>div {
  width: 100%;
  float: left;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  text-align: center;
}
.root>li>a>div:first-child {
  font-size: 22px;
  margin-bottom: 6px;
}
.root>li>a:hover {
  background-color: #c7000b;
  color: #fff;
}
/* 电话 */
.root_bj {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0,0,0,0.6);
  z-index: 8;
}
.root_phone {
  display: none;
  width: 100%;
  background-color: #f5f5f5;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.root_phone>a,
.root_phone>.root_off {
  display: block;
  background-color: #fff;
  line-height: 44px;
  color:#333;
  text-align: center;
  border-bottom: 1px solid #ddd;
  font-size:15px;
}
.root_phone .root_off {
  margin-top: 6px;
  border-top: 1px solid #ddd;
}
.root_phone .root_off:hover,
.root_phone a:hover {
  background:#ddd;
}
/* 微信号 */
.wecht-box{
  display: none;
  width: 100%;
  float: left;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.wecht-box .wecht{
  width: 100%;
  float: left;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wecht-box .wecht .wecht_title{
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 14px;
  color: #333;
}
.wecht-box .wecht .wecht_title>span{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  font-weight: bold;
}
.wecht-box .wecht>img{
  display: block;
  max-width: 150px;
  margin: 10px auto;
  overflow: hidden;
}
.wecht-box .wecht .wecht_txt{
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
  color: #333;
  line-height: 18px;
}
.wecht-box .wecht .wecht_txt>span{
  font-family: Impact;
  font-size: 16px;
}
.wecht-box .wecht .wecht_off{
  width: 30px;
  height: 30px;
  font-size: 16px;
  color: #fff;
  position: absolute;
  left:50%;
  bottom:-38px;
  border: 1px solid #fff;
  transform:translateX(-50%);
  border-radius: 50%;
  display:flex;
  justify-content: center;
  align-items: center
}
/* END-手机底部组件 */
