@charset "utf-8";
/* CSS Document */

body {
	margin: 0px;
	padding: 0px;
	border: 0px;
	/*font-family: "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei";*/
	color: #555555;
	font-size: 14px;
	width: 100%;
	background: #ffffff;
}
a {
	margin: 0px;
	padding: 0px;
	border: 0px;
	text-decoration: none;
	color: #555555;
	font-size: 13px;
}
a:hover {
	text-decoration: none;
}
* {
	padding: 0px;
	margin: 0px;
	border: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* background:rgba(0,0,0,0);filter:progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7F000000,endcolorstr=#7F000000);*/
li {
	list-style: none;
}
.clear {
	clear: both !important;
	height: 0px !important;
	width: 0px !important;
	float: none !important;
	margin: 0px !important;
	padding: 0px !important;
	border: 0px !important;
	line-height: 0 !important;
	position: relative !important;
}
input:focus {
	outline: none;
}/*去除按钮选中的高亮标签*/
textarea:focus {
	outline: none;
}/*去除文本框选中的高亮标签*/
button:focus {
	outline: none;
}/*去除按钮选中的高亮标签*/
select:focus {
	outline: none;
}/*去除下拉框选中的高亮标签*/
img {
	vertical-align: middle;
}
div, p, table, td, ul, li, span, a, ol, input, label {
	padding: 0px;
	margin: 0px;
	border: 0px;
}
input::-ms-input-placeholder { /* Internet Explorer 10+ */
color:#4d4d4d;
font-size:12px;
}
input::-webkit-input-placeholder { /* WebKit browsers */
color:#4d4d4d;
font-size:12px;
}
input::-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color:#4d4d4d;
font-size:12px;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ */
color:#4d4d4d;
font-size:12px;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ */
color:#4d4d4d;
font-size:12px;
}
textarea::-webkit-input-placeholder {
color:#4d4d4d;
font-size:12px;
}
.fl {
	float: left;
}
.fr {
	float: right;
}




