﻿
@import url("http://www.jiufusemi.com/css/glyphicon.css");
/* @font-face {
	font-family: 'YOUSHEBIAOTIHEI-2.TTF';
	src: url("../fonts/YOUSHEBIAOTIHEI-2.TTF") format("TTF");
	font-display: swap;
} */
/**初始**/
* {
	margin: 0;
	padding: 0;
	outline: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

html {
	font: normal 14px "Noto Sans SC";
	-webkit-text-size-adjust: 100%
}

html,
body {
	padding: 0;
	margin: 0 auto;
	font-size: 14px;
	color: #666;
	background: url(../img/bg.jpg) no-repeat;
	background-attachment: fixed;
	background-size: cover;
	font-family: arial, Noto Sans SC;
	-webkit-text-size-adjust: none;
	/*取出点击出现半透明的灰色背景*/
	-webkit-tap-highlight: rgba(0, 0, 0, 0);
	/*控制内容的可选择性*/
	-webkit-user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	user-select: none;
}

body{ background-color:#fff; width:1100px; height:auto; box-shadow: 0 15px 30px #000; }

input[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
}

ul,
li,
form,
dl,
dt,
dd,
div,
ol,
figure,
article,
nav,
menu,
aside {
	padding: 0;
	margin: 0;
}

ul,
ul li {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

table td {
	border-collapse: collapse;
	font-size: 14px;
}

select,
input,
textarea {
	font-size: 14px;
	color: #333;
	border-radius: 0;
	-webkit-border-radius: 0;
	font-family: arial, sans-serif;
}

img {
	border: none;
	max-width: 100%;
	vertical-align: middle;
}

a {
	color: #333;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
	color: #47a0ec;
	text-decoration: none;
}

a:focus {
	color: #333;
	outline: none;
	-moz-outline: none;
}

a:active {
	color: #333;
}

pre {
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
	word-wrap: break-word;
	margin: 0;
	font-family: arial, sans-serif;
	text-align: justify;
	text-justify: inter-ideograph;
}

.clear {
	clear: both;
	height: 0px;
	overflow: hidden;
	zoom: 0;
}

.clearfix {
	*zoom: 1;
}

/*IE/7/6*/
.clearfix:after {
	content: '';
	display: block;
	height: 0;
	clear: both;
}

.dot {
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.dot2,
.dot3,
.dot4 {
	display: -webkit-box;
	display: box;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	-webkit-box-orient: vertical;
}

.dot2 {
	-webkit-line-clamp: 2;
}

.dot3 {
	-webkit-line-clamp: 3;
}

.dot4 {
	-webkit-line-clamp: 4;
}

.ytable {
	display: table;
	width: 100%;
	table-layout: fixed;
}

.ytable-cell {
	display: table-cell;
	vertical-align: middle;
}

/*垂直居中,容器设置宽高*/
.ycenter {
	align-items: center;
	display: -webkit-box;
	/* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box;
	/* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox;
	/* 混合版本语法: IE 10 */
	display: -webkit-flex;
	/* 新版本语法: Chrome 21+ */
	display: flex;
	/* 新版本语法: Opera 12.1, Firefox 22+ */
}

/*水平居中,容器设置宽高*/
.xcenter {
	justify-content: center;
	display: -webkit-box;
	/* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box;
	/* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox;
	/* 混合版本语法: IE 10 */
	display: -webkit-flex;
	/* 新版本语法: Chrome 21+ */
	display: flex;
	/* 新版本语法: Opera 12.1, Firefox 22+ */
}

/*盒子布局*/
.flexbox {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

/*弹性布局水平垂直居中 兼容性高*/
.xycenterbox {
	display: -webkit-box;
	/* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box;
	/* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox;
	/* 混合版本语法: IE 10 */
	display: -webkit-flex;
	/* 新版本语法: Chrome 21+ */
	display: flex;
	/* 新版本语法: Opera 12.1, Firefox 22+ */
	-webkit-box-pack: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	align-items: center;
}

/*弹性布局水平居中 兼容性高*/
.xcenterbox {
	display: -webkit-box;
	/* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box;
	/* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox;
	/* 混合版本语法: IE 10 */
	display: -webkit-flex;
	/* 新版本语法: Chrome 21+ */
	display: flex;
	/* 新版本语法: Opera 12.1, Firefox 22+ */
	-webkit-box-pack: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	justify-content: center;
}

/*弹性布局垂直居中 兼容性高*/
.ycenterbox {
	display: -webkit-box;
	/* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box;
	/* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox;
	/* 混合版本语法: IE 10 */
	display: -webkit-flex;
	/* 新版本语法: Chrome 21+ */
	display: flex;
	/* 新版本语法: Opera 12.1, Firefox 22+ */
	-webkit-box-align: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	align-items: center;
}

.Ispic {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

:after,
:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

.nM {
	margin: 0;
}

.nP {
	padding: 0;
}

/**字体大小**/
.fz_24 {
	font-size: 24px;
}

.fz_20 {
	font-size: 20px;
}

.fz_18 {
	font-size: 18px;
}

.fz_16 {
	font-size: 16px;
}

.fz_14 {
	font-size: 14px;
}

.fz_12 {
	font-size: 12px;
}

/**初始 End**/

.fl {
	float: left;
}

.fr {
	float: right;
}

/*用于图片变黑白*/
.grayscale {
	filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='saturate' values='0'/></filter></svg>#grayscale");
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	filter: gray
}

.grayscale.grayscale-fade {
	transition: filter .5s
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	.grayscale.grayscale-fade {
		-webkit-transition: -webkit-filter .5s;
		transition: -webkit-filter .5s
	}
}

.grayscale.grayscale-fade:hover,
.grayscale.grayscale-off {
	-webkit-filter: grayscale(0);
	filter: grayscale(0)
}

.grayscale.grayscale-replaced {
	-webkit-filter: none;
	filter: none
}

.grayscale.grayscale-replaced>svg {
	-webkit-transition: opacity .5s ease;
	transition: opacity .5s ease;
	opacity: 1
}

.grayscale.grayscale-replaced.grayscale-fade:hover>svg,
.grayscale.grayscale-replaced.grayscale-off>svg {
	opacity: 0;
}

/*↑↑↑如修改栏目左右结构宽度比例 请不要修改这里的  在style.css 加上修改*/
/**页面框架 End**/
.auto {
	margin: 0 auto;
}

.auto_1280 {
	max-width: 1280px;
}

/*图标*/
.has-icon-v {
	text-align: center;
}

.has-icon-v i {
	display: block;
	padding: 10px 0;
}

.has-icon-v i img {
	width: 50px;
	height: 50px;
}

.has-icon-h i {
	display: inline-block;
	vertical-align: middle;
}

.has-icon-h i img {
	width: 20px;
	height: 20px;
	margin-right: 5px;
}

/*图标 end*/

/*导航公共样式 end*/
/*by 20190122*/


.container-wrap {
	width: 1100px;
	margin: auto;
}

.header-nav {
	padding: 0 55px;
	height: 135px;
	border-bottom: 4px solid #d91c27;
	background: url(../img/nav-t.jpg) no-repeat;
	background-size: 100% 100%;
}

.header-list li {
	float: left;
	margin-left: 45px;
}

.header-list li:last-child {
	margin-right: 0;
}

.header-list li a {
	font-size: 16px;
	color: #2f2f2f;
	font-weight: 500;
}

.header-list li.active a {
	color: #d70d18;
}

.header-left {
	margin-top: 25px;
}

.header-right {
	margin-top: 40px;
}

.sousuo {
	width: 575px;
	height: 33px;
	border: none;
	font-size: 14px;
	color: #94d0f6;
	padding: 0 15px;
	margin-top: 15px;
	float: right;
}
select{    
  border: solid 1px #ccc;    
  appearance: none;/*清除select下拉框默认样式*/    
  -moz-appearance: none;    
  -webkit-appearance: none;   
  padding-right: 14px;/*为下拉小箭头留出一点位置，避免被文字覆盖*/    
  background: url(../img/down.png) no-repeat scroll 550px center #606060;/*自定义图片覆盖原有的下三角符号*/
}
select::-ms-expand {    
  display: none;/*清除IE默认下拉按钮，但是测试发现IE10以上有效，IE8，9默认下拉按钮仍旧存在*/
}

/** banner样式 */
.banner-box,.sbimg-box,.sbimg-box a,.sbimg-box img {
	height: 530px;
}

.banner-box .swiper-container-horizontal .swiper-pagination-bullets {
	top: 50%;
	bottom: auto;
	width: 20px;
	right: 55px;
	left: auto;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.banner-box .swiper-pagination-bullet {
	opacity: 1;
	background-color: transparent;
	border: 1px solid #ffffff;
	width: 13px;
	height: 13px;
	margin: 4px 0;
}

.banner-box .swiper-pagination-bullet-active {
	background-color: #ffffff;
}

.banner-box .attline {
	position: absolute;
	bottom: 54px;
	left: 0;
	right: 0;
	background-color: rgba(255, 255, 255, .3);
}

.banner-box .attline span {
	display: block;
	position: absolute;
	width: auto;
	left: 10px;
	bottom: -10px;
	z-index: 12;
	color: #ffffff;
}

.banner-box .attline i {
	display: block;
	position: absolute;
	width: 13px;
	height: 22px;
	bottom: -11px;
	left: 50%;
	margin-left: -3px;
	background: url(../img/icon-mouse.png) center no-repeat;
	z-index: 11;
	animation: mymove 1s infinite;
	-webkit-animation: mymove 1s infinite;
}

@keyframes mymove {
	from {
		bottom: 16px;
	}

	to {
		bottom: -11px;
	}
}

@-webkit-keyframes mymove {

	/*Safari and Chrome*/
	from {
		bottom: 16px;
	}

	to {
		bottom: -11px;
	}
}

.banner-box .attach {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.banner-box .attach {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.banner-box .swiper-button-prev {
	background-image: url(../img/sb-prev.png);
	background-size: 30px 30px;
	top: auto;
	bottom: 30px;
	left: auto;
	right: 70px;
	width: 30px;
	height: 30px;
}

.banner-box .swiper-button-next {
	background-image: url(../img/sb-next.png);
	background-size: 30px 30px;
	left: auto;
	right: 10px;
	bottom: 30px;
	width: 30px;
	height: 30px;
}
.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after,.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
	display: none!important;
}

/* 客户 */
.kehu-wrap {
	height: 360px;
	padding: 40px 55px 30px 55px;
	background: url(../img/kehu-bg.jpg) no-repeat;
	background-size: 100% 100%;
}
.kehu-wrap h4 {
	font-size: 34px;
	color: #fff;
	font-weight: 500;
}
.kehu-wrap h4 a {
	float: right;
	font-size: 14px;
	color: rgba(255,255,255,.8);
	background: url(../img/ck.png) left center no-repeat;
	padding-left: 15px;
}

.customer-list {
    position: relative;
    padding-bottom: 30px;
	margin-top: 20px;
}
.customer-list .swiper-slide a {
    display: block;
    margin-bottom: 15px;
}
.customer-list .swiper-slide img {
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.customer-list .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    margin: 0 5px;
    opacity: .8;
    border: 3px solid #d90d19;
    background-color: transparent;
}
.customer-list .swiper-pagination-bullet-active {
    background-color: #d90d19;
}
.customer-list .swiper-pagination {
    bottom: 0;
    left: 0;
    right: 0;
}

/* 底部 */
.footer-wrap {
	padding: 30px 55px;
	background: url(../img/foot-bg.jpg) no-repeat;
	background-size: 100% 100%;
}
.footer-left .img-l {
	/* width: 105px; */
	height: 101px;
	margin-right: 20px;
}
.img-right h5 {
	font-size: 18px;
	color: #82b3d2;
	font-weight: 400;
	margin-bottom: 15px;
}
.img-right p {
	font-size: 12px;
	color: #82b3d2;
	font-weight: 400;
	line-height: 22px;
}
.footer-right {
	text-align: right;
}
.footer-list a {
	display: inline-block;
	text-align: right;
	font-size: 14px;
	color: #82b3d2;
	font-weight: 500;
	margin-left: 30px;
	margin-bottom: 20px;
}
.footer-share a {
	display: inline-block;
	margin-left: 20px;
}
.footer-right p {
	font-size: 12px;
	color: #fff;
	font-weight: 400;
	margin-top: 20px;
}
.footer-left {
	margin-top: 17px;
}

/* 关于我们 */
.about-container {
	padding: 30px 55px 60px 55px;
	background: #fff;
	overflow: hidden;
}
.about-left {
	float: left;
	width: 250px;
}
.about-list {	
	background: #8f918e;
	padding: 0px 0 10px 20px;
}
.about-list li a {
	display: block;
	padding: 15px 0;
	font-size: 18px;
	color: #fff;
	font-weight: 500;
}
.about-list li.active a {
	font-size: 20px;
	color: #90cbef;
}
.about-right {
	float: right;
	width: 705px;
}
.about-right h4 {
	font-size: 26px;
	color: #a17c55;
	font-weight: 500;
	line-height: 40px;
	padding-left: 20px;
	position: relative;
	margin-bottom: 20px;
}
.about-right h4::before {
	content: "";
	display: block;
	width: 4px;
	height: 30px;
	background: #a17c55;
	position: absolute;
	left: 0;top: 5px;
}
.about-right span.tips {
	display: block;
	padding: 30px;
	background: #e6e6e6;
	font-size: 15px;
	color: #05060a;
	line-height: 24px;
	margin-bottom: 10px;
}
.about-right span.tips i {
	display: block;
	font-style: normal;
	color: #89b455;
}
.jianjie p {
	font-size: 15px;
	color: #05060a;
	line-height: 24px;
	margin-top: 20px;
}

.about-title {
	width: 200px;
	border-top:2px solid #c5c5c5;
	padding-top: 35px;
	margin-top: 35px;
}
.about-title h5 {
	font-size: 20px;
	color: #a17c55;
	font-weight: bold;
}
.about-title h5.chanp {
	color: #89b455;
}
.about-title p {
	font-size: 16px;
	color: #2f2f2f;
	line-height: 24px;
	margin: 20px 0 60px 0;
}
.about-info ul {
    margin-left: -35px;
    margin-top: -35px;
}
.about-info ul li {
    float: left;
    width: 50%;
    padding-left: 35px;
    margin-top: 35px;
}
.img-box {
    line-height: normal;
    font-size: 0;
}
.about-info ul li .txt-box {
    background: #e6e6e6;
    padding: 15px 15px 0 15px;
    margin-top: 10px;
    min-height: 280px;
}
.about-info ul li h3 {
    font-size: 22px;
    color: #3e3a39;
	font-weight: 400;
	margin-bottom: 20px;
}
.about-info ul li p {
    font-size: 15px;
    color: #2f2f2f;
	line-height: 24px;
    padding-bottom: 10px;
}

.liucheng-info h3 {
	font-size: 28px;
	color:#89b455;
	font-weight: 400;
	margin:35px 0 25px 0;
}

.type-box {
	margin: 25px 0;
}
.type-box a {
    display: inline-block;
    width: 128px;
	height: 34px;
    cursor: pointer;
    line-height: 34px;
    font-size: 18px;
	color:#3a3838;
	text-align: center;
}
.type-box a.on {
    background-color: #a17c55;
    color: #fff;
    font-weight: 600;
}
.process-box {
    margin-bottom: 25px;
    overflow: hidden;
}
.process-box ul {
    margin-left: -1px;
    margin-top: -20px;
    display: none;
}
.process-box ul li {
    float: left;
    /* width: 11.11%; */
    border-left: 1px solid #ddd;
    text-align: center;
    margin-top: 20px;
	padding: 0 7.5px;
}
.process-box ul li i {
    display: block;
    padding-top: 50px;
    padding-bottom: 10px;
    background-position: center top;
    background-repeat: no-repeat;
    font-size: 36px;
	font-family: "arial black";
    font-weight: 700;
    color: #b5b5b6;
	font-style: normal;
}
.process-box ul li p {
    height: 40px;
    font-size: 14px;
	color: #383636;
}
.picture-box ul {
    overflow: hidden;
}
.picture-box ul li {
    float: left;
    width: 30.9%;
	margin-right: 25px;
    padding-top: 20px;
}
.picture-box ul li:last-child {
	margin-right: 0;
}
.img-box {
    line-height: normal;
    font-size: 0;
	height: 252px;
}
.img-box img {
	height: 100%;
}
.picture-box ul li img,.picture-box ul li .img-box {
	height: auto!important;
}
.zhizao-list {
	overflow: hidden;
}
.zhizao-list li {
	float: left;
	width: 30.9%;
	margin-right: 25px;
	margin-bottom: 20px;
}
.zhizao-list li:nth-child(3n) {
	margin-right: 0;
}

.contant-top {
	font-size: 15px;
	padding: 30px 25px;
	background: #eef5fd;
	border-top: 1px solid #dcdddd;
	border-bottom: 1px solid #dcdddd;
	margin-bottom: 15px;
}
.contant-top h6 {
	font-size: 20px;
	color: #2f2f2f;
	margin-bottom: 5px;
}
.contant-top p {
	font-size: 15px;
	color: #2F2F2F;
	line-height: 30px;
}
.contant-top p span {
	color: #84afca;
	letter-spacing: 1.5px;
}
.contant-info .map #map {
    height: 100%;
}
.contant-info .map {
    width: 100%;
    height: 365px;
}

.busi-list {
    padding-bottom: 15px;
}
.busi-list ul {
    margin-left: -35px;
    margin-top: -35px;
}
.busi-list ul li {
    float: left;
    width: 50%;
    padding-left: 35px;
    margin-top: 35px;
}

.adva-list ul li {
    float: left;
    width: 47.5%;
    padding: 15px 15px 0 15px;
	/* background: linear-gradient(to bottom,#ffffff,#eef5fd); */
	background: linear-gradient(to bottom right,#eef1f5,#e6e9f0);
	margin-right: 35px;
	min-height: 165px;
	position: relative;
	/* border-top: 1px solid #dcdddd; */
	margin-bottom: 20px;
	position: relative;
}
.adva-list ul li:first-child::after,.adva-list ul li:nth-child(2)::after {
	content: "";
	display: block;
	width: 335px;
	height: 1px;
	background: #dcdddd;
	position: absolute;
	bottom: -10px;
	left: 0;
}
.adva-list ul li:nth-child(2n) {
	margin-right: 0;
}
.adva-list ul li h3 {
    background-repeat: no-repeat;
    background-position: left center;
    font-size: 22px;
    font-weight: normal;
    padding-left: 65px;
    line-height: 50px;
	color: #3e3a39;
}
.adva-list ul li p {
    line-height: 23px;
    padding-left: 65px;
    font-size: 15px;
}
.vibration-list li {
	width: 31%;
}

/* 产品 */
.product-info h4 {
	margin-bottom: 0px;
}
.product-info .product-tips {
	font-size: 16px;
	color: #05060a;
	margin-left: 20px;
}
.product-center {
	margin-top: 15px;
}
.product-wenzi {
	padding: 10px 25px;
	background: #a17c55;
	color:#fff;
	line-height:2;
	padding-top:20px;
}
.product-wenzi h3 {
	font-size: 20px;
	color: #fff;
	margin-bottom: 20px;
}
.product-wenzi p.title-w {
	font-size: 15px;
	color: #fff;
	line-height: 24px;
	margin-bottom: 20px;
}
.chanp-list {
	overflow:hidden;
}
.chanp-list li {
	float:left;
	width: 30%;
	border-radius: 5px;
	background: linear-gradient(to bottom,#fff,#eef5fd);
	margin: 0 20px 15px 0;
	padding: 10px 20px 10px 20px;
}
.chanp-list li p {
	padding-left: 20px;
}
.chanp-list li.pz1 p {
	background: url(../img/pt1.png) 20px center no-repeat;
}
.chanp-list li.pz2 p {
	background: url(../img/pt2.png) 20px center no-repeat;
}
.chanp-list li.pz3 p {
	background: url(../img/pt3.png) 20px center no-repeat;
}
.chanp-list li.pz4 p {
	background: url(../img/pt4.png) 20px center no-repeat;
}
.chanp-list li.pz5 p {
	background: url(../img/pt5.png) 20px center no-repeat;
}
.chanp-list li.pz6 p {
	background: url(../img/pt6.png) 20px center no-repeat;
}