/*
 * @制作者: 庄晓辉
 * @创建时间: 2021-04-26 09:21:14
 * @上次修改者: 庄晓辉
 * @上次修改时间: 2021-04-26 09:21:14
 */

/* Animate.css动画演示 */
@import "../css/animate.css";

/* Swiper 6.4.1 */
@import "../swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../css/iconfont.css";

/* 公共样式 */
@import "../css/public.css";

/* 顶部 */
.topbox {
  width: 100%;
  background-color: #f2f2f2;
  line-height: 25px;
  font-size: 13px;
  color: #000;
}
.topbox a {
  color: #000;
  margin: 0 5px;
}
.topbox a:last-child{
  margin: 0 0 0 5px;
}
.topbox a:hover {
  color: #98b730;
  text-decoration: underline;
}

/* 头部 */
.header {
  width: 100%;
  padding: 43px 0;
}
.header>.container{
  display: flex;
  justify-content: space-between;
}
.logo > a{
  width: 272px;
}
.logo img {
  width: 100%;
  display: block;
  height: auto;
}
.logo_txt{
  width: 235px;
}
.header_img{
  width: 123px;
  float: left;
}
.header_img img {
  width: 100%;
  display: block;
  height: auto;
}
.header_dianhua {
  line-height: 22px;
  color: #000;
  font-size: 14px;
  background: url(../images/header_dianhua.png) no-repeat left center;
  padding-left: 45px;
  margin-top: 8px;
}
.header_dianhua>span{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 36px;
  color: #98b730;
}

/* 导航 */
nav {
  border-top: 2px solid #98b730;
  border-bottom: 2px solid #98b730;
  background: url(../images/nav_bj.jpg) repeat-x left center;
  background-size: auto 100%;
  margin-top: 8px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999999;
}
.nav{
  width: 100%;
  float: left;
  position: relative;
}
.nav::before{
  content: "";
  width: 1px;
  float: left;
  height: 22px;
  background-color: #e5e5e5;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

}
.nav>li{
  width: 16.66%;
  float: left;
  position: relative;
}
.nav>li::before{
  content: "";
  width:0;
  height:0;
  border-right:9px solid #728a24;
  border-top: 8px solid transparent;
  border-bottom:0 solid transparent;
  float: left;
  position:absolute;
  left:0;
  top: -10px;
  transition: all 0.4s;
  opacity: 0;
  z-index: -1;
}
.nav>li::after{
  content: "";
  width:0;
  height:0;
  border-left:9px solid #728a24;
  border-top: 8px solid transparent;
  border-bottom:0 solid transparent;
  float: left;
  position:absolute;
  right:0;
  top: -10px;
  transition: all 0.4s;
  opacity: 0;
  z-index: -1;
}
.nav>li>a{
  width: 100%;
  float: left;
  height: 48px;
  line-height: 48px;
  text-align: center;
  position: relative;
  font-size: 14px;
  color: #000;
}
.nav>li>a>span{
  position: relative;
  z-index: 3;
}
.nav>li>a::before{
  content: "";
  width: 100%;
  float: left;
  height: 0;
  background-color: #98b730;
  position: absolute;
  left: 0;
  top: -10px;
  transition: all 0.4s;
  z-index: 3;
}
.nav>li>a::after{
  content: "";
  width: 1px;
  float: left;
  height: 22px;
  background-color: #e5e5e5;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.nav>li:hover,
.nav>li.nav-this{
  z-index: 5;
}
.nav>li:hover::before,
.nav>li.nav-this::before{
  left: -8px;
  opacity: 1;
}
.nav>li:hover::after,
.nav>li.nav-this::after{
  right: -8px;
  opacity: 1;
}
.nav>li:hover>a,
.nav>li.nav-this>a{
  color: #fff;
  font-weight: bold;
}
.nav>li:hover>a::before,
.nav>li.nav-this>a::before{
  height: calc(100% + 10px);
}
/* 导航下拉 */
.nav-child{
  display: none;
  width: 100%;
  float: left;
  top: 100%;
  position: absolute;
  background-color: rgba(0,0,0,0.8);
  padding: 2px 0;
}
.nav-child dd a{
  display: block;
  overflow: hidden;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 40px;
}
.nav-child dd a:hover{
  background-color: #98b730;
  color: #fff;
}

/*banner大图*/
.banner {
  width: 100%;
  position: relative;
}
.banner .banner-imgbox .swiper-slide img {
  width: 100%;
}
/*圆点*/
.banner .swiper-pagination {
  bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.banner .swiper-pagination-bullet {
  width: 20px;
  float: left;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background: #9dcc0a;
  opacity: 1;
  border-radius: initial;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
}
.banner-imgbox>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 2px;
}
.banner .swiper-pagination-bullet-active {
  opacity: 1;
  background: #728a24;
}
/*箭头*/
.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;
}

/* 搜索 */
.search{
  width: 100%;
  overflow: hidden;
  padding: 18px 0;
  border-bottom: 1px solid #e5e5e5;
}
.search_form{
  width: 370px;
  float: right;
}
.search_form>input{
  width: calc(100% - 62px);
  float: left;
  border:1px solid #9dcc0a;
  border-right: none;
  height: 44px;
  line-height: 42px;
  padding: 0 10px 0 45px;
  background: url(../images/search_ss.png) no-repeat 13px center;
  color: #000;
  font-size: 14px;
  font-family: "Microsoft YaHei";
}
.search_form>input::-webkit-input-placeholder,
.search_form>input:-moz-placeholder{
  color: #999999;
}
.search_form>button{
  width: 62px;
  float: left;
  height: 44px;
  background-color: #98b730;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
}
.search_txt{
  display: block;
  overflow: hidden;
  line-height: 26px;
  padding-top: 9px;
  font-size: 14px;
  color: #999;
}
.search_txt>span{
  float: left;
  background: url(../images/search_icon1.png) no-repeat left center;
  padding-left: 44px;
  color: #000;
  margin-right: 20px;
}
.search_txt > a{
  color: #999;
}
.search_txt > a:hover{
  color: #98b730;
  text-decoration: underline;
}
/* END */

