/* 
* @作者: 庄晓辉  
* @制作日期: 2021-03-13 13:07:51  
* @上次修改者: 庄晓辉  
* @上次修改时间: 2021-03-13 13:07:51  
*/
/* Animate.css动画演示 */
@import "../css/animate.css";

/* Swiper 6.4.1 */
@import "../swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../css/iconfont.css";

/* 公共样式 */
@import "../css/public.css";
.text_btn{
  position: relative;
}
.text_btn::after{
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left:0;
  top:0;
  background-color: #21126e;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.text_btn:hover:after{
  width: 100%;
}
.text_span{
  position: relative;
  z-index: 1000;
}

/* 顶部 */
.topbox {
  width: 100%;
  background-color: #ececec;
  line-height: 30px;
  font-size: 12px;
  color: #333;
}
.topbox a {
  float: left;
  color: #333 !important;
}
.topbox .layui-breadcrumb span{
  float: left;
  margin: 0 6px;
}
.topbox a:hover {
  color: #21126e !important;
  text-decoration: underline;
}

/* 头部 */
.header {
  width: 100%;
  padding: 24px 0;
}
.logo > a{
  width: 315px;
}
.logo img {
  width: 100%;
  display: block;
  height: auto;
}
.logo_txt{
  width: 265px;
}
.header_dianhua {
  line-height: 20px;
  color: #909090;
  font-size: 14px;
  line-height: 24px;
  background: url(../images/header_dianhua.png) no-repeat left center;
  padding-left: 55px;
  margin-top: 10px;
}
.header_dianhua span{
  display: block;
  font-family: Impact;
  font-size: 24px;
  color: #422f9e;
  line-height: 30px;
  overflow: hidden;
}

/* 导航 */
nav {
  background: #422f9e;
  position: relative;
  left: 0;
  top: 0;
  z-index: 999999;
}
.layui-nav{
    background-color: initial;
    padding: 0 0 0 1px;
    border-radius: initial;
    -webkit-border-radius: initial;
    -moz-border-radius: initial;
    -ms-border-radius: initial;
    -o-border-radius: initial;
}
.layui-nav::before{
  content: "";
  width: 1px;
  float: left;
  height: 34px;
  background-color: #6956c7;
  position: absolute;
  left: 0;
  top:50%;
  transform: translateY(-50%);
  z-index: 9;
}
.layui-nav .layui-nav-item{
    width: 14.285%;
    line-height: 60px;
    position: relative;
    padding-right: 1px;
}
.layui-nav .layui-nav-item::before{
  content: "";
  width: 1px;
  float: left;
  height: 34px;
  background-color: #6956c7;
  position: absolute;
  right: 0;
  top:50%;
  transform: translateY(-50%);
  z-index: 9;
}
.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: #21126e;
}
.layui-nav .layui-nav-item a:hover,
.layui-nav .layui-this a{
  background-color: #21126e;
  color: #fff;
}
.layui-nav .layui-nav-item:hover > a{
  color: #fff;
}

/* 导航下拉 */
.layui-nav-child{
  top: 60px;
  padding: 2px 0;
  border: none;
  line-height: 32px;
  background-color: rgba(66,47,158,0.95);
  border-radius: initial;
  -webkit-border-radius: initial;
  -moz-border-radius: initial;
  -ms-border-radius: initial;
  -o-border-radius: initial;
}
.layui-nav .layui-nav-child dd a{
  font-size: 14px;
  color: #fff;
  padding: 0;
  text-align: center;
}

/*banner大图*/
.banner {
  width: 100%;
  position: relative;
}
.banner .banner-imgbox .swiper-slide img {
  width: 100%;
}
/*圆点*/
.banner .swiper-pagination {
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 15px;
}
.banner .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #422f9e;
  opacity: 0.5;
  border-radius: 50%;
  margin: 0 6px;
}
.banner .swiper-pagination-bullet-active {
  opacity: 1;
  background: #21126e;
}
.banner:hover .swiper-pagination {
  opacity: 1;
}
/*箭头*/
.banner .banner-next {
  right: 2%;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  width: 38px;
  height: 70px;
  background: url(../images/imgs/next.jpg) no-repeat center center;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  z-index: 999999;
  transition: all 0.4s;
}
.banner .banner-prev {
  left: 2%;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  width: 38px;
  height: 70px;
  background: url(../images/imgs/prev.jpg) no-repeat center center;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  z-index: 999999;
  transition: all 0.4s;
}
.banner:hover .banner-next {
  opacity: 1;
}
.banner:hover .banner-prev {
  opacity: 1;
}
/* END */

