/* 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: #333;
}
.topbox a {
  color: #333;
  margin: 0 10px;
}
.topbox a:last-child{
  margin: 0 0 0 10px;
}
.topbox a:hover {
  color: #042e7a;
  text-decoration: underline;
}

/* 头部 */
.header {
  width: 100%;
  padding: 29px 0;
}
.logo > a{
	width: 100%;
  max-width: 486px;
}
.logo img {
  width: 100%;
  display: block;
  height: auto;
}
.header_dianhua {
  line-height: 22px;
  color: #333;
  font-size: 14px;
  background: url(../images/header_dianhua.png) no-repeat left center;
  padding-left: 52px;
  margin-top: 6px;
}
.header_dianhua>span{
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 24px;
  font-weight: bold;
}

/* 导航 */
nav {
  background-color: #042e7a;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999999;
}
.layui-nav{
  background-color: initial;
  padding: 0;
  border-radius: initial;
  -webkit-border-radius: initial;
  -moz-border-radius: initial;
  -ms-border-radius: initial;
  -o-border-radius: initial;
}
.layui-nav .layui-nav-item{
  width: 10.6%;
  line-height: 50px;
}
.layui-nav .layui-nav-item:nth-child(3),
.layui-nav .layui-nav-item:nth-child(4),
.layui-nav .layui-nav-item:nth-child(5){
  width: 15%;
}



.layui-nav .layui-nav-item > a{
  padding: 0;
  text-align: center;
  font-size: 16px;
  color: #fff;
  position: relative;
  z-index: 1001;
}
.layui-nav .layui-nav-more{
    display: none;
}
.layui-nav .layui-this:after,
.layui-nav-bar,
.layui-nav-tree .layui-nav-itemed:after {
  height: 100%;
  background-color: #fff;
}
.layui-nav .layui-nav-item a:hover,
.layui-nav .layui-this a{
  color: #042e7a;
}
.layui-nav .layui-nav-item:hover > a{
  color: #042e7a;
}

/* 导航下拉 */
.layui-nav-child{
  top: 100%;
  padding: 2px 0 0 0;
  border: none;
  line-height: 40px;
  /* background-color: rgba(4,46,122,0.8); */
  background-color: #042e7a;
  border-radius: initial;
}
.layui-nav .layui-nav-child dd a{
  font-size: 14px;
  color: #fff;
  padding: 0;
  text-align: center;
}
.layui-nav .layui-nav-child dd a:hover{
  background-color: #fff;
  color: #042e7a;
}

/*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: 14px;
  background: #042e7a;
  opacity: 0.5;
  border-radius: 50%;
}
.banner-imgbox>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px;
}
.banner-imgbox .swiper-pagination-bullet-active {
  opacity: 1;
  background: #042e7a;
}
/*箭头*/
.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: 10px 0;
  background-color: #f5f5f5;
  border-bottom: 1px solid #dcdcdc;
}
.search_form{
  width: 320px;
  float: right;
  border: 1px solid #042e7a;
  overflow: hidden;
  border-radius: 5px;
}
.search_inp1{
  width: calc(100% - 46px);
  float: left;
  height: 38px;
  line-height: 38px;
  padding-left: 10px;
  background: #fff;
  color: #000;
  font-size: 14px;
}
.search_inp1::-webkit-input-placeholder{
  color: #999;
}
.search_inp1:-moz-placeholder{
  color: #999;
}
.search_btn{
  width: 46px;
  float: left;
  height: 38px;
  background-image: url(../images/search_ss.png);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
}
.search_txt{
  display: block;
  overflow: hidden;
  line-height: 24px;
  padding-top: 8px;
  font-size: 14px;
  color: #333;
}
.search_txt>span{
  float: left;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  padding-left: 26px;
  background: url(../images/search_icon.png) no-repeat left center;
  margin-right: 5px;
}
.search_txt > a{
  color: #333;
}
.search_txt > a:hover{
  color: #042e7a;
  text-decoration: underline;
}
/* END */

