/* Animate.css动画演示 */
@import "../css/animate.min.css";

/* Swiper 6.4.1 */
@import "../swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../css/iconfont.min.css";

/* 公共样式 */
@import "../css/public.min.css";

/* 顶部 */
.topbox {
  width: 100%;
  background-color: #f5f5f5;
  line-height: 40px;
  font-size: 14px;
  color: #666;
}
.top_nav>span{
  float: left;
  border-right: 1px solid #fff;
  padding: 0 15px;
}
.top_nav>span:last-child{
  border-right: none;
  padding: 0 0 0 15px; 
}
.top_nav>span>a{
  float: left;
  display: flex;
  align-items: center;
  color: #666;
}
.top_nav>span>a>img{
  float: left;
  margin-right: 5px;
}
.top_nav>span>a:hover{
  text-decoration: underline;
  color: #dd1721;
}

/* 头部 */
.header {
  width: 100%;
  padding: 30px 0;
}
.header>.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.logo > a{
	width: 100%;
  max-width: 238px;
}
.logo_txt{
	width: 100%;
  max-width: 286px;
}
.logo img {
  width: 100%;
  display: block;
  height: auto;
}
.header_R{
  width: 50%;
  float: right;
  padding-left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav_img{
  width: 63%;
  float: left;
  max-width: 377px;
  margin-top: 2px;
}
.nav_img img{
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.header_dianhua_p {
  display: block;
  overflow: hidden;
  line-height: 44px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  background: url(../images/header_dianhua.png) no-repeat left center;
  padding-left: 52px;
}
.header_dianhua_sp{
  display: block;
  overflow: hidden;
  height: 32px;
  line-height: 40px;
  font-size: 16px;
  color: #dd1721;
  font-weight: bold;
}
.header_dianhua_sp>span{
  float: right;
  font-size: 30px;
  line-height: 32px;
}

/* 导航 */
nav {
  height: 60px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999999;
}
nav::before{
  content: "";
  width: 100%;
  height: 100%;
  float: left;
  background-color: #0155b2;
  border-top: 5px solid #fff;
  position: absolute;
  left: 0;
  top: 0;
}
.nav{
  width: 100%;
  float: left;
  position: relative;
  z-index: 2;
}
.nav>li{
  width: 10%;
  float: left;
  position: relative;
}
.nav>li::before{
  content: "";
  width:0;
  height:0;
  border-right: 5px solid #dd1721;
  border-top: 5px solid transparent;
  border-bottom: 0 solid transparent;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.4s;
}
.nav>li::after{
  content: "";
  width:0;
  height:0;
  border-left: 5px solid #dd1721;
  border-top: 5px solid transparent;
  border-bottom: 0 solid transparent;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  transition: all 0.4s;
}
.nav>li>a{
  display: block;
  overflow: hidden;
  height: 60px;
  line-height: 50px;
  text-align: center;
  padding-top: 10px;
  font-size: 15px;
  color: #fff;
}
.nav>li:hover>a,
.nav>li.nav-this>a{
  background-color: #dd1721;
  color: #fff;
}
.nav>li:hover::before,
.nav>li.nav-this::before{
  left: -5px;
  opacity: 1;
}
.nav>li:hover::after,
.nav>li.nav-this::after{
  right: -5px;
  opacity: 1;
}

/* 导航下拉 */
.nav-child{
  display: none;
  width: 100%;
  float: left;
  background-color: rgba(1,87,178,0.8);
  padding: 2px 0 0 0;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 9999;
}
.nav-child dd{
  display: block;
  overflow: hidden;
}
.nav-child dd a{
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
.nav-child dd a:hover{
  background-color: #dd1721;
  color: #fff;
}

/*banner大图*/
.banner {
  width: 100%;
  position: relative;
}
.banner-imgbox .swiper-slide img {
  width: 100%;
  display: block;
  height: auto;
}
/*圆点*/
.banner-imgbox .swiper-pagination {
  bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.banner-imgbox .swiper-pagination-bullet {
  width: 14px;
  height: 3px;
  background: #0155b2;
  opacity: 1;
  border-radius: 0;
  transition: all 0.4s;
}
.banner-imgbox>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.banner-imgbox .swiper-pagination-bullet-active {
  width: 20px;
  opacity: 1;
  background: #dd1721;
}
/*箭头*/
.banner-prev,
.banner-next{
  left: 2%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 70px;
  font-size: 30px;
  color: #fff;
  background-color: rgba(0,0,0,0.6);
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  z-index: 999999;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.banner-next{
  left: initial;
  right: 2%;
}
.banner-imgbox:hover .banner-next,
.banner-imgbox:hover .banner-prev  {
  opacity: 1;
}

/* 搜索 */
.search{
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
  background-color: #fff;
}
.search_form{
  width: 480px;
  float: right;
}
.search_inp1{
  width: calc(100% - 78px);
  float: left;
  border: 1px solid #e5e5e5;
  border-right: none;
  height: 36px;
  line-height: 34px;
  padding: 0 10px;
  color: #333;
  font-size: 14px;
}
.search_inp1::-webkit-input-placeholder{
  color: #999;
}
.search_inp1:-moz-placeholder{
  color: #999;
}
.search_btn{
  width: 78px;
  float: left;
  height: 36px;
  background-color: #26b7e3;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.search_btn>img{
  float: right;
  margin-left: 5px;
}
.search_txt{
  display: block;
  overflow: hidden;
  line-height: 24px;
  padding-top: 6px;
  font-size: 14px;
  color: #333;
}
.search_txt>span{
  float: left;
  font-size: 16px;
  font-weight: bold;
}
.search_txt > a{
  float: left;
  margin: 0 5px;
  color: #333;
}
.search_txt > a:hover{
  color: #26b7e3;
  text-decoration: underline;
}
/* END */

/* 首页 */
.cpzs{
  width: 100%;
  overflow: hidden;
  background-color: #f5f5f5;
  padding: 80px 0;
}
.main_left{
	width: 25%;
	float: left;
}
.about_title{
	display: block;
	overflow: hidden;
	text-align: center;
	background-color: #0155b2;
  background-image: url(../images/about_title_bj.png);
  background-repeat: no-repeat;
  background-position: left top;
	color: #fff;
  padding: 35px 0;
}
.about_p{
  line-height: 34px;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
}
.about_sp{
  line-height: 16px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}
.about_ul{
	display: block;
	overflow: hidden;
  border: 1px solid #e5e5e5;
  padding-right: 20px;
}
.about_ul>li{
	display: block;
	overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
}
.about_ul>li>a{
	display: block;
	overflow: hidden;
	height: 48px;
	line-height: 48px;
	font-size: 16px;
	color: #333;
  padding: 0 20px;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.about_ul>li:hover>a,
.about_ul>li.about_on>a{
	color: #0155b2;
  font-weight: bold;
}
.about_ul>li:last-child{
  border: none;
}

.about_dl{
	display: block;
	overflow: hidden;
  border-top: 1px solid #e5e5e5;
}
.about_dl>dd{
  width: 100%;
  float: left;
  margin: 5px 0;
	overflow: hidden;
}
.about_dl>dd>a{
	display: block;
	overflow: hidden;
	height: 24px;
	line-height: 24px;
	font-size: 14px;
	color: #333;
  padding: 0 20px;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.about_dl>dd>a>span{
  float: left;
  font-size: 12px;
  font-weight: bold;
  margin-right: 10px;
}
.about_dl>dd>a:hover{
	color: #0155b2;
}
.about_B{
  display: block;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-top: none;
  padding: 10px 0 10px 45px;
}
.about_dianhua{
  width: 100%;
  float: left;
  margin: 10px 0;
  line-height: 20px;
  font-size: 14px;
  color: #333;
}
.about_dianhua>span{
  display: block;
  overflow: hidden;
  line-height: 16px;
  color: #dd1721
}
.about_dianhua img{
  width: 40px;
  float: left;
  height: 40px;
  margin-right: 15px;
}

.main_right{
	width: 880px;
	float: right;
}
.dqwz_title{
	width: 100%;
	float: left;
  background-color: #fff;
}
.dqwz_title>span{
  float: left;
  height: 50px;
  line-height: 50px;
  background-color: #26b7e3;
  min-width: 170px;
  padding: 0 35px;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
}
.dqwz_contect{
	width: 100%;
	float: left;
	padding-top: 20px;
}
.cpzs-imgbox{
  position: relative;
}
.cpzs-imgbox .swiper-slide>a{
  width: 100%;
  float: left;
  display: flex;
  background-color: #fff;
  padding: 20px 30px 40px 30px;
}
.cpzs-imgbox .swiper-slide>a .cpzs_left{
  width: 36.585%;
  float: left;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.cpzs-imgbox .swiper-slide>a .cpzs_left .cpzs_B{
  float: left;
}
.cpzs-imgbox .swiper-slide>a .cpzs_left .cpzs_B .cpzs_title{
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 44px;
  color: #333;
}
.cpzs-imgbox .swiper-slide>a .cpzs_left .cpzs_B .cpzs_title>span{
  color: #0155b2;
  font-weight: bold;
}
.cpzs-imgbox .swiper-slide>a .cpzs_left .cpzs_B .cpzs_more{
  width: 100%;
  max-width: 140px;
  height: 36px;
  line-height: 34px;
  text-align: center;
  font-size: 14px;
  color: #333;
  padding: 0 10px;
  border: 1px solid #0155b2;
  margin-top: 16px;
  transition: all 0.4s;
}
.cpzs-imgbox .swiper-slide>a .cpzs_right{
  width: 63.415%;
  float: right;
  overflow: hidden;
  position: relative;
  background-color: #f5f5f5;
}
.cpzs-imgbox .swiper-slide>a .cpzs_right::before{
  content: "";
  display: block;
  padding-top: 57.69231%;
}
.cpzs-imgbox .swiper-slide>a:hover .cpzs_left .cpzs_B .cpzs_more{
  background-color: #0155b2;
  color: #fff;
}
.cpzs-imgbox .swiper-slide>a:hover .cpzs_right img{
  transform: scale(1.1);
}
/*圆点*/
.cpzs-imgbox .swiper-pagination {
  width: 36.585%;
  bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-right: 25px;
}
.cpzs-imgbox .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #0155b2;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.4s;
}
.cpzs-imgbox>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.cpzs-imgbox .swiper-pagination-bullet-active {
  opacity: 1;
  background: #26b7e3;
}
.cpzs_ul{
  display: block;
  overflow: hidden;
  width: 900px;
}
.cpzs_ul li{
  width: 280px;
  float: left;
  margin: 20px 20px 0 0;
}
.cpzs_ul li>a{
  display: block;
  overflow: hidden;
  background-color: #fff;
  padding: 20px 20px 0 20px;
}
.cpzs_ul li>a .cpzs_img{
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}
.cpzs_ul li>a .cpzs_img::before{
  content: "";
  display: block;
  padding-top: 66.6667%;
}
.cpzs_ul li>a .cpzs_txts{
  display: block;
  overflow: hidden;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 14px;
  color: #333;
}
.cpzs_ul li>a:hover{
  background-color: #26b7e3;
}
.cpzs_ul li>a:hover .cpzs_txts{
  color: #fff;
}

.gsjj_box{
  width: 100%;
  overflow: hidden;
  background: url(../images/gsjj_bj.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.gsjj{
  width: 100%;
  overflow: hidden;
  padding: 90px 0;
}
.gsjj>.container{
  width: 97%;
  max-width: 1520px;
}
.gsjj_title{
  display: block;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.gsjj_p{
  line-height: 50px;
  font-size: 36px;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gsjj_p>span{
  float: left;
  width: 6px;
  height: 6px;
  background-color: #fff;
  margin: 0 10px;
}
.gsjj_sp{
  line-height: 28px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}
.gsjj_contect{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 55px;
}
.gsjj_img{
  width: 48.02632%;
  float: left;
  overflow: hidden;
  position: relative;
   background:#000;
}
/*.gsjj_img::before{
  content: "";
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  float: left;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  border: 5px solid #fff;
  z-index: 2;
}*/
.gsjj_right{
  width: 48.02632%;
  float: right;
  padding-top: 20px;
}
.gsjj_txt{
  display: block;
  overflow: hidden;
  line-height: 30px;
  height: 270px;
  font-size: 14px;
  color: #fff;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
}
.gsjj_txt_heng{
  display: block;
  overflow: hidden;
  margin-top: 10px;
}
.gsjj_txt_heng img{
  display: block;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.gsjj_more{
  display: block;
  overflow: hidden;
  padding-top: 35px;
}
.gsjj_more>a{
  width: 140px;
  float: left;
  height: 34px;
  background-color: #fff;
  line-height: 34px;
  text-align: center;
  font-size: 14px;
  color: #333;
}
.gsjj_more>a:hover{
  background-color: #26b7e3;
  color: #fff;
}

.gsjj_B{
  width: 100%;
  overflow: hidden;
  background: url(../images/gsjj_bj2.png) no-repeat center center;
  background-size: cover;
  padding: 42px 0;
}
.gsjj_ul{
  display: block;
  overflow: hidden;
}
.gsjj_ul li{
  width: 25%;
  float: left;
  padding: 31px 0;
  border-right: 1px solid #68cdeb;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.gsjj_ul li:first-child{
  border-left: 1px solid #68cdeb;
}
.gsjj_ul li .gsjj_txtB{
  float: left;
  color: #fff;
}
.gsjj_ul li .gsjj_txtB .gsjj_pp{
  line-height: 54px;
  font-size: 36px;
  font-weight: bold;
}
.gsjj_ul li .gsjj_txtB .gsjj_pp>sup{
  font-size: 14px;
  text-transform: uppercase;
  padding-left: 10px;
  font-weight: normal;
}
.gsjj_ul li .gsjj_txtB .gsjj_spp{
  line-height: 20px;
  font-size: 12px;
}

.case{
  width: 100%;
  overflow: hidden;
  padding: 80px 0 160px 0;
}
.case .gsjj_p,
.case .gsjj_sp{
  color: #333;
}
.case .gsjj_p>span{
  background-color: #333;
}
.case_spp{
  display: block;
  overflow: hidden;
  max-width: 660px;
  text-align: center;
  line-height: 18px;
  font-size: 14px;
  color: #888;
  margin: 12px auto 0 auto;
}
.case-imgbox{
  margin-top: 45px;
  padding: 1px 0 55px 1px;
  position: relative;
}
.case-imgbox .swiper-slide>a{
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  border: 1px solid #eee;
  margin: -1px 0 0 -1px;
}
.case-imgbox .swiper-slide>a::before{
  content: "";
  display: block;
  padding-top: 49.1597%;
}
.case-imgbox .swiper-slide>a:hover img{
  transform: scale(1.1);
}
.case-prev{
  width: 40px;
  float: left;
  height: 40px;
  line-height: 38px;
  font-size: 16px;
  color: #0155b2;
  font-family: SimSun;
  font-weight: bold;
  text-align: center;
  border: 1px solid #0155b2;
  position: absolute;
  right: calc(50% + 5px);
  bottom: 0;
  transition: all 0.4s;
  cursor: pointer;
}
.case-next{
  width: 40px;
  float: left;
  height: 40px;
  line-height: 38px;
  font-size: 16px;
  color: #0155b2;
  font-family: SimSun;
  font-weight: bold;
  text-align: center;
  border: 1px solid #0155b2;
  position: absolute;
  left: calc(50% + 5px);
  bottom: 0;
  transition: all 0.4s;
  cursor: pointer;
}
.case-prev:hover,
.case-next:hover{
  background-color: #43beff;
  border-color: #43beff;
  color: #fff;
}

.hf{
  width: 100%;
  float: left;
  background: url(../images/hf_bj.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.hf>.container{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.hf_left{
  width: 51.0834%;
  float: left;
  padding-bottom: 35px;
}
.hf_left>img{
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: -93px;
}
.hf_right{
  width: 45%;
  float: right;
}
.hf_p{
  display: block;
  overflow: hidden;
  font-size: 26px;
  color: #fff;
  line-height: 40px;
}
.hf_sp{
  display: block;
  overflow: hidden;
  font-size: 18px;
  color: #fff;
  line-height: 30px;
  text-transform: uppercase;
  margin-top: 15px;
}

.ys{
  width: 100%;
  overflow: hidden;
  padding: 90px 0;
  background: url(../images/ys_bj.png) no-repeat center top;
  background-size: cover;
}
.ys_title{
  width: 100%;
  float: left;
  line-height: 70px;
  font-size: 30px;
  color: #0b5cb5;
  font-weight: bold;
}
.ys_title>span{
  float: left;
  font-size: 34px;
  color: #333;
  margin-right: 8px;
}
.ys_ul{
  width: 100%;
  float: left;
  padding-top: 30px;
}
.ys_ul li{
  width: 100%;
  float: left;
  margin-bottom: 100px;
}
.ys_ul li:last-child{margin: 0;}
.ys_ul li .ys_left{
  width: calc(50% - 20px);
  float: right;
  position: relative;
  z-index: 5;
}
.ys_ul li .ys_left>img{
  width: 100%;
  display: block;
  height: auto;
  margin-top: -100px;
}
.ys_ul li .ys_right{
  width: calc(50% + 20px);
  float: left;
  position: relative;
  padding: 64px 0 88px 0;
}
.ys_ul li .ys_right::before{
  content: "";
  width: calc(1000% + 120px);
  height: 100%;
  float: left;
  background-color: #26b7e3;
  position: absolute;
  right: -120px;
  top: 0;
}
.ys_ul li .ys_right .ys_dl{
  width: 100%;
  float: left;
  position: relative;
  z-index: 5;
}
.ys_ul li .ys_right .ys_dl>dt{
  display: block;
  overflow: hidden;
  padding: 0 0 18px 35px;
  position: relative;
  margin-bottom: 8px;
}
.ys_ul li .ys_right .ys_dl>dt::before{
  content: "";
  width: 18px;
  float: left;
  height: 18px;
  border: 5px solid #fff;
  background-color: #26b7e3;
  border-radius: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.ys_ul li .ys_right .ys_dl>dt::after{
  content: "";
  width: 100%;
  float: left;
  height: 1px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  bottom: 8px;
}
.ys_ul li .ys_right .ys_dl>dt .ys_p{
  line-height: 30px;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-overflow:ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.ys_ul li .ys_right .ys_dl>dt .ys_sp{
  line-height: 22px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  text-overflow:ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.ys_ul li .ys_right .ys_dl>dd{
  display: block;
  overflow: hidden;
  height: 24px;
  line-height: 24px;
  margin-left: 40px;
  padding-left: 20px;
  background: url(../images/ys_jiantou.png) no-repeat left center;
  font-size: 14px;
  color: #fff;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.ys_ul li:nth-child(even) .ys_left{
  float: left;
}
.ys_ul li:nth-child(even) .ys_right::before{
  background-color: #0155b2;
  right: initial;
  left: -120px;
}
.ys_ul li:nth-child(even)  .ys_right .ys_dl>dt::before{
  background-color: #0155b2;
}

.com{
  width: 100%;
  overflow: hidden;
  padding: 85px 0;
}
.com .gsjj_p,
.com .gsjj_sp{
  color: #333;
}
.com .gsjj_p>span{
  background-color: #333;
}
.com_nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  padding-top: 16px;
}
.com_nav li{
  width: 11.5%;
  float: left;
  margin: 0 0.5% 1% 0.5%;
}
.com_nav li a{
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #ccc;
  font-size: 14px;
  color: #333;
}
.com_nav li a:hover,
.com_nav li.com_active a{
  border-color: #26b7e3;
  background-color: #26b7e3;
  color: #fff;
}
.com_contect{
  display: block;
  overflow: hidden;
  padding-top: 20px;
}
.com_contect>div{
  display: none;
}
.com_contect>div:first-child{
  display: block;
}
.com_ul{
  display: block;
  overflow: hidden;
  width: 1230px;
}
.com_ul li{
  width: 380px;
  float: left;
  margin: 0 30px 25px 0;
}
.com_ul li>a{
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  border: 2px solid #f6f5f5;
  background-color: #f6f5f5;
  padding: 18px;
}
.com_ul li>a .com_img{
  width: 100%;
  overflow: hidden;
  position: relative;
}
.com_ul li>a .com_img::before{
  content: "";
  display: block;
  padding-top: 63.2353%;
}
.com_ul li>a .com_R{
  width: 100%;
  float: left;
  padding: 25px 0 10px 0;
}
.com_ul li>a .com_R .com_p{
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 16px;
  color: #333;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.com_ul li>a .com_R .com_txt{
  display: block;
  overflow: hidden;
  margin-top: 15px;
  font-size: 14px;
  color: #666;
  height: 120px;
  line-height: 24px;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.com_ul li>a .com_R .com_sp{
  display: block;
  overflow: hidden;
  margin-top: 5px;
  font-size: 14px;
  color: #666;
  height: 18px;
  line-height: 18px;
}
.com_ul li>a:hover{
  background-color: #fff;
  border-color: #0155b2;
}
.com_ul li>a:hover .com_R .com_p,
.com_ul li>a:hover .com_R .com_txt,
.com_ul li>a:hover .com_R .com_sp{
  color: #0155b2;
}
/* END-首页 */

/* 底部 */
footer {
  background: #333;
}
.inf{
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
}
.inf_title{
  width: 163px;
  float: left;
}
.inf_p{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
}
.inf_spp{
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 12px;
  color: #fff;
  text-decoration: underline;
}
.inf_form{
  width: calc(100% - 163px);
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.inf_form>.inf_B{
  width: 22%;
  float: left;
  margin-top: 5px;
  height: 55px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.inf_form>.inf_B .inf_sp{
  width: 60px;
  float: left;
  height: 55px;
  line-height: 55px;
  text-align: right;
  font-size: 14px;
  color: #333;
}
.inf_form>.inf_B .inf_inp1{
  width: calc(100% - 60px);
  float: left;
  height: 55px;
  padding: 0 10px;
  font-size: 14px;
  color: #333;
}
.inf_form>.inf_B2 .inf_sp{
  width: 45px;
}
.inf_form>.inf_B2 .inf_inp1{
  width: calc(100% - 45px);
}
.inf_form>.inf_B3{
  width: 33%;
}
.inf_form>.inf_B3 .inf_sp{
  width: 65px;
}
.inf_form>.inf_B3 .inf_inp1{
  width: calc(100% - 65px);
}
.inf_form>.inf_btn{
  width: 18%;
  float: left;
  height: 55px;
  background-color: #26b7e3;
  margin-top: 5px;
  font-size: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
}
.inf_form>.inf_btn>img{
  float: left;
  margin-right: 8px;
}

.footer{
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #5c5c5c;
  border-bottom: 1px solid #5c5c5c;
  padding: 35px 0;
}
.footer_p{
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 5px;
}
.lxwm_txt{
  display: block;
  overflow: hidden;
}
.lxwm_txt>p{
  display: flex;
  align-items: center;
  height: 34px;
  font-size: 12px;
  color: #fff;
}
.lxwm_txt>p>img{
  float: left;
  margin-right: 15px;
}

.footer_nav{
  width: 45%;
  float: left;
}
.footer_ul{
  display: block;
  overflow: hidden;
}
.footer_ul li{
  width: 20%;
  float: left;
  height: 26px;
  line-height: 26px;
  margin-bottom: 10px;
}
.footer_ul li a{
  font-size: 14px;
  color: #fff;
}
.footer_ul li a:hover{
  color: #fff;
  text-decoration: underline;
}

.footer_wxB{
  width: 250px;
  float: right;
  display: flex;
}
.footer_wxB>img{
  width: 122px;
  float: left;
  height: 122px;
  margin-right: 4px;
}
.footer_wxB .footer_wx{
  width: calc(100% - 126px);
  height: 122px;
  float: left;
  display: flex;
  font-size: 14px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  background-color: #424242;
}

.copyright{
  width: 100%;
  overflow: hidden;
  text-align: center;
  line-height: 20px;
  padding: 15px 0;
  color: #fff;
  font-size: 12px;
}
.copyright a{
  color: #fff;
  margin: 0 5px;
}
.copyright a:hover{
  color: #fff;
  text-decoration: underline;
}
/* END-底部 */

/* 风冷式冷水机/水冷式冷水机/螺杆式冷水机/行业应用/产品中心/荣誉证书 */
.main{
	width: 100%;
	overflow: hidden;
	padding: 80px 0;
  background-color: #f5f5f5;
}

.cpxq{
	display: block;
	overflow: hidden;
}
.cpxq_p{
	display: block;
	overflow: hidden;
	text-align: center;
	font-size: 18px;
	line-height: 30px;
	color: #333;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 1px dashed #ccc;
	margin-bottom: 10px;
}
.cpxq_txt{
	display: block;
	overflow: hidden;
	font-size: 14px;
	line-height: 30px;
	color: #333;
}
.cpxq_txt img{
	display: block;
	max-width: 100%;
	height: auto;
	margin: 5px auto;
}
.cpxq_txt1{margin-top: 10px;}
.cpxq_txt1 img{max-width: 100%;height: auto;}
/* END-风冷式冷水机/水冷式冷水机/螺杆式冷水机/行业应用/产品中心/荣誉证书 */

/* 稳岱动态 */
.xw_ul{
	display: block;
	overflow: hidden;
}
.xw_ul li{
	display: block;
	overflow: hidden;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px dashed #ccc;
}
.xw_ul li a{
	width: 100%;
	float: left;
	display: flex;
}
.xw_ul li a .xw_img{
	width: 250px;
	float: left;
	overflow: hidden;
	position: relative;
  background-color: #fff;
}
.xw_ul li a .xw_R{
	width: calc(100% - 250px);
	float: left;
	padding-left: 20px;
}
.xw_ul li a .xw_R .xw_p{
	display: block;
	overflow: hidden;
	line-height: 34px;
	font-size: 16px;
	color: #333;
	text-overflow:ellipsis;
	white-space: nowrap;
  transition: all 0.4s;
}
.xw_ul li a .xw_R .xw_txt{
	display: block;
	overflow: hidden;
	height: 90px;
	line-height: 30px;
	font-size: 14px;
	color: #999;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	margin: 3px 0;
}
.xw_ul li a .xw_R .xw_sp{
	display: block;
	overflow: hidden;
	height: 20px;
	line-height: 20px;
	color: #999;
	font-size: 12px;
}
.xw_ul li a:hover .xw_img img{
	transform: scale(1.1);
}
.xw_ul li a:hover .xw_R .xw_p{
	color: #26b7e3;
}

.xwxq{
	display: block;
	overflow: hidden;
}
.xwxq_p{
	display: block;
	overflow: hidden;
	text-align: center;
	line-height: 30px;
	font-size: 18px;
	color: #333;
	font-weight: bold;
	margin-bottom: 10px;
}
.xwxq_sp{
	display: block;
	overflow: hidden;
	text-align: center;
	line-height: 20px;
	font-size: 12px;
	color: #999;
	padding-bottom: 10px;
	border-bottom: 1px dashed #ccc;
	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: 5px auto;
}
/* END-稳岱动态 */

/* 关于稳岱 */
.company{
  display: block;
  overflow: hidden;
  font-size: 14px;
  color: #333;
  line-height: 30px;
}
/* END-关于稳岱 */




/*联系我们*/
.contact_txt {
  display: block;
  overflow: hidden;
  font-size: 14px;
  color: #000;
  line-height: 30px;
}
.contact_map {
  width: 100%;
  overflow: hidden;
  height: 350px;
  border: none;
  margin-top: 20px;
}
/*END-联系我们*/

@media (max-width: 1220px) {
/* 头部 */
.top_nav>span{
  padding: 0 5px;
}
.header {
  padding: 25px 0;
}
.header_R {
  width: 46%;
}
.nav_img {
  width: 59%;
}
/* END_头部 */

/* 首页 */
.cpzs {
  padding: 50px 0;
}
.main_left{
	width: 24%;
}
.main_right{
	width: 74%;
}
.about_ul {
  padding-right: 10px;
}
.about_ul>li>a {
  padding: 0 15px;
}
.about_dl>dd>a {
  padding: 0 15px;
}
.about_B {
  padding: 10px 0 10px 20px;
}
.about_dianhua img {
  margin-right: 10px;
}
.cpzs-imgbox .swiper-slide>a {
  padding: 20px;
}
.cpzs-imgbox .swiper-pagination {
  padding-right: 0;
}
.cpzs-imgbox .swiper-slide>a .cpzs_left .cpzs_B .cpzs_title {
  line-height: 36px;
}
.cpzs_ul {
  width: 102%;
  margin-left: -1%;
}
.cpzs_ul li {
  width: 31.3333%;
  margin: 20px 1% 0 1%;
}
.cpzs_ul li>a {
  padding: 15px 15px 0 15px;
}

.gsjj {
  padding: 50px 0;
}
.gsjj_contect {
  margin-top: 40px;
}
.gsjj_B {
  padding: 30px 0;
}
.gsjj_ul li {
  padding: 25px 0;
}

.case {
  padding: 50px 0 100px 0;
}
.case-imgbox {
  margin-top: 40px;
  padding: 1px 0 50px 1px;
}
.hf_left {
  width: 50%;
}
.hf_left>img {
  margin-top: -60px;
}
.hf_right {
  width: 48%;
}

.ys {
  padding: 50px 0;
}
.ys_ul li {
  margin-bottom: 70px;
}
.ys_ul li .ys_left>img {
  margin-top: -70px;
}
.ys_ul li .ys_right {
  padding: 40px 0 64px 0;
}

.com {
  padding: 50px 0;
}
.com_nav li {
  width: 15.6666%;
}
.com_ul {
  width: 102%;
  margin-left: -1%;
}
.com_ul li {
  width: 31.3333%;
  margin: 0 1% 25px 1%;
}
.com_ul li>a {
  padding: 10px;
}
.com_ul li>a .com_R {
  padding: 25px 0;
}
/* END-首页 */

/*底部 */
.footer_wxB {
  width: 220px;
}
.footer_nav {
  width: 50%;
}
/* END-底部 */

/* 风冷式冷水机/水冷式冷水机/螺杆式冷水机/行业应用/产品中心/荣誉证书 */
.main{
	padding: 50px 0;
}
/* END-风冷式冷水机/水冷式冷水机/螺杆式冷水机/行业应用/产品中心/荣誉证书 */

}

@media (max-width: 991px) {
/* 导航按钮 */
.icon-menu {
  float: right;
  cursor: pointer;
  width: 50px;
  height: 35px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999999;
  background-size: 100% 100%;
}
.icon-menu>span {
  width: 100%;
  height: 5px;
  float: left;
  background-color: #0155b2;
  transition: all 0.4s;
}
.icon-menu-active>span:nth-child(2){
  opacity: 0;
}
.icon-menu-active>span:nth-child(1){
  -webkit-transform: translateY(15px) rotate(-45deg);
  -ms-transform: translateY(15px) rotate(-45deg);
  transform: translateY(15px) rotate(-45deg);
}
.icon-menu-active>span:nth-child(3){
  -webkit-transform: translateY(-15px) rotate(45deg);
  -ms-transform: translateY(-15px) rotate(45deg);
  transform: translateY(-15px) rotate(45deg);
}

/* 头部 */
.header {
  padding: 20px 0;
  position: fixed;
  z-index: 99;
	background-color: #fff;
	box-shadow: 10px 10px 10px rgba(0,0,0,0.2);
}
nav {
  padding: 20px;
  background: none;
  position: fixed;
  background-color: rgba(1,85,178,0.8);
  width: 300px;
  height: 100%;
  left: -100%;
  transition: all 0.4s;
  z-index: 9999;
	opacity: 0;
}
nav::before {
  display: none;
}
.nav-actived{
  left: 0;
	opacity: 1;
}
nav>.container{
  max-width: 100% !important;
}
.nav{
  width: 100%;
  float: left;
}
.nav>li{
  width: 100%;
  float: left;
  position: relative;
  border-bottom: 1px solid #fff;
}
.nav>li::before {display: none;}
.nav>li::after {display: none;}
.nav>li>a{
  display: block;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  padding: 0;
  text-align: center;
  font-size: 16px;
  color: #fff;
}
.nav>li:hover>a,
.nav>li.nav-this>a{
  background-color: #dd1721;
  color: #fff;
}

/*圆点*/
.banner-imgbox .swiper-pagination {
  bottom: 5px;
}
.banner-imgbox .swiper-pagination-bullet {
  width: 14px;
  height: 4px;
  border-radius: 0;
  transition: all 0.4s;
}
.banner-imgbox>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 2px;
}
.banner-imgbox .swiper-pagination-bullet-active {
  width: 20px;
}

.search_form {
  width: 100%;
}
.search_txt {
  width: 100%;
  float: left;
  padding-top: 5px;
}
/* END-头部 */

/* 首页 */
.cpzs {
  padding: 30px 0;
}
.main_left{
	width: 29%;
}
.main_right{
	width: 69%;
}
.cpzs-imgbox .swiper-slide>a {
  padding: 10px;
}
.cpzs-imgbox .swiper-slide>a .cpzs_left .cpzs_B .cpzs_title {
  font-size: 14px;
  line-height: 24px;
}
.cpzs-imgbox .swiper-pagination {
  width: 100%;
  justify-content: center;
  bottom: 5px;
  padding: 0;
}
.cpzs-imgbox .swiper-slide>a .cpzs_left .cpzs_B .cpzs_more {
  margin-top: 10px;
}
.cpzs_ul li {
  width: 48%;
  margin: 15px 1% 0 1%;
}

.gsjj {
  padding: 30px 0;
}
.gsjj_contect {
  margin-top: 20px;
}
.gsjj_right {
  padding-top: 0;
}
.gsjj_txt {
  height: 210px;
  -webkit-line-clamp: 7;
}
.gsjj_more {
  padding-top: 15px;
}
.gsjj_B {
  padding: 20px 0;
}
.gsjj_ul li {
  padding: 10px;
}
.gsjj_ul li .gsjj_txtB .gsjj_pp {
  line-height: 40px;
  font-size: 30px;
}

.case {
  padding: 30px 0 60px 0;
}
.case-imgbox {
  margin-top: 30px;
}
.hf_left {
  padding-bottom: 15px;
}
.hf_left>img {
  margin-top: -30px;
}
.hf_right {
  padding:  10px 0;
}
.hf_p {
  font-size: 18px;
  line-height: 30px;
}
.hf_sp {
  font-size: 14px;
  line-height: 24px;
  margin-top: 5px;
}

.ys {
  padding: 30px 0;
}
.ys_title {
  line-height: 50px;
  font-size: 26px;
}
.ys_title>span {
  font-size: 36px;
  margin-right: 4px;
}
.ys_ul {
  padding-top: 20px;
}
.ys_ul li {
  margin-bottom: 40px;
}
.ys_ul li .ys_left>img {
  margin-top: -40px;
}
.ys_ul li .ys_right {
  padding: 30px 0;
}

.com {
  padding: 30px 0;
}
.com_nav li {
  width: 19%;
}
.com_ul li>a .com_R {
  padding: 10px 0;
}
.com_ul li>a .com_R .com_txt {
  margin-top: 5px;
}
/* END-首页 */

/* 底部 */
.inf {
  padding: 20px 0;
}
.inf_form>.inf_B {
  width: 26%;
}
.inf_form>.inf_B3 {
  width: 26%;
}
.footer {
  padding: 20px 0;
}
.footer_nav {
  width: 36%;
}
.footer_ul li {
  width: 50%;
  height: 24px;
  line-height: 24px;
  margin-bottom: 5px;
}
/* END-底部 */

/* 风冷式冷水机/水冷式冷水机/螺杆式冷水机/行业应用/产品中心/荣誉证书 */
.main{
	padding: 30px 0;
}
/* END-风冷式冷水机/水冷式冷水机/螺杆式冷水机/行业应用/产品中心/荣誉证书 */

}

@media (max-width: 767px) {
.top_nav{
  line-height: 30px;
}
.top_nav>span{
  padding: 0 15px;
}
/* 导航按钮 */
.icon-menu {
  width: 30px;
  height: 21px;
	right: 10px;
}
.icon-menu span {
  height: 3px;
}
.icon-menu-active>span:nth-child(1){
  -webkit-transform: translateY(9px) rotate(-45deg);
  -ms-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
.icon-menu-active>span:nth-child(3){
  -webkit-transform: translateY(-9px) rotate(45deg);
  -ms-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

/* 头部 */
.header{
  padding: 10px 0;
}
.logo{
  width: 80%;
}
.logo a {
  width: 100%;
}
nav{
  padding: 10px;
}
.layui-nav .layui-nav-item{
  line-height: 40px;
}

.search{
	padding: 10px 0;
}
.search_form{
	width: 100%;
}
.search_txt{
	width: 100%;
	float: left;
	padding-top: 5px;
	line-height: 20px;
}
/* END-头部 */

/* 首页 */
.cpzs {
  padding: 0;
}
.main_left{
	width: 100%;
}
.about_title{
  width: calc(100% + 20px);
  margin-left: -10px;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #fff;
  position: relative;
}
.about_title::after{
  content: "\e7ee";
  font-family: icon-font !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.about_ul {
  display: none;
  padding: 0;
}
.about_ul>li>a {
  height: 40px;
  line-height: 40px;
}
.main_right{
	width: 100%;
}
.dqwz_title{
  margin-top: 5px;
}
.dqwz_title>span{
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  font-size: 18px;
  min-width: auto;
}
.dqwz_contect{
	padding: 10px 0;
}
.cpzs-imgbox .swiper-slide>a {
  padding: 0 0 20px 0;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
.cpzs-imgbox .swiper-slide>a .cpzs_left {
    width: 100%;
}
.cpzs-imgbox .swiper-slide>a .cpzs_left .cpzs_B .cpzs_more {
  height: 26px;
  line-height: 24px;
  margin-top: 4px;
}
.cpzs-imgbox .swiper-slide>a .cpzs_right {
  width: 100%;
}
.cpzs_ul li>a {
  padding: 5px 5px 0 5px;
}
.cpzs_ul li>a .cpzs_txts {
  height: 40px;
  line-height: 40px;
}

.gsjj {
  padding: 10px 0;
}
.gsjj_p {
  line-height: 30px;
  font-size: 20px;
}
.gsjj_sp {
  line-height: 20px;
  font-size: 14px;
}
.gsjj_contect {
  margin-top: 10px;
}
.gsjj_img {
  width: 100%;
}
/*.gsjj_img::before{
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 2px solid #fff;
}*/
/*.gsjj_img::after{
  content: "";
  display: block;
  padding-top: 50%;
}*/
.gsjj_right {
  width: 100%;
  padding-top: 10px;
}
.gsjj_txt {
  line-height: 20px;
  height: auto;
  -webkit-line-clamp: initial;
}
.gsjj_more {
  padding-top: 10px;
}

.gsjj_B {
  padding: 10px 0;
}
.gsjj_ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gsjj_ul li {
  width: 49%;
  padding: 10px;
  border: 1px solid #68cdeb;
  margin-bottom: 2%;
}
.gsjj_ul li .gsjj_txtB {
  width: 100%;
  text-align: center;
}
.gsjj_ul li .gsjj_txtB .gsjj_pp {
  line-height: 30px;
  font-size: 20px;
}
.gsjj_ul li .gsjj_txtB .gsjj_pp>sup {
  font-size: 12px;
  padding-left: 5px;
}

.case {
  padding: 10px 0;
}
.case_spp {
  line-height: 16px;
  font-size: 12px;
  margin: 5px auto 0 auto;
}
.case-imgbox {
  margin-top: 10px;
  padding: 1px 0 35px 1px;
}
.case-prev {
  width: 30px;
  height: 30px;
  line-height: 28px;
}
.case-next {
  width: 30px;
  height: 30px;
  line-height: 28px;
}

.hf_left {
  width: 100%;
  padding: 10px 0;
}
.hf_left>img{
  margin: 0;
}
.hf_right {
  width: 100%;
  text-align: center;
}

.ys {
  padding: 10px 0;
}
.ys_title {
  display: flex;
  justify-content: center;
  line-height: 30px;
  font-size: 20px;
  text-align: center;
}
.ys_title>span {
  font-size: 24px;
  margin-right: 2px;
}
.ys_ul {
  padding-top: 10px;
}
.ys_ul li {
  margin-bottom: 10px;
}
.ys_ul li .ys_left {
  width: 100%;
}
.ys_ul li .ys_left>img{
  margin: 0;
}
.ys_ul li .ys_right {
  width: 100%;
  background-color: #26b7e3;
  padding: 10px;
}
.ys_ul li .ys_right::before{display: none;}

.com {
  padding: 10px 0;
}
.com_nav {
  padding-top: 10px;
}
.com_nav li {
  width: 48%;
}
.com_contect {
  padding-top: 10px;
}
.com_ul li {
  width: 100%;
  margin: 0 0 10px 0;
}
.com_ul li>a {
  padding: 0;
}
.com_ul li>a .com_img {
  width: 140px;
  float: left;
}
.com_ul li>a .com_R {
  width: calc(100% - 140px);
  padding: 10px;
}
.com_ul li>a .com_R .com_txt {
  margin: 3px 0;
  height: 60px;
  line-height: 20px;
  -webkit-line-clamp: 3;
}
.com_ul li>a .com_R .com_sp {
  margin-top: 0;
}
/* END-首页 */

/* 底部 */
.inf {
  padding: 10px 0;
}
.inf_title {
  width: 100%;
  text-align: center;
}
.inf_p {
  line-height: 30px;
  font-size: 20px;
}
.inf_form {
  width: 100%;
}
.inf_form>.inf_B {
  width: 100%;
  height: 40px;
}
.inf_form>.inf_B .inf_sp {
  width: 55px;
  height: 40px;
  line-height: 40px;
}
.inf_form>.inf_B .inf_inp1 {
  width: calc(100% - 55px);
  height: 40px;
}
.inf_form>.inf_btn {
  width: 100%;
  height: 40px;
}

.footer {
  padding: 0;
}
.footer_nav{
  width: 100%;
  padding: 10px 0;
}
.footer_ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer_ul li {
  width: auto;
  height: 20px;
  line-height: 20px;
  margin: 0 4px;
}
.copyright {
  padding: 5px 0;
}
/* END-底部 */

/* 风冷式冷水机/水冷式冷水机/螺杆式冷水机/行业应用/产品中心/荣誉证书 */
.main{
	padding: 0;
}

.cpxq_p{
	font-size: 16px;
	line-height: 24px;
	padding-bottom: 5px;
	margin-bottom: 5px;
}
.cpxq_txt{
	line-height: 24px;
}
.cpxq_txt img{
	margin: 5px auto;
}
/* END-风冷式冷水机/水冷式冷水机/螺杆式冷水机/行业应用/产品中心/荣誉证书 */

/* 稳岱动态 */
.xw_ul li{
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.xw_ul li a .xw_img{
	width: 140px;
}
.xw_ul li a .xw_R{
	width: calc(100% - 140px);
	padding-left: 10px;
}
.xw_ul li a .xw_R .xw_p{
	line-height: 30px;
}
.xw_ul li a .xw_R .xw_txt{
	height: 60px;
	line-height: 20px;
	font-size: 14px;
}
.xw_ul li a .xw_R .xw_sp{
	height: 14px;
	line-height: 14px;
}

.xwxq_p{
	line-height: 24px;
	font-size: 16px;
	margin-bottom: 5px;
}
.xwxq_sp{
	line-height: 16px;
	padding-bottom: 5px;
	margin-bottom: 5px;
}
.xwxq_txt p{
	line-height: 24px; 
}

.xwxq_txt img{
	margin: 5px auto;
}
/* END-稳岱动态 */

/* 关于稳岱 */
.company{
  line-height: 24px;
}
/* END-关于稳岱 */

















/*联系我们*/
.contact_txt {
  line-height: 24px;
}
.contact_txt table td{width: 100%;float: left;}
.contact_map {
  height: 250px;
  margin-top: 10px;
}

/*END-联系我们*/
}

/* 手机底部组件 */
.root_kong {
  width: 100%;
  height: 60px;
  float: left;
  background-color: #fff;
	height: calc(60px +  constant(safe-area-inset-bottom));
	height: calc(60px +  env(safe-area-inset-bottom));
	padding-bottom: constant(safe-area-inset-bottom);
	padding-bottom: env(safe-area-inset-bottom);
}
.root {
  width: 100%;
  height: 58px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
  background-color: #fff;
	height: calc(58px +  constant(safe-area-inset-bottom));
	height: calc(58px +  env(safe-area-inset-bottom));
	padding-bottom: constant(safe-area-inset-bottom);
	padding-bottom: env(safe-area-inset-bottom);
}
.root > .layui-col-xs3 > a {
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5px 0;
  background-color: #0155b2;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
.root > .layui-col-xs3 > a > div {
  width: 100%;
  float: left;
  height: 22px;
  line-height: 22px;
}
.root > .layui-col-xs3 > a > div:first-child {
  height: 26px;
  line-height: 26px;
  font-size: 20px;
}
.root > .layui-col-xs3 > a:hover {
  background-color: #85c03f;
  color: #fff;
}
/* 电话 */
.root_bj {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0,0,0,0.6);
  z-index: 999;
}
.root_phone {
  display: none;
  width: 100%;
  background-color: #f5f5f5;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999999;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.root_phone>a,
.root_phone>.root_off {
  display: block;
  background-color: #fff;
  line-height: 44px;
  color:#333;
  text-align: center;
  border-bottom: 1px solid #ddd;
  font-size:15px;
}
.root_phone .root_off {
  margin-top: 6px;
  border-top: 1px solid #ddd;
}
.root_phone .root_off:hover,
.root_phone a:hover {
  background:#ddd;
}
/* 微信号 */
.wecht-box{
  display: none;
  width: 100%;
  float: left;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.wecht-box .wecht{
  width: 100%;
  float: left;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wecht-box .wecht .wecht_title{
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 14px;
  color: #333;
}
.wecht-box .wecht .wecht_title>span{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  font-weight: bold;
}
.wecht-box .wecht>img{
  display: block;
  max-width: 150px;
  margin: 10px auto;
  overflow: hidden;
}
.wecht-box .wecht .wecht_txt{
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
  color: #333;
  line-height: 18px;
}
.wecht-box .wecht .wecht_txt>span{
  font-family: Impact;
  font-size: 16px;
}
.wecht-box .wecht .wecht_off{
  width: 30px;
  height: 30px;
  font-size: 16px;
  color: #fff;
  position: absolute;
  left:50%;
  bottom:-38px;
  border: 1px solid #fff;
  transform:translateX(-50%);
  border-radius: 50%;
  display:flex;
  justify-content: center;
  align-items: center
}
/* END */
.jlfanye{ width:100%;margin:0 auto; text-align: center; }
.jlfanye a{ padding:5px 6px;  border: solid 1px #dedede; float:none; display: inline-block; min-width:8px; margin:8px 2px; color:#999;}
.jlfanye a:hover{ color:#c41313;}


.page-map{padding:10px 25px;width: 100%;}
.page-map .box .bt{line-height: 48px;font-weight: bold;}
.page-map .box .bt a{color:#000;font-size:16px;}
.page-map .box .bt a:hover{color:#26b7e3;font-size:16px;}
.page-map .box .dh{background: #fff;display: flex;flex-wrap: wrap;padding:15px 15px;}
.page-map .box .dh a{line-height: 35px;font-size:16px;color:#333;margin:0 25px;display: block;}
.page-map .box .dh a:hover{color:#00a6cf;text-decoration: underline !important;}
