

/*公共样式 common.css*/
a{text-decoration: none; color: #000;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {margin:0;padding:0;font-family: "微软雅黑";} 
fieldset,img,input,button {border:0} 
address,caption,cite,code,dfn,em,strong,th,var,i {font-style:normal;font-weight:normal} 
ol,ul {list-style:none} 
caption,th {text-align:left} 
h1,h2,h3,h4,h5,h6,b {font-weight:normal}
input{ border: none; background: none; outline: none;}
/*img{transition: all 0.5s;}
img:hover{-webkit-transform: scale(1.06, 1.06);transform: scale(1.06);}*/
.content{
	max-width: 1920px;
	width: 100%;
	float: left;
	padding-bottom: 64px;
}

/*加载动画*/
.he{
	width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    bottom: 0px;
    z-index: 99999999999;
    background-color: rgba(0, 0, 0, 0.4);
}
.loader{
	width: 140px;
	height: 140px;
	text-align: center;
	position: absolute;
	top: calc(50% - 70px);
	left: calc(50% - 70px);
	padding-top: 15px;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 5px;
}
#loader-1{width: 60px;height: 60px;}
.load-msg{height: 50px;line-height: 50px;color: #fff;font-size: 13px;}
svg path, svg rect {fill: #17a085;}


/*兼容性css代码*/

/*定义子元素排列*/
.flex_direction{
	display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
　　-webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -moz-box-orient:vertical;
    -moz-box-direction:normal;
    flex-direction:column;
    -webkit-flex-direction:column;
}
/*横向排列布局*/
.justify_content{
	display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
　　-webkit-justify-content:center;
　　-moz-box-pack:center;
　　-webkit--moz-box-pack:center;
　　box-pack:center;
	justify-content:center;
}
/*竖向排列布局*/
.align_items{
	display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
　　-webkit-align-items:center;
　　box-align:center;
　　-moz-box-align:center;
　　-webkit-box-align:center;
	align-items:center;
}
/*伸缩盒子布局兼容*/
.flex{
	display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
　　box-flex:num;
　　-webkit-box-flex:num;
　　-moz-box-flex:num;
　　flex:num;
　　-webkit-flex:num;
}
/*定义子元素排列（两端对齐）*/
.space_between{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
/*定义子元素排列（两端对齐 + 自动换行）*/
.space_between_wrap{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
/*定义子元素排列（靠右对齐）*/
.flex_end{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.flex_center{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

/*定义旋转180度*/
.rotate_180{
	transform:rotate(180deg);
	-ms-transform:rotate(180deg); 	/* IE 9 */
	-moz-transform:rotate(180deg); 	/* Firefox */
	-webkit-transform:rotate(180deg); /* Safari 和 Chrome */
	-o-transform:rotate(180deg); 	/* Opera */
}

/*定义超出两行显示...*/
.txt_1{
	overflow: hidden;
    text-overflow: ellipsis; 
    -o-text-overflow: ellipsis;
    white-space:nowrap;
}
.txt_2{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2; 
}
.txt_3{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:3; 
}
.txt_5{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:5; 
}
.txt_6{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:6; 
}
.txt_7{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:7; 
}
.txt_9{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:9; 
}


/*隐藏Y轴滚动条还能继续滚动兼容写法*/
.overf_y{
	overflow-y: auto;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    &::-webkit-scrollbar { 
      display: none;
    }
}
.overf_y::-webkit-scrollbar{display: none;}

/*二级页面抬头翻转*/
.content .mini {
    -webkit-transform: rotateX(90deg) rotateZ(0);
    transform: rotateX(90deg) rotateZ(0);
}


/*侧边栏*/
.sidebar{
	width: 40px;
	padding-left: 2px; 
	position: fixed;
	z-index: 20;
	bottom: 180px;
	background: #0068C2;
	border-radius: 5px 0px 0px 5px;
	right: 0;
}
.sidebar ul{width: 100%;float: left;}
.sidebar ul li{
	width: 100%;
	height: 40px;
	float: left;
	cursor: pointer;
	border-bottom: 1px solid #fff;
}
.sidebar ul li:last-child{border-bottom: 0;}
.sidebar ul li img{
	width: 24px;
	height: 24px;
	float: left;
	transition: all 0.5s;
}
.sidebar ul li:hover img{transform:rotate(360deg);animation: sidebaricon 1.5s linear infinite;}
@keyframes sidebaricon {
    0%{
        transform:rotate(0deg);
    }
    100%{
        transform:rotate(360deg);
    }
}


/*统一顶部*/
.i_header{
	width: 100%;
	float: left;
}
.i_header_ma{
	width: 1400px;
	float: left;
}
.i_header_top{
	width: 100%;
	height: 30px;
	float: left;
}
.i_header_top span{
	display: inline-block;
	height: 30px;
	line-height: 30px;
	font-size: 13px;
	color: #333333;
	float: left;
}
.i_header_top span:nth-child(2){float: right;}
.i_header_con{
	width: 100%;
	padding:32px 0;
	float: left;
}
.i_header_logo{
	width: 454px;
	height: 87px;
	float: left;
	margin-right: 265px;
}
.i_header_logo a{
	display: inline-block;
	width: 100%;
	height: 100%;
	float: left;
}
.i_header_logo a img{max-width: 100%;}
.i_header_wechat{
	height: 32px;
	float: left;
	padding: 27px 0;
}
.i_header_wechat a{
	display: inline-block;
	height: 32px;
	float: left;
	margin-right: 70px;
}
.i_header_wechat a:nth-child(1) img{width: 30px;height: 28px;float: left;}
.i_header_wechat a:nth-child(2) img{width: 37px;height: 31px;float: left;}
.i_header_wechat a span{
	display: inline-block;
	height: 32px;
	line-height: 32px;
	font-size: 22px;
	margin-left: 5px;
	color: #2DBC00;
}
.i_header_wechat a:nth-child(2) span{color: #0079DE;}
.i_header_hotline{
	width: 266px;
	float: right;
	height: 50px;
	padding-top:14px;
}
.i_header_hotline_txt{width: 206px;float: left;}
.i_header_hotline_txt i{
	display: inline-block;
	width: 100%;
	height: 19px;
	float: left;
	line-height: 19px;
	font-size: 13px;
	color: #333333;
	text-align: right;
}
.i_header_hotline_txt span{
	display: inline-block;
	width: 100%;
	height: 31px;
	line-height: 31px;
	float: left;
	font-size: 28px;
	font-weight:bold;
	text-align: right;
	color: #0078FF;
}
.i_header_hotline_img{
	width: 50px;
	height: 50px;
	float: right;
}
.i_header_hotline_img img{
	width: 50px;
	height: 50px;
	float: left;
}
.i_nav{width: 100%;float: left;}
.i_nav_ma{width: 1400px;float: left;}
.i_nav_ma>ul{width: 100%;float: left;position: relative;}
.i_nav_ma>ul li{
	width: 175px;
	float: left;
	position: relative;
}
.i_nav_ma>ul li a{
	display: inline-block;
	width: 100%;
	float: left;
	height: 60px;
	line-height: 60px;
	font-size: 18px;
	color: #333333;
	text-align: center;
	position: relative;
	z-index: 10;
}
.i_nav_child{
	width: 100%;
	float: left;
	position: absolute;
	left: 0;
	top:64px;
	opacity: 0;
	z-index: 5;
	background: url(../img/navnthcild.png) no-repeat;
	background-position: top center;
	padding-top:12px; 
	padding-bottom:12px; 
	transition: all 0.5s;
}
.i_nav_child span{
	display: inline-block;
	width: 100%;
	float: left;
	height: 24px;
	font-size:16px;
	line-height: 24px;
	color: #333333;
	text-align: center;
	cursor: pointer;
}
.i_nav_child span:hover{color: #0078FF;}
.i_nav_ma>ul li:hover a,.i_nav_ma>ul .navac a{color: #fff;}
.i_nav_ma>ul li:hover .i_nav_child,.i_nav_ma>ul .navac .i_nav_child{opacity: 1;}
.i_nav_ma>ul li:hover a .navbg,.i_nav_ma>ul .navac a .navbg{left: 0;opacity: 1;}
.navbg{
	width: 175px;
	height: 60px;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-image: url(../img/navactive.png);
	position: absolute;
	left: -10px;
	top: 0;
	opacity: 0;
	transition: all 0.5s;
	z-index: -1;
}

/*关键词、搜索*/
.i_search{width: 100%;float: left;}
.i_search_ma{width: 1400px;float: left;height: 80px;}
.i_search_ma>p{
	display: inline-block;
	height: 80px;
	line-height: 80px;
	float: left;
	font-size: 14px;
	color: #333333;
}
.i_search_ma>p a{color: #333333;margin-right: 15px;}
.i_search_ma>p a:hover{color: #0078FF;}
.search_con{
	width: 330px;
	height: 36px;
	float: right;
	border:1px solid #CCCCCC;
	border-radius: 18px;
	margin-top:22px;
	position: relative;
}
.search_con input{
	width: 225px;
	height: 36px;
	float: left;
	line-height: 36px;
	font-size: 14px;
	color: #333333;
	padding-left: 16px;
}
.search_con input::-webkit-input-placeholder{font-size: 14px;color: #666666;}
.search_con>a{
	display: inline-block;
	width: 70px;
	height: 30px;
	background:#0078FF;
	line-height: 30px;
	font-size: 14px;
	color: #fff;
	position: absolute;
	right: 3px;
	top: 3px;
	z-index: 10;
	border-radius: 15px;
	text-align: center;
}


/*通用底部*/
.i_footer_con{
	width: 100%;
	float: left;
	background: #7A8A99;
}
.i_footer{width: 1400px;float: left;height: 277px;}
.i_footer_nav{
	width: 100%;
	float: left;
	height: 111px;
}
.i_footer_nav>span{
	display: inline-block;
	width: 100%;
	float: left;
	height: 35px;
	line-height: 35px;
	font-size: 24px;
	color: #fff;
}
.i_footer_nav>span a{color: #fff;font-size: 16px;margin-right: 15px;}
.i_footer_nav>span a:hover{color: #0078FF;}
.footer_nav_list{width: 100%;float: left;}
.footer_nav_list ul{width: 100%;float: left;}
.footer_nav_list li{
	width: 175px;
	height: 60px;
	float: left;
	position: relative;
}
.footer_nav_list li a{
	display: inline-block;
	width: 100%;
	height: 60px;
	line-height: 60px;
	float: left;
	font-size: 18px;
	color: #fff;
	transition: all 0.5s;
	text-align: center;
	position: absolute;
	z-index: 2;
}
.footer_nav_list li i{
	display: inline-block;
	width: 100%;
	height: 60px;
	float: left;
	background: url(../img/navactive.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	opacity: 0;
	left:-10px;
	top:0;
	transition: all 0.5s;
	z-index: 1;
}
.footer_nav_list li:hover a{font-weight: bold;}
.footer_nav_list li:hover i{opacity: 1;left: 0;}
.footer_foot{width: 100%;float: left;}
.footer_logo{width: 164px;float: left;height:149px;}
.footer_foot img{
	width: 164px;
	height: 117px;
	float: left;
}
.footer_desc{
	width: 663px;
	float: left;
	margin-left: 40px;
	margin-top: 16px;
}
.footer_desc p{
	display: inline-block;
	width: 100%;
	float: left;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 24px;
}
.footer_code{
	width: 287px;
	float: right;
	height: 152px;
}
.footer_code_img{
	width: 124px;
	height: 124px;
	float: left;
}
.footer_code_img img{width: 100%;float: left;height: 124px;}
.footer_code_img span{
	display: inline-block;
	width: 100%;
	float: left;
	height: 24px;
	line-height: 24px;
	font-size: 16px;
	color: #FFFFFF;
	text-align: center;
}

/*最底部*/
.footer_bot{
	width: 100%;
	float: left;
	height: 46px;
	border-top: 1px solid #fff;
	background: #7A8A99;
}
.footer_bot_ma{width: 950px;float: left;}
.footer_bot_ma p{
	display: inline-block;
	width: 100%;
	float: left;
	font-size: 14px;
	color: #fff;
	line-height: 22px;
}
.footer_bot_ma p a{color: #fff;}
.footer_bot_ma p a:hover{color: #0078FF;}


/*面包屑*/
.pr_crumbs{
	width: 100%;
	height: 78px;
	float: left;
	background: #fff;
}
.pr_crumbs span{
	display: inline-block;
	width: 1400px;
	height: 78px;
	line-height: 78px;
	font-size: 14px;
	color: #999999;
}
.pr_crumbs span a{display: inline-block;color: #999999;}
.pr_crumbs span i{color: #999999;margin:0 2px;}

/*分页*/
.pages_main{
	width: 100%;
	height: 30px;
	float: left;
	padding: 40px 0px;
}
.pages span{
	display: inline-block;
	width: 90px;
	height: 30px;
	float: left;
	line-height: 30px;
	font-size: 18px;
	color: #fff;
	text-align: center;
	background: #2671ad;
	margin-left:12px;
	cursor: pointer;
}
.pages a{
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	float: left;
	font-size: 18px;
	color: #333333;
	text-align: center;
	margin-left:12px;
	background: #e6e6e6;
	transition: all 0.5s;
}
.pages a:hover,.pages .page_active{background: #2671ad;color: #fff;}

/*订购弹窗样式*/
.order_bg{
    width: 100%;
    position: fixed;
    top:0px;
    bottom: 0px;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    transition: all 0.5s;
}
.order_pop{
    width: 935px;
    height: 706px;
    float: left;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
}
.order_pop>p{
    display: inline-block;
    width: 100%;
    height: 68px;
    line-height: 68px;
    float: left;
    text-align: center;
    font-size: 32px;
    letter-spacing: 6px;
    color: #fefefe;
    background: #005cc9;
}
.pop_cont{
    width: 100%;
    height: calc(706px - 68px);
    float: left;
}
.pop_form{
    width: 708px;
    /*height: 492px;*/
    float: left;
}
.pop_form label{
    display: inline-block;
    width: 100%;
    min-height: 50px;
    padding: 12px 0px;
    float: left;
}
.pop_form label>span{
    display: inline-block;
    width: 32px;
    height: 50px;
    line-height: 50px;
    color: #ff0000;
    font-size: 28px;
    text-align: left;
    float: left;
}
.pop_form label>input{
    display: inline-block;
    width: calc(100% - 32px);
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    color: #000;
    text-indent: 35px;
    float: left;
    background: #eceaea;
    outline: none;
}
.pop_form label>textarea{
    display: inline-block;
    width: calc(100% - 32px);
    height: 150px;
    padding: 10px;
    float: left;
    background: #eceaea;
    text-indent: 25px;
    font-size: 16px;
    color: #000;
    line-height: 2em;
    border:0px;
    outline: none;
    resize: none;
}
.pop_form label>textarea::-webkit-scrollbar{display: none;}
.sub_btn{
    width: 100%;
    height: 40px;
    float: left;
    margin-top: 28px;
}
.sub_btn a{
    display: inline-block;
    width: 216px;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
    color: #fff;
    text-align:center;
    letter-spacing: 1px;
    float: left;
    background: #005cc9;
    border-radius: 20px;
}
.sub_btn a:nth-child(1){margin-right: 52px;}