/* 首页 */
.cap{
  width: 100%;
  overflow: hidden;
  background-color: #f5f5f5;
  padding: 75px 0 100px 0;
}
.cap_title{
  display: block;
  overflow: hidden;
  text-align: center;
}
.cap_p{
  line-height: 38px;
  font-size: 30px;
  color: #042e7a;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cap_p>span{
  width: 7px;
  height: 7px;
  float: left;
  background-color: #043897;
  margin: 0 15px;
}
.cap_sp{
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.cap_sp>span{
  float: left;
  position: relative;
  padding: 0 20px;
  font-size: 14px;
  color: #333;
  line-height: 24px;
}
.cap_sp>em{
  float: left;
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #dcdcdc;
}
.cap_sp>em:first-child::before{
  content: "";
  float: left;
  width: 155px;
  height: 1px;
  background-color: #dcdcdc;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cap_sp>em:last-child::before{
  content: "";
  float: left;
  width: 155px;
  height: 1px;
  background-color: #dcdcdc;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cap_contect{
  position: relative;
  margin-top: 25px;
}
.cap-imgbox .swiper-slide>a{
  display: block;
  overflow: hidden;
  border: 1px solid #dcdcdc;
  background-color: #fff;
  padding: 24px;
}
.cap-imgbox .swiper-slide>a .cap_img{
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cap-imgbox .swiper-slide>a .cap_img::before{
  content: "";
  display: block;
  padding-top: 80%;
}
.cap-imgbox .swiper-slide>a .cap_txt{
  display: block;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  margin-top: 5px;
  text-align: center;
  font-size: 14px;
  color: #333;
}
.cap-imgbox .swiper-slide>a .cap_more{
  display: block;
  max-width: 120px;
  margin: 0 auto;
  overflow: hidden;
  height: 32px;
  line-height: 30px;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;
  color: #333;
}
.cap-imgbox .swiper-slide>a:hover{
  background-color: #093d9c;
  border-color: #093d9c;
}
.cap-imgbox .swiper-slide>a:hover .cap_img img{
  transform: scale(1.1);
}
.cap-imgbox .swiper-slide>a:hover .cap_txt{
  color: #fff;
}
.cap-imgbox .swiper-slide>a:hover .cap_more{
  border-color: #fff;
}
.cap-prev,
.cap-next{
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 30px;
  float: left;
  height: 30px;
  line-height: 28px;
  border: 1px solid #042e7a;
  background-color: #f5f5f5;
  text-align: center;
  font-size: 16px;
  color: #043897;
  transition: all 0.4s;
  cursor: pointer;
  z-index: 5;
}
.cap-next{
  left: initial;
  right: -30px;
}
.cap-prev:hover,
.cap-next:hover{
  background-color: #043897;
  color: #fff;
}

.pvc{
  width: 100%;
  overflow: hidden;
  background: url(../images/pvc_bj.jpg) no-repeat center bottom;
  background-size: cover;
  padding: 75px 0;
}
.pvc_contect{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  margin-top: 25px;
  background-color: #fff;
  padding: 30px 30px 30px 0;
}
.pvc_left{
  width: 59.15%;
  float: left;
}
.pvc-imgbox{
  width: 100%;
  height: 100%;
}
.pvc-imgbox .swiper-pagination {
  bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding:0 20px;
}
.pvc-imgbox .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #fff;
  opacity: 1;
  border-radius: 50%;
}
.pvc-imgbox>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0 0 5px;
}
.pvc-imgbox .swiper-pagination-bullet-active {
  opacity: 1;
  background: #042e7a;
}
.pvc_right{
  width: 40.85%;
  float: left;
  padding-right: 20px;
}
.pvc_B{
  display: block;
  overflow: hidden;
  padding: 15px 0 25px 35px;
}
.pvc_B .pvc_p{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow:ellipsis;
  white-space: nowrap;
  margin-bottom: 5px;
}
.pvc_B .pvc_txt{
  display: block;
  overflow: hidden;
  height: 96px;
  line-height: 24px;
  font-size: 14px;
  color: #333;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom: 15px;
}
.pvc_B .pvc_more{
  display: block;
  overflow: hidden;
  padding-top: 15px;
}
.pvc_B .pvc_more>a{
  width: 100%;
  max-width: 180px;
  float: left;
  height: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-size: 14px;
  color: #333;
}
.pvc_B .pvc_more>a>span{
  width: 18px;
  float: left;
  height: 11px;
  position: relative;
  margin-left: 7px;
}
.pvc_B .pvc_more>a>span::before{
  content: "";
  width: 13px;
  float: left;
  height: 3px;
  background-color: #9a9a9a;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.pvc_B .pvc_more>a>span::after{
  content: "";
  width:0;
  height:0;
  border-left: 7px solid #9a9a9a;
  border-top: 5px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.4s;
}
.pvc_B .pvc_more>a:hover{
  background-color: #053998;
  border-color: #053998;
  color: #fff;
}
.pvc_B .pvc_more>a:hover>span::before{
  background-color: #fff;
}
.pvc_B .pvc_more>a:hover>span::after{
  border-left: 7px solid #fff;
}
.pvc_dianhua_B{
  display: block;
  overflow: hidden;
  padding: 35px 25px;
  background: url(../images/pvc_dianhua_bj.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}
.pvc_dianhua{
  display: block;
  max-width: calc(100% - 78px);
  overflow: hidden;
  background-color: #fff;
  margin: 14px 0 10px 0;
  border-radius: 5px;
  padding: 20px 0 34px 30px;
  line-height: 30px;
  font-size: 30px;
  color: #333;
  font-weight: bold;
}
.pvc_dianhua>span{
  display: block;
  overflow: hidden;
  height: 32px;
  line-height: 22px;
  background: url(../images/pe_dianhua_icon.jpg) no-repeat left center;
  padding: 10px 0 0 32px;
  font-size: 16px;
  margin-bottom: 5px;
}
.pvc_img{
  width: 144px;
  float: right;
  overflow: hidden;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.pvc_img::before{
  content: "";
  display: block;
  padding-top: 100%;
}

.pe{
  background: #fff;
}
.pe .pvc_contect{
  flex-direction: row;
}
.pe .pvc-imgbox .swiper-pagination {
  justify-content: flex-start;
}
.pe .pvc-imgbox .swiper-pagination-bullet {
  background: #043897;
}
.pe .pvc-imgbox>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px 0 0;
}
.pe .pvc-imgbox .swiper-pagination-bullet-active {
  background: #2d87d3;
}
.pe .pvc_right{
  padding: 0 0 0 20px;
}
.pe .pvc_dianhua_B{
  background: url(../images/pe_dianhua_bj.jpg) no-repeat center center;
}

.hf{
  width: 100%;
  overflow: hidden;
  background-color: #042e7a;
  padding: 30px 1.5% 10px 1.5%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hf_wx{
  float: left;
  max-width: 207px;
}
.hf_wx img{
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.hf_B{
  width: 100%;
  float: left;
  max-width: 570px;
  margin: 0 20px 0 40px;
}
.hf_txt{
  display: block;
  overflow: hidden;
  line-height: 48px;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
}
.hf_dianhua{
  display: block;
  overflow: hidden;
  line-height: 35px;
  margin-top: 30px;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  background: url(../images/hf_dianhua.png) no-repeat left center;
  padding-left: 50px;
}
.hf_dianhua>span{
  font-size: 30px;
}
.hf_img{
  float: left;
  max-width: 608px;
}
.hf_img img{
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.cpzx{
  width: 100%;
  overflow: hidden;
  padding-top: 110px;
}
.cpzx_nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  margin-top: 15px;
}
.cpzx_nav li{
  width: 20%;
  float: left;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.cpzx_nav li a{
  display: block;
  overflow: hidden;
  height: 60px;
  line-height: 57px;
  text-align: center;
  border-top: 3px solid #043897;
  background-color: #043897;
  font-size: 15px;
  color: #fff;
}
.cpzx_nav li a:hover,
.cpzx_nav li.cpzx_active a{
  background-color: #fff;
  color: #333;
}
.cpzx_contect>div{
  display: none;
}
.cpzx_contect>div:first-child{
  display: block;
}
.cpzx_ul{
  display: block;
  overflow: hidden;
  padding-top: 30px;
  width: 1220px;
}
.cpzx_ul li{
  width: 285px;
  float: left;
  margin: 0 20px 20px 0;
}
.cpzx_ul li>a{
  display: block;
  overflow: hidden;
  border: 1px solid #dcdcdc;
  background-image: linear-gradient(rgba(47,99,195,0),rgba(4,56,151,0));
  padding: 20px;
}
.cpzx_ul li>a .cpzx_img{
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 45px;
}
.cpzx_ul li>a .cpzx_img::before{
  content: "";
  display: block;
  padding-top: 80.75314%;
}
.cpzx_ul li>a .cpzx_txt{
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}
.cpzx_ul li>a .cpzx_more{
  display: block;
  overflow: hidden;
  max-width: 120px;
  margin: 0 auto;
  text-align: center;
  line-height: 30px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
  margin-bottom: 25px;
}
.cpzx_ul li>a:hover{
  border: 1px solid transparent;
  background-image: linear-gradient(rgba(47,99,195,1),rgba(4,56,151,1));
}
.cpzx_ul li>a:hover .cpzx_img img{
  transform: scale(1.1);
}
.cpzx_ul li>a:hover .cpzx_txt{
  color: #fff;
}
.cpzx_ul li>a:hover .cpzx_more{
  color: #fff;
  border-color: #fff;
}
.cpzx_M{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 10px;
}
.cpzx_M>a{
  width: 100%;
  max-width: 180px;
  float: left;
  height: 40px;
  border: 1px solid #042e7a;
  background-color: #042e7a;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-size: 14px;
  color: #fff;
}
.cpzx_M>a>span{
  width: 18px;
  float: left;
  height: 11px;
  position: relative;
  margin-left: 7px;
}
.cpzx_M>a>span::before{
  content: "";
  width: 13px;
  float: left;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.cpzx_M>a>span::after{
  content: "";
  width:0;
  height:0;
  border-left: 7px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.4s;
}
.cpzx_M>a:hover{
  background-color: #fff;
  border-color: #053998;
  color: #333;
}
.cpzx_M>a:hover>span::before{
  background-color: #333;
}
.cpzx_M>a:hover>span::after{
  border-left: 7px solid #333;
}

.case{
  width: 100%;
  overflow: hidden;
  padding: 75px 0;
}
.case_title{
  display: flex;
  justify-content: center;
  line-height: 42px;
  font-size: 30px;
  color: #333;
  font-weight: bold;
}
.case_title>span{
  float: right;
  color: #042e7a;
}
.case_ul{
  display: block;
  overflow: hidden;
  padding-top: 65px;
}
.case_ul li{
  width: 12.5%;
  float: left;
}
.case_ul li .case_B{
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
}
.case_ul li .case_B::before{
  content: "";
  width: 100%;
  float: left;
  height: 1px;
  background-color: #bfbfbf;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.case_ul li .case_img{
  width: 100%;
  max-width: 70px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #c2c2c2;
  position: relative;
  z-index: 2;
  transition: all 0.4s;
}
.case_ul li .case_img::before{
  content: "";
  display: block;
  padding-top: 100%;
}
.case_txt{
  display: block;
  overflow: hidden;
  margin-top: 35px;
  line-height: 28px;
  text-align: center;
  font-size: 14px;
  color: #333;
}
.case_ul li:hover .case_img{
  border-color: #042e7a;
}
.case_ul li:hover .case_img img{
  transform: rotateY(360deg);
}
.case_ul li:hover .case_txt{
  color: #042e7a;
}

.ys{
  width: 100%;
  overflow: hidden;
  background: url(../images/ys_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 75px 0;
}
.ys_ul{
  display: block;
  overflow: hidden;
  width: 1220px;
}
.ys_ul li{
  width: 285px;
  float: left;
  margin: 20px 20px 0 0;
}
.ys_ul li>a{
  display: block;
  overflow: hidden;
  background-color: #fff;
  border-radius: 25px;
  padding: 25px 35px;
}
.ys_ul li>a .ys_img{
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 40px;
}
.ys_ul li>a .ys_p{
  display: block;
  overflow: hidden;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  color: #333;
  font-weight: bold;
}
.ys_ul li>a .ys_txt{
  display: block;
  overflow: hidden;
  margin-top: 5px;
  height: 40px;
  line-height: 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient: vertical;
}
.ys_ul li>a:hover{
  background-color: #0b3170;
}
.ys_ul li>a:hover .ys_p,
.ys_ul li>a:hover .ys_txt{
  color: #fff;
}

.news{
  width: 100%;
  overflow: hidden;
  padding-top: 75px;
}
.news_ul{
  display: block;
  overflow: hidden;
  width: 1230px;
}
.news_ul li{
  width: 380px;
  float: left;
  margin: 30px 30px 0 0;
}
.news_ul li .news_img{
  width: 100%;
  overflow: hidden;
  position: relative;
}
.news_ul li .news_img::before{
  content: "";
  display: block;
  padding-top: 52.6316%;
}
.news_ul li .news_B{
  width: 100%;
  overflow: hidden;
  border: 1px solid #eee;
  padding: 20px 20px 30px 20px;
}
.news_ul li .news_B .news_p{
  display: block;
  overflow: hidden;
  line-height: 36px;
  padding-bottom: 1px;
  position: relative;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.news_ul li .news_B .news_p::before{
  content: "";
  width: 100%;
  height: 1px;
  float: left;
  background-color: #eee;
  position: absolute;
  left: 0;
  bottom: 0;
}
.news_ul li .news_B .news_p::after{
  content: "";
  width: 100%;
  max-width: 142px;
  height: 1px;
  float: left;
  background-color: #043897;
  position: absolute;
  left: 0;
  bottom: 0;
}
.news_ul li .news_B .news_txt{
  display: block;
  overflow: hidden;
  height: 96px;
  line-height: 24px;
  font-size: 14px;
  color: #666;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-top: 2px;
}
.news_ul li .news_B .news_more{
  display: block;
  overflow: hidden;
  max-width: 100px;
  text-align: center;
  font-size: 14px;
  color: #000;
  height: 32px;
  line-height: 30px;
  border: 1px solid #e5e5e5;
  margin-top: 18px;
  border-radius: 5px;
}
.news_ul li:hover .news_img img{
  transform: scale(1.1);
}
.news_ul li:hover.news_B .news_p{
  color: #042e7a;
}
.news_ul li:hover .news_B .news_more{
  background-color: #042e7a;
  border-color: #042e7a;
  color: #fff;
}
.coop{
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}
.coop .container{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.coop_title{
  width: 210px;
  float: left;
  padding-left: 55px;
  position: relative;
}
.coop_title::before{
  content: "";
  width: 40px;
  float: left;
  height: 1px;
  background-color: #dcdcdc;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.coop_title::after{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  float: left;
  background-color: #dcdcdc;
  position: absolute;
  left: 33px;
  top: 50%;
  transform: translateY(-50%);
}
.coop_p{
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 44px;
  font-size: 36px;
  color: #042e7a;
  font-weight: bold;
}
.coop_sp{
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  color: #333;
  text-transform: uppercase;
}
.coop_right{
  width: calc(100% - 270px);
  float: left;
  padding: 0 20px;
  position: relative;
}
.coop-imgbox .swiper-slide>a{
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  border: 1px solid #e9e9e9;
  background-color: #fff;
}
.coop-imgbox .swiper-slide>a::before{
  content: "";
  display: block;
  padding-top: 52.381%;
}
.coop-imgbox .swiper-slide>a:hover{
  border-color: #042e7a;
}
.coop-imgbox .swiper-slide>a:hover img{
  transform: scale(1.1);
}
.coop-prev{
  width:0;
  float: left;
  height:0;
  border-right: 7px solid #dcdcdc;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  transition: all 0.4s;
}
.coop-prev:hover{
  border-right: 7px solid #042e7a;
}
.coop-next{
  width:0;
  float: left;
  height:0;
  border-left: 7px solid #dcdcdc;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -7px;
  transition: all 0.4s;
}
.coop-next:hover{
  border-left: 7px solid #042e7a;
}
/* END-首页 */

/* 底部 */
footer {
  background: #011132;
}
.footer{
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}
.footer_nav{
  /*display: flex;*/
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 22px;
}
.footer_nav>a{
  font-size: 14px;
  color: #fff;
}
.footer_nav>a:hover{
  color: #fff;
  text-decoration: underline;
}

.footer_conetct{
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}
.footer_left{
  width: 32%;
  float: left;
}
.footer_logo{
  display: block;
  overflow: hidden;
  padding: 18px 0;
}
.footer_logo img{
  display: block;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.footer_dianhua{
  display: block;
  overflow: hidden;
  line-height: 30px;
  margin-left: 80px;
  background: url(../images/footer_dianhua.png) no-repeat left center;
  padding-left: 42px;
  font-size: 24px;
  color: #3b93de;
  font-weight: bold;
}
.footer_right{
  width: 68%;
  float: left;
}
.footer_txt{
  float: left;
  line-height: 24px;
  color: #fff;
  font-size: 14px;
}

.fooer_wx{
  width: 380px;
  float: right;
  border: 1px solid #303d58;
  margin-top: 18px;
  display: flex;
  align-items: center;
  padding: 10px;
  font-size: 14px;
  color: #fff;
  line-height: 30px;
}
.fooer_wx img{
  width: 122px;
  float: left;
  margin-right: 50px;
}

.copyright{
  width: 100%;
  overflow: hidden;
  background-color: #0e1d3c;
  text-align: center;
  line-height: 24px;
  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: 25px 0;
}
.main_left{
	width: 280px;
	float: left;
}
.about{
	width: 100%;
	float: left;
}
.about_title{
	display: block;
	overflow: hidden;
  padding: 40px 0 30px 0;
	text-align: center;
	background-color: #042e7a;
  background-image: url(../images/about_title_bj.png);
  background-position: right top;
  background-repeat: no-repeat;
	color: #fff;
}
.about_p{
  line-height: 42px;
  font-size: 26px;
  font-weight: bold;
}
.about_sp{
  line-height: 24px;
  font-size: 14px;
  text-transform: uppercase;
}
.about_ul{
	display: block;
	overflow: hidden;
  border: 1px solid #eee;
}
.about_ul>li{
	display: block;
	overflow: hidden;
}
.about_ul>li>a{
	display: block;
	overflow: hidden;
	height: 49px;
	line-height: 48px;
  border-bottom: 1px solid #eee;
	font-size: 16px;
	color: #333;
  padding: 0 30px;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.about_ul>li:hover>a,
.about_ul>li.about_on>a{
	background-color: #042e7a;
	color: #fff;
}

.about_dl{
	display: none;
	overflow: hidden;
}
.about_dl>dd{
	display: block;
	overflow: hidden;
  border-bottom: 1px solid #eee;
}
.about_dl>dd>a{
	display: block;
	overflow: hidden;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	color: #333;
  text-align: center;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.about_dl>dd>a:hover{
	background-color: #042e7a;
	color: #fff;
}

.main_right{
	width: 880px;
	float: right;
}
.dqwz_title{
	width: 100%;
	float: left;
	line-height: 40px;
	font-size: 14px;
	color: #333;
  text-align: right;
	border-bottom: 1px solid #ccc;
}
.dqwz_contect{
	width: 100%;
	float: left;
	padding-top: 10px;
}
.company{
	display: block;
	overflow: hidden;
	font-size: 14px;
	line-height: 30px;
	color: #333;
}
.company img{
	max-width: 100%;
	height: auto;
}
/* END-关于我们 */

/* 毛细管空调格栅/透明PVC软管加工定制/精密PE管加工定制/产品中心 */
.cpzx_ul1{
  padding: 0 !important;
  width: 900px;
}
.cpzx_ul1 li{
  width: 280px;
  margin: 0 20px 20px 0;
}

.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: 55%;
	height: auto;
	margin: 15px auto;
}

.cpxq_txt video{
	max-width: 100%;
	max-height: 460px;
	margin: 15px auto;
}
/* END-毛细管空调格栅/透明PVC软管加工定制/精密PE管加工定制/产品中心 */

/* 行业新闻 */
.news_ul1{
  display: block;
  overflow: hidden;
}
.news_ul1 li{
  display: block;
  overflow: hidden;
  margin: 0 0 30px 0;
}
.news_ul1 li>a{
  width: 100%;
  float: left;
  display: flex;
}
.news_ul1 li .news_img{
  width: 250px;
  float: left;
  overflow: hidden;
  position: relative;
}
.news_ul1 li .news_B{
  width: calc(100% - 250px);
  overflow: hidden;
  border: 1px solid #eee;
  padding: 20px;
}
.news_ul1 li .news_B .news_p{
  display: block;
  overflow: hidden;
  line-height: 36px;
  position: relative;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.news_ul1 li .news_B .news_txt{
  display: block;
  overflow: hidden;
  height: 96px;
  line-height: 24px;
  font-size: 14px;
  color: #666;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin: 10px 0;
}
.news_ul1 li .news_B .news_more{
  display: block;
  overflow: hidden;
  max-width: 100px;
  text-align: center;
  font-size: 14px;
  color: #000;
  height: 32px;
  line-height: 30px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
}
.news_ul1 li:hover .news_img img{
  transform: scale(1.1);
}
.news_ul1 li:hover.news_B .news_p{
  color: #042e7a;
}
.news_ul1 li:hover .news_B .news_more{
  background-color: #042e7a;
  border-color: #042e7a;
  color: #fff;
}

.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: 15px auto;
}
/* END-行业新闻 */

/* 合作客户 */
.coop_ul{
  display: block;
  overflow: hidden;
  width: 102%;
  margin-left: -1%;
}
.coop_ul li{
  width: 23%;
  float: left;
  margin: 0 1% 2% 1%;
}
.coop_ul li>a{
  width: 100%;
  float: left;
  overflow: hidden;
  border: 1px solid #eee;
  position: relative;
}
.coop_ul li>a::before{
  content: "";
  display: block;
  padding-top: 50%;
}
.coop_ul li>a:hover{
  border-color: #093d9c;
}
.coop_ul li>a:hover img{
  transform: scale(1.1);
}
/* 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: 25px 0;
}
.layui-nav .layui-nav-item {
  width: 10.4%;
}
.layui-nav .layui-nav-item:nth-child(2),
.layui-nav .layui-nav-item:nth-child(3),
.layui-nav .layui-nav-item:nth-child(4) {
  width: 16%;
}
/* END_头部 */

/* 首页 */
.cap {
  padding: 50px 0;
}
.cap-prev,
.cap-next {
  left: 0;
}
.cap-next {
  left: initial;
  right: 0;
}

.pvc {
  padding: 50px 0;
}
.pvc_contect {
  padding: 30px 0;
}

.hf_B {
  margin: 0 20px;
}

.cpzx {
  padding-top: 70px;
}
.cpzx_ul {
  width: 102%;
  margin-left: -1%;
}
.cpzx_ul li {
  width: 23%;
  margin: 0 1% 20px 1%;
}
.cpzx_ul li>a {
  padding: 15px;
}
.cpzx_ul li>a .cpzx_img {
  margin-bottom: 30px;
}
.cpzx_ul li>a .cpzx_txt {
  margin-bottom: 15px;
}
.cpzx_ul li>a .cpzx_more {
  margin-bottom: 20px;
}

.case {
  padding: 50px 0;
}
.case_ul {
  padding-top: 40px;
}
.case_txt {
  margin-top: 20px;
}

.ys {
  padding: 50px 0;
}
.ys_ul {
  width: 102%;
  margin-left: -1%;
}
.ys_ul li {
  width: 23%;
  margin: 20px 1% 0 1%;
}
.ys_ul li>a {
  padding: 15px 25px;
}

.news {
  padding-top: 50px;
}
.news_ul {
  width: 102%;
  margin-left: -1%;
}
.news_ul li {
  width: 31.3333%;
  margin: 30px 1% 0 1%;
}
.news_ul li .news_B {
  padding: 15px;
}

.coop {
  padding: 30px 0;
}
.coop_right {
  width: calc(100% - 250px);
}
/* END-首页 */

/* 底部 */
.footer {
  padding: 40px 0;
}
.footer_conetct {
  margin-top: 30px;
}
/* END-底部 */

/* 关于我们 */
.main{
	padding: 50px 0;
}
.main_left{
	width: 24%;
}
.main_right{
	width: 74%;
}
/* END-关于我们 */

/* 毛细管空调格栅/透明PVC软管加工定制/精密PE管加工定制/产品中心 */
.cpzx_ul1{
  width: 102%;
  margin-left: -1%;
}
.cpzx_ul1 li{
  width: 31.3333%;
  margin: 0 1% 20px 1%;
}
/* END-毛细管空调格栅/透明PVC软管加工定制/精密PE管加工定制/产品中心 */

}

@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: #042e7a;
  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: #042e7a;
  width: 300px;
  height: 100%;
  left: -100%;
  transition: all 0.4s;
  z-index: 99999999;
	opacity: 0;
}
.nav-actived{
  left: 0;
	opacity: 1;
}
nav>.container{
  max-width: 100% !important;
}
.layui-nav{
  width: 100%;
}
.layui-nav .layui-nav-item{
  width: 100%;
  line-height: 50px;
  border-bottom: 1px solid #fff;
}
.layui-nav .layui-nav-item:nth-child(2),
.layui-nav .layui-nav-item:nth-child(3),
.layui-nav .layui-nav-item:nth-child(4),
.layui-nav .layui-nav-item:nth-child(5){
  width: 100%;
}
.layui-nav .layui-nav-item a{
	color: #fff;
}
.layui-nav .layui-this:after,
.layui-nav-bar,
.layui-nav-tree .layui-nav-itemed:after {
  display: none;
}
.layui-nav .layui-nav-item:hover,
.layui-nav .layui-this{
  background-color: #fff;
}
.layui-nav .layui-nav-item:hover a,
.layui-nav .layui-this a{
  color: #042e7a;
}

/*圆点*/
.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;
}
/* END-头部 */

/* 首页 */
.cap {
  padding: 30px 0;
}
.cap-imgbox .swiper-slide>a {
  padding: 12px;
}

.pvc {
  padding: 30px 0;
}
.pvc_contect {
  padding: 15px 0;
}
.pvc_B .pvc_txt {
  margin-bottom: 5px;
}
.pvc_B .pvc_more {
  padding-top: 5px;
}
.pvc_B {
  padding: 15px 0 15px 15px;
}
.pvc_dianhua_B {
  padding: 15px;
}
.pvc_dianhua {
  max-width: calc(100% - 50px);
  margin: 10px 0;
  padding: 10px;
  line-height: 24px;
  font-size: 20px;
}
.pvc_img {
  width: 100px;
  right: 15px;
}

.hf {
  padding: 15px 20px;
}
.hf_B {
  margin: 0 10px;
}
.hf_txt {
  line-height: 30px;
  font-size: 20px;
}
.hf_dianhua {
  margin-top: 10px;
  font-size: 18px;
}
.hf_dianhua>span {
  font-size: 24px;
}

.cpzx {
  padding-top: 30px;
}
.cpzx_nav li a {
  height: 50px;
  line-height: 47px;
}
.cpzx_ul li>a {
  padding: 10px;
}
.cpzx_ul li>a .cpzx_img {
  margin-bottom: 10px;
}
.cpzx_ul li>a .cpzx_txt {
  margin-bottom: 10px;
}
.cpzx_ul li>a .cpzx_more {
  margin-bottom: 10px;
}

.case {
  padding: 30px 0;
}
.case_ul {
  padding-top: 20px;
}
.case_txt {
  margin-top: 10px;
}

.ys {
  padding: 30px 0;
}
.ys_ul li>a {
  padding: 10px;
}

.news {
  padding-top: 30px;
}
.news_ul li .news_B {
  padding: 10px;
}

.coop {
  padding: 20px 0;
}
/* END-首页 */

/* 底部 */
.footer{
  padding: 20px 0;
}
.footer_nav {
  justify-content: center;
}
.footer_nav a{
  margin: 0 5px;
}
.footer_conetct {
  margin-top: 20px;
}
.footer_dianhua {
  margin-left: 0;
}
.footer_right {
  padding-left: 20px;
}
.footer_txt {
  width: calc(100% - 280px);
}
.fooer_wx {
  width: 280px;
}
.fooer_wx img {
  margin-right: 20px;
}
/* END-底部 */

/* 关于我们 */
.main{
	padding: 30px 0;
}
.main_left{
	width: 29%;
}
.about_ul>li>a {
  padding: 0 15px;
}
.main_right{
	width: 69%;
}
/* END-关于我们 */

/* 行业新闻 */
.news_ul1 li{
  margin: 0 0 20px 0;
}
.news_ul1 li .news_img{
  width: 180px;
}
.news_ul1 li .news_B{
  width: calc(100% - 180px);
  padding: 10px;
}
.news_ul1 li .news_B .news_txt {
  height: 72px;
  -webkit-line-clamp: 3;
  margin: 5px 0;
}
/* END-行业新闻 */

/* 合作客户 */
.coop_ul li{
  width: 31.3333%;
}
/* END-合作客户 */
























}

@media (max-width: 767px) {
/* 导航按钮 */
.icon-menu {
  width: 30px;
  height: 21px;
	right: 10px;
}
.icon-menu span {
  height: 3px;
}
.icon-menu-active>span:nth-child(1){
  -webkit-transform: translateY(9px) rotate(-45deg);
  -ms-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
.icon-menu-active>span:nth-child(3){
  -webkit-transform: translateY(-9px) rotate(45deg);
  -ms-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

/* 头部 */
.header{
  padding: 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-头部 */

/* 首页 */
.cap {
  padding: 10px 0;
}
.cap_p {
  line-height: 30px;
  font-size: 20px;
}
.cap_sp>span {
  padding: 0 10px;
  font-size: 12px;
  line-height: 20px;
}
.cap_contect {
  margin-top: 10px;
}
.cap-imgbox .swiper-slide>a {
  padding: 5px;
}
.cap-imgbox .swiper-slide>a .cap_txt {
  height: 36px;
  line-height: 36px;
  margin-top: 0;
}

.pvc {
  padding: 10px 0;
}
.pvc_contect {
  padding: 0;
  margin-top: 10px;
}
.pvc_left {
  width: 100%;
}
.pvc-imgbox .swiper-slide>a{
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.pvc-imgbox .swiper-slide>a::before{
  content: "";
  display: block;
  padding-top: 64%;
}
.pvc-imgbox .swiper-pagination {
  bottom: 10px;
  padding:0 10px;
}
.pvc_right {
  width: 100%;
  padding: 10px;
}
.pvc_B {
  padding: 0px;
}
.pe .pvc_right{
  padding: 10px;
}

.hf{
  padding: 10px;
  flex-wrap: wrap;
}
.hf_wx {
  max-width: 35%;
}
.hf_B {
  width: 65%;
  max-width: 100%;
  margin: 0;
  padding-left: 10px;
}
.hf_txt {
  line-height: 24px;
  font-size: 16px;
}
.hf_dianhua {
  margin-top: 5px;
  font-size: 14px;
  line-height: 20px;
}
.hf_dianhua>span {
  display: block;
  overflow: hidden;
  font-size: 20px;
  line-height: 30px;
}
.hf_img {
  width: 100%;
  max-width: 100%;
}

.cpzx {
  padding-top: 10px;
}
.cpzx_nav {
  margin-top: 10px;
}
.cpzx_nav li {
  width: 33.3333%;
}
.cpzx_nav li a {
  height: 40px;
  line-height: 37px;
}
.cpzx_ul {
  padding-top: 10px;
}
.cpzx_ul li {
  width: 48%;
  margin: 0 1% 10px 1%;
}
.cpzx_ul li>a {
  padding: 4px;
}
.cpzx_ul li>a .cpzx_img {
  margin-bottom: 5px;
}
.cpzx_ul li>a .cpzx_txt {
  margin-bottom: 5px;
}
.cpzx_ul li>a .cpzx_more {
  margin-bottom: 0;
}

.case {
  padding: 10px 0;
}
.case_title {
  line-height: 30px;
  font-size: 20px;
}
.case_ul {
  padding-top: 10px;
}
.case_ul li {
  width: 25%;
}
.case_txt {
  margin-top: 0;
  line-height: 40px;
}

.ys {
  padding: 10px 0;
}
.ys_ul li {
  width: 48%;
  margin: 10px 1% 0 1%;
}

.news {
  padding-top: 10px;
}
.news_ul {
  width: 100%;
  margin-left: 0;
}
.news_ul li {
  width: 100%;
  margin: 10px 0 0 0;
}
.news_ul li>a{
  display: flex;
  width: 100%;
  float: left;
}
.news_ul li .news_img {
  width: 140px;
  float: left;
}
.news_ul li .news_B {
  width: calc(100% - 140px);
  padding: 5px 10px ;
}
.news_ul li .news_B .news_p {
  line-height: 24px;
}
.news_ul li .news_B .news_txt {
  height: 60px;
  line-height: 20px;
  -webkit-line-clamp: 3;
  margin: 3px 0;
}
.news_ul li .news_B .news_more {
  height: 26px;
  line-height: 24px;
  margin-top: 0;
}

.coop {
  padding: 10px 0;
}
.coop_title {
  width: 100%;
  padding: 0;
}
.coop_title::before,
.coop_title::after{
  display: none;
}
.coop_p {
  line-height: 30px;
  font-size: 20px;
}
.coop_sp {
  line-height: 20px;
  font-size: 14px;
}
.coop_right {
  width: 100%;
  margin-top: 10px;
}
/* END-首页 */

/* 底部 */
.footer {
  padding: 10px 0;
  font-size: 12px;
  line-height: 20px;
}
.copyright{
  line-height: 20px;
  padding: 10px 0;
}
/* END-底部 */

/* 关于我们 */
.main{
	padding: 0;
}
.main_left{
	width: 100%;
}
.about{
	margin: 0;
}
.about_title{
  width: calc(100% + 20px);
  margin-left: -10px;
  font-size: 18px;
  font-weight: bold;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #fff;
  text-align: left;
  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;
}
.about_ul>li>a {
  height: 41px;
  line-height: 40px;
}

.main_right{
	width: 100%;
}
.dqwz_contect{
	padding: 10px 0;
}
.company{
	line-height: 24px;
}
/* END-关于我们 */

/* 毛细管空调格栅/透明PVC软管加工定制/精密PE管加工定制/产品中心 */
.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-毛细管空调格栅/透明PVC软管加工定制/精密PE管加工定制/产品中心 */

/* 行业新闻 */
.news_ul1 li{
  margin: 0 0 10px 0;
}
.news_ul1 li .news_img{
  width: 140px;
}
.news_ul1 li .news_B{
  width: calc(100% - 140px);
  padding: 5px 10px;
}
.news_ul1 li .news_B .news_p{
  line-height: 24px;
}
.news_ul1 li .news_B .news_txt {
  height: 60px;
  line-height: 20px;
  -webkit-line-clamp: 3;
  margin: 3px 0;
}
.news_ul1 li .news_B .news_more {
  height: 26px;
  line-height: 24px;
}

.xwxq_p{
	line-height: 24px;
	font-size: 16px;
	margin-bottom: 5px;
}
.xwxq_sp{
	line-height: 16px;
	padding-bottom: 5px;
	margin-bottom: 5px;
}
.xwxq_txt{
	line-height: 24px;
}
.xwxq_txt img{
	margin: 5px auto;
}
/* END-行业新闻 */

/* 合作客户 */
.coop_ul li{
  width: 48%;
}
/* END-合作客户 */

















/*联系我们*/
.contact_txt {
  line-height: 24px;
}
.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: 9999;
  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: #042e7a;
  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: #042e7a;
  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 */