/* 首页 */
/* 赛立办公家具 */
.saili{
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
.saili_title{
  display: block;
  overflow: hidden;
  background: url(../images/title_heng.png) no-repeat center center;
  text-align: center
}
.saili_p{
  display: flex;
  justify-content:center;
  line-height: 46px;
  font-size: 32px;
  color: #333;
  font-weight: bold;
}
.saili_p span{
  color: #98b730;
}
.saili_p em{
  font-size: 20px;
}
.saili_sp{
  line-height: 28px;
  font-size: 16px;
  color: #999;
  margin-bottom: 10px;
}
.saili_spp{
  line-height: 20px;
  font-size: 16px;
  color: #333;
  text-transform: uppercase;
}
.saili_nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 0 55px 0;
}
.saili_nav li{
  width: 144px;
  float: left;
  margin: 3px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  border: 1px solid #9dcc0a;
  font-size: 16px;
  color: #98b730;
  transition: all 0.4s;
  cursor: pointer;
}
.saili_nav li:hover,
.saili_nav li.saili_active{
  background-color: #98b730;
  color: #fff;
}
.saili_contect{
  display: block;
  max-width: 1620px;
  padding: 0 10px;
  margin: 0 auto;
  overflow: hidden;
}
.saili_contect img{
  width: 100%;
  display: block;
  height: auto;
}
.saili_contect>div{
  display: none;
}
.saili_contect>div:first-child{
  display: block;
}

