/*
 * @制作者: 庄晓辉
 * @创建时间: 2021-04-22 11:24:06
 * @上次修改者: 庄晓辉
 * @上次修改时间: 2021-04-22 11:24:06
 */

/* Animate.css动画演示 */
@import "../css/animate.css";

/* Swiper 6.4.1 */
@import "../swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../css/iconfont.css";

/* 公共样式 */
@import "../css/public.css";

/* 头部 */
.header {
  width: 100%;
  background-color: #fff;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.2);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999;
}
.header>.container{
  display: flex;
  justify-content: space-between;
}
.logo{
  padding: 16px 0;
}
.logo > a{
  width: 339px;
}
.logo img {
  width: 100%;
  display: block;
  height: auto;
}
.header_dianhua {
  display: flex;
  align-items: center;
  color: #4BA634;
  font-size: 24px;
  background: url(../images/header_dianhua.png) no-repeat left center;
  font-weight: bold;
  padding-left: 35px;
}

/* 导航 */
nav {
  width: auto;
  display: flex;
  justify-content: space-between;
}
.nav{
  float: left;
  height: 100%;
}
.nav>li{
  float: left;
  margin-right: 28px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.nav>li>a{
  font-size: 16px;
  color: #000;
}
.nav>li:hover>a,
.nav>.nav-this>a{
  color: #0079C5;
  font-weight: bold;
}

/* 导航下拉 */
.nav-child{
  display: none;
  width: 200%;
  left: -50%;
  top: 100%;
  position: absolute;
  background-color: rgba(0,0,0,0.8);
}
.nav-child dd a{
  display: block;
  font-size: 14px;
  line-height: 40px;
  color: #fff;
  text-align: center;
}
.nav-child dd a:hover{
  background-color: #0079C5;
  color: #fff;
}

/*banner大图*/
.banner {
  width: 100%;
  position: relative;
}
.banner .banner-imgbox .swiper-slide img {
  width: 100%;
}
/*圆点*/
.banner .swiper-pagination {
  bottom: 93px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.banner .swiper-pagination-bullet {
  width: 66px;
  float: left;
  height: 10px;
  background: #fff;
  opacity: 0.5;
  border-radius: 5px;
  margin: 5px !important;
}
.banner .swiper-pagination-bullet-active {
  opacity: 1;
  background: #0079C5;
}
.banner:hover .swiper-pagination {
  opacity: 1;
}
/*箭头*/
.banner .banner-next {
  right: 2%;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  width: 38px;
  height: 70px;
  background: url(../images/imgs/next.jpg) no-repeat center center;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  z-index: 999999;
  transition: all 0.4s;
}
.banner .banner-prev {
  left: 2%;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  width: 38px;
  height: 70px;
  background: url(../images/imgs/prev.jpg) no-repeat center center;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  z-index: 999999;
  transition: all 0.4s;
}
.banner:hover .banner-next {
  opacity: 1;
}
.banner:hover .banner-prev {
  opacity: 1;
}

/* END */

/*首页内容*/
.pic_box{
  width: 100%;
  float: left;
  background-color: #f2f2f2;
}
/* 搜索 */
.search{
  width: 100%;
  float: left;
  position: relative;
  margin-top: -55px;
  z-index: 9999;
  padding: 30px 0;
}
.search::before{
  content: "";
  width: calc(100% + 270px);
  float: left;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.search_form{
  width: 58.25%;
  float: right;
  position: relative;
  z-index: 5;
  border-radius: 5px;
  overflow: hidden;
}
.search_inp1{
  width: calc(100% - 186px);
  float: left;
  height: 44px;
  line-height: 44px;
  padding: 0 20px;
  color: #000;
  font-size: 13px;
  border: none;
}
.search_inp1::-webkit-input-placeholder{
  color: #999;
}
.search_inp1:-moz-placeholder{
  color: #999;
}
.search_btn{
  width: 186px;
  float: left;
  height: 44px;
  background-color: #4BA634;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search_btn img{
  float: left;
  margin-right: 10px;
}
.search_txt{
  display: block;
  overflow: hidden;
  line-height: 24px;
  padding-top: 10px;
  font-size:14px;
  color: #fff;
  position: relative;
  z-index: 5;
}
.search_txt>span{
  float: left;
}
.search_txt > a{
  float: left;
  margin: 0 10px;
  color: #fff;
}
.search_txt > a:hover{
  color: #fff;
  text-decoration: underline;
}
/* 横幅 */
.pic_ul{
  display: flex;
  flex-wrap: wrap;
  width: 1210px;
  padding: 40px 0;
}
.pic_ul li{
  width: 232px;
  float: left;
  margin: 0 10px 10px 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 30px 0;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  top: 0;
  transition: all 0.4s;
  cursor: pointer;
}
.pic_ul li img{
  float: left;
  transition: all 0.6s;
}
.pic_ul li .pic_txt{
  display: block;
  overflow: hidden;
  padding-left: 20px;
  line-height: 22px;
  font-size: 14px;
  color: #adadad;
}
.pic_ul li .pic_txt>span{
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 18px;
  color: #333;
  font-weight: bold;
}
.pic_ul li:hover{
  top: -10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.pic_ul li:hover img{
  transform: rotateY(180deg);
}

/* 服务优势 */
.fw{
  width: 100%;
  overflow: hidden;
  padding: 70px 0 100px 0;
}
.fw_title{
  display: block;
  overflow: hidden;
  text-align: center;
}
.fw_p{
  line-height: 54px;
  font-size: 36px;
  color: #333;
  font-weight: bold;
}
.fw_p>span{
  font-size: 26px;
}
.fw_sp{
  line-height: 36px;
  font-size: 24px;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  opacity: 0.3;
}
.fw_spp{
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin-top: 15px;
}
.fw_spp>span{
  float: left;
  padding: 0 10px;
  line-height: 30px;
  font-size: 18px;
  color: #333;
  position: relative;
}
.fw_spp>span::before{
  content: "";
  width: 56px;
  height: 1px;
  float: left;
  background-color: #b2b2b2;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.fw_spp>span::after{
  content: "";
  width: 56px;
  height: 1px;
  float: left;
  background-color: #b2b2b2;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.fw_ul{
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;
}
.fw_ul::after{
  content: "";
  display: block;
  clear: both;
}
.fw_ul li{
  width: 33.3333%;
  float: left;
  background-color: #4BA634;
  padding: 40px 0;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.4s;
}
.fw_ul li:nth-child(even){
  background-color: #f2f2f2;
}
.fw_ul li:nth-child(even) .fw_txt{
  color: #000;
}
.fw_ul li .fw_sub{
  font-family: Impact;
  font-size: 55px;
  color: #0079C5;
  margin-right: 20px;
}
.fw_ul li .fw_txt{
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.fw_ul li .fw_txt>span{
  display: block;
  overflow: hidden;
  font-size: 18px;
  font-weight: bold;
  line-height: 32px;
}
.fw_ul li:hover{
  z-index: 5;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  transform: scale(1.05,1.05);
}

/* 服务类型 */
.service{
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
  background: url(../images/fw_bj.jpg) no-repeat center center;
  background-size: cover;
}
.service_ul{
  display: block;
  overflow: hidden;
  padding: 25px 4% 0 4%;
}
.service_ul li{
  width: 33.3333%;
  float: left;
  padding: 0 10px;
  margin-top: 30px;
}
.service_ul li a{
  width: 100%;
  float: left;
  overflow: hidden;
}
.service_ul li a .service_B{
  width: 100%;
  overflow: hidden;
  position: relative;
}
.service_ul li a .service_B::after{
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  float: left;
  position: absolute;
  left: 0%;
  top: 0%;
  opacity: 0;
  transition: all 0.4s;
}
.service_ul li a .service_B .service_img{
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service_ul li a .service_B .service_img::before{
  content: "";
  display: block;
  padding-top: 67.0775%;
}
.service_ul li a .service_txt{
  display: block;
  overflow: hidden;
  background-color: #fff;
  margin-top: 1px;
  line-height: 26px;
  text-align: center;
  font-size: 18px;
  color: #200b08;
  text-transform: uppercase;
  padding: 24px 0;
}
.service_ul li a .service_txt>span{
  display: block;
  overflow: hidden;
  line-height: 32px;
}
.service_ul li a:hover .service_B::after{
  opacity: 1;
}
.service_ul li a:hover .service_B .service_img{
  transform: scale(1.1,1.1);
}

/* 项目案例 */
.case{
  width: 100%;
  overflow: hidden;
  padding-top: 70px;
}
.case_nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 50px auto;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px;
}
.case_nav li{
  float: left;
  margin: 5px 15px;
  line-height: 26px;
}
.case_nav li a{
  font-size: 16px;
  color: #000;
}
.case_nav li a:hover,
.case_nav li.case_active a{
  color: #0079C5;
  font-weight: bold;
}

.case-imgbox{
  width: 100%;
}
.case-imgbox .swiper-slide{
  width: 100%;
  max-width: 1200px;
}
.case-imgbox .swiper-slide>a{
  width: 100%;
  float: left;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.case-imgbox .swiper-slide>a::before{
  content: "";
  display: block;
  padding-top: 48.33334%;
}
.case_btn{
  width: 100%;
  max-width: 1200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 999;
  margin-left: 0;
}
.case-prev,
.case-next{
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 70px;
  float: left;
  height: 70px;
  border: 2px solid rgba(255,255,255,0.2);
  background-image: url(../images/case_left.png);
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0,0,0,0.5);
  cursor: pointer;
  outline: none;
}
.case-next{
  left: initial;
  right: 30px;
  background-image: url(../images/case_right.png);
}
.case_hover{
  width: calc(100% - 40px);
  float: left;
  position: absolute;
  left: 20px;
  bottom: 20px;
  background-color: rgba(255,255,255,0.6);
  padding: 25px 0;
}
.case_hover>a{
  width: 150px;
  float: right;
  text-align: center;
  border-left: 1px solid #5e5d5b;
  margin-top: 10px;
  font-size: 24px;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  height: 80px;
  line-height: 80px;
}
.case_hover .case_B{
  display: block;
  overflow: hidden;
  padding: 0 60px;
}
.case_hover .case_B .case_p{
  display: block;
  overflow: hidden;
  line-height: 40px;
  font-size: 30px;
  color: #333;
  font-weight: bold;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.case_hover .case_B .case_txt{
  display: block;
  overflow: hidden;
  margin-top: 10px;
  line-height: 24px;
  font-size: 16px;
  color: #333;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 服务流程 */
.fwlc{
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
}
.fwlc_ul{
  display: flex;
  justify-content: space-around;
  padding-top: 40px;
}
.fwlc_ul li{
  float: left;
  text-align: center;
  position: relative;
  padding-right: 25px;
}
.fwlc_ul li::after{
  content: "";
  width: 16px;
  float: left;
  height: 27px;
  background: url(../images/fwlc_jiantou.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 50px;
}
.fwlc_ul li:last-child{
  padding: 0;
}
.fwlc_ul li:last-child::after{
  display: none;
}
.fwlc_ul li img{
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.fwlc_ul li .fw_pp{
  display: block;
  overflow: hidden;
  margin-top: 5px;
  line-height: 30px;
  font-size: 20px;
  color: #000;
  font-weight: bold;
}
.fwlc_ul li .fw_ps{
  display: block;
  overflow: hidden;
  font-size: 14px;
  color: #999;
  line-height: 22px;
}
.fwlc_ul li:first-child .fw_ps{
  font-weight: bold;
  color: #ff9103;
}

/* 新闻问答 */
.news{
  width: 100%;
  overflow: hidden;
  background-color: #e4e4e4;
  padding: 70px 0 100px 0;
}
.news_ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  max-width: 1420px;
  margin: 55px auto 0 auto;
}
.news_ul li{
  width: calc(50% - 30px);
  float: left;
  margin: 0 15px 30px 15px;
}
.news_ul li a{
  display: block;
  overflow: hidden;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  padding: 40px;
}
.news_ul li a .news_sub{
  width: 124px;
  float: left;
  height: 124px;
  margin: 20px 0 0 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  align-content: center;
  justify-content: center;
  line-height: 26px;
  font-size: 18px;
  color: #999;
  background-color: #f2f2f2;
  border-radius: 50%;
}
.news_ul li a .news_sub>span{
  width: 100%;
  overflow: hidden;
  line-height: 62px;
  font-size: 60px;
  color: #565656;
}
.news_ul li a .news_R{
  width: calc(100% - 140px);
  float: left;
  padding-left: 40px;
}
.news_ul li a .news_R .news_p{
  display: block;
  overflow: hidden;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.news_ul li a .news_R .news_txt{
  display: block;
  overflow: hidden;
  height: 72px;
  line-height: 24px;
  font-size: 14px;
  color: #999;
  margin-top: 15px;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient: vertical;
}
.news_ul li a .news_R .news_more{
  display: block;
  overflow: hidden;
  margin-top: 15px;
  width: 78px;
  height: 28px;
  background-color: #333;
  line-height: 28px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.news_ul li a:hover .news_sub{
  background-color: #0079C5;
  color: #fff;
}
.news_ul li a:hover .news_sub>span{
  color: #fff;
}
.news_ul li a:hover .news_R .news_more{
  background-color: #0079C5;
}
.news_M{
  display: block;
  overflow: hidden;
  padding-top: 30px;
}
.news_M>a{
  display: block;
  overflow: hidden;
  width: 202px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: #333;
  font-size: 16px;
  color: #fff;
  margin: 0 auto;
}
.news_M>a:hover{
  background-color: #0079C5;
}

/* 软装实力展示 */
.soft{
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
}
.soft_ul{
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 30px 0;
}
.soft_ul li{
  width: 170px;
  float: left;
  margin: 40px 15px 0 15px;
}
.soft_ul li a{
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  overflow: hidden;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  height: 80px;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.soft_ul li a img{
  float: left;
  margin-right: 15px;
  transition: all 0.6s;
}
.soft_ul li a:hover{
  border-color: #0079C5;
  color: #0079C5;
  transform: scale(1.05,1.05);
}
.soft_ul li a:hover img{
  transform: rotateY(180deg);
}

/* 合作伙伴 */
.hz{
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
  background: url(../images/hz_bj.jpg) no-repeat center center;
  background-size: cover;
}
.hz-imgbox{
  padding: 90px 0 30px 0;
}
.hz-imgbox .swiper-slide a{
  width: 100%;
  float: left;
  background-color: #fff;
  border-radius: 10px;
  border: 3px solid #fff;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.hz-imgbox .swiper-slide a::before{
  content: "";
  display: block;
  padding-top: 100%;
}
.hz-imgbox .swiper-slide:hover a{
  border-color: #0079C5;
}
.hz-imgbox .swiper-slide:hover a img{
  transform: scale(1.1,1.1);
}

/* 施工工艺 */
.cons{
  width: 100%;
  overflow: hidden;
  background-color: #e4e4e4;
  padding: 70px 0;
}
.cons_ul{
  display: block;
  overflow: hidden;
  padding-top: 50px;
}
.cons_ul li{
  width: 20%;
  float: left;
}
.cons_ul li a{
  width: 100%;
  float: left;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
}
.cons_ul li a .cons_B{
  width: 100%;
  overflow: hidden;
}
.cons_ul li a .cons_B .cons_img{
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cons_ul li a .cons_B .cons_img::before{
  content: "";
  display: block;
  padding-top: 83.3334%;
}
.cons_ul li a .cons_box{
  width: 100%;
  overflow: hidden;
  padding: 27px 20px;
}
.cons_ul li a .cons_box .cons_p{
  display: block;
  overflow: hidden;
  height: 34px;
  line-height: 34px;
  font-size: 18px;
  color: #333;
  font-weight: bold;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.cons_ul li a .cons_box .cons_txt{
  display: block;
  overflow: hidden;
  height: 72px;
  line-height: 24px;
  font-size: 14px;
  color: #999;
  margin-top: 10px;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.cons_ul li a .cons_box .cons_more{
  display: block;
  overflow: hidden;
  margin-top: 10px;
  line-height: 20px;
  font-size: 12px;
  color: #999;
  font-weight: bold;
  text-transform: uppercase;
}
.cons_ul li:nth-child(5n + 2) a,
.cons_ul li:nth-child(5n + 4) a{
  flex-direction: column-reverse;
}
/*END-首页内容*/

/* 底部 */
footer {
  background: #0079C5;
}
.footer{
  width: 100%;
  overflow: hidden;
  padding: 35px 0;
}
.footer_nav{
  display: block;
  overflow: hidden;
  line-height: 20px;
  margin-bottom: 35px;
}
.footer_nav a{
  float: left;
  margin-right: 35px;
  font-size: 14px;
  color: #fff;
}
.footer_nav a:hover{
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}
.footer_p{
  display: block;
  overflow: hidden;
  background: url(../images/footer_icon.png) no-repeat left center;
  padding-left: 25px;
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  margin-top: 15px;
  line-height: 26px;
}
.footer_left{
  width: 50%;
  float: left;
}
.footer_left .footer_p{
  margin-left: -25px;
}
.footer_txt{
  display: block;
  overflow: hidden;
  padding-top: 20px;
}
.footer_txt>p{
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
}
.footer_txt>p>img{
  float: left;
  margin-right: 10px;
}
.footer_right{
  width: 50%;
  float: left;
}
.footer_conetct{
  display: block;
}
.footer_wxB{
  float: right;
  margin-top: -41px;
}
.footer_wx{
  width: 166px;
  float: left;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-left: 25px;
}
.footer_wx img{
  width: 100%;
  display: block;
  height: auto;
}
.footer_wx span{
  display: block;
  overflow: hidden;
  line-height: 20px;
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  color: #000;
}
.footer_ul{
  display: block;
  overflow: hidden;
  padding-top: 20px;
}
.footer_ul li{
  display: block;
  overflow: hidden;
  height: 30px;
  line-height: 30px;
  color: #fff;
  font-size: 14px;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.footer_ul li a{
  color: #fff;
}
.footer_ul li a:hover{
  color: #fff;
  text-decoration: underline;
}
.copyright{
  width: 100%;
  overflow: hidden;
  background-color: #f1f1f1;
  text-align: center;
  line-height: 24px;
  padding: 20px 0;
  color: #7c7c7c;
  font-size: 12px;
}
.copyright a{
  color: #7c7c7c;
  margin: 0 5px;
}
.copyright a:hover{
  color: #7c7c7c;
  text-decoration: underline;
}
/* END-底部 */

/* 关于我们 */
.N_banner{
  width: 100%;
  overflow: hidden;
}
.N_banner img{
  width: 100%;
  display: block;
  height: auto;
}
.N_search{
  width: 100% !important;
  margin: 0 !important;
}
.N_search::before{
  width: 200%;
  background-color: #0079C5;
}

.main{
  width: 100%;
  overflow: hidden;
}
.dqwz_title{
  width: 100%;
  overflow: hidden;
  background-color: #f2f2f2;
  padding: 35px 0;
}
.about_ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  width: 1210px;
}
.about_ul li{
  width: 232px;
  float: left;
  margin: 5px 10px 5px 0;
}
.about_ul li a{
	width: 100%;
	float: left;
  display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
  overflow: hidden;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #fff;
  font-size: 18px;
  color: #333;
  font-weight: bold;
}
.about_ul li a .about_icon{
	width: 35px;
	float: left;
	height: 30px;
	background-repeat: no-repeat,no-repeat;
	background-position: center center,35px center;
	transition: all 0.4s;
	margin-right: 15px;
}
.about_ul li a:hover,
.about_ul li.about_on a{
  background-color: #0079C5;
  color: #fff;
}
.about_ul li a:hover .about_icon,
.about_ul li.about_on a .about_icon{
	background-position: -35px center,center center;
}
.about_contect{
	display: block;
	overflow: hidden;
}
.about_contect>div{
	display: none;
}
.about_contect>div:first-child{
	display: block;
}

.dqwz_contect{
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
}
.dqwz_contect .fw_title{
  margin-bottom: 50px;
}
.company{
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 32px;
  color: #333;
}
.company img{
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
/* END-关于我们 */

/* 项目案例 */
.about_ul1{
  padding-bottom: 5px;
}
.about_ul1 li{
  position: relative;
}
.about_ul1 li::after{
  content: "";
  width:0;
  height:0;
  border-top: 8px solid #f2f2f2;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  position:absolute;
  left: 50%;
  bottom: -7px;
  margin-left:-7px;
  transition: all 0.4s;
}
.about_ul li:hover::after,
.about_ul li.about_on::after{
  border-top-color: #0079C5;
}
.cp_nav{
  display: block;
  overflow: hidden;
  padding-top: 15px;
}
.cp_nav li{
  float: left;
  margin: 0 20px;
  line-height: 30px;
}
.cp_nav li a{
  font-size: 14px;
  color: #000;
}
.cp_nav li a:hover,
.cp_nav li.cp_active a{
  color: #0079C5;
  text-decoration: underline;
}
.cp_ul{
  display: block;
  overflow: hidden;
  width: 1215px;
}
.cp_ul li{
  width: 390px;
  float: left;
  margin: 0 15px 30px 0;
  border-bottom: 1px solid #ccc;
}
.cp_ul li .cp_B{
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cp_ul li .cp_B::after{
  content: "";
  width: 100%;
  float: left;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.4s;
}
.cp_ul li .cp_B .cp_img{
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cp_ul li .cp_B .cp_img::before{
  content: "";
  display: block;
  padding-top: 76.9231%;
}
.cp_ul li .cp_txtB{
  display: block;
  overflow: hidden;
  padding: 20px 0;
}
.cp_ul li .cp_txtB .cp_p{
  display: block;
  overflow: hidden;
  line-height: 25px;
  font-size: 16px;
  color: #000;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.cp_ul li .cp_txtB .cp_p>span{
  float: right;
  color: #999;
  margin-left: 5px;
}
.cp_ul li .cp_txtB .cp_sp{
  display: block;
  overflow: hidden;
  line-height: 20px;
  margin-top: 5px;
  font-size: 12px;
  color: #999;
}
.cp_ul li:hover .cp_B::after{
  opacity: 1;
}
.cp_ul li:hover .cp_B .cp_img{
  transform: scale(1.1,1.1);
}
.cp_ul li:hover .cp_txtB .cp_p{
  color: #0079C5;
}
.cp_ul li .hover{opacity: 0;transition: 0.5s;position: absolute;left: 0;bottom:0;line-height: 24px;font-size: 13px;color: #fff;padding:5%;z-index: 2;}
.cp_ul li:hover .hover{opacity: 1;}

/* END-项目案例 */

/* 项目案例详情 */
.cpxq_title{
  display: block;
  overflow: hidden;
  line-height: 22px;
  text-align: center;
  font-size: 14px;
  color: #000;
  margin-bottom: 50px;
}
.cpxq_title>span{
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
  line-height: 34px;
  font-size: 24px;
  font-weight: bold;
}
.cpxq_contect{
	padding-top: 0;
}
.pc-slide {
  width: 100%;
  overflow: hidden;
  padding: 0 10px;
}
.view{
	width: 95%;
  max-width: 1560px;
  margin: 0 auto;
}
.view .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.view .swiper-slide::before{
  content: "";
  display: block;
  padding-top: 48%;
}

.view .arrow-left,
.view .arrow-right{
  left: 0;
  top: 0;
  position: absolute;
  width: 50%;
  float: left;
  height: 100%;
  z-index: 9;
  cursor: pointer;
  outline: none;
}
.view .arrow-right {
  left: initial;
  right: 0;
}
.preview {
	width: 95%;
  max-width: 1560px;
  margin: 10px auto;
}
.preview .swiper-container{
  width: 99.5%;
  margin-left: 0.5%;
}
.preview .swiper-slide {
  width: 12.5%;
	cursor:pointer;
}
.preview .swiper-slide .preview_img{
  width: calc(100% - 10px);
  float: left;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.preview .swiper-slide .preview_img::before{
  content: "";
  display: block;
  padding-top: 75%;
}
.preview .swiper-slide .preview_img::after{
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  float: left;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s;
  opacity: 0.5;
}
.preview .swiper-slide:last-child {
	width: calc(12.5% - 10px);
}
.preview .swiper-slide:last-child .preview_img{
  width: 100%;
}
.preview .active-nav .preview_img::after{
  opacity: 0;
}
.cpxq_txt{
  display: block;
  overflow: hidden;
  padding: 40px 0;
  font-size: 14px;
  color: #000;
  line-height: 24px;
}
.cpxq_txt table{
  display: block;
  max-width: 100%;
	height: auto;
	border-collapse:collapse;
}
.cpxq_txt table td{
  border: 1px #eee solid;
	padding: 5px;
}
.casemore{
  display: block;
  overflow: hidden;
}
.casemore .casemore_title{
  display: block;
  overflow: hidden;
  max-width: 1220px;
  padding: 0 10px;
  margin: 0 auto;
  line-height: 34px;
  font-size: 24px;
  color: #000;
  font-weight: bold;
}
.casemore_ul{
  display: block;
  overflow: hidden;
  max-width: 1320px;
  padding: 0 10px;
  margin: 15px auto;
}
.casemore_ul li{
  width: 19%;
  float: left;
  margin: 10px 0.5%;
}
.casemore_ul li a{
  width: 100%;
  float: left;
  overflow: hidden;
}
.casemore_ul li a .casemore_img{
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.casemore_ul li a .casemore_img::before{
  content: "";
  display: block;
  padding-top: 70.8334%;
}
.casemore_ul li a:hover .casemore_img{
  transform: scale(1.1,1.1);
}
/* ENd-项目案例详情 */

/* 装修资讯 */
.xw_ul{
  display: block;
  overflow: hidden;
}
.xw_ul li{
  display: block;
  overflow: hidden;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}
.xw_ul li a{
  width: 100%;
  float: left;
  display: flex;
  overflow: hidden;
}
.xw_ul li a .xw_B{
  width: 300px;
  float: left;
  overflow: hidden;
  display: flex;
}
.xw_ul li a .xw_B .xw_img{
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.xw_ul li a .xw_R{
  width: calc(100% - 300px);
  float: left;
  padding: 15px 0 15px 40px;
}
.xw_ul li a .xw_R .xw_p{
  display: block;
  overflow: hidden;
  line-height: 34px;
  text-overflow:ellipsis;
  white-space: nowrap;
  font-size: 18px;
  color: #000;
}
.xw_ul li a .xw_R .xw_txt{
  display: block;
  overflow: hidden;
  height: 72px;
  line-height: 24px;
  margin: 10px 0;
  font-size: 14px;
  color: #999;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient: vertical;
}
.xw_ul li a .xw_R .xw_sp{
  display: block;
  overflow: hidden;
  line-height: 22px;
  font-size: 14px;
  color: #999;
}
.xw_ul li a:hover .xw_B .xw_img{
  transform: scale(1.1,1.1);
}
.xw_ul li a:hover .xw_R .xw_p{
  color: #0079C5;
}

.xwxq{
  display: block;
  overflow: hidden;
}
.xwxq_p{
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  color: #333;
  font-weight: bold;
}
.xwxq_sp{
  display: block;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px dashed #ccc;
  font-size: 14px;
  line-height: 18px;
  padding: 5px 0;
  margin-bottom: 20px;
}
.xwxq_txt{
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
  color: #333;
}
.xwxq_txt img{
  display: block;
  max-width: 100%;
  height: auto;
  margin: 10px auto;
}
/* ENd-装修资讯 */

/* 服务类型 */
.service_ul1{
  display: block;
  overflow: hidden;
  padding: 0 4%;
}
.service_ul1 li{
  width: 33.3333%;
  float: left;
  padding: 0 10px;
  margin-bottom: 30px;
}
.service_ul1 li a{
  width: 100%;
  float: left;
  overflow: hidden;
}
.service_ul1 li a .service_B{
  width: 100%;
  overflow: hidden;
  position: relative;
}
.service_ul1 li a .service_B::after{
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  float: left;
  position: absolute;
  left: 0%;
  top: 0%;
  opacity: 0;
  transition: all 0.4s;
}
.service_ul1 li a .service_B .service_img{
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service_ul1 li a .service_B .service_img::before{
  content: "";
  display: block;
  padding-top: 67.0775%;
}
.service_ul1 li a .service_txt{
  display: block;
  overflow: hidden;
  background-color: #e4e4e4;
  margin-top: 1px;
  line-height: 26px;
  text-align: center;
  font-size: 18px;
  color: #200b08;
  text-transform: uppercase;
  padding: 10px 0;
}
.service_ul1 li a .service_txt>span{
  display: block;
  overflow: hidden;
  line-height: 32px;
}
.service_ul1 li a:hover .service_B::after{
  opacity: 1;
}
.service_ul1 li a:hover .service_B .service_img{
  transform: scale(1.1,1.1);
}
/* ENd-服务类型 */

/*联系我们*/
.contact_txtB{
  display: block;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}
.contact_txtB::before{
  content: "";
  width: 100%;
  float: left;
  height: 100%;
  background-color: #f2f2f2;
  position: absolute;
  left: 0;
  top: 0;
}
.contact_txtB>.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1215px;
  position: relative;
  z-index: 5;
}
.contact_txtB>.container>div{
  width: 390px;
  float: left;
  margin: 10px 15px 10px 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  align-content: center;
  padding: 30px;
}
.contact_txtB>.container>div .contact_icon{
  width: 85px;
  float: left;
  height: 64px;
  border-right: 1px solid #ccc;
  display: flex;
  align-items: center;
}
.contact_txtB>.container>div .contact_txt{
  width: calc(100% - 85px);
  float: left;
  padding: 6px 0 6px 30px;
  line-height: 22px;
  font-size: 14px;
  color: #000;
}
.contact_txtB>.container>div .contact_txt>div{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #000;
  font-weight: bold;
}
.contact_txtB>.container>div .contact_txt>div>span{
  font-size: 26px;
  color: #0079C5;
}
.contact_map {
  width: 100%;
  overflow: hidden;
  height: 580px;
  border: none;
  margin: 110px 0 0 0;
}
/*END-联系我们*/

@media (max-width: 1220px) {
/* 头部 */
.header_dianhua {
  font-size: 18px;
}
/* 导航 */
.nav>li{
  margin-right: 15px;
}
/*圆点*/
.banner .swiper-pagination {
  bottom: 60px;
}
/*首页内容*/
/* 搜索 */
.search{
  margin-top: -35px;
  width: 102%;
  margin-left: -1%;
  overflow: hidden;
  padding: 20px 1%;
}
/* 横幅 */
.pic_ul{
  width: 101%;
  margin-left: -0.5%;
}
.pic_ul li{
  width: 19%;
  margin: 0 0.5% 10px 0.5%;
}

/* 服务优势 */
.fw{
  padding: 50px 0 70px 0;
}
.fw_ul li {
  padding: 30px 0;
}

/* 服务类型 */
.service{
  padding: 50px 0;
}
.service_ul {
  padding: 15px 1% 0 1%;
}
.service_ul li a .service_txt {
  padding: 20px 0;
}

/* 项目案例 */
.case{
  padding-top: 50px;
}
.case_nav{
  max-width: 98%;
  margin: 40px auto;
}
.case-imgbox .swiper-slide{
  max-width: 80%;
}
.case_btn{
  max-width: 80%;
}
.case_hover .case_B {
  padding: 0 40px;
}
.case-imgbox .swiper-slide>a::before {
  padding-top: 56.33334%;
}

/* 服务流程 */
.fwlc{
  padding: 50px 0;
}
.fwlc_ul li .fw_ps {
  font-size: 12px;
}
.fwlc_ul {
  padding-top: 30px;
}

/* 新闻问答 */
.news{
  padding: 50px 0 80px 0;
}
.news_ul {
  margin: 40px auto 0 auto;
}
.news_ul li a {
  padding: 30px;
}
.news_ul li a .news_sub {
  margin: 20px 0 0 0;
}
.news_ul li a .news_R {
  width: calc(100% - 124px);
  padding-left: 30px;
}

/* 软装实力展示 */
.soft{
  padding: 50px 0;
}
.soft_ul {
  padding: 20px 0;
}
.soft_ul li {
  width: 14.6666%;
  margin: 30px 1% 0 1%;
}

/* 合作伙伴 */
.hz{
  padding: 50px 0;
}
.hz-imgbox {
  padding: 70px 0 30px 0;
}

/* 施工工艺 */
.cons{
  padding: 50px 0;
}
.cons_ul{
  padding-top: 40px;
}
.cons_ul li a .cons_box {
  padding: 20px;
}
/*END-首页内容*/

/* 底部 */
.footer{
  padding: 25px 0;
}
.footer_nav {
  margin-bottom: 25px;
}
.footer_left .footer_p {
  margin-left: 0;
}
/* END-底部 */

/* 关于我们 */
.dqwz_title{
  padding: 25px 0;
}
.about_ul{
  width: 101%;
  margin-left: -0.5%;
}
.about_ul li{
  width: 19%;
  margin: 0.5%;
}
.dqwz_contect{
  padding: 50px 0;
}
.dqwz_contect .fw_title{
  margin-bottom: 40px;
}
.company{
  line-height: 36px;
}
/* END-关于我们 */

/* 项目案例 */
.cp_ul{
  width: 102%;
  margin-left: -1%;
}
.cp_ul li{
  width: 31.3333%;
  margin: 0 1% 2% 1%;
}
/* END-项目案例 */

/* 项目案例详情 */
.cpxq_title {
  margin-bottom: 40px;
}
.preview .swiper-slide {
  width: 14.285%;
}
.preview .swiper-slide:last-child {
	width: calc(14.285% - 10px);
}
.cpxq_txt {
  padding: 30px 0;
}
/* ENd-项目案例详情 */

/* 服务类型 */
.service_ul1 {
  padding: 0 1%;
}
.service_ul1 li a .service_txt {
  padding: 20px 0;
}
/* ENd-服务类型 */

/*联系我们*/
.contact_txtB{
  padding: 50px 0;
}
.contact_txtB>.container{
  max-width: 98%;
}
.contact_txtB>.container>div {
  width: 31.3333%;
  margin: 10px 1%;
  padding: 20px;
}
.contact_txtB>.container>div .contact_icon{
  width: 70px;
}
.contact_txtB>.container>div .contact_txt{
  width: calc(100% - 70px);
  padding: 6px 0 6px 15px;
}
.contact_txtB>.container>div .contact_txt>div>span {
  font-size: 22px;
}
.contact_map {
  height: 500px;
  margin: 70px 0 0 0;
}
/*END-联系我们*/
}

@media (max-width: 991px) {
/* 导航按钮 */
.icon-menu {
  float: right;
  cursor: pointer;
  width: 40px;
  height: 30px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999999;
  background-size: 100% 100%;
}
.icon-menu span {
  width: 100%;
  height: 6px;
  float: left;
  background: #0079C5;
}

/* 头部 */

/* 导航 */
.nav{
  display: none;
  width: 150px;
  padding: 1px 0;
  background-color: rgba(0,0,0,0.8);
  position: absolute;
  right: 10px;
  top: 100%;
  height: auto;
}
.nav>li{
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  display: block;
}
.nav>li>a{
  display: block;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
}
.nav>li:hover>a,
.nav>li.nav-this>a{
  background-color: #0079C5;
  color: #fff;
}
/* END */

/*首页内容*/
/* 搜索 */
.search{
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-top: -25px;
  padding: 10px 1%;
}
.search_form {
  width: 49.25%;
}
.search_inp1 {
  width: calc(100% - 126px);
}
.search_btn {
  width: 126px;
}
/* 横幅 */
.pic_ul{
  padding: 20px 0;
}
.pic_ul li{
  padding: 10px;
  flex-wrap: wrap;
}
.pic_ul li .pic_txt {
  width: 100%;
  padding: 10px 0 0 0;
  text-align: center;
}

/* 服务优势 */
.fw{
  padding: 30px 0;
}
.fw_ul li {
  padding: 10px;
}
.fw_ul li .fw_sub {
  font-size: 30px;
  margin-right: 10px;
}

/* 服务类型 */
.service{
  padding: 30px 10px;
}
.service_ul {
  padding: 0;
  width: 102%;
  margin-left: -1%;
}
.service_ul li {
  padding: 0 1%;
  margin-top: 20px;
}
.service_ul li a .service_txt {
  padding: 10px;
}

/* 项目案例 */
.case{
  padding-top: 30px;
}
.case_nav{
  margin: 20px auto;
}
.case_nav li {
  margin: 5px;
  line-height: 24px;
}
.case-imgbox .swiper-slide>a::before {
  padding-top: 65.33334%;
}
.case_hover {
  padding: 15px 0;
}
.case_hover .case_B {
  padding: 0 20px;
}
.case_hover>a {
  width: 100px;
  font-size: 18px;
}

/* 服务流程 */
.fwlc{
  padding: 30px 0;
}
.fwlc_ul {
  padding-top: 20px;
  flex-wrap: wrap;
}

/* 新闻问答 */
.news{
  padding: 30px 0;
}
.news_ul {
  margin: 20px auto 0 auto;
}
.news_ul li a {
  padding: 15px;
}
.news_ul li a .news_sub {
  width: 100px;
  height: 100px;
  line-height: 22px;
  font-size: 14px;
}
.news_ul li a .news_sub>span {
  line-height: 40px;
  font-size: 30px;
}
.news_ul li a .news_R {
  width: calc(100% - 100px);
  padding-left: 20px;
}
.news_ul li a .news_R .news_txt {
  margin-top: 5px;
}
.news_ul li a .news_R .news_more {
  margin-top: 5px;
}
.news_ul li {
  width: calc(50% - 20px);
  margin: 0 10px 20px 10px;
}

/* 软装实力展示 */
.soft{
  padding: 30px 0;
}
.soft_ul {
  padding: 10px 0;
}
.soft_ul li {
  width: 23%;
  margin: 20px 1% 0 1%;
}

/* 合作伙伴 */
.hz{
  padding: 30px 0;
}
.hz-imgbox {
  padding: 30px 0;
}

/* 施工工艺 */
.cons{
  padding: 30px 0;
}
.cons_ul{
  padding-top: 20px;
}
.cons_ul li{
  width: 33.3333%;
}
.cons_ul li a .cons_box {
  padding: 20px;
}
.cons_ul li:nth-child(5n + 4) a {
  flex-direction: initial;
}
.cons_ul li:nth-child(5n + 5) a {
  flex-direction: column-reverse;
}
/*END-首页内容*/

/* 底部 */
.footer{
  padding: 15px 0;
}
.footer_nav {
  margin-bottom: 15px;
}
.footer_left {
  width: 36%;
}
.footer_right {
  width: 64%;
}
.footer_wx {
  width: 140px;
  padding: 10px;
  margin-left: 10px;
}
.copyright {
  padding: 10px;
  line-height: 20px;
}
/* END-底部 */

/* 关于我们 */
.dqwz_title{
  padding: 15px 0;
}
.dqwz_contect{
  padding: 30px 0;
}
.dqwz_contect .fw_title{
  margin-bottom: 20px;
}
.company{
  line-height: 30px;
}
/* END-关于我们 */

/* 项目案例 */
.about_ul li a .about_icon{
	margin-right: 10px;
}
.cp_nav li{
  margin: 0 10px;
}
.cp_ul li .cp_txtB{
  padding: 10px 0;
}
/* END-项目案例 */

/* 项目案例详情 */
.cpxq_title {
  margin-bottom: 20px;
}
.preview .swiper-slide {
  width: 20%;
}
.preview .swiper-slide:last-child {
	width: calc(20% - 10px);
}
.cpxq_txt {
  padding: 20px 0;
}
.casemore_ul li{
  width: 24%;
}
/* ENd-项目案例详情 */

/* 服务类型 */
.service_ul1 {
  padding: 0 10px;
}
.service_ul1 li {
  padding: 0 1%;
  margin-bottom: 20px;
}
.service_ul1 li a .service_txt {
  padding: 10px;
}
/* ENd-服务类型 */

/*联系我们*/
.contact_txtB{
  padding: 30px 0;
}
.contact_txtB>.container{
  max-width: calc(100% - 20px);
  justify-content: space-between;
}
.contact_txtB>.container>div {
  width: calc(50% - 10px);
  margin: 10px 0;
}
.contact_map {
  height: 450px;
  margin: 40px 0 0 0;
}
/*END-联系我们*/
}

@media (max-width: 767px) {
/* 导航按钮 */
.icon-menu {
  right: 10px;
  width: 30px;
  height: 18px;
}
.icon-menu span {
  height: 3px;
}

/* 头部 */
.logo{
  width: 80%;
  padding: 10px 0;
}
.logo a {
  width: 76%;
}
/*圆点*/
.banner .swiper-pagination {
  bottom: 10px;
}
/* END */

/*首页内容*/
/* 搜索 */
.search{
  margin-top: 0;
  padding: 10px;
}
.search_form {
  width: 100%;
}
.search_inp1 {
  height: 34px;
  line-height: 34px;
  padding: 0 10px;
  font-size: 12px;
}
.search_btn {
  height: 34px;
  font-size: 14px;
}
.search_txt {
  width: 100%;
  line-height: 22px;
  padding-top: 5px;
  font-size: 12px;
}
.search_txt > a {
  margin: 0 5px;
}
/* 横幅 */
.pic_ul{
  padding: 10px 0;
}
.pic_ul li{
  width: 32.3333%;
  margin: 0 0.5% 1% 0.5%;
}
.pic_ul li img {
  height: 28px;
}
.pic_ul li:nth-child(4){
  width: 49%;
}
.pic_ul li:nth-child(5){
  width: 49%;
}
.pic_ul li .pic_txt {
  line-height: 18px;
  font-size: 12px;
}
.pic_ul li .pic_txt>span {
  line-height: 22px;
  font-size: 16px;
}

/* 服务优势 */
.fw_p {
  line-height: 30px;
  font-size: 20px;
}
.fw_p>span {
  font-size: 16px;
}
.fw_sp {
  line-height: 20px;
  font-size: 14px;
}
.fw_spp {
  margin-top: 5px;
}
.fw_spp>span {
  line-height: 20px;
  font-size: 14px;
}
.fw_ul {
  padding-top: 10px;
}
.fw_ul li {
  width: 50%;
  flex-wrap: wrap;
}
.fw_ul li .fw_sub {
  width: 100%;
  text-align: center;
  margin: 0;
  font-size: 18px;
  line-height: 24px;
}
.fw_ul li .fw_txt {
  line-height: 18px;
  font-size: 12px;
  text-align: center;
}
.fw_ul li .fw_txt>span {
  font-size: 14px;
  line-height: 22px;
}
.fw_ul li:nth-child(3) {
  background-color: #f2f2f2;
}
.fw_ul li:nth-child(3) .fw_txt{
  color: #000;
}
.fw_ul li:nth-child(4) {
  background-color: #4BA634;
}
.fw_ul li:nth-child(4) .fw_txt{
  color: #fff;
}
/*.fw_ul li:nth-child(4) {
  background-color: #ccc;
}*/


/* 服务类型 */
.service{
  padding: 10px;
}
.service_ul li {
  width: 48%;
  margin-top: 10px;
}
.service_ul li a .service_txt {
  padding: 5px;
  font-size: 14px;
  line-height: 16px;
}
.service_ul li a .service_txt>span {
  line-height: 20px;
}
.service_ul li:last-child{
  display: none;
}

/* 项目案例 */
.case{
  padding-top: 10px;
}
.case_nav{
  margin: 10px auto;
  padding: 5px;
}
.case_nav li {
  margin: 3px;
  line-height: 18px;
}
.case_nav li a {
  font-size: 14px;
}
.case-imgbox .swiper-slide{
  max-width: 100%;
}
.case-imgbox .swiper-slide>a::before {
  padding-top: 75%;
}
.case_hover {
  padding: 5px 0;
  width: calc(100% - 10px);
  bottom: 5px;
  left: 5px;
}
.case_hover .case_B {
  padding: 0 5px;
}
.case_hover .case_B .case_p {
  line-height: 30px;
  font-size: 16px;
}
.case_hover .case_B .case_txt {
  margin-top: 5px;
  line-height: 20px;
  font-size: 14px;
}
.case_hover>a {
  width: 80px;
  margin-top: 5px;
  font-size: 18px;
  height: 60px;
  line-height: 60px;
}
.case_btn {
  max-width: 100%;
}
.case-prev, .case-next {
  left: 5px;
  width: 30px;
  height: 30px;
  background-size: contain;
}
.case-next{
  left: initial;
  right: 5px;
}

.view {
	width: 100%;
}
.preview {
	width: 100%;
}


/* 服务流程 */
.fwlc{
  padding: 10px 0;
}
.fwlc_ul {
  padding-top: 10px;
}
.fwlc_ul li {
  width: 25%;
  padding: 0;
}
.fwlc_ul li::after {
  display: none;
}
.fwlc_ul li .fw_pp {
  line-height: 24px;
  font-size: 16px;
}
.fwlc_ul li .fw_ps {
  line-height: 16px;
}

/* 新闻问答 */
.news{
  padding: 10px;
}
.news_ul {
  margin: 10px auto 0 auto;
}
.news_ul li{
  width: 100%;
  margin: 0 0 10px 0;
}
.news_ul li a {
  padding: 10px;
}
.news_ul li a .news_sub {
  width: 80px;
  height: 80px;
  line-height: 18px;
  font-size: 12px;
  margin: 0;
}
.news_ul li a .news_sub>span {
  line-height: 24px;
  font-size: 18px;
}
.news_ul li a .news_R {
  width: calc(100% - 80px);
  padding-left: 10px;
}
.news_ul li a .news_R .news_p {
  height: 24px;
  line-height: 24px;
  font-size: 16px;
}
.news_ul li a .news_R .news_txt {
  height: 54px;
  line-height: 18px;
  font-size: 12px;
  margin-top: 0;
}
.news_ul li a .news_R .news_more {
  width: 60px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
}
.news_M {
  padding-top: 10px;
}
.news_M>a {
  width: 140px;
  height: 36px;
  line-height: 36px;
  font-size: 14px;
}

/* 软装实力展示 */
.soft{
  padding: 10px 0;
}
.soft_ul {
  padding:0;
}
.soft_ul li {
  width: 31.3333%;
  margin: 10px 1% 0 1%;
}
.soft_ul li a {
  height: 50px;
  font-size: 16px;
}
.soft_ul li a img {
  height: 30px;
  margin-right: 5px;
}

/* 合作伙伴 */
.hz{
  padding: 10px 0;
}
.hz-imgbox {
  padding: 10px 0;
}

/* 施工工艺 */
.cons{
  padding: 10px 0;
}
.cons_ul{
  padding-top: 10px;
}
.cons_ul li{
  width: 100%;
  margin-bottom: 10px;
}
.cons_ul li a .cons_B {
  width: 120px;
  float: left;
}
.cons_ul li a .cons_box {
  width: calc(100% - 120px);
  padding: 5px 0 5px 10px;
}
.cons_ul li a .cons_box .cons_p {
  height: 24px;
  line-height: 24px;
  font-size: 16px;
}
.cons_ul li a .cons_box .cons_txt {
  height: 40px;
  line-height: 20px;
  margin-top: 5px;
  -webkit-line-clamp: 2;
}
.cons_ul li a .cons_box .cons_more {
  margin-top: 5px;
  line-height: 18px;
}
.cons_ul li:nth-child(5n + 2) a,
.cons_ul li:nth-child(5n + 4) a,
.cons_ul li:nth-child(5n + 5) a {
  flex-direction: initial;
}
/*END-首页内容*/

/* 关于我们 */
.N_search {
  padding:10px 0;
}
.dqwz_title{
  padding: 2px 0;
}
.about_title{
  width: calc(100% + 20px);
  margin-left: -10px;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  padding-left: 20px;
  background-color: #0079C5;
  background-image: url(../images/imgs/sj_jiantou.png);
  background-position: right center;
  background-repeat: no-repeat;
}
.about_ul{
  display: none;
  width: 100;
  margin-left: 0;
}
.about_ul li{
  width: 100%;
  margin: 3px 0 0 0;
}
.about_ul li a {
  height: 40px;
  line-height: 40px;
  font-size: 16px;
}
.dqwz_contect{
  padding: 10px 0;
}
.company{
  line-height: 24px;
}
/* END-关于我们 */

/* 项目案例 */
.cp_nav {
  padding: 5px 0;
}
.cp_nav li{
  margin: 0 3px;
  line-height: 24px;
}
.about_ul1 li::after {
  display: none;
}
.cp_ul li{
  width: 48%;
}
.cp_ul li .cp_txtB{
  padding: 5px 0;
}
.cp_ul li .cp_txtB .cp_p {
  line-height: 24px;
  font-size: 14px;
}
.cp_ul li .cp_txtB .cp_sp {
  line-height: 16px;
  margin-top: 0;
}
/* END-项目案例 */

/* 项目案例详情 */
.cpxq_title {
  margin-bottom: 10px;
  line-height: 20px;
  font-size: 12px;
}
.cpxq_title>span {
  margin-bottom: 5px;
  line-height: 24px;
  font-size: 18px;
}
.preview .swiper-slide {
  width: 33.3333%;
}
.preview .swiper-slide:last-child {
	width: calc(33.3333% - 10px);
}
.cpxq_txt {
  padding: 0 0 10px 0;
}
.casemore .casemore_title {
  line-height: 30px;
  font-size: 18px;
}
.casemore_ul li{
  width: 48%;
  margin: 0 1% 2% 1%;
}
/* ENd-项目案例详情 */

/* 装修资讯 */
.xw_ul li{
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.xw_ul li a .xw_B{
  width: 120px;
}
.xw_ul li a .xw_R{
  width: calc(100% - 120px);
  padding: 0 0 0 10px;
}
.xw_ul li a .xw_R .xw_p{
  line-height: 24px;
  font-size: 16px;
}
.xw_ul li a .xw_R .xw_txt{
  height: 60px;
  line-height: 20px;
  margin: 0;
}
.xw_ul li a .xw_R .xw_sp{
  line-height: 16px;
  font-size: 12px;
}
.xwxq_sp{
  margin-bottom: 10px;
}
/* ENd-装修资讯 */

/* 服务类型 */
.about_title1{
  float: left;
  padding: 0;
  text-align: center;
  margin-top: 2px;
  background-image: none;
}
.service_ul1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service_ul1 li {
  width: calc(50% - 5px);
  padding: 0;
  margin-bottom: 10px;
}
.service_ul1 li a .service_txt {
  padding: 5px;
  font-size: 14px;
  line-height: 16px;
}
.service_ul1 li a .service_txt>span {
  line-height: 20px;
}
/* ENd-服务类型 */

/*联系我们*/
.contact_txtB{
  padding: 10px 0;
}
.contact_txtB>.container>div {
  width: 100%;
  margin: 2px 0;
  padding: 10px;
}
.contact_map {
  height: 250px;
  margin: 10px 0 0 0;
}
/*END-联系我们*/
}

/* 手机底部组件 */
.root_kong {
  width: 100%;
  height: 62px;
  float: left;
  background: #fff;
}
.root {
  width: 100%;
  height: 60px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999999999999;
  background: #fff;
}
.root a {
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5px 0;
  background: #0079C5;
  text-align: center;
}
.root a > div {
  width: 100%;
  float: left;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  color: #fff;
}
.root a > div:first-child {
  height: 30px;
  line-height: 30px;
  font-size: 24px;
}
.root a:hover {
  background: #0079C5;
  color: #fff;
}
.dbbox {
  position: fixed;
  left: 0;
  bottom: 65px;
  z-index: 99999;
  width: 100%;
}
.dbbox .dbs {
  position: relative;
  padding: 0 15px;
  display: none;
  text-align: center;
  transition: initial;
}
.dbbox .dbs .neirong {
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  border: 2px solid #0079C5;
}
.dbbox .dbs img {
  max-width: 140px;
}
/* END */

/* 弹出框 */
.tck{
	display: none;
  width: calc(100% - 20px);
  max-width: 500px;
  background-color: #fff;
  border-radius: 10px;
  float: left;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 99999999;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding: 30px;
}
.off{
  width: 24px;
  float: left;
  height: 24px;
  line-height: 24px;
  font-size: 16px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  position: absolute;
  right: -12px;
  top: -12px;
  cursor: pointer;
}
.tck_p{
  line-height: 34px;
  text-align: center;
  font-size: 24px;
  color: #333;
  font-weight: bold;
}
.tck_sp{
  display: flex;
  justify-content: center;
  line-height: 22px;
  text-align: center;
  font-size: 14px;
  color: #999;
  overflow: hidden;
  margin-bottom: 10px;
}
.tck_sp>span{
  float: left;
  position: relative;
  padding: 0 16px;
}
.tck_sp>span::before{
  content: "";
  width: 100%;
  float: left;
  height: 1px;
  background-color: #e5e5e5;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.tck_sp>span::after{
  content: "";
  width: 100%;
  float: left;
  height: 1px;
  background-color: #e5e5e5;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.tck_form{
  display: block;
  overflow: hidden;
}
.tck_form>label{
  width: 100%;
  float: left;
  border: 1px solid #d7d7d7;
  margin-bottom: 10px
}
.tck_spp{
  width: 76px;
  float: left;
  height: 48px;
  line-height: 48px;
  text-align: right;
  font-size: 14px;
  color: #999;
}
.tck_inp1{
  width: calc(100% - 76px);
  float: left;
  height: 48px;
  line-height: 48px;
  padding: 0 10px;
  font-size: 14px;
  color: #333;
  border: none;
  outline: none;
}
.tck_inp2{
  width: calc(100% - 100px);
  float: left;
  height: 48px;
  line-height: 48px;
  padding: 0 10px;
  font-size: 14px;
  color: #333;
  border: none;
  outline: none;
}
.tck_form>label>span{
  float: left;
  height: 48px; 
  line-height: 48px;
  font-size: 14px;
  color: #999;
}
.tck_btn{
  float: left;
  width: 100%;
  height: 50px;
  background-color: #0079C5;
  border: none;
  margin: 0 auto;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
}
.tck_yzm{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.tck_yzm>input{
  width: calc(100% - 125px);
  float: left;
  height: 50px;
  line-height: 48px;
  border: 1px solid #d7d7d7;
  padding: 0 20px;
  font-size: 14px;
  color: #999;
}
.tck_yzm>button{
  width: 125px;
  float: left;
  height: 50px;
  background-color: #333;
  font-size: 16px;
  color: #fff;
  border: none;
}
@media (max-width: 767px) {
.tck {
  width: calc(100% - 30px);
  padding: 10px;
}
.tck_p {
  line-height: 26px;
  font-size: 18px;
}
.tck_sp {
  line-height: 18px;
  font-size: 12px;
  margin-bottom: 5px;
}
.tck_spp {
  width: 55px;
  height: 38px;
  line-height: 38px;
  font-size: 12px;
}
.tck_inp1 {
  width: calc(100% - 55px);
  height: 38px;
  line-height: 38px;
}
.tck_inp2 {
  width: calc(100% - 80px);
  height: 38px;
  line-height: 38px;
}
.tck_form>label>span {
  height: 38px;
  line-height: 38px;
}
.tck_btn {
  height: 44px;
}
.tck_yzm>input {
  width: calc(100% - 110px);
  height: 40px;
  line-height: 38px;
  padding: 0 10px;
}
.tck_yzm>button {
  width: 110px;
  height: 40px;
}

}