/*下面是滚动条样式*/


    ::-webkit-scrollbar-track {
 background-color: none;
} /* 滚动条的滑轨背景颜色 */

	::-webkit-scrollbar-thumb {
 background:#c0c0c0;
} /* 滑块颜色 */

	::-webkit-scrollbar-button {
 background-color: none;
} /* 滑轨两头的监听按钮颜色 */

	::-webkit-scrollbar-corner {
 background: none;
} /* 横向滚动条和纵向滚动条相交处尖角的颜色 */
    ::-webkit-scrollbar {
 width: 13px;
 height: 5px;
} /* 这是针对缺省样式 (必须的)

/*渐变*/
.jianbian {
	height: 200px;
	background: -webkit-linear-gradient(blue, yellow); /* Safari 5.1 - 6.0 */
	background: -o-linear-gradient(blue, yellow); /* Opera 11.1 - 12.0 */
	background: -moz-linear-gradient(blue, yellow); /* Firefox 3.6 - 15 */
	background: linear-gradient(circle, red, yellow); /* 标准的语法（必须放在最后） */
}
/*渐变从左向右*/
.jianbian2 {
	height: 200px;
	background: -webkit-linear-gradient(to right, blue, yellow); /* Safari 5.1 - 6.0 */
	background: -o-linear-gradient(to right, blue, yellow); /* Opera 11.1 - 12.0 */
	background: -moz-linear-gradient(to right, blue, yellow); /* Firefox 3.6 - 15 */
	background: linear-gradient(to bottom, white, yellow); /* 标准的语法（必须放在最后） */
}
/*黑白照片*/
.gray {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;
}
.gray:hover {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	filter: grayscale(0%);
	filter: gray;
}
/*圆角5px*/
.radius5 {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
}
/*圆角10px*/
.radius10 {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
}
/*图片变大*/
.tra {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	filter: scale(1);
	filter: transform;
	transition: all 0.5s ease 0s;
	-webkit-transform: all 0.5s ease 0s;
	cursor: pointer;
}
.tra:hover {
	-webkit-transform: scale(1.15);
	-moz-transform: scale(1.15);
	-ms-transform: scale(1.15);
	-o-transform: scale(1.15);
	filter: scale(1.15);
	filter: transform;
	transition: all 0.5s ease 0s;
	-webkit-transform: all 0.5s ease 0s;
	cursor: pointer;
}
/*透明度50%*/
.opacity5 {
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}
/*投影*/
.shadow5 {
	-webkit-box-shadow: rgba(0,0,0,0.13) 5px 5px 5px;
	-moz-box-shadow: rgba(0,0,0,0.13) 5px 5px 5px;
	-ms-box-shadow: rgba(0,0,0,0.13) 5px 5px 5px;
	-o-box-shadow: rgba(0,0,0,0.13) 5px 5px 5px;
	box-shadow: rgba(0,0,0,0.13) 5px 5px 5px;
	transition: all 0.5s ease 0s;
	-webkit-transform: all 0.5s ease 0s;
}
/*投影*/
.shadow10 {
	-webkit-box-shadow: rgba(0,0,0,0.13) 5px 5px 10px;
	-moz-box-shadow: rgba(0,0,0,0.13) 5px 5px 10px;
	-ms-box-shadow: rgba(0,0,0,0.13) 5px 5px 10px;
	-o-box-shadow: rgba(0,0,0,0.13) 5px 5px 10px;
	box-shadow: rgba(0,0,0,0.13) 5px 5px 10px;
}
.shadow11 {
	-webkit-box-shadow: rgba(0,0,0,0.33) 0px 0px 15px;
	-moz-box-shadow: rgba(0,0,0,0.33) 0px 0px 15px;
	-ms-box-shadow: rgba(0,0,0,0.33) 0px 0px 15px;
	-o-box-shadow: rgba(0,0,0,0.33) 0px 0px 15px;
	box-shadow: rgba(0,0,0,0.33) 0px 0px 15px;
}
/*图片居中*/
.chuizhi {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	/* 水平居中*/ 
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-pack: center;
	/* IE 10 */
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
	/* IE 11+,Firefox 22+,Chrome 29+,Opera 12.1*/
	/* 垂直居中 */ 
	-webkit-box-pack: center;
	-ms-flex-align: center;
	-moz-box-pack: center;
	/* IE 10 */
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
}
/*图片翻转*/
.flip {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: all 0.5s ease;
	-webkit-transform: all 0.5s ease;
	cursor: pointer;
}
.flip:hover {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
	transition: all 0.5s ease;
	-webkit-transform: all 0.5s ease;
	cursor: pointer;
}
.fenye_nei b {
	display: inline-block;
	padding: 0 13px;
	height: 34px;
	text-align: center;
	line-height: 34px;
	margin: 0 3px;
	border-radius: 5px;
	border: #dddddd solid 0px;
	overflow: hidden;
	font-size: 13px;
	color: #fff;
	background: #ea7043;
}
.product1_nei_top {
	border-bottom: 1px dashed #dcdcdc
}
.product8_nei_top {
	border-bottom: 0px !important
}
.top {
	width: 100%;
	height: 12px;
	background: #000;
	position: relative
}
.top2 {
	width: 100%;
	display: block;
	/*height: 84px;*/
	padding:30px 0px;
	z-index: 10;/*overflow:hidden;*/
	overflow:hidden;
	background:url(../img/brand_bg.jpg) repeat;
}
.top3 {
	background: #333;
}
.index_body_yi {
	background: url(../img/bn3.png) no-repeat 50%/cover;
	width: 100%;
	position: absolute;
	top: 725px;
	height: 98px;
	z-index: 11
}
.index_body_yi .body_yi_nei {
	max-width: 1090px;
	margin: 0 auto;
	position: relative
}
.index_body_yi .body_yi_nei .yi_nei_xun {
	font-size: 15px;
	color: #FFFFFF;
	text-align: center;
	display: inline-block;
	padding: 0px 86px;
	position: absolute;
	top: -35px
}
.index_body_yi .body_yi_nei .yi_nei_xun:nth-child(2) {
	left: 262px;
	padding: 0 75px;
	top: -35px
}
.index_body_yi .body_yi_nei .yi_nei_xun:nth-child(3) {
	left: 545px;
	padding: 0 79px;
	top: -35px
}
.index_body_yi .body_yi_nei .yi_nei_xun:nth-child(4) {
	left: 826px;
	padding: 0 54px;
	top: -35px
}
.index_body_yi .body_yi_nei .yi_nei_xun div:nth-child(1) {
	padding-bottom: 20px
}
.index_body_er {
	width: 100%;
	background: #f6f6f6;
	padding-top: 70px;
	padding-bottom: 0px
}
.index_body_er .body_er_nei {
	max-width: 1350px;
	margin: 30px auto;
}
.index_body_er .er_nei_title {
	background: url(../img/bn8.png) no-repeat 50% 100%;
	text-align: center;
	padding-bottom: 45px
}
.index_body_er .er_nei_title p:nth-child(1) {
	font-size: 30px;
	color: #3e3a39;
	padding-bottom: 10px
}
.index_body_er .er_nei_title p:nth-child(2) {
	font-size: 12px;
	color: #3e3a39;
}
.index_body_er .er_nei_title p:nth-child(2) span {
	font-size: 12px;
	color: #3e3a39;
	font-weight: bolder;
	padding-right: 10px
}
.index_body_er .body_er_nei .er_nei_left {
	margin-right: -668px;
	/*width: 50%*/
	width: 100%;
}
.index_body_er .body_er_nei .er_nei_right {
	margin-left: 686px
}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun {
	display: inline-block;
	/*padding: 23px 0px;*/
	border: 2px solid #ebeaea;
	text-align: center;
	margin-right: 11px;
	margin-bottom: 11px;
	background: #fff;
	position: relative;
	overflow: hidden;
	width: 326px;/*height: 403px*/
}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_title {
/*height: 278px*/
}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun img {
	height: 200px
}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun:nth-child(2n) {
	margin-right: 0px
}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun:nth-child(3n) {
	margin-right: 0px
}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_body {
	padding-top: 10px;
	padding-bottom: 17px
}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_body p:nth-child(1) {
	font-size: 10px;
	color: #595757;
	font-weight: bolder
}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_bottom {
	color: #3e3a39;
	font-weight: bolder
}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_bottom span {
	display: inline-block;
	width: 18px;
	height: 18px;
	background: #ea7043;
	color: #fff;
	border-radius: 30px;
	text-align: center;
	line-height: 18px;
	margin-left: 5px
}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_bg {
	width: 323px;
	height: 200px;
	background: url(../img/bn9.png) no-repeat left top;
	position: absolute;
	top: 0;
	left: -323px;
	font-size: 18px;
	color: #fff;
	text-align: center;
	line-height: 400px;
	-webkit-transition: all 0.5s ease;
}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun:hover .left_xun_bg {
	left: 0px;
}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun:hover .left_xun_bg, .index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_bg {
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_bg span {
	display: inline-block;
	width: 30px;
	height: 30px;
	border: 1px solid #fff;
	border-radius: 300px;
	text-align: center;
	line-height: 30px;
	font-size: 20px;
	margin-left: 20px
}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei {
	display: inline-block;
	border: 2px solid #ebeaea;
	text-align: center;
	background: url(../img/bg5.jpg) no-repeat 50% 50%;
	width: 656px;
	height: 823px;
	padding: 50px 0px
}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_title {
	height: 525px;
	margin: 0 auto
}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_body {
	padding-top: 23px
}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_body p:nth-child(1) {
	color: #3e3a39;
	font-size: 16px;
	font-weight: bolder;
	padding-bottom: 10px
}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_body p:nth-child(2) {
	color: #3e3a39;
	font-size: 22px;
}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_bottom {
	font-size: 18px;
	color: #FFFFFF;
	border: 1px solid #FFFFFF;
	width: 265px;
	height: 52px;
	margin: 87px auto;
	line-height: 52px;
	border-radius: 10px
}
.index_body_er .body_er_nei_er {
	padding-bottom: 30px
}
.index_body_er .body_er_nei_er img {
	width: 100%;
}
.er_body_xun div:nth-child(3) {
	padding-top: 20px
}
.index_body_er .index_body_si {
	max-width: 1350px;
	margin: 0 auto;
	padding-bottom: 70px
}
.index_body_er .index_body_si .index_body_si_body {
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun {
	width: auto;
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_yi {
	text-align: center;
	width: 200px;
	height: 518px;
	background: #FFFFFF;
	border-bottom: 15px solid #ea7043;
	margin-top: 76px;
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_title {
	background: #ea7043;
	height: 105px;
	color: #ffffff;
	font-size: 15px;
	text-align: center;
	line-height: 105px;
	border-right: 1px solid #d3a6aa
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_body {
	padding: 16px 0px;
	text-align: center;
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_body a {
	display: inline-block;
	width: 100%;
	color: #717071;
	font-size: 12px;
	padding: 12px 0px;
	background: url(../img/bn18.png) no-repeat 50% 100%;
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_bottom {
	margin-top: 80px;
	display: inline-block
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er {
	width: 549px;
	margin-top: 41px;
	display: none;
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er.show {
	display: inline-block
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er.hide {
	display: none
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_title {
	background: url(../img/bn23.png) no-repeat 50% 50%;
	padding: 32px 43px;
	text-align: center;
	display: inline-block;
	width: 100%;
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_title div:nth-child(1) {
	margin-bottom: 10px
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_title div {
	font-size: 20px;
	color: #ffffff;
	padding-left: 15px;
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body {
	height: 435px;
	border-bottom: 15px solid #ea7043;
	background: #fff;
	border-left: 1px solid #dfdfdf;
	border-right: 1px solid #dfdfdf;
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun {
	display: inline-block;
	/*border-right: 1px solid #d2d2d2;*/
	/*height: 100%;*/
	height: 50%;
	text-align: center;
	width: 32.9%
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun:nth-child(3) {
	border: 0px
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(1) {
	text-align: left;
	padding-left: 15px;
	color: #3e3a39;
	font-size: 14px;
	padding-top: 15px;
	padding-bottom: 10px
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(1) p:nth-child(1) {
	color: #3e3a39;
	font-size: 12px;
	font-weight: bolder
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(2) {
	width: 220px;
	margin: 0 auto
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(3) {
	font-size: 15px;
	color: #3e3a39;
	font-size: 15px
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(3) .fa-angle-right {
	padding-left: 10px
}
.index_body_san {
	width: 100%;
	background: #FFFFFF
}
.index_body_san .index_body_san_nei {
	max-width: 1350px;
	margin: 0 auto
}
.index_body_san .index_body_san_nei .er_nei_body {
	border-top: 14px solid #ea7043;
	background: #ededed;
	margin-top: 55px;
	padding: 14px 0px;
	position: relative;
	height: 409px
}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left {
	font-size: 16px;
	color: #3e3a39;
	line-height: 30px;
	padding: 0px 22px;
	width: 47%
}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left span {
	color: #000000;
	font-size: 14px;
	font-weight: bolder
}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left p {
	text-indent: 2em;
	margin-bottom: 10px;
}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left p:last-child {
	padding-bottom: 0px;
}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left a {
	color: #B81C1F;
	text-transform: uppercase
}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_right {
	position: absolute;
	right: 0;
	top: -20px;
	overflow: hidden
}
.index_body_wu {
	width: 100%;
	background: url(../img/bn17.jpg) no-repeat 50% 50%;
	height: 250px;
	margin-top: 90px
}
.index_body_wu .body_wu_nei {
	max-width: 1350px;
	margin: 0 auto;
	position: relative
}
.index_body_wu .body_wu_nei .wrapper {
	position: absolute;
	top: 165px;
	font-size: 36px;
	color: #fff;
	left: 150px
}
.index_body_wu .body_wu_nei .wrapper .counter:nth-child(1) {
	margin-right: 215px
}
.index_body_wu .body_wu_nei .wrapper .counter:nth-child(2) {
	margin-right: 235px
}
.index_body_wu .body_wu_nei .wrapper .counter:nth-child(3) {
	margin-right: 230px
}
.index_body_six {
	width: 100%;
	background: #fff
}
.index_body_six .body_six_nei {
	max-width: 1350px;
	margin: 0 auto;
}
.index_body_six .body_six_nei .six_nei_body {
	padding-top: 78px
}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun {
	display: inline-block;
	background: url(../img/bg44.jpg) no-repeat 50% 50%;
	width: 270px;
	height: 456px;
	overflow: hidden;
	margin-right: -5px;
}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun:nth-child(2) {
	background: url(../img/bg55.jpg) no-repeat 50% 50%;
}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun:nth-child(3) {
	background: url(../img/bg66.jpg) no-repeat 50% 50%;
}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun:nth-child(4) {
	background: url(../img/bg77.jpg) no-repeat 50% 50%;
}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun:nth-child(5) {
	background: url(../img/bg88.jpg) no-repeat 50% 50%;
}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun div {
	background: rgba(0,0,0,0.65);
	width: 100%;
	height: 100%;
	transition: all 0.5s ease 0s;
	-webkit-transform: all 0.5s ease 0s;
	text-align: center
}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun div p {
	color: #fff
}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun div p:nth-child(1) {
	font-size: 16px;
	padding-top: 147px
}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun div p:nth-child(2) {
	font-size: 15px;
	margin-top: 66px;
	display: inline-block;
	background: url(../img/bn28.png) no-repeat 50% 70%;
	width: 100%;
	padding-bottom: 25px
}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun div p:nth-child(3) {
	display: inline-block;
	border: 1px solid #fff;
	border-radius: 100%;
	width: 30px;
	height: 30px;
	font-size: 15px;
	line-height: 28px
}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun:hover div:hover {
	background: linear-gradient(to bottom, rgba(232,112,66,0.93), rgba(255,170,101,0.93));
	transition: all 0.5s ease 0s;
	-webkit-transform: all 0.5s ease 0s;
}
.index_body_qi {
	width: 100%;
	background: #fff;
	padding-bottom: 100px
}
.index_body_qi .body_qi_nei {
	max-width: 1350px;
	margin: 0 auto;
}
.index_body_qi .body_qi_nei .qi_nei_body {
	padding-top: 50px
}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun {
	width: 335px;
	margin-right: 2px;
	height: 475px
}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_title {
	width: 100%;
	background: #ea7043;
	color: #fff;
	font-size: 16px;
	padding: 35px 48px;
	border: 1px solid #c68187
}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_title span {
	display: inline-block;
	width: 22px;
	height: 22px;
	border: 1px solid #fff;
	border-radius: 50%;
	text-align: center;
	line-height: 22px;
	float: right
}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_title a:nth-child(1) {
	display: inline-block;
	width: 22px;
	height: 22px;
	border: 1px solid #fff;
	text-align: center;
	border-radius: 100%;
	line-height: 22px;
	float: right;
	margin-top: 25px;
	margin-right: 20px
}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_body {
	background: url(../img/bg9.jpg) no-repeat 50% 50%;
	padding: 46px 46px 35px 46px;
	;
	height: 404px;
	display: block !important
}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun:nth-child(2) .body_xun_body {
	background: url(../img/bg10.jpg) no-repeat 50% 50%;
}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun:nth-child(3) .body_xun_body {
	background: url(../img/bg11.jpg) no-repeat 50% 50%;
}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun:nth-child(4) .body_xun_body {
	background: url(../img/bg12.jpg) no-repeat 50% 50%;
}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_body a {
	background: url(../img/bn29.png) no-repeat 0% 50%;
	padding-left: 10px;
	font-size: 13px;
	color: #3e3a39;
	margin-bottom: 24px;
	display: inline-block
}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_body .xain {
	background: #cfcfcf;
	height: 1px;
	width: 100%;
	margin-top: 65px
}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_body .xain div {
	background: #A3080B;
	height: 1px;
	width: 0px
}
.index_body_ba {
	width: 100%;
	background: #f2f2f2;
	border-top: 1px solid #dcdcdc
}
.index_body_ba .body_ba_nei {
	max-width: 1350px;
	margin: 0 auto;
	padding: 40px 0px
}
.index_body_ba .body_ba_nei a {
	display: inline-block;
	background: url(../img/bn31.png) no-repeat 0% 50%;
	height: 107px;
	padding-top: 40px;
	margin-right: 42px;
}
.index_body_ba .body_ba_nei a:hover {
	background: url(../img/bn35.png) no-repeat 0% 50%;
}
.index_body_ba .body_ba_nei a p:nth-child(1) {
	color: #1a1a1a;
	font-size: 20px;
	padding-left: 118px
}
.index_body_ba .body_ba_nei a p:nth-child(2) {
	color: #808080;
	font-size: 13px;
	padding-left: 118px
}
.index_body_ba .body_ba_nei a:nth-child(2) {
	background: url(../img/bn30.png) no-repeat 0% 50%
}
.index_body_ba .body_ba_nei a:nth-child(2):hover {
	background: url(../img/bn34.png) no-repeat 0% 50%;
}
.index_body_ba .body_ba_nei a:nth-child(3) {
	background: url(../img/bn32.png) no-repeat 0% 50%
}
.index_body_ba .body_ba_nei a:nth-child(3):hover {
	background: url(../img/bn36.png) no-repeat 0% 50%;
}
.index_body_ba .body_ba_nei a:nth-child(4) {
	background: url(../img/bn33.png) no-repeat 0% 50%;
	margin-right: 0px;
}
.index_body_ba .body_ba_nei a:nth-child(4):hover {
	background: url(../img/bn37.png) no-repeat 0% 50%;
}
.bottom {
	width: 100%;
	background: #2f2f2f;
	margin-top: 1px
}
.bottom .bottom_nei {
	max-width: 1350px;
	margin: 0 auto;
	padding: 45px 0px
}
.bottom .bottom_nei .bottom_nei_left {
	width: 60%
}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun {
	margin-right: 50px;
}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(1) {
	width: 17%
}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(2) {
	width: 17%
}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(3) {
	width: 20%
}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(4) {
	width: 20%
}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(5) {
	width: 24%
}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(5) {
	margin-right: 0px
}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun a {
	width: 100%;
	display: inline-block;
	color: #979797;
	font-size: 13px;
	line-height: 26px;
	background: url(../img/bn112.png) no-repeat 0% 50%;
	text-indent: 15px;
}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun a:nth-child(1) {
	font-size: 16px;
	color: #fff;
	height: 35px;
	line-height: 35px;
	font-weight: 500;
	margin-bottom: 20px;
	background: url(../img/bn111.png) no-repeat 0% 50%
}
.bottom .bottom_nei .bottom_nei_right {
	width: 40%;
}
.bottom .bottom_nei .bottom_nei_right a {
	display: inline-block
}
.bottom .bottom_nei .bottom_nei_right a:nth-child(1) {
	margin-right: 50px;
}
.bottom .bottom_nei .bottom_nei_right a div:nth-child(1) {
	font-size: 25px;
	color: #fff;
	background: url(../img/bn39.png) no-repeat 0% 50%;
	padding-left: 45px
}
.bottom .bottom_nei .bottom_nei_right a div:nth-child(2) {
	font-size: 22px;
	color: #fff;
	border: 1px solid #bfbcbb;
	padding: 15px 90px;
	margin-top: 30px
}
.bottom_di {
	font-size: 13px;
	color: #fff;
	background: #1e1c1b;
	padding: 28px 0px;
	text-align: center
}
.bottom_tiao {
	height: 12px;
	background: #901e29;
	width: 100%
}
.about_nei {
/*margin-top: 80px*/
}
.abot_body {
	margin-top: 89px
}
.abot_body .abot_body_xun {
	text-align: center;
	width: 21%;
	margin-right: 71px;
}
.abot_body .abot_body_xun .body_xun_img.flip {
	-webkit-transform: rotateY(360deg);
	-moz-transform: rotateY(360deg);
	-ms-transform: rotateY(360deg);
	-o-transform: rotateY(360deg);
	transform: rotateY(360deg);
	transition: all 1s ease;
	-webkit-transform: all 1s ease;
}
.abot_body .abot_body_xun:nth-child(4) {
	margin-right: 0px
}
.abot_body .abot_body_xun div:nth-child(1) {
	height: 91px
}
.abot_body .abot_body_xun div:nth-child(2) {
	height: 28px;
	width: 1px;
	background: #c0c0c0;
	margin: 27px auto
}
.abot_body .abot_body_xun div:nth-child(3) {
	color: #000000;
	font-size: 21px;
	padding-bottom: 62px
}
.abot_body .abot_body_xun div:nth-child(4) {
	color: #3e3a39;
	font-size: 18px;
	line-height: 32px
}
.about_si .about_si_nei {
	margin-top: 50px
}
.about_si .about_si_nei img {
	width: 100%;
}
.about_wu .about_wu_nei {
	width: 100%
}
.about_wu .about_wu_nei .about_wu_body {
	background: url(../img/bg14.jpg) no-repeat 50% 50%;
	margin-top: 50px
}
.about_wu .about_wu_nei .about_wu_body .wu_body_left {
	width: 50%;
}
.about_wu .about_wu_nei .about_wu_body .wu_body_left a {
	display: inline-block;
	width: 48%;
	margin-right: -4px;
	overflow: hidden;
	margin-bottom: -3px;
	position: relative;
}
.about_wu .about_wu_nei .about_wu_body .wu_body_left a .body_left_more {
	background: url(../img/bn55.png) no-repeat 50%/cover;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 10;
	top: 0;
	font-size: 24px;
	color: #ffffff;
	text-align: center;
	left: -504px
}
.about_wu .about_wu_nei .about_wu_body .wu_body_left a:hover .body_left_more {
	left: 0px;
}
.about_wu .about_wu_nei .about_wu_body .wu_body_left a .body_left_more, .about_wu .about_wu_nei .about_wu_body .wu_body_left a:hover .body_left_more {
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.about_wu .about_wu_nei .about_wu_body .wu_body_left a img {
	width: 100%
}
.about_wu .about_wu_nei .about_wu_body .wu_body_right {
	width: 46%;
	padding-left: 70px
}
.about_wu .about_wu_nei .about_wu_body .wu_body_right .body_right_nei {
	margin-top: 197px
}
.about_wu .about_wu_nei .about_wu_body .wu_body_right .body_right_nei p:nth-child(1) {
	color: #333333;
	font-size: 30px
}
.about_wu .about_wu_nei .about_wu_body .wu_body_right .body_right_nei p:nth-child(2) {
	color: #666666;
	font-size: 18px;
	padding-top: 12px;
	padding-bottom: 56px
}
.about_wu .about_wu_nei .about_wu_body .wu_body_right .body_right_nei p:nth-child(2) span {
	color: #666666;
	font-size: 18px
}
.about_wu .about_wu_nei .about_wu_body .wu_body_right .body_right_nei p:nth-child(3) {
	color: #333333;
	font-size: 15px;
	line-height: 24px
}
.about_six .about_six_nei {
	width: 100%
}
.about_six .about_six_nei .about_six_body {
	background: url(../img/bg16.jpg) no-repeat 50% 50%;
	margin-top: 50px;
	height: 819px
}
.about_qi .about_qi_nei {
	width: 100%
}
.about_qi .about_qi_nei .about_qi_body {
	margin-top: 20px;
	margin-bottom: 80px
}
.case {
	padding-bottom: 0px
}
.case .case_nei {
	width: 100%;
	margin: 0 auto;
}
.case .case_nei .case_nei_body {
	margin-top: 48px;
}
.case .case_nei .case_nei_body .case_top {
	padding-bottom: 20px;
}
.case .case_nei .case_nei_body .case_top ul {
	text-align: center
}
.case .case_nei .case_nei_body .case_top ul li {
	display: inline-block;
	width: 120px;
	margin: 0 10px;
}
.case .case_nei .case_nei_body .case_top ul li a {
	display: inline-block;
	width: 120px;
	border: 1px solid #ccc;
	border-left: none;
	border-right: none;
	text-align: center;
	line-height: 40px;
}
.case .case_nei .case_nei_body .case_top ul li a:hover {
	border: 0px;
	background: #ea7043;
	cursor: pointer;
	color: #FFFFFF;
	display: inline-block
}
.case .case_nei .case_nei_body .case_top ul li a {
	font-size: 16px;
	color: #4c4c4c;
	line-height: 40px;
}
.case .case_nei .case_nei_body .case_body {
	cursor: pointer
}
.case .case_nei .case_nei_body .case_body .case_body_left {
	width: 50%;
	float: left;
	background: #d9d9d9;
	height: 407px;
	padding-left: 180px;
	padding-top: 90px;
	padding-right: 97px;
}
.case .case_nei .case_nei_body .case_body .case_body_left dl {
	width: 100%;
	padding-bottom: 22px;
	position: relative;
	margin-bottom: 20px;
}
.case .case_nei .case_nei_body .case_body .case_body_left dl:before {
	content: "";
	display: block;
	width: 45px;
	height: 1px;
	background: #aeaeae;
	position: absolute;
	left: 0;
	bottom: 0px;
}
.case .case_nei .case_nei_body .case_body .case_body_left dl a {
	color: #333;
}
.case .case_nei .case_nei_body .case_body .case_body_left dl a dt {
	font-size: 26px;
	color: #333;
	width: 100%;
	height: 34px;
	overflow: hidden;
}
.case .case_nei .case_nei_body .case_body:hover .case_body_left dl a dt {
	color: #ea7043;
}
.case .case_nei .case_nei_body .case_body .case_body_left dl dd {
	font-size: 18px;
	color: #333;
	width: 100%;
	height: 22px;
	overflow: hidden;
}
.case .case_nei .case_nei_body .case_body .case_body_left p {
	font-size: 14px;
	color: #666;
	line-height: 24px;
	margin-bottom: 35px;
	height: 70px;
	overflow: hidden;
}
.case .case_nei .case_nei_body .case_body .case_body_left .read_m {
	display: block;
	padding-left: 23px;
	background: url(../img/img1.png) no-repeat 0 0;
	font-size: 14px;
	color: #9c9c9c;
	font-style: oblique;
}
.case .case_nei .case_nei_body .case_body:hover .case_body_left .read_m {
	color: #ea7043;
	background: url(../img/bn72.png) no-repeat 0 0;
}
.case .case_nei .case_nei_body .case_body .case_body_right {
	width: 50%;
	float: left;
	height: 407px;
	position: relative;
	overflow: hidden;
}
.case .case_nei .case_nei_body .case_body .case_body_right a {
	display: block;
	width: 100%;
	height: 407px;
	text-align: center;
	position: relative;
}
.case .case_nei .case_nei_body .case_body .case_body_right .tra {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	max-width: 100%;
	max-height: 100%;
	display: block;
	vertical-align: middle;
	margin: auto;
}
.case .case_nei .case_nei_body .case_body .case_body_left2 {
	width: 50%;
	float: left;
	height: 407px;
}
.case .case_nei .case_nei_body .case_body .case_body_left2 a {
	display: block;
	width: 100%;
	height: 407px;
	text-align: center;
	position: relative;
}
.case .case_nei .case_nei_body .case_body .case_body_right2 {
	padding-right: 180px;
	padding-left: 97px;
}
.case .case_nei .fenye {
	width: 100%;
	text-align: center;
	margin-top: 50px
}
.case .case_nei .fenye .fenye_nei a {
	display: inline-block;
	padding: 0 13px;
	height: 34px;
	text-align: center;
	line-height: 34px;
	margin: 0 3px;
	border-radius: 5px;
	border: #dddddd solid 1px;
	overflow: hidden;
	font-size: 13px;
	color: #999999;
}
.case .case_nei .fenye .fenye_nei a:hover {
	background: #ea7043;
	border: 1px solid #ea7043;
	color: #FFFFFF
}
.news {
	margin-top: 0px;
	padding-top: 10px
}
.news .news_body ul {
	max-width: 1350px;
	margin: 0 auto;
	padding-top: 50px
}
.news .news_body ul li {
	width: 580px;
	float: left;
	margin-right: 94px;
	margin-bottom: 45px;
}
.news .news_body ul li a dl {
	width: 90px;
	height: 104px;
	float: left;
	text-align: center;
	background: url(../img/bn73.png) no-repeat;
	padding-top: 19px;
}
.news .news_body ul li a dl dt {
	width: 100%;
	text-align: center;
	font-size: 34px;
	color: #666;
	position: relative;
	margin-bottom: 5px;
	padding-bottom: 4px;
}
.news .news_body ul li a dl dd {
	font-size: 14px;
	color: #999;
}
.news .news_body ul li a div {
	width: 490px;
	float: left;
	padding-left: 30px;
}
.news .news_body ul li a div h5 {
	width: 100%;
	height: 25px;
	overflow: hidden;
	margin-bottom: 19px;
	font-size: 20px;
	color: #333;
}
.news .news_body ul li a:hover div h5 {
	color: #ea7043
}
.news .news_body ul li a div p {
	font-size: 14px;
	color: #808080;
	line-height: 24px;
	overflow: hidden;
}
.starproduct {
	margin-top: 85px;
	margin-bottom: 60px
}
.starproduct .starproduct_nei_body {
	padding-top: 50px;
	margin: 0 auto;
}
.starproduct .starproduct_nei_body .starproduct_body_xun {
	display: inline-block;
	width: 450px;
	height: 444px;
	overflow: hidden;
	position: relative;
	text-align: center
}
.starproduct .starproduct_nei_body .starproduct_body_xun div {
	width: 378px;
	height: 468px;
	margin: 0 auto
}
.starproduct .starproduct_nei_body .starproduct_body_xun .nei_body_bottom {
	position: absolute;
	background: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	transition: all 0.5s ease 0s;
	-webkit-transform: all 0.5s ease 0s;
	text-align: center;
	left: 0;
	right: 0;
	top: 0
}
.starproduct .starproduct_nei_body .starproduct_body_xun div p {
	color: #fff
}
.starproduct .starproduct_nei_body .starproduct_body_xun div p:nth-child(1) {
	font-size: 16px;
	padding-top: 147px
}
.starproduct .starproduct_nei_body .starproduct_body_xun div p:nth-child(2) {
	font-size: 22px;
	padding-top: 11px
}
.starproduct .starproduct_nei_body .starproduct_body_xun div p:nth-child(3) {
	font-size: 15px;
	margin-top: 135px;
	display: inline-block;
	background: url(../img/bn28.png) no-repeat 50% 70%;
	width: 100%;
	padding-bottom: 25px
}
.starproduct .starproduct_nei_body .starproduct_body_xun div p:nth-child(4) {
	display: inline-block;
	border: 1px solid #fff;
	border-radius: 100%;
	width: 30px;
	height: 30px;
	font-size: 15px;
	line-height: 28px
}
.starproduct .starproduct_nei_body .starproduct_body_xun:hover div:hover {
	background: linear-gradient(to bottom, rgba(153,30,41,0.93), rgba(230,56,40,0.85));
	transition: all 0.5s ease 0s;
	-webkit-transform: all 0.5s ease 0s;
}
.starproduct_er {
	margin-top: 0px;
}
.starproduct_er .starproduct_er_body {
	padding-top: 50px
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun {
	padding-bottom: 114px;
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title {
	border: 1px solid #DCDCDC;
	border-radius: 5px;
	line-height: 50px;
	display: block !important
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title a:nth-child(1) {
	display: inline-block;
	font-size: 18px;
	font-weight: bolder;
	color: #717071;
	padding: 0px 25px;
	background: url(../img/bn59.png) no-repeat 100% 50%;
	margin-left: 0px;
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title a {
	margin-left: 40px;
	font-size: 14px;
	color: #717071;
	display: inline-block
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title a.color {
	color: #962934
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title a:hover {
	color: #962934
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body {
	margin-top: 13px
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun {
	display: inline-block;
	position: relative;
	text-align: center;
	margin-right: 51px;
	overflow: hidden;
	margin-top: 25px
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_title {
	width: 296px;
	padding-bottom: 50px
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_title img {
	height: 252px;
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun:nth-child(4n) {
	margin-right: 0px
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_wenzi {
	background: url(../img/bn60.png) no-repeat 100% 50%;
	margin: 0px 60px;
	font-size: 15px;
	color: #333333;
	font-weight: bolder;
	position: absolute;
	bottom: 72px;
	left: 0;
	right: 0;
	padding-right: 26px
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_more_er {
	background: url(../img/bn70.png) no-repeat 50% 50%;
	position: absolute;
	top: -31px;
	left: -296px;
	right: 0;
	height: 100%;
	width: 100%;
	text-align: center;
	line-height: 360px;
	color: #fff;
	font-size: 15px;
	font-weight: bolder;
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun:hover .nei_xun_more_er {
	left: 0px;
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun:hover .nei_xun_more_er, .starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_more_er {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(2) {
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(2) img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	filter: scale(1);
	filter: transform;
	transition: all 0.5s ease 0s;
	-webkit-transform: all 0.5s ease 0s;
	cursor: pointer;
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(2) img:hover {
	-webkit-transform: scale(1.10);
	-moz-transform: scale(1.10);
	-ms-transform: scale(1.10);
	-o-transform: scale(1.10);
	filter: scale(1.10);
	filter: transform;
	transition: all 0.5s ease 0s;
	-webkit-transform: all 0.5s ease 0s;
	cursor: pointer;
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_more {
	font-size: 18px;
	color: #1a1a1a;
	border: 1px solid #DCDCDC;
	padding: 10px 0px;
	margin-top: 13px
}
.youshi .youshi_nei {
	width: 100%
}
.youshi .youshi_nei .youshi_nei_title span {
	font-size: 30px;
	color: #1a1a1a;
	font-weight: bolder
}
.youshi .youshi_nei .youshi_nei_body {
	margin-top: 60px;
}
.youshi .youshi_nei .youshi_nei_body .nei_body_left {
	background: url(../img/bg24.jpg) no-repeat 50%/cover;
	font-size: 36px;
	color: #1a1a1a;
	line-height: 45px;
	padding: 242px 220px;
	position: relative;
	height: 572px;
	width: 50%
}
.youshi .youshi_nei .youshi_nei_body .nei_body_left div {
	position: absolute;
	left: -400px
}
.youshi .youshi_nei .youshi_nei_body .nei_body_left p:nth-child(2) {
	text-indent: 2em
}
.youshi .youshi_nei .youshi_nei_body .nei_body_right {
	background: url(../img/bg25.jpg) no-repeat 50% 50%;
	height: 572px;
	width: 50%
}
.youshi_er {
	margin-top: 0px
}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_left {
	background: url(../img/bg26.jpg) no-repeat 50% 50%;
	font-size: 36px;
	color: #fff;
	line-height: 45px;
	width: 50%;
	height: 572px
}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right {
	background: url(../img/bg24.jpg) no-repeat 50%/cover;
	font-size: 36px;
	color: #1a1a1a;
	line-height: 45px;
	width: 50%;
	height: 572px
}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top {
	margin-left: 90px;
	padding-top: 50px;
	width: 584px
}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei {
	text-align: center;
	font-size: 16px;
	color: #808080;
	margin-right: 135px;
	width: 104px
}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei div:nth-child(1) {
	width: 104px;
	height: 105px;
	background: url(../img/bn61.png) no-repeat 50% 50%
}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei div:nth-child(1):hover {
	width: 104px;
	height: 105px;
	background: url(../img/bn61_on.png) no-repeat 50% 50%
}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei:nth-child(2) div:nth-child(1) {
	width: 104px;
	height: 105px;
	background: url(../img/bn62.png) no-repeat 50% 50%
}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei:nth-child(2) div:nth-child(1):hover {
	width: 104px;
	height: 105px;
	background: url(../img/bn62_on.png) no-repeat 50% 50%
}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei:nth-child(3) div:nth-child(1) {
	width: 104px;
	height: 105px;
	background: url(../img/bn63.png) no-repeat 50% 50%
}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei:nth-child(3) div:nth-child(1):hover {
	width: 104px;
	height: 105px;
	background: url(../img/bn63_on.png) no-repeat 50% 50%
}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei:nth-child(3) {
	margin-right: 0px
}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei div:nth-child(3) {
	padding-bottom: 30px
}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .body_right_nei2 {
	padding-left: 76px;
	padding-bottom: 35px
}
.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_left {
	background: url(../img/bg28.jpg) no-repeat 50%/cover;
	font-size: 36px;
	color: #1a1a1a;
	line-height: 45px;
	width: 35%;
	height: 572px
}
.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_right {
	background: url(../img/bg27.jpg) no-repeat 50% 50%;
	font-size: 36px;
	color: #fff;
	line-height: 45px;
	width: 65%;
	height: 572px;
	overflow: scroll
}
.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_right .body_right_yi div {
	font-size: 16px;
	color: #000000;
	line-height: 24px
}
.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_right .body_right_yi {
	margin-top: 138px;
}
.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_right .body_right_yi div div:nth-child(2) {
	padding-top: 25px
}
.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_right .body_right_yi div p:nth-child(3) {
	border-bottom: 3px solid #c1272d;
	font-size: 12px;
	width: 246px;
	padding-top: 25px
}
.youshi_si {
	margin-bottom: 0px
}
.youshi_si .youshi_nei .youshi_si_nei_body .nei_body_left {
	background: url(../img/bg30.jpg) no-repeat 50%/cover;
	font-size: 36px;
	color: #1a1a1a;
	line-height: 45px;
	width: 50%;
	height: 572px
}
.youshi_si .youshi_nei .youshi_si_nei_body .nei_body_right {
	background: url(../img/bg29.jpg) no-repeat 0% 50%;
	font-size: 36px;
	color: #fff;
	line-height: 45px;
	width: 50%;
	height: 572px;
	overflow: inherit
}
.product1 {
	width: 100%
}
.product1 .product1_nei {
	max-width: 1350px;
	margin: 0 auto;
	overflow: hidden
}
.product1 .product1_nei .product1_nei_top {
	margin-top: 164px;
	padding-bottom: 164px;
	position: relative;
	min-height: 600px
}
.product1 .product1_nei .product1_nei_top .nei_top_left {
	width: 38%
}
.product1 .product1_nei .product1_nei_top .nei_top_left dl {
	border-bottom: 1px solid #c1272d
}
.product1 .product1_nei .product1_nei_top .nei_top_left dl dd {
	color: #b3b3b3;
	font-size: 16px
}
.product1 .product1_nei .product1_nei_top .nei_top_left dl dt {
	color: #1a1a1a;
	font-size: 40px;
	padding: 13px 0px
}
.product1 .product1_nei .product1_nei_top .nei_top_left .top_left_font {
	font-size: 20px;
	color: #333333;
	line-height: 36px;
	padding-top: 35px;
}
.product1 .product1_nei .product1_nei_top .nei_top_left .top_left_font p {
	text-indent: 2em;
}
.product1 .product1_nei .product1_nei_top .nei_top_right {
	text-align: center;
	width: 50%;
	padding-top: 0px;
	position: absolute;
	right: 0px;
	top: 10px
}
.product1 .product1_nei .product1_nei_top .nei_top_right .picScroll-left {
	position: relative;
	padding-left: 125px;
	width: 100%
}
.product1 .product1_nei .product1_nei_top .nei_top_right .picScroll-left .hd .prev {
	background: url(../img/bn80.png) no-repeat 50% 50%;
	width: 21px;
	height: 27px;
	display: inline-block;
	cursor: pointer;
	position: absolute;
	left: 0px;
	top: 50%
}
.product1 .product1_nei .product1_nei_top .nei_top_right .picScroll-left .hd .next {
	background: url(../img/bn81.png) no-repeat 50% 50%;
	width: 21px;
	height: 27px;
	display: inline-block;
	cursor: pointer;
	position: absolute;
	right: 0px;
	top: 50%
}
.product1 .product1_nei .product1_nei_top .nei_top_right .picScroll-left .bd {
	width: 436px;
	padding-top: 50px;
}
.product1 .product1_nei .product1_nei_top .nei_top_right .picScroll-left .bd .picList li {
}
.product1 .product1_nei .product1_nei_center {
	border-bottom: 1px dashed #999999;
	padding-bottom: 164px;
}
.product1 .product1_nei .product1_nei_center .nei_center_title {
	background: url(../img/bn82.png) no-repeat 50% 60%;
	color: #1a1a1a;
	font-size: 50px;
	padding: 80px 0px;
	text-align: center
}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei .title {
	position: relative;
}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei div .title:nth-child(2) {
	padding-top: 5px
}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei .title dd {
	overflow: hidden
}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei .title dd:nth-child(2) {
	background: rgba(51, 51, 51, 0.85);
	;
	font-size: 18px;
	color: #FFFFFF;
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	bottom: 0px;
	line-height: 38px
}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei:nth-child(2) {
	padding-top: 5px
}
.product1 .product1_nei .product1_nei_bottom {
	padding-bottom: 70px
}
.product1 .product1_nei .product1_nei_bottom .nei_center_title {
	background: url(../img/bn83.png) no-repeat 50% 60%;
	color: #1a1a1a;
	font-size: 50px;
	padding: 62px 0px;
	text-align: center
}
.product1 .product1_neitwo {
	max-width: 1350px;
	margin: 0 auto;
	padding-top: 70px
}
.product1 .product1_neitwo .product1_neitwo_title {
	font-size: 48px;
	color: #c1272d;
	font-weight: bolder
}
.product1 .product1_neitwo .product1_neitwo_body {
	padding-top: 36px
}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun {
	display: inline-block;
	margin-bottom: 36px;
	border-bottom: 1px dashed #9e2934;
	width: 100%
}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun:nth-child(6) {
	border: 0px;
	padding-bottom: 48px
}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun p:nth-child(1) {
	color: #000000;
	font-size: 24px;
	font-weight: bolder;
	padding-bottom: 25px
}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun p:nth-child(2) {
	color: #666;
	font-size: 24px;
	padding-bottom: 36px;
	line-height: 60px
}
.product2 .product2_nei_top {
}
.product2 .product2_nei_top .nei_top_left {
	width: 45% !important
}
.product2 .product2_nei_top .nei_top_left dl dd {
	line-height: 79px
}
.product2 .top_left_font p:nth-child(3) {
	text-indent: inherit
}
.product2 .product2_body .product2_body_xun {
	width: 100%
}
.product2 .product2_body .product2_body_xun .product2_body_title {
	color: #808080;
	font-size: 24px;
	padding-left: 57px;
	margin-top: 70px;
	background: url(../img/bn86.png) no-repeat 0% 50%;
	padding-top: 20px;
	padding-bottom: 20px
}
.product2 .product2_body .product2_body_xun .product2_body_bottom {
	font-size: 21px;
	color: #333333;
	line-height: 36px
}
.product2 .product2_body .product2_body_xun .product2_body_bottom p {
	text-indent: 2em
}
.product2 .product2_body .product2_body_xun .product2_body_bottom p img {
	width: 100%;
}
.product2 .product2_body .product2_body_xun .product2_body_bottom img {
	width: 100%
}
.product1 .product1_nei .product4_nei_center {
	border-bottom: 1px dashed #999999;
	padding-bottom: 60px;
}
.product1 .product1_nei .product4_nei_center .nei_center_title {
	background: url(../img/bn96.png) no-repeat 50% 60%;
	color: #1a1a1a;
	font-size: 50px;
	padding: 116px 0px;
	text-align: center
}
.product1 .product1_nei .product4_nei_top {
	margin-top: 269px;
	border-bottom: 0px dashed #000;
	padding-bottom: 164px;
	position: relative
}
.product1 .product1_nei .daohangnei {
	border-bottom: 1px solid #b8272d;
	background: #fff;
	width: 1350px
}
.product1 .product1_nei .daohangnei.daohangnei_on {
	position: fixed;
	top: 0;
	z-index: 98
}
.product1 .product1_nei .daohangnei ul li {
	display: inline-block;
	padding: 10px 18px;
	font-size: 16px;
	color: #1a1a1a;
	margin-right: 25px;
	cursor: pointer
}
.product1 .product1_nei .daohangnei ul li.on {
	background: #b8272d;
	color: #FFFFFF
}
.product1 .product1_nei .daohangnei ul li:hover {
	background: #b8272d;
	color: #FFFFFF
}
.product1 .product1_nei .product4_nei_center_er .nei_center_body {
	padding-top: 50px
}
.product4_nei_center_er .product2_body_xun {
	width: 100%
}
.product4_nei_center_er .product2_body_xun .product2_body_title {
	color: #808080;
	font-size: 24px;
	padding-left: 57px;
	margin-top: 70px;
	background: url(../img/bn86.png) no-repeat 0% 50%;
	padding-top: 20px;
	padding-bottom: 20px
}
.product4_nei_center_er .product2_body_xun .product2_body_bottom {
	padding-top: 100px
}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg {
	background: #8c8c8c;
	text-align: center;
	width: 100%;
}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr td {
	background: #fff;
	line-height: 50px;
	width: 40%;
	font-size: 15px;
	color: #666666
}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr td:nth-child(1) {
	width: 20%
}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(1) td {
	background: #a71d26;
	font-size: 18px;
	color: #fff;
	font-weight: bolder;
	border-right: 1px solid #FFFFFF
}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(1) td:nth-child(3) {
	border: 0px
}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(2) td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(3) td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(4) td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(5) td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(6) td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(7) td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(9) td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(8) td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(10) td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(11) td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(12) td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(13) td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(14) td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(15) td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(16) td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(17) td:nth-child(1) {
	background: #e6e6e6;
	font-size: 16px;
	color: #1a1a1a
}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(2):hover td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(3):hover td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(4):hover td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(5):hover td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(6):hover td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(7):hover td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(8):hover td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(9):hover td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(10):hover td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(11):hover td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(12):hover td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(13):hover td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(14):hover td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(15):hover td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(16):hover td:nth-child(1), .product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(17):hover td:nth-child(1) {
	background: #a81d26;
	color: #FFFFFF
}
.contact {
	margin-top: 37px !important;
	padding: 0px !important
}
.contact .contact_body {
	padding: 50px 0px;
	max-width: 1350px;
	margin: 0 auto
}
.num {
	width: 280px;
	height: 287px;
	border: 2px solid #ccc;
	float: left;
	position: relative;
	text-align: center;
	background: #efefef;
	margin-right: 76px;
	text-align: center;
}
.contact .contact_body .num:nth-child(4) {
	margin-right: 0px
}
.contact .contact_body .num dl {
	padding-top: 50px;
	padding-bottom: 35px
}
.contact .contact_body .num dl dd {
	padding-bottom: 30px
}
.contact .contact_body .num dl dt {
	color: #4d4d4d;
	font-size: 16px
}
.contact .contact_body .num .dl2 {
	padding: 0px
}
.contact .contact_body .num .dl2 p {
	color: #666666;
	font-size: 16px;
	height: 28px;
	line-height: 28px;
}
.contact .map {
	margin-bottom: 40px
}
.honor {
	margin-top: 130px
}
.honor .nei_center_body {
	margin-top: 50px
}
.honor .nei_center_body .honor_body_xun {
	display: inline-block;
	background: url(../img/honor13.png) no-repeat 50% 80%;
	width: 23%;
	margin-bottom: 50px;
	text-align: center;
	margin-right: 36px;
}
.honor .nei_center_body .honor_body_xun:nth-child(4n) {
	margin-right: 0px
}
.honor .nei_center_body .honor_body_xun dt {
	text-align: center;
	padding-top: 75px
}
.honor .nei_center_body .honor_body_xun dt p:nth-child(1) {
	font-size: 50px;
	color: #808080
}
.honor .nei_center_body .honor_body_xun dt p:nth-child(2) {
	font-size: 25px;
	color: #333333
}
.honor .nei_center_body .honor_body_xun dt p:nth-child(3) {
	font-size: 25px;
	color: #808080
}
.product5 {
	width: 100%;
	padding-bottom: 200px !important;
	position: relative
}
.product5 .product5_nei_title {
	border-bottom: 1px solid #FF0004;
	width: 660px
}
.product5 .product5_nei_title dl {
	line-height: 62px
}
.product5 .product5_nei_title dl dd {
	font-size: 39px;
	color: #1a1a1a
}
.product5 .product5_nei_title dl dt {
	font-size: 16px;
	color: #b3b3b3
}
.product5 .nei_top_right {
	padding-top: 0px !important
}
.product5 .product5_nei_body .nei_body_top ul li {
	display: inline-block;
	background: url(../img/bn99.png) no-repeat 50% 50%;
	width: 328px;
	height: 53px;
	cursor: pointer;
	margin-top: 25px;
	padding: 5px 20px;
	color: #999;
	font-size: 18px;
}
.product5 .product5_nei_body .nei_body_top ul li a {
	color: #999;
	font-size: 18px;
}
.product5 .product5_nei_body .nei_body_top ul li p:nth-child(2) {
	font-size: 18px;
	font-weight: bolder
}
.product5 .product5_nei_body .nei_body_top ul li:hover {
	background: url(../img/bn100.png) no-repeat 50% 50%;
	color: #c1272d !important
}
.product5 .product5_nei_body .nei_body_top ul li.bg {
	background: url(../img/bn100.png) no-repeat 50% 50%;
	color: #c1272d !important
}
.product5 .product5_nei_wen {
	width: 40%
}
.product5 .product5_nei_wen .nei_wen_xun {
	margin-top: 30px
}
.product5 .product5_nei_wen .nei_wen_xun dl dd {
	font-size: 30px;
	font-weight: 700;
	color: #000;
	margin-bottom: 10px;
}
.product5 .product5_nei_wen .nei_wen_xun dl dt {
	font-size: 16px;
	color: #333;
	margin-bottom: 30px;
	line-height: 24px
}
.product5 .product5_nei_wen .nei_wen_xun a {
	display: block;
	width: 150px;
	color: #fff;
	font-size: 24px;
	text-align: center;
	background: #ccc;
	padding: 8px 0;
	transition: all 0.2s linear 0s;
	-webkit-transition: all 0.2s linear 0s;
	height: 47px;
	overflow: hidden
}
/*.product5 .product5_nei_wen .nei_wen_xun a:hover{ color:#000; background:#ccc;transition: all 0.2s linear 0s;-webkit-transition: all 0.2s linear 0s;}
*/





.icon {
	width: 100%;
	height: 40px;
	background: url(../img/icon1.png) no-repeat 50% 50%;
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun:nth-child(2) .icon {
	background: url(../img/icon2.png) no-repeat 50% 50%;
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun:nth-child(3) .icon {
	background: url(../img/icon3.png) no-repeat 50% 50%;
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun:nth-child(4) .icon {
	background: url(../img/icon5.png) no-repeat 50% 50%;
}
.hua {
	position: absolute;
	left: -150px;
	width: 150px;
	height: 47px;
	top: 0;
	background: #000;
	z-index: 83
}
.product5_nei_wen .nei_wen_xun a dd {
	position: absolute;
	width: 150px;
	height: 47px;
	display: inline-block;
	text-align: center;
	line-height: 47px;
	z-index: 82;
	left: 0;
	top: 0;
	background: #901e28;
}
.product5_nei_wen .nei_wen_xun a {
	position: relative
}
.product5_nei_wen .nei_wen_xun a span {
	position: absolute;
	width: 150px;
	height: 47px;
	left: 0px;
	top: 0;
	z-index: 852;
	line-height: 47px
}
.si_body_xun img, .product1 img {
	width: 100%
}
.about_qi_body img {
	width: 100%
}
.plus1, .plus2 {
	width: 440px !important;
}
 @media screen and (max-width:1440px) {
#wrap {
	display: none;
}
.mo_top {
	display: block;
}
.disable_text_highlighting, body {
	/*去除选中高亮*/
	-webkit-touch-callout: none;
	-webkit-user-select: none;    /* Webkit */
	-moz-user-select: none;      /* Firefox */
	-ms-user-select: none;        /* IE 10  */
	/* Opera 目前不支持在Opera，但将很快 */
	-o-user-select: none;
	user-select: none;
}
.index_body_er .body_er_nei .er_nei_right {
	margin-left: 0px
}
.product1 .product1_nei .product1_nei_top .nei_top_right {
	padding-top: 0px;
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title a {
	margin-left: 23px;
}
.index_body_ba .body_ba_nei a p:nth-child(1) {
	font-size: 18px;
}
.top2 .top2_nei, .index_body_er .body_er_nei, .index_body_er .index_body_si, .index_body_san .index_body_san_nei, .index_body_qi .body_qi_nei, .index_body_ba .body_ba_nei, .index_body_six .body_six_nei, .product1 .product1_nei, .contact .contact_body, .news .news_body ul, .container, .product1_nei, .product1 .product1_neitwo {
	max-width: 1200px
}
.top2 .top2_daohang {
	padding-left: 196px
}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun {
	width: 282px
}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei {
	width: 570px
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_yi {
	width: 149px
}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_right {
	width: 645px
}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun {
	width: 298px
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun {
	margin-right: 1px
}
.abot_body .abot_body_xun {
	margin-right: 64px
}
.honor .nei_center_body .honor_body_xun {
	width: 395px;
	margin-right: 0px
}
.honor .nei_center_body .honor_body_xun dd {
	width: 265px;
	height: 353px;
	margin: 0 auto
}
#scroll {
	max-width: 1200px !important
}
#scroll .item {
	width: 228px !important
}
.num {
	margin-right: 26px
}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_right {
	left: 558px;
	top: -17px
}
.index_body_san .index_body_san_nei .er_nei_body {
	height: 100% !important
}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun {
	width: 241px
}
.products-boss {
	width: 1200px !important
}
.news .news_body ul li {
	margin-right: 20px
}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left {
	height: 337px;
	line-height: 30px;
	font-size: 16px;
	overflow: scroll
}
.index_body_ba .body_ba_nei a {
	margin-right: 20px;
	width: 285px;
}
.bottom .bottom_nei {
	width: 1200px
}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(1) {
	width: 13%
}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(2) {
	width: 13%
}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(3) {
	width: 25%
}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(4) {
	width: 35%
}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(5) {
	width: 27%
}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun {
	margin-right: 25px;
}
.starproduct .starproduct_nei_body .starproduct_body_xun {
	width: 400px;
}
.center_body_yi_nei {
	width: 1200px
}
.center_body_yi .center_body_yi_nei:nth-child(1) dl:nth-child(1) {
	width: 775px
}
.center_body_yi .center_body_yi_nei:nth-child(1) div {
	width: 415px;
	overflow: hidden
}
.center_body_yi .center_body_yi_nei:nth-child(1) div dl {
	height: 164px !important;
	width: 415px !important;
	overflow: hidden
}
.center_body_yi .center_body_yi_nei:nth-child(1) div dl:nth-child(2) {
	margin-top: 4px
}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei div .title:nth-child(2) {
	margin-top: 9px;
}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei:nth-child(2) div {
	width: 49%
}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei:nth-child(2) div:nth-child(2) dl {
	height: 241px !important;
	overflow: hidden
}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .body_right_nei2 {
	padding-left: 20px;
	overflow: hidden;
}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .body_right_nei2 img {
	width: 100%
}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top {
	margin-left: 35px
}
.product1 .product1_neitwo .product1_neitwo_title {
	font-size: 30px
}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun p:nth-child(1) {
	font-size: 22px
}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun p:nth-child(2) {
	font-size: 18px;
	line-height: 28px;
	padding-bottom: 15px
}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left span {
	font-size: 16px
}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left a {
	font-size: 16px
}
.product5 {
	padding-bottom: 180px
}
#scroll .item {
	background: url(../img/bn121.png) no-repeat 50% 75% !important;
	height: 490px;
}
.contact {
	margin-top: 25px !important;
	padding: 0px !important
}
.about_qi_body img {
	width: 100%
}
#scroll .item .item_body {
	margin-top: 100px !important
}
.product1 img {
	width: 100%
}
.plus1, .plus2 {
	width: 390px !important;
}
}
@media screen and (max-width:768px) {
}
 @media screen and (max-width:414px) {
}
@media screen and (max-width:375px) {
}
@media screen and (max-width:320px) {
}