/* 产品系列 */
.cpxl{
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
.cpxl_contect{
  display: block;
  overflow: hidden;
  padding-top: 40px;
}
.cpxl_left{
  width: 265px;
  float: left;
}
.about{
  width: 100%;
  float: left;
}
.about_title{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  background: url(../images/about_title.jpg) no-repeat center center;
  background-size: cover;
}
.about_title img{
  float: left;
  width: 42px;
  height: 42px;
  margin-right: 12px;
}
.about_p{
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.about_p>span{
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
.about_ul{
  display: block;
  overflow: hidden;
  margin-top: 1px;
  background-color: #e8e8e8;
}
.about_ul>li{
  display: block;
  overflow: hidden;
  margin-top: 2px;
}
.about_ul>li>a{
  display: flex;
  align-items: center;
  width: 100%;
  float: left;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  padding: 0 25px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  background-color: #8eb711;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.about_ul>li>a::before{
  content: "";
  width: 10px;
  float: left;
  height: 10px;
  background: url(../images/about_li.png) no-repeat center center;
  background-size: 100% 100%;
  transition: all 0.4s;
  margin-right: 20px;
}
.about_ul>li:hover>a,
.about_ul>li.about_on>a{
  background-color: #d9d9d9;
  color: #000;
}
.about_ul>li:hover>a::before,
.about_ul>li.about_on>a::before{
  background: url(../images/about_li_hover.png) no-repeat center center;
  background-size: 100% 100%;
}
.about_dl{
  display: block;
  overflow: hidden;
  padding: 10px 25px 25px 25px;
}
.about_dl>dd{
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  margin-bottom: 5px;
}
.about_dl>dd>a{
  display: flex;
  align-items: center;
  width: 100%;
  float: left;
  overflow: hidden;
  height: 34px;
  line-height: 34px;
  font-size: 14px;
  color: #000;
  text-overflow:ellipsis;
  white-space: nowrap;
  padding: 0 12px;
}
.about_dl>dd>a::before{
  content: "";
  width: 4px;
  float: left;
  height: 4px;
  background: #000;
  margin-right: 10px;
}
.about_dl>dd>a:hover{
  color: #8eb711;
  text-decoration: underline;
}
.about_dl>dd>a.act{
  color: #8eb711;
  text-decoration: underline;
}
.cpxl_right{
  width: 895px;
  float: right;
}
.cpxl_dl{
  display: block;
  overflow: hidden;
}
.cpxl_dl>dd{
  display: block;
  overflow: hidden;
}
.cpxl_title{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  margin-bottom: 25px;
}
.cpxl_sp{
  float: left;
  line-height: 16px;
  text-transform: uppercase;
  font-family: Centaur;
  font-size: 12px;
  color: #333;
}
.cpxl_sp>span{
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 16px;
  font-weight: bold;
}
.cpxl_more{
  width: 60px;
  float: left;
}
.cpxl_more a{
  display: block;
  overflow: hidden;
  height: 22px;
  line-height: 20px;
  border-radius: 11px;
  text-align: center;
  border: 1px solid #e0e0e0;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
}
.cpxl_more a:hover{
  background-color: #8eb711;
  border-color: #8eb711;
  color: #fff;
}
.cpxl_ul{
  display: block;
  width: 915px;
  overflow: hidden;
}
.cpxl_ul li{
  width: 285px;
  float: left;
  margin: 0 20px 25px 0;
}
.cpxl_ul li a{
  width: 100%;
  overflow: hidden;
  position: relative;
  float: left;
}
.cpxl_ul li a::before{
  content: "";
  display: block;
  padding-top: 70.17544%;
}
.cpxl_ul li a img{
  width: 100%;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
  transition: all 1s;
}
.cpxl_ul li a:hover img{
  transform: scale(1.1,1.1);
}
.cpxl_dl>dd:last-child .cpxl_ul li{
  margin-bottom: 0;
}

/* 免费项目 */
.xm{
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
  background: url(../images/xm_img.jpg) no-repeat center center;
  background-size: cover;
}
.xm_ul{
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  padding-top: 45px;
}
.xm_ul li{
  width: 32.6666%;
  float: left;
  padding: 0 1%;
  margin-bottom: 20px;
  cursor: pointer;
}
.xm_ul li img{
  width: 100%;
  max-width: 177px;
  display: block;
  height: auto;
  margin: 0 auto;
  transition: all 0.6s;
  position: relative;
  top: 0;
}
.xm_ul li span{
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  color: #000;
}
.xm_ul li:hover img{
  transform: rotateY(180deg);
  top: -15px;
}
.xm_dianhuaB{
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding-top: 30px;
}
.xm_dianhuaB>div{
  float: left;
  background: url(../images/xm_dianhua.png) no-repeat left center;
  padding-left: 50px;
  font-size: 32px;
  color: #333;
  font-weight: bold;
  line-height: 64px;
}
.xm_dianhuaB>div>span{
  float: right;
  font-size: 48px;
  color: #98b730;
  font-family: Impact;
}

/* 健康环保 */
.jkhb{
  width: 100%;
  overflow: hidden;
  padding-top: 70px;
}
.jkhb_txt{
  display: block;
  overflow: hidden;
  margin: 30px 0;
  line-height: 30px;
  font-size: 16px;
  color: #999;
  text-align: center;
  min-height: 90px;
}
.jkhb_ul{
  display: block;
  overflow: hidden;
  width: 1215px;
}
.jkhb_ul li{
  width: 228px;
  float: left;
  margin: 5px 15px 0 0;
  cursor: pointer;
}
.jkhb_ul li img{
  width: 100%;
  height: auto;
  display: block;

  transition: all 1s;
}
.jkhb_ul li:hover img{
  transform: rotateX(360deg);
}

/* 交货快速 */
.fast_nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  padding: 51px 0 40px 1px;
}
.fast_nav li{
  width: 12.5%;
  float: left;
  margin: -1px 0 0 -1px;
  border: 1px solid #9dcc0a;
}
.fast_nav li a{
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 16px;
  color: #98b730;
  font-weight: bold;
}
.fast_nav li a:hover,
.fast_nav li:fast_active a{
  background-color: #98b730;
  color: #fff;
}
.fast_contect{
  display: block;
  overflow: hidden;
}
.fast_contect>div{
  display: none;
}
.fast_contect>div>a{
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.fast_contect>div>a::before{
  content: "";
  display: block;
  padding-top: 45%;
}
.fast_contect>div>a>img{
  width: 100%;
  height: 100%;
  float: left;
  object-fit: cover;
  position: absolute;
  top: 0;
}
.fast_contect>div:first-child{
  display: block;
}
.fast-imgbox{
  margin-top: 20px;
  position: relative;
}
.fast-imgbox .swiper-slide>a{
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.fast-imgbox .swiper-slide>a::before{
  content: "";
  display: block;
  padding-top: 70.17544%;
}
.fast-imgbox .swiper-slide>a>img{
  width: 100%;
  height: 100%;
  float: left;
  object-fit: cover;
  position: absolute;
  top: 0;
  transition: all 1s;
}
.fast-imgbox .swiper-slide>a:hover>img{
  transform: scale(1.1,1.1);
}
.fast-left,
.fast-right{
  left: -66px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  float: left;
  cursor: pointer;
  outline: none;
  z-index: 5;
}
.fast-left>img,
.fast-right>img{
  width: 35px;
  float: left;
  height: 35px;
}
.fast-right{
  left: initial;
  right: -66px;
}

/* 免费上门安装 */
.Ins{
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
}
.Ins_contect{
  display: block;
  overflow: hidden;
  padding-top: 50px;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  text-align: center;
}
.Ins_contect img{
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 10px auto;
}

/* 横幅 */
.hf{
  width: 100%;
  overflow: hidden;
  background: url(../images/hf_bj.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.hf_left{
  width: 50%;
  float: left;
}
.hf_B{
  width: 100%;
  max-width: 600px;
  float: right;
}
.hf_B img{
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.hf_dianhua{
  display: flex;
  justify-content: center;
  margin-top: 25px;
  line-height: 38px;
}
.hf_dianhua>div{
  float: left;
  background: url(../images/hf_dianhua.png) no-repeat left center;
  padding-left: 38px;
  font-size: 22px;
  color: #333;
  font-weight: bold;
}
.hf_dianhua>div>span{
  float: right;
  font-family: Impact;
  font-size: 34px;
  color: #98b730;
}
.hf_right{
  width: 50%;
  float: left;
}
.hf_right img{
  width: 100%;
  float: right;
  display: block;
  height: auto;
}

/* 口碑案例 */
.case{
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}
.view{
  margin-top: 50px;
}
.view .swiper-slide>a{
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.view .swiper-slide>a::before{
  content: "";
  display: block;
  padding-top: 49.16667%;
}
.view .swiper-slide>a>img{
  width: 100%;
  height: 100%;
  float: left;
  object-fit: cover;
  position: absolute;
  top: 0;
  transition: all 1s;
}
.view .swiper-slide>a>.case_hover{
  width: 95%;
  float: left;
  position: absolute;
  left: 30px;
  bottom: 30px;
  background-color: rgba(0,0,0,0.6);
  padding: 22px;
  z-index: 2;
}
.view .swiper-slide>a>.case_hover .case_more{
  width: 119px;
  float: right;
  height: 70px;
  border-left: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.view .swiper-slide>a>.case_hover .case_p{
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  margin: 5px 0 10px 30px;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
}
.view .swiper-slide>a>.case_hover .case_sp{
  display: block;
  overflow: hidden;
  margin-left: 30px;
  font-size: 14px;
  color: #fff;
  line-height: 18px;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
}
.view .swiper-slide>a:hover>img{
  transform: scale(1.1,1.1);
}
.preview {
	width: 100%;
	margin-top: 6px;
	position: relative;
  padding: 0 20px;
}
.preview .swiper-slide {
	width: 16.6666%;
}
.preview .swiper-slide>div{
  width: calc(100% - 10px);
  overflow: hidden;
  border: 1px solid #e5e5e5;
  cursor:pointer;
  position: relative;
}
.preview .swiper-slide>div::before{
  content: "";
  display: block;
  padding-top: 53.2609%;
}
.preview .swiper-slide>div>img{
  width: 100%;
  height: 100%;
  float: left;
  object-fit: cover;
  position: absolute;
  top: 0;
  transition: all 1s;
}
.preview .swiper-slide:first-child{
  width: calc(16.6666% + 1px);
}
.preview .swiper-slide:last-child {
	width: calc(16.6666% - 12px);
}
.preview .arrow-left,
.preview .arrow-right{
	position: absolute;
	left: -18px;
	top: 50%;
  transform: translateY(-50%);
	background: url(../images/case_left.png) no-repeat center center;
  background-size: 100% 100%;
	width: 16px;
	height: 28px;
	z-index: 10;
  outline: none;
  cursor: pointer;
}
.preview .arrow-right{
  left: initial;
  right: -18px;
	background: url(../images/case_right.png) no-repeat center center;
  background-size: 100% 100%;
}
.preview .active-nav>div{
	border: 1px solid #98b730;
}

/* 公司概况 */
.gsjj{
  width: 100%;
  overflow: hidden;
  background-color: #f4f4f4;
  padding: 70px 0;
}
.gsjj_contect{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 55px;
  border: 1px solid #98b730;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.gsjj_left{
  width: calc(50% - 15px);
  float: left;
  overflow: hidden;
  position: relative;
}
.gsjj_left::before{
  content: "";
  display: block;
  padding-top: 61.2613%;
}
.gsjj_left>img{
  width: 100%;
  height: 100%;
  float: left;
  object-fit: cover;
  position: absolute;
  top: 0;
}
.gsjj_right{
  width: 44.5%;
  float: right;
  padding-top: 45px;
}
.gsjj_p{
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 24px;
  color: #000;
  font-weight: bold;
  text-overflow:ellipsis;
  white-space: nowrap;
  margin-bottom: 20px;
}
.gsjj_txt{
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 14px;
  color: #999;
  text-overflow:ellipsis;
  /*display: -webkit-box;*/
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
}
.gsjj_more{
  display: block;
  overflow: hidden;
}
.gsjj_more>a{
  width: 22%;
  float: left;
  margin: 5px 10px 0 0;
  height: 36px;
  line-height: 34px;
  border: 1px solid #98b730;
  background-color: #98b730;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
.gsjj_more>a:hover,
.gsjj_more>a:last-child{
  background-color: #fff;
  color: #98b730;
}
.gsjj_more>a:last-child:hover{
  background-color: #98b730;
  color: #fff;
}

/* 新闻资讯 */
.news{
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
}
.news_contect{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  padding-top: 60px;
}
.news_box{
  width: 31.75%;
  float: left;
}
.news_title{
  width: 100%;
  float: left;
  height: 44px;
  line-height: 34px;
  border-bottom: 1px solid #d9d9d9;
  padding: 0 15px;
  margin-bottom: 20px;
}
.news_p{
  float: left;
  height: 44px;
  border-bottom: 3px solid #98b730;
  padding: 0 10px;
  font-size: 18px;
  color: #333;
  font-weight: bold;
}
.news_sp{
  float: left;
  font-size: 12px;
  color: #333;
  text-transform: uppercase;
}
.news_more{
  float: right;
}
.news_more>a{
  color: #333;
}
.news_more>a:hover{
  color: #98b730;
  text-decoration: underline;
}
.news_dl{
  width: 100%;
  float: left;
}
.news_dl>dt{
  display: block;
  overflow: hidden;
  margin-bottom: 5px;
}
.news_dl>dt .news_img{
  width: 153px;
  float: left;
  overflow: hidden;
  position: relative;
  margin-right: 20px;
}
.news_dl>dt .news_img::before{
  content: "";
  display: block;
  padding-top: 60.13072%;
}
.news_dl>dt .news_img>img{
  width: 100%;
  height: 100%;
  float: left;
  object-fit: cover;
  position: absolute;
  top: 0;
}
.news_dl>dt .news_pp{
  display: block;
  overflow: hidden;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  line-height: 30px;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient: vertical;
  margin-bottom: 5px;
}
.news_dl>dt .news_spp{
  display: block;
  overflow: hidden;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  color: #333;
}
.news_dl>dt:hover .news_img>img{
  transform: scale(1.1,1.1);
}
.news_dl>dt:hover .news_pp{
  color: #98b730;
}
.news_dl>dd{
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
}
.news_dl>dd>a{
  width: 100%;
  float: left;
  overflow: hidden;
  color: #333;
  padding: 0 10px;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.news_dl>dd>a::before{
  content: "";
  width: 4px;
  float: left;
  height: 4px;
  background-color: #98b730;
  margin: 18px 10px 0 0;
}
.news_dl>dd>a:hover{
  color: #98b730;
  text-decoration: underline;
}
/* END-首页 */

/* 底部 */footer {
  background: #5a5a5a;
}
.footer{
  width: 100%;
  overflow: hidden;
  padding: 35px 0;
}
.footer_btn{
  display: block;
  overflow: hidden;
  margin-top: -16px;
  margin-bottom: 26px;
}
.footer_btn img{
  float: right;
  display: block;
}
.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: 12px;
  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{
  width: 50%;
  float: left;
  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-底部 */

/* 关于我们 */
.main{
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
.main_left{
  width: 265px;
  float: left;
}
.main_left .about_ul>li>a{
  background-color: #d9d9d9;
  color: #000;
}
.about_ul>li>a::before {
  background: url(../images/about_li_hover.png) no-repeat center center;
  background-size: 100% 100%;
}
.about_ul>li:hover>a,
.about_ul>li.about_on>a {
  background-color: #8eb711;
  color: #fff;
}
.about_ul>li:hover>a::before,
.about_ul>li.about_on>a::before {
  background: url(../images/about_li.png) no-repeat center center;
  background-size: 100% 100%;
}
.main_left .about:last-child{
  margin-top: 20px;
}
.about_B{
  display: block;
  overflow: hidden;
  background-color: #e8e8e8;
  margin-top: 1px;
  padding: 20px;
}
.about_dianhua{
  display: block;
  overflow: hidden;
  background: url(../images/about_dianhua.png) no-repeat left center;
  padding-left: 58px;
  line-height: 20px;
}
.about_dianhua>span{
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 24px;
  color: #000;
  font-weight: bold;
}
.about_txt{
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 40px;
  color: #000;
  margin-top: 25px;
}
.main_right{
  width: 895px;
  float: right;
}
.dqwz_title{
  width: 100%;
  float: left;
  border-bottom: 1px solid #8eb711;
  line-height: 80px;
  font-size: 24px;
  color: #353736;
  font-weight: bold;
}
.dqwz_title::after{
  content: "";
  width: 100%;
  float: left;
  height: 3px;
  background-color: #8eb711;
  margin-bottom: 1px;
}
.dqwz_conetct{
  width: 100%;
  float: left;
  padding-top: 35px;
}
.company{
  display: block;
  overflow: hidden;
  font-size: 14px;
  color: #000;
  line-height: 30px;
}
.company img{
  display: block;
  max-width: 100%;
  overflow: hidden;
  height: auto;
  margin: 0 auto;
}
/* END-关于我们 */

/* 总裁区/经理区/职员区/会议区/产品展示/工程案例 */
.cp_ul{
  display: block;
  overflow: hidden;
  width: 915px;
}
.cp_ul li{
  width: 285px;
  float: left;
  margin: 0 20px 25px 0;
}
.cp_ul li a .cp_img{
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cp_ul li a .cp_img::before{
  content: "";
  display: block;
  padding-top: 70.17544%;
}
.cp_ul li a .cp_img img{
  width: 100%;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
  transition: all 1s;
}
.cp_ul li a .cp_txt{
  display: block;
  overflow: hidden;
  margin: 12px 8px;
  line-height: 24px;
  font-size: 14px;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cp_ul li a:hover .cp_img img{
  transform: scale(1.1,1.1);
}
/* END-总裁区/经理区/职员区/会议区/产品展示/工程案例 */

/* 产品详情 */
.cpxq{
  display: block;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  padding: 30px;
}
.cpxq_left{
  width: 48%;
  float: left;
}
.cpxq-view{
  width: 100%;
  overflow: hidden;
}
.cpxq-view .swiper-slide::before{
  content: "";
  display: block;
  padding-top: 66.35945%;
}
.cpxq-view .swiper-slide>img{
  width: 100%;
  height: 100%;
  float: left;
  object-fit: cover;
  position: absolute;
  top: 0;
  transition: all 1s;
}
.cpxq-arrow-left,
.cpxq-arrow-right{
	position: absolute;
	left: 10px;
	top: 50%;
  transform: translateY(-50%);
	background: url(../images/fast_left.png) no-repeat center center #fff;
  background-size: 100% 100%;
  border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 10;
  outline: none;
  cursor: pointer;
}
.cpxq-arrow-right{
  left: initial;
  right: 10px;
	background: url(../images/fast_right.png) no-repeat center center #fff;
  background-size: 100% 100%;
}
.cpxq-preview {
	width: 100%;
	margin-top: 10px;
	position: relative;
}
.cpxq-preview .swiper-slide {
	width: 20%;
}
.cpxq-preview .swiper-slide>div{
  width: calc(100% - 10px);
  overflow: hidden;
  border: 1px solid #e5e5e5;
  cursor:pointer;
  position: relative;
}
.cpxq-preview .swiper-slide>div::before{
  content: "";
  display: block;
  padding-top: 76.5625%;
}
.cpxq-preview .swiper-slide>div>img{
  width: 100%;
  height: 100%;
  float: left;
  object-fit: cover;
  position: absolute;
  top: 0;
  transition: all 1s;
}
.cpxq-preview .active-nav>div{
	border: 1px solid #98b730;
}
.cpxq_right{
  width: 48%;
  float: right;
}
.cpxq_right .cpxq_p{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  color: #353736;
  font-weight: bold;
  margin: 20px 0 28px 0;
  text-overflow:ellipsis;
  display: -webkit-box;
}
.cpxq_right .cpxq_txt{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 14px;
  color: #353736;
  margin: 0 0 35px 0;
}
.cpxq_right .cpxq_txt>span{
  font-size: 16px;
  font-weight: bold;
}
.cpxq_right .cpxq_dianhua{
  display: block;
  overflow: hidden;
  padding-left: 52px;
  background: url(../images/cpxq_dianhua.png) no-repeat 6px center;
  line-height: 20px;
  font-size: 14px;
  color: #000;
}
.cpxq_right .cpxq_dianhua>span{
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 32px;
  color: #98b730;
  font-weight: bold;
}
.cpxq_contect{
  display: block;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  margin-top: 20px;
}
.cpxq_title{
  width: 100%;
  float: left;
  border-bottom: 1px solid #e2e2e2;
  height: 75px;
  padding: 0 22px;
}
.cpxq_title>span{
  float: left;
  height: 75px;
  line-height: 72px;
  border-bottom: 3px solid #8eb711;
  font-size: 18px;
  color: #353736;
  font-weight: bold;
  padding: 0 30px;
}
.cpxq_txts{
  display: block;
  overflow: hidden;
  padding: 30px;
}
.cpxq_txts img{
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}
/* END-产品详情 */

/* 新闻资讯 */
.xw_ul{
  display: block;
  overflow: hidden;
}
.xw_ul li{
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
}
.xw_ul li a{
  width: 100%;
  float: left;
  display: flex;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  padding: 10px;
}
.xw_ul li a .xw_img{
  width: 220px;
  float: left;
  overflow: hidden;
  position: relative;
}
.xw_ul li a .xw_img::before{
  content: "";
  display: block;
  padding-top: 75%;
}
.xw_ul li a .xw_img img{
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  object-fit: cover;
}
.xw_ul li a .xw_R{
  width: calc(100% - 220px);
  float: left;
  padding: 10px 0 15px 40px;
}
.xw_ul li a .xw_R .xw_p{
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 18px;
  color: #000;
  font-weight: bold;
  text-overflow:ellipsis;
  white-space: nowrap;
  margin-bottom: 7px;
}
.xw_ul li a .xw_R .xw_txt{
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 14px;
  color: #999;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
}
.xw_ul li a .xw_R .xw_sp{
  display: block;
  overflow: hidden;
  padding-top: 11px;
  line-height: 20px;
  position: relative;
  font-size: 14px;
  color: #999;
}
.xw_ul li a .xw_R .xw_sp::before{
  content: "";
  width: 100%;
  height: 1px;
  float: left;
  background-color: #e2e2e2;
  position: absolute;
  left: 0;
  top: 0;
}
.xw_ul li a:hover{
  border-color: #8eb711;
  background-color: #8eb711;
}
.xw_ul li a:hover .xw_R .xw_p,
.xw_ul li a:hover .xw_R .xw_txt,
.xw_ul li a:hover .xw_R .xw_sp{
  color: #fff;
}

.xwxq{
  display: block;
  overflow: hidden;
}
.xwxq_p{
  display: block;
  overflow: hidden;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  color: #333;
  line-height: 30px;
}
.xwxq_sp{
  display: block;
  overflow: hidden;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}
.xwxq_txt{
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  color: #333;
}
.xwxq_txt img{
  display: block;
  max-width: 100%;
  height: auto;
  margin: 10px auto;
}
/* END-新闻资讯 */

/*联系我们*/
.contact_txt {
  display: block;
  overflow: hidden;
  font-size: 14px;
  color: #333;
  line-height: 30px;
}
.contact_map {
  width: 100%;
  overflow: hidden;
  height: 350px;
  border: none;
  margin-top: 20px;
}
/*END-联系我们*/

@media (max-width: 1220px) {
/* 头部 */
.header {
  padding: 30px 0;
}
.banner .swiper-pagination {
  bottom: 30px;
}
/*首页内容*/
/* 赛立办公家具 */
.saili{
  padding: 40px 0;
}
.saili_nav li {
  width: calc(14.285% - 6px);
}
.saili_nav {
  padding: 35px 0;
}

/* 产品系列 */
.cpxl{
  padding: 40px 0;
}
.cpxl_left{
  width: 24%;
}
.cpxl_right{
  width: 74%;
}
.cpxl_ul {
  width: 102%;
  margin-left: -1%;
}
.cpxl_ul li {
  width: 31.3333%;
  margin: 0 1% 25px 1%;
}

/* 免费项目 */
.xm{
  padding: 50px 0;
}
.xm_ul {
  padding-top: 35px;
}

/* 健康环保 */
.jkhb{
  padding-top: 50px;
}
.jkhb_txt {
  margin: 20px 0;
}
.jkhb_ul {
  width: 101%;
  margin-left: -0.5%;
}
.jkhb_ul li {
  width: 19%;
  margin: 5px 0.5% 0 0.5%;
}

/* 交货快速 */
.fast_nav {
  padding: 31px 1px;
}
.fast-left,
.fast-right{
  left: 0;
}
.fast-right{
  left: initial;
  right: 0;
}

/* 免费上门安装 */
.Ins{
  padding: 50px 0;
}
.Ins_contect {
  padding-top: 40px;
}

/* 横幅 */
.hf_left{
  padding: 30px 0;
}

/* 口碑案例 */
.case{
  padding: 50px 0;
}
.view{
  margin-top: 40px;
}
.preview .swiper-slide {
  width: 20%;
}
.preview .swiper-slide:first-child {
  width: 20%;
}
.preview .swiper-slide:last-child {
  width: calc(20% - 10px);
}
.preview .arrow-left,
.preview .arrow-right {
  left: 0;
}
.preview .arrow-right {
  left: initial;
  right: 0;
}

/* 公司概况 */
.gsjj{
  padding: 50px 0;
}
.gsjj_contect{
  margin-top: 40px;
  padding: 20px;
}
.gsjj_right{
  width: 48%;
  padding-top: 30px;
}

/* 新闻资讯 */
.news{
  padding: 50px 0;
}
.news_contect{
  padding-top: 40px;
}
/*END-首页内容*/

/* 底部 */
.footer{
  padding: 25px 0;
}
.footer_left {
  width: 40%;
}
.footer_left .footer_p {
  margin-left: 0;
}
.footer_right {
  width: 60%;
}
/* END-底部 */

/* 关于我们 */
.main{
  padding: 40px 0;
}
.main_left{
  width: 24%;
}
.main_right{
  width: 74%;
}
/* END-关于我们 */

/* 总裁区/经理区/职员区/会议区/产品展示/工程案例 */
.cp_ul{
  width: 102%;
  margin-left: -1%;
}
.cp_ul li{
  width: 31.3333%;
  margin: 0 1% 25px 1%;
}
/* END-总裁区/经理区/职员区/会议区/产品展示/工程案例 */

/* 产品详情 */
.cpxq {
  padding: 20px;
}
.cpxq_right .cpxq_p {
  margin: 10px 0 15px 0;
}
.cpxq_right .cpxq_txt {
  margin: 0 0 15px 0;
}
.cpxq_txts{
  padding: 20px;
}
/* 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: #8eb711;
}

/* 头部 */
.header {
  padding: 20px 0;
  position: absolute;
  background-color: #fff;
  top:0;
  z-index: 9999999;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.2);
}

/* 导航 */
nav {
  position: fixed;
  border: none;
  background: none;
  margin: 0;
}
.nav{
  display: none;
  width: 150px;
  padding: 1px 0;
  background-color: rgba(0,0,0,0.8);
  position: absolute;
  right: 10px;
  top:0;
}
.nav>li{
  width: 100%;
  border-bottom: 1px solid #fff;
}
.nav>li>a {
  height: 40px;
  line-height: 40px;
  color: #fff;
}
.nav::before,
.nav>li::before,
.nav>li::after{
  display: none;
}
.banner .swiper-pagination {
  bottom: 20px;
}
.search_txt {
  padding-top: 0;
}
/* END */

/*首页内容*/
/* 赛立办公家具 */
.saili{
  padding: 20px 0;
}
.saili_nav li {
  width: calc(20% - 6px);
}
.saili_nav {
  padding: 20px 0;
}

/* 产品系列 */
.cpxl{
  padding: 20px 0;
}
.cpxl_left{
  width: 32%;
}
.about_dl {
  padding: 10px 15px;
}
.cpxl_right{
  width: 66%;
}
.cpxl_title {
  margin-bottom: 15px;
}
.cpxl_ul li {
  width: 48%;
  margin: 0 1% 15px 1%;
}
.cpxl_ul li:last-child{
  display: none;
}

/* 免费项目 */
.xm{
  padding: 30px 0;
}
.xm_ul {
  padding-top: 20px;
}

/* 健康环保 */
.jkhb{
  padding-top: 30px;
}
.jkhb_txt {
  margin: 10px 0;
}

/* 交货快速 */
.fast_nav {
  padding: 21px 1px;
}
.fast_nav li {
  width: 20%;
  float: left;
}

/* 免费上门安装 */
.Ins{
  padding: 30px 0;
}
.Ins_contect {
  padding-top: 20px;
}

/* 横幅 */
.hf_left{
  width: 100%;
  padding: 20px 0;
}
.hf_B {
  max-width: 100%;
}
.hf_right{
  width: 100%;
}

/* 口碑案例 */
.case{
  padding: 30px 0;
}
.view{
  margin-top: 20px;
}
.view .swiper-slide>a>.case_hover {
  width: 96%;
  left: 2%;
  bottom: 4%;
  padding: 15px;
}
.view .swiper-slide>a>.case_hover .case_p {
  margin: 5px 0;
}
.view .swiper-slide>a>.case_hover .case_sp {
  margin-left: 0;
}
.view .swiper-slide>a>.case_hover .case_more {
  width: 80px;
}
.preview .swiper-slide {
  width: 25%;
}
.preview .swiper-slide:first-child {
  width: 25%;
}
.preview .swiper-slide:last-child {
  width: calc(25% - 10px);
}

/* 公司概况 */
.gsjj{
  padding: 30px 0;
}
.gsjj_contect{
  margin-top: 20px;
  padding: 10px;
}
.gsjj_right{
  padding-top: 10px;
}
.gsjj_p {
  line-height: 30px;
  font-size: 20px;
  margin-bottom: 10px;
}
.gsjj_txt {
  margin-bottom: 10px;
}

/* 新闻资讯 */
.news{
  padding: 30px 0;
}
.news_contect{
  padding-top: 20px;
}
.news_box {
  width: 49%;
  float: left;
}
.news_box:last-child{
  width: 100%;
  margin-top: 20px;
}
.news_box:last-child .news_dl dd{
  width: 25%;
  float: left;
}
/*END-首页内容*/

/* 底部 */
.footer{
  padding: 15px 0;
}
.footer_btn {
  margin-top: -10px;
  margin-bottom: 10px;
}
.footer_wx {
  width: 120px;
  padding: 5px;
  margin-left: 15px;
}
/* END-底部 */

/* 关于我们 */
.main{
  padding: 30px 0;
}
.main_left{
  width: 32%;
}
.about_B {
  padding: 10px;
}
.main_right{
  width: 66%;
}
/* END-关于我们 */

/* 总裁区/经理区/职员区/会议区/产品展示/工程案例 */
.cp_ul li{
  margin: 0 1% 15px 1%;
}
.cp_ul li a .cp_txt{
  margin: 8px 4px;
}
/* END-总裁区/经理区/职员区/会议区/产品展示/工程案例 */

/* 产品详情 */
.cpxq {
  padding: 10px;
}
.cpxq_left{
  width: 100%;
}
.cpxq-preview .swiper-slide {
  width: 25%;
}
.cpxq_right{
  width: 100%;
}
.cpxq_right .cpxq_p {
  margin: 10px 0;
}
.cpxq_title {
  height: 50px;
  padding: 0 15px;
}
.cpxq_title>span {
  height: 50px;
  line-height: 47px;
  padding: 0 15px;
}
.cpxq_txts{
  padding: 10px;
}
/* END-产品详情 */

/* 新闻资讯 */
.xw_ul li a .xw_img{
  width: 160px;
}
.xw_ul li a .xw_R{
  width: calc(100% - 160px);
  padding: 10px 0 10px 20px;
}
.xw_ul li a .xw_R .xw_p{
  line-height: 30px;
  font-size: 16px;
  margin-bottom: 5px;
}
.xw_ul li a .xw_R .xw_txt{
  margin-bottom: 10px;
}
.xw_ul li a .xw_R .xw_sp{
  padding-top: 5px;
}
/* END-新闻资讯 */

}

@media (max-width: 767px) {
/* 导航按钮 */
.icon-menu {
  right: 10px;
  width: 30px;
  height: 18px;
}
.icon-menu span {
  height: 3px;
}
/* 头部 */
.header{
  padding: 10px 0;
}
.search {
  padding: 10px 0;
}
.search_form {
  width: 100%;
}
.search_txt {
  width: 100%;
  float: left;
  line-height: 22px;
  padding-top: 4px;
}
.search_txt>span {
  margin-right: 5px;
}
.banner .swiper-pagination {
  bottom: 5px;
}
/* END */

/*首页内容*/
/* 赛立办公家具 */
.saili{
  padding: 10px 0;
}
.saili_title {
  background: url(../images/title_heng.png) no-repeat center center;
  background-size: cover;
}
.saili_p {
  line-height: 30px;
  font-size: 18px;
}
.saili_p b{
  line-height: 30px;
  font-size: 12px;
}
.saili_sp {
  line-height: 20px;
  font-size: 14px;
  margin-bottom: 5px;
}
.saili_spp {
  line-height: 14px;
  font-size: 12px;
}
.saili_nav {
  padding: 10px 0;
}
.saili_nav li {
  width: calc(33.3333% - 4px);
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  margin: 2px;
}

/* 产品系列 */
.cpxl{
  padding: 10px 0;
}
.cpxl_contect {
  padding-top: 10px;
}
.cpxl_left{
  width: 100%;
}
.about_title {
  justify-content: flex-start;
  padding: 0 0 0 20px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: url(../images/imgs/sj_jiantou.png) no-repeat right center,url(../images/about_title.jpg) no-repeat center center;
  background-size: auto,cover;
}
.about_ul{
  display: none;
}
.about_ul>li>a {
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
}
.about_ul>li>a::before {
  margin-right: 10px;
}
.about_dl {
  padding: 5px;
}
.about_dl>dd>a {
  height: 30px;
  line-height: 30px;
  padding: 0 8px;
}
.cpxl_right{
  width: 100%;
  margin-top: 10px;
}
.cpxl_title {
  margin-bottom: 10px;
}
.cpxl_ul li {
  margin: 0 1% 10px 1%;
}

/* 免费项目 */
.xm{
  padding: 10px 0;
}
.xm_ul {
  padding-top: 10px;
}
.xm_ul li{
  width: 33.3333%;
  margin-bottom: 10px;
}
.xm_dianhuaB {
  padding-top: 0;
}
.xm_dianhuaB>div {
  padding-left: 45px;
  font-size: 16px;
  line-height: 40px;
}
.xm_dianhuaB>div>span {
  font-size: 30px;
}

/* 健康环保 */
.jkhb{
  padding-top: 10px;
}
.jkhb_txt {
  font-size: 14px;
  line-height: 22px;
}
.jkhb_ul li {
  width: 32.3333%;
  margin: 5px 0.5% 0 0.5%;
}

/* 交货快速 */
.fast_nav {
  padding: 11px 1px;
}
.fast_nav li {
  width: 33.3333%;
}
.fast_nav li a {
  height: 36px;
  line-height: 36px;
  font-size: 14px;
}
.fast-imgbox {
  margin-top: 10px;
}

/* 免费上门安装 */
.Ins{
  padding: 10px 0;
}
.Ins_contect {
  padding-top: 10px;
  font-size: 14px;
  line-height: 22px;
}

/* 横幅 */
.hf_left{
  padding: 10px 0;
}
.hf_dianhua {
  margin-top: 10px;
}
.hf_dianhua>div {
  font-size: 14px;
}
.hf_dianhua>div>span {
  font-size: 24px;
}

/* 口碑案例 */
.case{
  padding: 10px 0;
}
.view{
  margin-top: 10px;
}
.view .swiper-slide>a>.case_hover {
  width: 98%;
  left: 1%;
  bottom: 2%;
  padding: 10px;
}
.view .swiper-slide>a>.case_hover .case_p {
  margin: 0;
  line-height: 24px;
  font-size: 16px;
}
.view .swiper-slide>a>.case_hover .case_sp {
  font-size: 12px;
  line-height: 16px;
}
.view .swiper-slide>a>.case_hover .case_more {
  width: 40px;
  height: 40px;
}
.preview .swiper-slide {
  width: 33.3333%;
}
.preview .swiper-slide:first-child {
  width: 33.3333%;
}
.preview .swiper-slide:last-child {
  width: calc(33.3333% - 10px);
}

/* 公司概况 */
.gsjj{
  padding: 10px 0;
}
.gsjj_contect {
  margin-top: 10px;
  padding: 0;
}
.gsjj_left {
  width: 100%;
}
.gsjj_right{
  width: 100%;
  padding: 10px;
}
.gsjj_p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 5px;
}
.gsjj_txt {
  margin-bottom: 5px;
  line-height: 22px;
}

/* 新闻资讯 */
.news{
  padding: 10px 0;
}
.news_contect{
  padding-top: 10px;
}
.news_box {
  width: 100%;
  margin-bottom: 10px;
}
.news_title {
  height: 34px;
  padding: 0 10px;
  margin-bottom: 10px;
}
.news_p {
  height: 34px;
}
.news_dl>dt .news_img {
  margin-right: 10px;
}
.news_dl>dt .news_pp {
  font-size: 16px;
  line-height: 24px;
}
.news_dl>dd {
  height: 30px;
  line-height: 30px;
}
.news_box:last-child{
  margin: 0;
}
.news_box:last-child .news_dl dd{
  width: 100%;
}
/*END-首页内容*/

/* 底部 */
.copyright{
  padding: 10px;
  line-height: 20px ;
}
/* END-底部 */

/* 关于我们 */
.main{
  padding: 0;
}
.main_left{
  width: 100%;
}
.main_left .about_title{
  width: calc(100% + 20px);
  margin-left: -10px;
}
.main_right{
  width: 100%;
}
.dqwz_conetct{
  padding: 10px 0;
}
.company{
  font-size: 14px;
  line-height: 24px;
}
/* END-关于我们 */

/* 总裁区/经理区/职员区/会议区/产品展示/工程案例 */
.cp_ul li{
  width: 48%;
  margin: 0 1% 10px 1%;
}
.cp_ul li a .cp_txt{
  margin: 5px 0 0 0;
  height: 40px;
  line-height: 20px;
  font-size: 12px;
}
/* END-总裁区/经理区/职员区/会议区/产品展示/工程案例 */

/* 产品详情 */
.cpxq-preview .swiper-slide {
  width: 33.3333%;
}
.cpxq_right{
  width: 100%;
}
.cpxq_right .cpxq_p {
  font-size: 16px;
  line-height: 24px;
}
.cpxq_right .cpxq_txt {
  margin: 0 0 10px 0;
  line-height: 24px;
}
.cpxq_right .cpxq_dianhua>span {
  line-height: 30px;
  font-size: 22px;
}
.cpxq_title {
  height: 40px;
  padding: 0 10px;
}
.cpxq_title>span {
  height: 40px;
  line-height: 37px;
  padding: 0 10px;
  font-size: 16px;
}
.cpxq_txts{
  padding: 5px;
}
/* END-产品详情 */

/* 新闻资讯 */
.xw_ul li{
  margin-bottom: 10px;
}
.xw_ul li a {
  padding: 5px;
}
.xw_ul li a .xw_img{
  width: 110px;
}
.xw_ul li a .xw_R{
  width: calc(100% - 110px);
  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{
  line-height: 20px;
  margin-bottom: 5px;
}
.xw_ul li a .xw_R .xw_sp{
  padding-top: 5px;
}
/* END-新闻资讯 */

/*联系我们*/
.contact_map {
  height: 250px;
  margin-top: 10px;
}
/*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: #98b730;
  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: #728a24;
  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 #728a24;
}
.dbbox .dbs img {
  max-width: 140px;
}
/* END */
.pagin{position:relative; margin:20px; font-size:14px;}
.pagin .blue{color:#056dae;font-style:normal;}
.pagin .paginList{position:absolute;right:12px;top:0;}
.pagin .paginList .paginItem{float:left;}
.pagin .paginList .paginItem a{float:left;width:31px;height:28px;border:1px solid #DDD; text-align:center;line-height:30px;border-left:none;color:#3399d5;}
.pagin .paginList .paginItem:first-child a{border-left:1px solid #DDD;}
.pagin .paginList .paginItem:first-child a{border-bottom-left-radius:5px;border-top-left-radius:5px;}
.pagin .paginList .paginItem:last-child a{border-bottom-right-radius:5px;border-top-right-radius:5px;}
.pagin .paginList .paginItem.current,.pagin .paginList .paginItem.current a{background:#f5f5f5; cursor:default;color:#737373;}
.pagin .paginList .paginItem:hover{background:#f5f5f5;}
.pagin .paginList .paginItem.more,.pagin .paginList .paginItem.more a:hover{ cursor:default;}
.pagin .paginList .paginItem.more:hover{background:#FFF;}
.pagin .paginList .paginItem.more a{color:#737373;}
.message{ float:left; width:30%;margin-top:15px;}
.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;}