/*首页内容*/
/* 产品展示 */
.cpzs{
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
.main_left{
  width: 275px;
  float: left;
}
.about{
  width: 100%;
  float: left;
}
.about_title{
  display: block;
  overflow: hidden;
  background-image: url(../images/about_title.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px 20px;
  font-weight: bold;
}
.about_p{
  line-height: 40px;
  font-size: 30px;
  color: #fff;
}
.about_sp{
  line-height: 26px;
  font-size: 18px;
  color: #84d8f5;
  text-transform: uppercase;
}
.about_dl{
  display: block;
  overflow: hidden;
  margin-top: 10px;
}
.about_dl > dt{
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #fff;
}
.about_dl > dt > a{
  display: block;
  overflow: hidden;
  background-color: #21126e;
  font-size: 16px;
  color: #fff;
  padding: 0 20px;
  height: 48px;
  line-height: 48px;
}
.about_dl > dd{
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #fff;
}
.about_dl > dd > a{
  display: block;
  overflow: hidden;
  background-color: #f6f6f6;
  font-size: 16px;
  color: #333;
  padding: 0 20px;
  height: 48px;
  line-height: 48px;
}
.about_dl > dd > a > span{
  float: right;
  color: #999;
  font-size: 18px;
  font-weight: normal;
  transition: all 0.4s;
}
.about_dl > dd > a:hover{
  background-color: #422f9e;
  color: #fff;
}
.about_dl > dd > a:hover > span{
  color: #fff;
}
.about_dl > dd > a.on{
  background-color: #422f9e;
  color: #fff;
}
.about_dl > dd > a.on > span{
  color: #fff;
}
.about_dianhuaB{
  display: block;
  overflow: hidden;
  margin-top: 10px;
  border-radius: 0 0 40px 40px;
  border-bottom: 15px solid #bdb6dd;
  padding: 25px 0;
  text-align: center;
  background-image: linear-gradient(#3e2b98, #21126e);
}
.about_dianhuaB img{
  display: block;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
}
.about_dianhua_p{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  overflow: hidden;
  -webkit-box-pack:center;
  -ms-flex-pack:center;
  justify-content:center;
  margin-top: 10px;
}
.about_dianhua_p span{
  float: left;
  position: relative;
  line-height: 24px;
  font-size: 14px;
  color: #fff;
  padding: 0 15px;
}
.about_dianhua_p span::before{
  content: "";
  width: 52px;
  float: left;
  height: 1px;
  background-color: #fff;
  position: absolute;
  right: 100%;
  top:50%;
  transform: translateY(-50%);
}
.about_dianhua_p span::after{
  content: "";
  width: 52px;
  float: left;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 100%;
  top:50%;
  transform: translateY(-50%);
}
.about_dianhua_sp{
  display: block;
  overflow: hidden;
  padding-top: 5px;
  text-align: center;
  font-family: Impact;
  line-height: 30px;
  font-size: 24px;
  color: #fff;
}
.main_right{
  width: 898px;
  float: right;
}
.dqwz_title{
  width: 100%;
  float: left;
  height: 53px;
  border-bottom: 1px solid #e3e3e3;
  line-height: 52px;
}
.search{
  width: 350px;
  float: left;
}
.search_btn{
  width: 26px;
  float: left;
  height: 52px;
  background: url(../images/search_ss.png) no-repeat center center;
  outline: none;
  border: none;
  cursor: pointer;
}
.search input{
  width: calc(100% - 26px);
  float: left;
  height: 52px;
  line-height: 52px;
  border: none;
  padding: 0 20px;
  font-size: 14px;
  color: #000;
}
.search input::-webkit-input-placeholder{color: #707070;} 
.search input:-moz-placeholder{color: #707070;} 
.dqwz_sp{
  float: right;
  height: 53px;
  line-height: 51px;
  border-bottom: 2px solid #422f9e;
  font-size: 14px;
  color: #422f9e;
}
.dqwz_contect{
  width: 100%;
  float: left;
  padding-top: 20px;
}
.cpzs_ul{
  display: block;
  overflow: hidden;
  width: 906px;
}
.cpzs_ul li{
  width: 294px;
  float: left;
  margin: 0 8px 12px 0;
}
.cpzs_ul li a{
  display: block;
  overflow: hidden;
  border: 2px solid #efefef;
}
.cpzs_ul li a .cpzs_B{
  width: 100%;
  overflow: hidden;
  border-bottom: 2px solid #efefef;
}
.cpzs_ul li a .cpzs_B .cpzs_img{
  width: 100%;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cpzs_ul li a .cpzs_B .cpzs_img::before{
  content: "";
  display: block;
  padding-top: 78.2007%;
}
.cpzs_ul li a .cpzs_txt{
  display: block;
  overflow: hidden;
  height: 46px;
  line-height: 46px;
  text-align: center;
  font-size: 14px;
  color: #404040;
}
.cpzs_ul li a:hover .cpzs_B .cpzs_img{
  transform: scale(1.1,1.1);
}
.cpzs_ul li a:hover .cpzs_txt{
  background-color: #422f9e;
  color: #fff;
}

/* 关于我们 */
.gsjj{
  width: 100%;
  overflow: hidden;
  background: url(../images/gsjj_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 60px 0;
}
.gsjj_title{
  display: block;
  overflow: hidden;
  text-align: center;
}
.gsjj_p{
  line-height: 40px;
  font-size: 30px;
  color: #333;
  font-weight: bold;
}
.gsjj_sp{
  line-height: 20px;
  font-size: 14px;
  color: #bababa;
  text-transform: uppercase;
}
.gsjj_heng{
  display: block;
  overflow: hidden;
  height: 1px;
  position: relative;
  background-color: #e4e4e4;
  margin-top: 10px;
}
.gsjj_heng::before{
  content: "";
  width: 80px;
  float: left;
  height: 100%;
  background-color: #422f9e;
  position: absolute;
  left:50%;
  top:0;
  transform: translateX(-50%);
}
.gsjj_contect{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;  
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  justify-content:space-between;
  padding-top: 30px;
}
.gsjj_left{
  width: 490px;
  float: left;
  border: 1px solid #e1e1e1;
  padding: 10px;
  background-color: #fff;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;  
}
.gsjj_left a{
  width: 100%;
  float: left;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.gsjj_right{
  width: calc(100% - 490px);
  float: right;
  padding-left: 35px;
}
.gsjj_pp{
  line-height: 32px;
  font-size: 22px;
  color: #333;
  font-weight: bold;
}
.gsjj_spp{
  line-height: 20px;
  font-size: 14px;
  color: #999;
  line-height: 22px;
  text-transform: uppercase;
}
.gsjj_txt{
  display: block;
  overflow: hidden;
  height: 150px;
  line-height: 30px;
  font-size: 14px;
  color: #636363;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:5;
  -webkit-box-orient: vertical;
  margin-top: 20px;
}
.gsjj_more{
  display: block;
  overflow: hidden;
  margin-top: 25px;
}
.gsjj_more > a{
  width: 108px;
  height: 32px;
  float: left;
  line-height: 32px;
  text-align: center;
  background-color: #422f9e;
  font-size: 12px;
  color: #fff;
}

/* 工程案例 */
.case{
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}
.case_ul{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:center;
  -ms-flex-pack:center;
  justify-content:center;
  overflow: hidden;
  position: relative;
  margin-top: 45px;
}
.case_ul li{
  width: 23.75%;
  height: calc(50% - 10px);
  float: left;
  position: absolute;
}
.case_ul li a{
  width: 100%;
  float: left;
  position: relative;
  overflow: hidden;
}
.case_ul li a .case_img{
  width: 100%;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.case_ul li a .case_img::before{
  content: "";
  display: block;
  padding-top: 72.3729%;
}
.case_ul li a .case_txt{
  width: 100%;
  overflow: hidden;
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  background-color: rgba(66,47,158,0.9);
  position: absolute;
  left:0;
  bottom: -100%;
}
.case_ul li a:hover .case_img{
  transform: scale(1.1,1.1);
}
.case_ul li a:hover .case_txt{
  bottom: 0;
}
.case_ul li:first-child{
  width: 49.25%;
  position: relative;
  height: initial;
}
.case_ul li:nth-child(2){
  left: 0;
  top:0;
}
.case_ul li:nth-child(3){
  right: 0;
  top:0;
}
.case_ul li:nth-child(4){
  left: 0;
  bottom:0;
}
.case_ul li:nth-child(5){
  right: 0;
  bottom:0;
}

/* 横幅 */
.hf{
  width: 100%;
  overflow: hidden;
  background: url(../images/hf_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 55px 0 40px 0;
}
.hf_left{
  width: 50%;
  float: left;
}
.hf_p{
  line-height: 50px;
  font-size: 36px;
  color: #fff;
  font-weight: bold;
}
.hf_sp{
  line-height: 36px;
  font-size: 22px;
  color: #fff;
  margin-top: 15px;
}
.hf_right{
  width: 50%;
  float: left;
  padding-top: 10px;
}
.hf_dianhua{
  float: right;
  color: #fff;
  line-height: 30px;
  font-family: Arial;
  font-size: 26px;
}
.hf_dianhua span{
  display: block;
  overflow: hidden;
  line-height: 38px;
  background: url(../images/hf_dianhua.png) no-repeat left center;
  font-size: 20px;
  padding-left: 50px;
  margin-bottom: 15px;
}

/* 新闻中心 */
.news{
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}
.news_ul{
  display: block;
  overflow: hidden;
  width: 1230px;
  padding-top: 15px;
}
.news_ul li{
  width: 380px;
  float: left;
  margin: 30px 30px 0 0;
}
.news_ul li .news_up{
  width: 100%;
  overflow: hidden;
  padding-bottom: 15px;
  border-bottom: 1px solid #cacaca;
}
.news_ul li .news_up .news_B{
  width: 100%;
  overflow: hidden;
  border: 3px solid #efefef;
}
.news_ul li .news_up .news_B .news_img{
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.news_ul li .news_up .news_B .news_img::before{
  content: "";
  display: block;
  padding-top: 68.98396%;
}
.news_ul li .news_up .news_p{
  overflow: hidden;
  line-height: 34px;
  margin-top: 10px;
  font-size: 16px;
  color: #422f9e;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.news_ul li .news_up .news_txt{
  overflow: hidden;
  line-height: 24px;
  margin-top: 5px;
  font-size: 12px;
  color: #666;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient: vertical;
}
.news_ul li .news_up:hover .news_B .news_img{
  transform: scale(1.1,1.1);
}
.news_ul li .news_dl{
  display: block;
  overflow: hidden;
  margin-top: 15px;
}
.news_ul li .news_dl dd{
  display: block;
  overflow: hidden;
}
.news_ul li .news_dl dd a{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #333;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.news_ul li .news_dl dd a span{
  float: right;
  font-size: 12px;
  color: #898989;
}
.news_ul li .news_dl dd a:hover{
  color: #422f9e;
}

.down_dl{
  display: block;
  overflow: hidden;
  margin-top: 0px;
}
.down_dl dd{
  display: block;
  overflow: hidden;
}
.down_dl dd a{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #333;
  text-overflow:ellipsis;
  white-space: nowrap;
  border-bottom:1px dotted #ededed;
  padding-bottom:6px; margin-bottom:6px;
}
.down_dl dd a span{
  float: right;
  font-size: 12px;
  color: #f00;
}
.down_dl dd a:hover{
  color: #21126e;
}
/*END-首页内容*/

/* 底部 */
footer {
  background: #21126e;
}
.link{
  width: 100%;
  overflow: hidden;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  font-size: 16px;
  color: #fff;
}
.link_p{
  float: left;
}
.link a{
  float: left;
  color: #fff !important;
}
.link span{
  float: left;
  color: #fff !important;
}
.link a:hover{
  color: #fff !important;
  text-decoration: underline;
}

.footer{
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
}
.footer > div{
  float: left;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.footer_tudu{
  width: 12%;
}
.footer_lengzha{
  width: 16%;
  padding-left: 25px;
}
.footer_case{
  width: 16%;
  padding-left: 30px;
}
.footer_news{
  width: 16%;
  padding: 0 25px;
}
.footer_lxwm{
  width: 40%;
  border-right: none !important;
  padding-left: 30px;
}
.footer_p{
  display: block;
  overflow: hidden;
  line-height: 28px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}
.footer_ul{
  display: block;
  overflow: hidden;
}
.footer_ul li{
  width: 100%;
  float: left;
  height: 24px;
  line-height: 24px;
  text-overflow:ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #fff;
}
.footer_ul li a{
  color: #fff;
  font-size: 14px;
}
.footer_ul li a:hover{
  color: #fff;
  text-decoration: underline;
}
.footer_lengzha .footer_ul li{
  width: 100%;
}
.footer_case .footer_ul li{
  width: 100%;
}
.footer_news .footer_ul li{
  width: 100%;
}
.footer_txt{
  display: block;
  color: #fff;
  line-height: 24px;
  font-size: 14px;
}
.footer_txt img{
  width: 124px;
  float: right;
  height: 124px;
  margin-top: -10px; margin-left:20px;
}
.copyright{
  width: 100%;
  overflow: hidden;
  background-color: #422f9e;
  text-align: center;
  line-height: 20px;
  padding: 9px 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: 50px 0;
}
.about1{
  margin-top: 30px;
}
.about_B{
  display: block;
  overflow: hidden;
  margin-top: 10px;
  border: 1px solid #d7d7d7;
}
.about_B img{
  width: 100%;
  display: block;
  height: auto;
}
.about_txt{
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  color: #333;
  padding: 10px;
}
.dqwz_p{
  float: left;
  font-size: 18px;
  color: #422f9e;
}
.dqwz_nav{
  float: right;
  height: 53px;
  line-height: 50px;
  border-bottom: 2px solid #422f9e;
  font-size: 14px;
  color: #ababab;
}
.dqwz_nav > span{
  color: #422f9e;
}
.company{
  font-size: 14px;
  line-height: 30px;
  color: #636363;
}

/* 产品展示/工程案例 */
.cpzs_ul1 li:last-child{
  display: block !important;
}

.cpxq{
  overflow: hidden;
}
.cpxq_p{
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  font-weight:bold;
}
.cpxq_sp{
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
  font-size: 12px;
  line-height: 20px;
  color: #666;
}
.cpxq_img{ width:100%; text-align:center;}
.cpxq_img img{ max-width:800px; display:block; margin:10px auto;}
.cpxq_txt{
  font-size: 14px;
  line-height: 30px;
  color: #636363;
}
.cpxq_txt img{
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 20px auto;
}
.cpxq_txt table{border:1px #CCCCCC solid; border-collapse:collapse; width:100% !important;}
.cpxq_txt table td{border:1px #CCCCCC solid;  border-collapse:collapse; width:auto !important;}
/* 现货一览 */
.xh{
  display: block;
  overflow: hidden;
}
.xh_p{
  display: block;
  overflow: hidden;
  background-color: #422f9e;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  color: #fff;
}
.xh_search{
  display: block;
  overflow: hidden;
  margin-top: 20px;
}
.xh_search > input{
  width: 200px;
  float: left;
  height: 34px;
  border: 1px solid #ddd;
  line-height: 32px;
  padding: 0 10px;
  font-size: 14px;
  color: #000;
  margin-right: 20px;
}
.xh_search > button{
  width: 92px;
  float: left;
  height: 34px;
  border: 2px solid #84d8f5;
  background: #422f9e;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
.search_form{
  display: block;
  overflow: hidden;
  margin-top: 20px;
  padding-bottom: 20px;
  /*border-bottom: 1px solid #ddd;*/
}
.search_form > label{
  float: left;
  margin: 0 15px 10px 0;
}
.search_form > label > .search_form_p{
  float: left;
  line-height: 34px;
  font-size: 14px;
  color: #5e5e5e;
  font-weight: bold;
  margin-right: 10px;
}
.search_form > label > input{
  width: 102px;
  float: left;
  height: 34px;
  line-height: 32px;
  border: 1px solid #ddd;
  padding: 0 10px;
  font-size: 14px;
  color: #000;
}
.search_form > button{
  width: 92px;
  float: left;
  height: 34px;
  border: 2px solid #84d8f5;
  background: #422f9e;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}

.txtMarquee-top{
  width:100%;
  overflow:hidden;
}
.xh_nav{
  display: flex;
  overflow: hidden;
  background: #422f9e;
}
.xh_nav li{
  width: 12.5%;
  float: left;  
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  padding: 10px;
  color: #fff;
  border: 0.5px solid #84d8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.txtMarquee-top .bd li{
  width: 100%;
  float: left;
  display: flex;
}
.txtMarquee-top .bd li > dl{
  width: 100%;
  background-color: #f1f1f1;
  display: flex;
  height: 100%;
}
.txtMarquee-top .bd li > dl > dd{
  width: 12.5%;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  color: #1f1f1f;
  border: 0.5px solid #84d8f5;
  padding: 5px;
  word-break: break-all;
}
.xh > a{
  float: left;
  background-color: #422f9e;
  margin-top: 35px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  padding: 0 25px;
}

.xh > a > span{
  float: left;
  padding-left: 35px;
  background: url(../images/xh_icon.png) no-repeat left center;
}

/* 新闻中心 */
.xw_ul{
  display: block;
  overflow: hidden;
}
.xw_ul li{
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}
.xw_ul li a{
  width: 100%;
  float: left;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  border: 1px solid #efefef;
}
.xw_ul li .news_B{
  width: 250px;
  float: left;
  overflow: hidden;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  padding: 2px;
}
.xw_ul li a .news_B .news_img{
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.xw_ul li a .news_R{
  width: calc(100% - 250px);
  float: left;
  border-left: 1px solid #efefef;
  padding: 12px 20px;
}
.xw_ul li a .news_p{
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #000;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.xw_ul li a .news_txt{
  overflow: hidden;
  line-height: 26px;
  margin-top: 10px;
  font-size: 14px;
  color: #666;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient: vertical;
}
.xw_ul li a:hover{
  border-color: #21126e;
}
.xw_ul li a:hover .news_B .news_img{
  transform: scale(1.1,1.1);
}
.xw_ul li a:hover .news_R{
  border-color: #21126e;
}
.xw_ul li a:hover .news_p{
  color: #21126e;
}





/*联系我们*/
.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) {
/* 头部 */
.header_dianhua span {
  font-size: 20px;
}

/*首页内容*/
/* 产品展示 */
.cpzs{
  padding: 40px 0;
}
.main_left{
  width: 24%;
}
.main_right{
  width: 74%;
}
.cpzs_ul{
  width: 101%;
  margin-left: -0.5%;
}
.cpzs_ul li{
  width: 32.33%;
  margin: 0 0.5% 12px 0.5%;
}

/* 关于我们 */
.gsjj{
  padding: 40px 0;
}

/* 工程案例 */
.case{
  padding: 40px 0;
}
.case_ul{
  margin-top: 30px;
}

/* 横幅 */
.hf{
  padding: 40px 0;
}
.hf_sp {
  line-height: 34px;
  font-size: 20px;
}
.hf_dianhua {
  line-height: 40px;
  font-size: 30px;
}

/* 新闻中心 */
.news{
  padding: 40px 0;
}
.news_ul{
  width: 102%;
  margin-left: -1%;
}
.news_ul li{
  width: 31.33%;
  margin: 30px 1% 0 1%;
}
/*END-首页内容*/

/* 底部 */
.link{
  padding: 20px 0;
}
.footer {
  padding: 20px 0;
}
.footer_lengzha {
  padding-left: 15px;
}
.footer_case {
  padding-left: 15px;
}
.footer_news {
  width: 11%;
  padding: 0 15px;
}
.footer_lxwm {
  width: 35%;
  padding-left: 15px;
}
.footer_txt img {
  width: 100px;
  height: 100px;
  margin-top: -20px;
}
/* END-底部 */

/* 关于我们 */
.main{
  padding: 40px 0;
}

/* 新闻中心 */
.xw_ul li a .news_R{
  padding: 20px;
}

}

@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: #21126e;
}

/* 头部 */
.header {
  padding: 15px 0;
  position: relative;
  background-color: #fff;
  top:0;
  z-index: 9999999;
  box-shadow: 15px 15px 15px rgba(0,0,0,0.2);
}

/* 导航 */
nav {
  padding:0;
  background: none;
}
.layui-nav{
  display: none;
  width: 150px;
  padding: 1px 0;
  background-color: rgba(66,47,158,0.95);
  position: absolute;
  right: 10px;
  top:0;
}
.layui-nav::before{display: none;}
.layui-nav .layui-nav-item{
    width: 100%;
    line-height: 40px;
    padding: 0;
}
.layui-nav .layui-nav-item::before{display: none;}
.layui-nav .layui-this:after, .layui-nav-bar, .layui-nav-tree .layui-nav-itemed:after {
  display: none;
}
.layui-nav .layui-nav-item:hover{
  background-color: #21126e;
}
.layui-nav .layui-nav-item:hover a{
  color: #fff;
}
.layui-nav .layui-this{
  background-color: #21126e;
}
.layui-nav .layui-this a{
  color: #fff;
}
/* END */

/*首页内容*/
/* 产品展示 */
.cpzs{
  padding: 20px 0;
}
.main_left{
  width: 29%;
}
.main_right{
  width: 69%;
}
.search {
  width: 60%;
}
.dqwz_sp {
  width: 40%;
  line-height: 20px;
  padding: 5px 0;
}
.cpzs_ul li{
  width: 49%;
}
.cpzs_ul li:last-child{display: none;}

/* 关于我们 */
.gsjj{
  padding: 20px 0;
}
.gsjj_left {
  width: 45%;
}
.gsjj_right {
  width: 55%;
  padding-left: 20px;
}

/* 工程案例 */
.case{
  padding: 20px 0;
}
.case_ul{
  margin-top: 20px;
}

/* 横幅 */
.hf{
  padding: 20px 0;
}
.hf_p {
  line-height: 40px;
  font-size: 30px;
}
.hf_sp {
  line-height: 30px;
  font-size: 16px;
  margin-top: 5px;
}
.hf_dianhua {
  line-height: 30px;
  font-size: 20px;
}
.hf_dianhua span {
  font-size: 18px;
  margin-bottom: 5px;
}

/* 新闻中心 */
.news{
  padding: 20px 0;
}
.news_ul{
  padding-top: 10px;
}
.news_ul li{
  margin: 20px 1% 0 1%;
}
/*END-首页内容*/

/* 底部 */
.link{
  padding: 10px 0;
}
.footer {
  padding: 10px 0;
}
.footer_tudu {
  width: 17%;
  padding: 0 10px;
}
.footer_lengzha {
  width: 17%;
  padding: 0 10px;  
}
.footer_case {
  width: 17%;
  padding: 0 10px;
}
.footer_news {
  width: 13%;
  padding: 0 10px;
}
.footer_lxwm {
  width: 36%;
  padding-left: 10px;
}
.footer_txt img {
  width:80px;
  height: 80px;
  margin-top: 0;
}
.footer_ul li {
  width: 100%;
}
/* END-底部 */

/* 关于我们 */
.main{
  padding: 20px 0;
}

/* 新闻中心 */
.xw_ul li {
  margin-bottom: 20px;
}
.xw_ul li .news_B{
  width: 200px;
}
.xw_ul li a .news_R{
  width: calc(100% - 200px);
  padding: 10px;
}
.xw_ul li a .news_txt{
  -webkit-line-clamp:3;
}

}

@media (max-width: 767px) {
.cpxq_txt table{
width:100%; height:auto;
}
.cpxq_txt img{
width:100%; height:auto;
}
/* 导航按钮 */
.icon-menu {
  right: 10px;
  width: 30px;
  height: 18px;
}
.icon-menu span {
  height: 3px;
}

/* 头部 */
.header{
  padding: 10px 0;
}
.logo{
  width: 80%;
}
.logo a {
  width: 100%;
}
/* END */

/*首页内容*/
/* 产品展示 */
.cpzs{
  padding: 0;
}
.main_left{
  width: 100%;
}
.about_title {
  width: calc(100% + 20px);
  margin-left: -10px;
  height: 50px;
  line-height: 50px;
  background-image: url(../images/imgs/sj_jiantou.png), url(../images/about_title.jpg);
  background-position: right center, center center;
  background-repeat: no-repeat,no-repeat;
  background-size: auto, cover;
  padding: 0 0 0 20px;
  font-size: 18px;
  color: #fff;
}
.about_dl {
  display: none;
  margin-top: 2px;
}
.about_dl > dt > a {
  font-size: 16px;
  height: 40px;
  line-height: 40px;
}
.about_dl > dd > a {
  font-size: 14px;
  height: 36px;
  line-height: 36px;
}
.main_right{
  width: 100%;
}
.search {
  width: 100%;
}
.dqwz_contect {
  padding: 10px 0;
}
.cpzs_ul li a .cpzs_txt {
  height: 40px;
  line-height: 40px;
}

/* 关于我们 */
.gsjj{
  padding: 10px 0;
}
.gsjj_p {
  line-height: 30px;
  font-size: 20px;
}
.gsjj_sp {
  font-size: 12px;
}
.gsjj_heng {
  margin-top: 5px;
}
.gsjj_contect{
  padding-top: 10px;
}
.gsjj_left {
  width: 100%;
  padding: 5px;
}
.gsjj_left > a::before{
  display: block;
  content: "";
  padding-top: 60%;
}
.gsjj_right {
  width: 100%;
  padding: 10px 0 0 0;
}
.gsjj_txt {
  height: inherit;
  line-height: 22px;
  -webkit-line-clamp: inherit;
  margin-top: 5px;
}
.gsjj_more {
  margin-top: 10px;
}

/* 工程案例 */
.case{
  padding: 10px 0;
}
.case_ul{
  margin-top: 10px;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  justify-content:space-between;
}
.case_ul li{
  width: calc(50% - 5px);
  height: initial;
  margin-bottom: 10px;
  position: relative;
}
.case_ul li a .case_img::before{
  padding-top: 70.8772%;
}
.case_ul li:first-child{
  width: 100%;
}
.case_ul li:first-child a .case_img::before{
  padding-top: 72.3729%;
}

/* 横幅 */
.hf{
  padding: 10px 0;
}
.hf_left{
  width: 100%;
}
.hf_p {
  line-height: 30px;
  font-size: 20px;
  text-align: center;
}
.hf_sp {
  line-height: 20px;
  font-size: 14px;
}
.hf_right{
  width: 100%;
}
.hf_dianhua {
  float: left;
  font-size: 18px;
}
.hf_dianhua span {
  font-size: 14px;
  margin-bottom: 5px;
  background-size: contain;
  line-height: 30px;
  padding-left: 40px;
}

/* 新闻中心 */
.news{
  padding: 10px 0;
}
.news_ul{
  width: 100%;
  margin: 0;
  padding-top: 0;
}
.news_ul li{
  width: 100%;
  margin: 10px 0 0 0;
}
.news_ul li .news_up {
  padding-bottom: 10px;
}
.news_ul li .news_up .news_B {
  width: 90px;
  float: left;
  margin-right: 10px;
}
.news_ul li .news_up .news_B .news_img::before{
  padding-top: 100%;
}
.news_ul li .news_up .news_p {
  line-height: 30px;
  margin-top: 0;
}
.news_ul li .news_up .news_txt {
  line-height: 20px;
}
.news_ul li .news_dl {
  margin-top: 10px;
}
.down_dl {
  margin-top: 10px;
}
/*END-首页内容*/

/* 底部 */
.link{
  border: none;
}
.link span{
  margin: 0 4px !important;
}
/* END-底部 */

/* 关于我们 */
.main{
  padding: 0;
}

/* 产品展示/工程案例 */
.cpxq_p{
  font-size: 16px;
  line-height: 24px;
}
.cpxq_txt img{
  margin: 10px auto;
}


/* 现货一览 */
.xh {
  padding: 10px 0;
}
.xh_search {
  margin-top: 10px;
}
.xh_search > input {
  width: calc(100% - 102px);
  margin-right: 10px;
}
.search_form {
  margin-top: 10px;
  padding-bottom: 10px;
}
.search_form > label {
  width: 32.33%;
  margin: 0 1% 5px 0;
}
.search_form > label > .search_form_p {
  width: 30px;
  margin-right: 5px;
}
.search_form > label > input {
  width: calc(100% - 35px);
  padding: 0 5px;
}
.search_form > button {
  width: 32.33%;
}
.xh_nav li{
  font-size: 14px;
  line-height: 16px;
  padding: 6px 2px;
}
.txtMarquee-top .bd li > dl > dd{
  font-size: 12px;
  line-height: 14px;
  padding: 5px 2px;
}

.xh > a{
  margin-top: 10px;
  height: 36px;
  line-height: 36px;
  padding: 0 15px;
  font-size: 14px;
}
.xh > a > span {
  padding-left: 25px;
  background-size: 15px 15px;
}

/* 新闻中心 */
.xw_ul li{
  margin-bottom: 10px;
}
.xw_ul li .news_B{
  width: 120px;
}
.xw_ul li a .news_R{
  width: calc(100% - 120px);
  padding: 5px;
}
.xw_ul li a .news_txt{
  line-height: 20px;
  height: 60px;
  margin-top: 0;
  -webkit-line-clamp:3;
}

/*联系我们*/
.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: #422f9e;
  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: #21126e;
  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 #21126e;
}
.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;}