﻿@charset "utf-8";
/*当浏览器尺寸小于960px的时执行下面的CSS*/
@media screen and (max-width: 960px){
/*logo*/
.logo{width:100%; height:auto; overflow:hidden}
.logo .l_pc{display:none}
.logo .l_mobile{height:auto; text-align:center; padding:10px}
.logo .l_mobile img{max-width:100%; height:auto;}
.logo .r{display:none}

/*首页菜单*/
.menu{width:100%; height:auto; overflow:hidden;}
.menu li{
	float: left;
	width:25%;
	text-align: center;
	color: #fff;
	overflow: hidden;
	font-size: 0.16rem;
	height:0.43rem;
	line-height: 0.43rem;
	border-right: 1px solid #e4544c;
	white-space: nowrap;/*规定段落中的文本不进行换行*/
	text-overflow: ellipsis;/*当文本溢出包含元素时显示省略符号来代表被修剪的文本。*/
	box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;
	background:linear-gradient(to bottom,#d83933,#b62b24); 
}
.menu li a{display: block; color: #fff;}
.menu li:nth-of-type(4n+0){border-right:0;}
.menu li:hover a,.menu li.active a{text-decoration:none; color:#333; background-color:#ffd438}

/*以下是主体部分*/
.main_box{ height:auto; padding:10px; overflow:hidden}
.main_box .l_left{margin-top:26px; width:100%; height:auto}
.main_box .l_right{width:100%; height:auto; padding-bottom:20px; background-color:#FFF; border-radius:5px; box-shadow:2px 2px 5px #C8C8C8; border-top:4px solid #c12c25}

/*标题*/
.title_2022{width:95%; height:0.5rem; line-height:0.5rem; margin:0 auto; border-bottom:1px dotted #CCCCCC; overflow:hidden}
.title_2022 b{ float:left; font-size:0.18rem; color:#c12c25}
.title_2022 span{ float:right; font-size:0.12rem; color:#666; background:url(../images/xh.jpg) no-repeat left center; padding-left:20px}
.title_2022 span a{color:#666; margin-right:10px;}
.title_2022 span a:hover{ color:#c12c25}
.title_2022 span a+a:before{ padding-right:10px; color:#999999; content: "/";}

/*分类*/
.left_box{width:100%; height:auto; background-color:#FFF; border-radius:5px; box-shadow:2px 2px 5px #C8C8C8; overflow:hidden}
.class_title{height:0.4rem; line-height:0.4rem; background:linear-gradient(to bottom,#d83933,#b62b24); color:#fff; font-weight:bold; border-radius: 5px 5px 0 0; padding-left:26px; font-size:0.16rem}
.class_ment{ width:100%; height:auto; overflow:hidden}
.class_ment li{height:54px; line-height:54px; font-size:15px; background-color:#fff; color:#000; position: relative; border-top: 1px solid #ddd;}
.class_ment li a{display:block; color:#737373; z-index:1; position:absolute; left:0; top:0; width:100%; height:100%; padding-left: 24px;}
.class_ment li a:hover{ color:#FFF}
.class_ment li span{ display:inline-block; position: absolute;z-index: 10; right:20px; top:0; width:27px; height:100%; background:url(../images/classJT.png) left center no-repeat;}
.class_ment li em{ position: absolute; left:0; top:0; width: 0; height: 100%; background:#b62b24; -moz-transition: all 0.5s; -webkit-transition:all 0.5s; -o-transition:all 0.5s; transition:all 0.3s; }
.class_ment li:hover em{ width:100%; }
.class_ment li.active a{color:#fff; background:#204c97;}

/*分类联系*/
.class_title_two{height:0.4rem; line-height:0.4rem; background:linear-gradient(to bottom,#fbfbfb,#d6d5d5); color:#b62b24; font-weight:bold; border-radius: 5px 5px 0 0; padding-left:26px; font-size:0.16rem}

/*产品详情标题*/
.product_list{height:0.36rem; border-bottom:1px solid #CCC; margin-top:0px;}
.product_list span{ font-size:0.16rem; font-weight:bold; line-height:0.36rem; position:relative;}
.product_list span:before{content: ""; width:150px; height:4px; background-color:#d13845; position:absolute; left:0; top:0.27rem}
/*通用内容盒子_end*/

/*弹性产品框*/
.bg_pro{
	width:100%;
	height:auto;
	display:flex;/*启用弹性布局*/
	display: -webkit-flex; /*启用弹性布局,Webkit内核的浏览器*/
	flex-direction:row;/*项目的排列方向,从左到右排*/
	-webkit-flex-direction:row;/*项目的排列方向,从左到右排*/
	flex-wrap:wrap;/*一行排不下则换行，第一行在上方*/
	-webkit-flex-wrap:wrap;/*一行排不下则换行，第一行在上方*/
	justify-content:space-between;/*在主轴上的对齐方式,两端对齐，项目之间的间隔都相等*/
	-webkit-flex-justify-content:space-between;/*在主轴上的对齐方式,两端对齐，项目之间的间隔都相等*/
}
.bg_pro li{width:46%; height:auto; margin-bottom:10px;}
.bg_pro li span{display:block; width:100%; height:auto; overflow:hidden;}
.bg_pro li span img{width:100%; height:auto;}
.bg_pro li p{ width:95%; height:0.4rem; line-height:0.4rem; margin:0 auto; text-align: center; font-size:0.14rem; color:#333; overflow:hidden; white-space:nowrap; -ms-text-overflow:ellipsis; text-overflow:ellipsis;}
.bg_pro li a{ display:block}
.bg_pro li:hover p{ color:#C30}

/*产品框*/
.ul_product{ width:100%; height:auto; margin:0 auto; margin-top:20px; overflow:hidden}
.ul_product li{float:left; width:48%; height:auto; margin-right:4%; margin-bottom:10px; }
.ul_product li span{display:block; width:100%; height:auto; overflow:hidden;}
.ul_product li span img{width:100%; height:auto;}
.ul_product li:nth-child(2n){margin-right:0;}
.ul_product li p{text-align: center; color: #282828; height:0.4rem; line-height:0.4rem; overflow:hidden; white-space:nowrap; -ms-text-overflow:ellipsis; text-overflow:ellipsis;}
/*产品框_end*/

/*解决方案*/
.ul_linyi{ width:100%; height:auto; margin:0 auto;  overflow:hidden}
.ul_linyi li{float:left; width:48%; height:auto; margin-right:4%; margin-bottom:10px; }
.ul_linyi li span{display:block; width:100%; height:auto; overflow:hidden;}
.ul_linyi li span img{width:100%; height:auto;}
.ul_linyi li .mask{ display:none}
.ul_linyi li:nth-child(2n){margin-right:0;}
.ul_linyi li p{text-align:center; color:#fff; font-size:0.12rem; height:0.35rem; line-height:0.35rem; background:#204c97; margin-top:10px; overflow:hidden; white-space:nowrap; -ms-text-overflow:ellipsis; text-overflow:ellipsis;}
/*产品框_end*/

/*新闻*/
.ul_news{ padding:6px; height:auto; overflow:hidden; margin-top:10px;}
.ul_news li{ padding:15px; height:auto; border:1px solid #e7eaf1; box-shadow:0px 0px 10px #dddbdb; border-radius: 5px; margin-bottom:20px}
.ul_news li h4{ font-size:0.18rem; font-weight:400; height:auto; line-height:0.32rem}
.ul_news li h4 a{ color:#333333}
.ul_news li h4 a:hover{ color:#FF0000}
.ul_news li p{ font-size:0.14rem; color:#999999; margin-top:10px; height:auto; line-height:26px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp:2;/*显示几行*/-webkit-box-orient: vertical;}
.ul_news li span{color: #a3afb7; font-size:0.14rem; display:inline-table; margin-top:10px}
.ul_news li i{color: #a3afb7; font-size:0.14rem; display:inline-table; margin-top:10px; background:url(../images/click.png) no-repeat left center; padding-left:26px; margin-left:20px;}

/*相关图片*/
.pic_xg{width:100%; height:auto; margin-top:40px; overflow:hidden;}
.pic_xg li{float:left; text-align:center; width:48%; height:1.35rem; margin-right:4%; margin-bottom:15px;  position:relative; overflow:hidden; border:1px solid #EBEBEB}
.pic_xg li img{display:block; width:100%; height:100%; max-width:100%;}
.pic_xg li p{ position:absolute; left:0; top:1rem; width:100%; height:100%; background:rgba(0,0,0,0.4); transition: 0.5s all ease}
.pic_xg li:hover p{top:0; }
.pic_xg li span{ display:block; position:absolute; left:0; top:1rem; color:#FFF; width:100%; height:0.35rem; line-height:0.35rem; z-index:1; font-size:0.12rem; transition: 0.5s all ease; overflow:hidden; white-space:nowrap; -ms-text-overflow:ellipsis; text-overflow:ellipsis;}
.pic_xg li:hover span{top:45%; }
.pic_xg li:nth-of-type(2n+0){margin-right:0px;}
/*相关图片_end*/

/*相关产品前6个*/
.pro_tj_5{width:100%; height:auto; overflow:hidden; margin-top:30px; }
.pro_tj_5 li{float:left; width:48%; height:auto; margin-right:4%; margin-bottom:15px; position: relative; border:1px solid #EBEBEB; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; }
.pro_tj_5 li img{display:block; width:100%; height:100%; max-width:100%;}
.pro_tj_5 li h2{ position:absolute; left:0; bottom:0; right:0; height:0.35rem; line-height:0.35rem; color:#FFF; text-align:center; font-size:0.12rem; font-weight:100; background-color:#333; opacity: 0.7; overflow:hidden; white-space:nowrap; -ms-text-overflow:ellipsis; text-overflow:ellipsis; padding:0 10px}
.pro_tj_5 li:hover h2{ background-color:#000}
.pro_tj_5 li:nth-of-type(2n+0){margin-right:0px;}
/*产品前6个end*/

/*标题专用*/
.view_title{ width:100%; height:0.5rem; line-height:0.5rem; background: #f1f4f8;}
.view_title a{ color:#666; margin-right:10px;}
.view_title a:hover{ color:#dd0000}
.view_title a+a:before{ padding-right:10px; color:#999999; content: "/";}

/*********footer*********/
.foot{ background-color:#f2f2f2; border-top:1px solid #dadada; padding:20px 0; margin-top:30px;}
.foot_box{ width:95%; height:auto; margin:0 auto; overflow:hidden}
.foot_box .l{width:100%; height:auto; text-align:center}
.foot_box .l img{max-width:100%; height:auto}
.foot_box .c{width:100%; height:auto; margin-top:15px;}
.foot_box .r{width:70%; height:auto; margin:0 auto; margin-top:15px; text-align:center}
.foot_box .r img{max-width:100%; height:auto}

.foot_foot{ width:100%; height:auto;}
.foot_foot li{line-height:0.3rem; text-align:center}
/*********footer*********/
}

/*当浏览器尺寸大于960px时候*/
@media screen and (min-width:960px){
/*logo*/
.logo{width:100%; height:auto; padding:20px 0; overflow:hidden}
.logo .l_pc{float:left; width:800px; height:auto;}
.logo .l_pc img{max-width:100%; height:auto;}
.logo .l_mobile{ display:none}
.logo .r{float:right; width:290px; height:auto;}

/*电话*/
.top_text{background:url(../images/tel2.png) no-repeat left 2px; height:50px; padding-left:65px; margin-top:4px}
.top_text p{ color:#333;}
.top_text span{ display:block; color:#0f3c8b; font-size:30px; font-weight: bold; line-height:40px}

/*导航菜单start*/
.menu_box{height:55px; background:linear-gradient(to bottom,#d83933,#b62b24); position:relative}
.menu_box:before{content: ""; width:100%; height:10px; position:absolute; left:0; top:55px; box-shadow:inset 0px 15px 10px -15px #000; z-index:9999999}

.menu {display:table; margin:0 auto; padding:0px; overflow:hidden;}
.menu li {float:left; line-height:55px;}
.menu li+li{ border-left:1px solid #e4544c}
.menu li a {display:block; font-size:17px; color:#fff; padding:0 38px;}
.menu li:hover a,.menu li.active a{text-decoration:none; color:#333; font-weight:400; background-color:#ffd438}

/*以下是主体部分*/
.main_box{ width:100%; height:auto; padding:10px; overflow:hidden; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;}
.main_box .l_left{float:left; width:215px; height:auto;}
.main_box .l_right{float:right; width:1000px; height:auto; padding-bottom:20px; background-color:#FFF; border-radius:5px; box-shadow:2px 2px 5px #C8C8C8; border-top:4px solid #c12c25}

/*标题*/
.title_2022{width:95%; height:55px; line-height:55px; margin:0 auto; border-bottom:1px dotted #CCCCCC; overflow:hidden}
.title_2022 b{ float:left; font-size:18px; color:#c12c25}
.title_2022 span{ float:right; font-size:12px; color:#666; background:url(../images/xh.jpg) no-repeat left center; padding-left:20px}
.title_2022 span a{color:#666; margin-right:10px;}
.title_2022 span a:hover{ color:#c12c25}
.title_2022 span a+a:before{ padding-right:10px; color:#999999; content: "/";}

/*分类*/
.left_box{width:215px; height:auto; background-color:#FFF; border-radius:5px; box-shadow:2px 2px 5px #C8C8C8; overflow:hidden}
.class_title{height:40px; line-height:40px; background:linear-gradient(to bottom,#d83933,#b62b24); color:#fff; font-weight:bold; border-radius: 5px 5px 0 0; padding-left:26px; font-size:16px}
.class_ment{ width:100%; height:auto; overflow:hidden}
.class_ment li{height:54px; line-height:54px; font-size:15px; background-color:#fff; color:#000; position: relative; border-top: 1px solid #ddd;}
.class_ment li a{display:block; color:#737373; z-index:1; position:absolute; left:0; top:0; width:100%; height:100%; padding-left: 24px;}
.class_ment li a:hover{ color:#FFF}
.class_ment li span{ display:inline-block; position: absolute;z-index: 10; right:20px; top:0; width:27px; height:100%; background:url(../images/classJT.png) left center no-repeat;}
.class_ment li em{ position: absolute; left:0; top:0; width: 0; height: 100%; background:#b62b24; -moz-transition: all 0.5s; -webkit-transition:all 0.5s; -o-transition:all 0.5s; transition:all 0.3s; }
.class_ment li:hover em{ width:100%; }
.class_ment li.active a{color:#fff; background:#b62b24;}

/*分类联系*/
.class_title_two{height:40px; line-height:40px; background:linear-gradient(to bottom,#fbfbfb,#d6d5d5); color:#b62b24; font-weight:bold; border-radius: 5px 5px 0 0; padding-left:26px; font-size:16px}

/*产品详情标题*/
.product_list{height:36px; border-bottom:1px solid #CCC; margin-top:30px;}
.product_list span{ font-size:16px; font-weight:bold; line-height:36px; position:relative;}
.product_list span:before{content: ""; width:200px; height:4px; background-color:#d13845; position:absolute; left:0; top:27px}
/*通用内容盒子_end*/

/*弹性布局产品*/
.bg_pro{
	width:100%;
	height:auto;
	display:flex;/*启用弹性布局*/
	display: -webkit-flex; /*启用弹性布局,Webkit内核的浏览器*/
	flex-direction:row;/*项目的排列方向,从左到右排*/
	-webkit-flex-direction:row;/*项目的排列方向,从左到右排*/
	flex-wrap:wrap;/*一行排不下则换行，第一行在上方*/
	-webkit-flex-wrap:wrap;/*一行排不下则换行，第一行在上方*/
	justify-content:space-between;/*在主轴上的对齐方式,两端对齐，项目之间的间隔都相等*/
	-webkit-flex-justify-content:space-between;/*在主轴上的对齐方式,两端对齐，项目之间的间隔都相等*/
}
.bg_pro li{width:28%; height:auto; margin-bottom:10px;}
.bg_pro li span{display:block; width:100%; height:auto; overflow:hidden;}
.bg_pro li span img{width:100%; height:auto;}
.bg_pro li p{ width:95%; height:40px; line-height:40px; margin:0 auto; text-align: center; font-size:14px; color:#333; overflow:hidden; white-space:nowrap; -ms-text-overflow:ellipsis; text-overflow:ellipsis;}
.bg_pro li a{ display:block}
.bg_pro li:hover p{ color:#C30}

/*产品框*/
.ul_product{ width:100%; height:auto; margin:0 auto; margin-top:20px; overflow:hidden}
.ul_product li{float:left; width:23.5%; height:auto; margin-right:2%; margin-bottom:20px; position:relative;}
.ul_product li span{display:block; width:100%; height:auto; overflow:hidden;}
.ul_product li span img{width:100%; height:auto;}
.ul_product li .mask{
	position:absolute; 
	top:0; 
	left:-250px;
	width:200px;
	height:300px;
	background:-webkit-linear-gradient(0deg,rgba(255, 255, 255, 0),rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0)); 
	-webkit-transform:skewx(-25deg); 
	-webkit-transition:all .9s; 
}
.ul_product li:hover .mask{left:400px;}
.ul_product li:nth-child(4n){margin-right:0;}
.ul_product li p{text-align: center; font-size:16px; color: #282828; height:40px; line-height:40px; overflow:hidden; white-space:nowrap; -ms-text-overflow:ellipsis; text-overflow:ellipsis;}
/*产品框_end*/

/*解决方案*/
.ul_linyi{width:100%; height:auto; margin:0 auto; overflow:hidden}
.ul_linyi li{float:left; width:32%; height:auto; margin-right:2%; margin-bottom:20px; position:relative;}
.ul_linyi li span{display:block; width:100%; height:auto; overflow:hidden;}
.ul_linyi li span img{width:100%; height:auto;}
.ul_linyi li .mask{
	position:absolute; 
	top:0; 
	left:-250px;
	width:200px;
	height:300px;
	background:-webkit-linear-gradient(0deg,rgba(255, 255, 255, 0),rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0)); 
	-webkit-transform:skewx(-25deg); 
	-webkit-transition:all .9s; 
}
.ul_linyi li:hover .mask{left:400px;}
.ul_linyi li:nth-child(3n){margin-right:0;}
.ul_linyi li p{text-align: center; font-size:14px; color:#FFF; line-height:40px; background:#204c97; margin-top:10px; overflow:hidden; white-space:nowrap; -ms-text-overflow:ellipsis; text-overflow:ellipsis;}
/*解决方案_end*/

/*新闻*/
.ul_news{ padding:12px; height:auto; overflow:hidden; margin-top:30px;}
.ul_news li{ padding:30px; height:auto; border:1px solid #e7eaf1; box-shadow:0px 0px 10px #dddbdb; border-radius: 5px; margin-bottom:20px}
.ul_news li h4{ font-size:22px; font-weight:100; height:auto}
.ul_news li h4 a{ color:#333333}
.ul_news li h4 a:hover{ color:#FF0000}
.ul_news li p{ font-size:16px; color:#999999; margin-top:10px; height:auto; line-height:27px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp:2;/*显示几行*/-webkit-box-orient: vertical;}
.ul_news li span{color: #a3afb7; font-size: 16px; display:inline-table; margin-top:10px}
.ul_news li i{color: #a3afb7; font-size: 16px; display:inline-table; margin-top:10px; background:url(../images/click.png) no-repeat left center; padding-left:26px; margin-left:20px;}

/*相关图片,图片详情下面*/
.pic_xg{width:100%; height:auto; margin-top:30px; overflow:hidden;}
.pic_xg li{float:left; text-align:center; width:23.5%; height:auto; margin-right:2%; margin-bottom:20px; position:relative; overflow:hidden; border:1px solid #EBEBEB}
.pic_xg li img{display:block; width:100%; height:100%; max-width:100%;}
.pic_xg li p{ position:absolute; left:0; top:80%; width:100%; height:100%; background:rgba(0,0,0,0.4); transition: 0.5s all ease}
.pic_xg li:hover p{top:0; }
.pic_xg li span{ display:block; position:absolute; left:0; top:80%; color:#FFF; width:100%; height:35px; line-height:35px; z-index:1; font-size:12px; transition: 0.5s all ease; overflow:hidden; white-space:nowrap; -ms-text-overflow:ellipsis; text-overflow:ellipsis;}
.pic_xg li:hover span{top:45%; }
.pic_xg li:nth-of-type(4n+0){margin-right:0px;}
/*相关图片_end*/

/*相关产品前5个*/
.pro_tj_5{width:100%; height:auto; overflow:hidden; margin-top:30px; }
.pro_tj_5 li{ float:left; width:19.2%; height:auto; margin-right:1%; position: relative; border:1px solid #EBEBEB; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; }
.pro_tj_5 li img{display:block; width:100%; height:100%; max-width:100%;}
.pro_tj_5 li h2{ position:absolute; left:0; bottom:0; right:0; height:35px; line-height:35px; color:#FFF; text-align:center; font-size:12px; font-weight:100; background-color:#333; opacity: 0.7; overflow:hidden; white-space:nowrap; -ms-text-overflow:ellipsis; text-overflow:ellipsis; padding:0 10px}
.pro_tj_5 li:hover h2{ background-color:#000}
.pro_tj_5 li:nth-of-type(5n+0){margin-right:0px;}
/*产品前5个end*/

/*标题专用*/
.view_title{ width:100%; height:60px; line-height:60px; background: #f1f4f8;}
.view_title a{ color:#666; margin-right:10px;}
.view_title a:hover{ color:#dd0000}
.view_title a+a:before{ padding-right:10px; color:#999999; content: "/";}

/*********footer*********/
.foot{ background-color:#f2f2f2; border-top:1px solid #dadada; padding:30px 0; margin-top:30px;}
.foot_box{ width:98%; height:auto; margin:0 auto; overflow:hidden}
.foot_box .l{ float:left; width:230px; height:auto;}
.foot_box .l img{max-width:100%; height:auto}
.foot_box .c{ float:left; margin-left:30px; width:730px; height:auto;}
.foot_box .r{ float:right; width:120px; height:auto; text-align:right}
.foot_box .r img{max-width:100%; height:auto}

.foot_foot{ width:100%; height:auto;}
.foot_foot li{line-height:30px}
/*********footer*********/
}

/* 移动端底部专用 */
.foot_height{height:0.6rem;}
.footer{width:100%; height:0.6rem; overflow:hidden; position:fixed; bottom:0; right:0; z-index:999; background: rgba(0, 0, 0, 0.8);}
.footer li{float:left; width:25%; height:auto; border-right:#4d5054 solid 1px; box-sizing:border-box; -moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */}
.footer li:nth-child(4){ border:none;}
.footer li a{display:block}
.footer li span{display:block; width:100%; height:0.26rem; padding-top:0.07rem; text-align:center;}
.footer li span img{height:100%}
.footer li p{width:100%; height:0.26rem; line-height:0.26rem; text-align:center; font-size:0.12rem; font-weight:100; color:#CCCCCC;}
/* 移动端底部专用_end */