@charset "utf-8";

/*------------------------------------------------------------
	格式设置
------------------------------------------------------------*/
/* 文本位置 */
.taLeft {
	text-align: left !important;
}

.taCenter {
	text-align: center !important;
}

.taRight {
	text-align: right !important;
}

/* 字体大小（加） */
.fsP1 {
	font-size: 1.08em !important;
}
3836.fsP2 {
	font-size: 1.16em !important;
}

.fsP3 {
	font-size: 1.24em !important;
}

.fsP4 {
	font-size: 1.32em !important;
}

.fsP5 {
	font-size: 1.4em !important;
}

/*字体大小（减） */
.fsM1 {
	font-size: 0.92em !important;
}

.fsM2 {
	font-size: 0.84em !important;
}

.fsM3 {
	font-size: 0.76em !important;
}

.fsM4 {
	font-size: 0.68em !important;
}

.fsM5 {
	font-size: 0.6em !important;
}

/* 字体粗细 */
.fwNormal {
	font-weight: normal !important;
}

.fwBold {
	font-weight: bold !important;
}

.cl {
	clear: both;
}


.fl {
	float: left;
}


.fr {
	float: right;
}

	

/*------------------------------------------------------------
	微调
------------------------------------------------------------*/
.mt0 {
	margin-top: 0 !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

/*------------------------------------------------------------
	clearfix
------------------------------------------------------------*/
.clearfix:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

a.tapCtrl,
input.tapCtrl,
.tapCtrl a,
.tapCtrl input {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.fl {
	float: left;
}

.fr {
	float: right
}

.tcenter {
	text-align: center;
}

.tleft {
	text-align: left;
}

/*------------------------------------------------------------
	Default style
------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 18px;
}

body,
table,
input,
textarea,
select,
option {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.08em;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
	display: block;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

img {
	vertical-align: top;
}

a,
a:link {
	color: #363636;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:visited {
	color: #363636;
}

a:hover {
	color: #363636;
}

a:active {
	color: #363636;
}

img {
	max-width: 100%;
	height: auto;
}

input:-webkit-autofill {
	/* -webkit-text-fill-color: #ededed !important;
 -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
 background-color:transparent;
 background-image: none;
 transition: background-color 50000s ease-in-out 0s;*/
}

/*------------------------------------------------------------
	布局
------------------------------------------------------------*/
body {
	background: #fff;
	width: 100%;
	height: 100%;
	max-width: 1920px;
	margin: 0 auto;
	overflow-x: hidden;
}

.container {
	width: 95%;
	margin: 0 auto;
	/* overflow: hidden; */
	font-family: Arial, Helvetica, sans-serif;
}

.header {
	padding: 20px 2.5%;
	overflow: hidden;
	border-bottom:7px solid #188ddc;
}

.logo {
	width: 18%;
	float: left;
}

.logo img {
	width: 100%;
}

ul.nav {
	display: inline-flex;
	flex: 1;
	padding-left: 10px;
	margin-bottom: 0 !important;
	width: 50%;
	float: left;
}

li.nav-item {
	flex: 1;
}

li.nav-item>a {
	display: block;
	text-align: center;
	line-height: 100px;
	font-size: 1.1rem;
	position: relative;
}

li.nav-item>a::before {
	display: none;
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	border-width: 0 10px 10px;
	border-style: solid;
	border-color: transparent transparent #119f0f;
	position: absolute;
}

li.nav-item:hover>a,
li.nav-item.active>a {
	color: #119f0f;
}

/* 二级菜单 */
.subMenu {
	display: none;
	position: absolute;
	top: 120px;
	left: 0;
	width: 100%;
	height: 215px;
	background-color: #229bec;
	z-index: 999;
}

.subMenu>ul {
	padding-top: 30px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: top;
}

.subMenu>ul>li {
	width: 15%;
	float: left;
}

.subMenu>ul>li>a {
	display: block;
	padding: 0 18px;
	text-align: left;
	color: #fff;
	line-height: 50px;
}

.subMenu>ul>li>a:hover {
	color: red
}

/* 三级菜单 */

.subMenu>ul>ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	float: left;
}

.subMenu>ul>li>ul>li {}

.subMenu>ul>li>ul>li>a {
	display: block;
	padding: 0 18px;
	text-align: left;
	color: #fff;
	font-size: 13px;
	line-height: 1.5;
	display: inline-block
}

.subMenu>ul>li>ul>li>a:hover {
	color: #F00;
}

.s_earch {
	width: 29%;
	float: right;
	padding-top: 2%;
	color:#0483d7;
	font-weight: bold;
}


.s_earch  p {
	font-size:1.5rem;
}



/*banner开始*/
.banner {
	margin-bottom: 50px;
}

video {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.banner_soglin {
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 8%;
}

.mainBox .banner_soglin p {
	margin: 0 auto;
	font-size: 5rem;
	text-align: center;
	color: #d80a0a;
	-webkit-text-stroke: 3px #fff;
	font-family: TimesNewRomanPS-BoldMT !important;
	src: url(font/timesbd.ttf) !important;
	width: 100%;
	font-weight: bold;
	letter-spacing: 5px;
}

/*资质证书开始*/


.zz_menu {
	margin-bottom: 50px;
}

.zz_menu ul li {
	float: left;
	width: 12.5%;
}

.zz_menu ul li IMG {
	width: 100%;
	height: 100%;
}

.zz_menu ul li.pt2 {
	padding: 3.5% 0 0 0;
}

.zz_menu ul li.pt2 {
	padding: 3.5% 0 0 0;
}

/*优势开始*/

.ys_bg {
	background: url(../images/ys_bg.png) no-repeat center;
	width: 100%;
	background-size: 100% 100%;
	overflow: hidden;
	padding: 8% 0 6% 0;
}

.nt_title {
	font-size: 65px;
	font-weight: bold;
	font-family: TimesNewRomanPS-BoldMT !important;
	src: url(font/timesbd.ttf) !important;
	text-align: center;
	margin-bottom: 40px;
}

.write {
	color: #fff;
}

.ys_content {}

.ys_content li {
	float: left;
	margin: 0 1.5%;
	width: 22%;
}

.menu_bg01 {
	background: url(../images/ysmenu_bg.png) no-repeat center top;
	background-size: 100% auto;
}

.ys_content li .bgBox {
	padding: 25% 2%;
	background: url(../images/ysmenu_bg3.png) no-repeat center top;
	background-size: contain;
}

.ys_content .menu_bg01 .bgBox {
	margin-bottom: 5%;
}

.ys_content li:last-child .bgBox {
	padding: 28% 10% 22%;
}

.mainBox .menu_img {
	margin-bottom: 6%;
}

.menu_title {
	font-weight: bold;
	/* margin-bottom: 8%; */
}

.hui_bg {
	background-color: #f3f3f3;
	width: 100%;
	margin: 0 auto;
	padding: 5% 0 0 0;
	/* overflow: hidden; */
}

.green {
	color: #229bec;
}

/* .why_menu {
	overflow: hidden;
} */

.why_menu li {
	float: left;
	width: 20%;
	position: relative;
	text-align: center;
}

.why_menu li:after {
	width: 1px;
	height: 200px;
	position: absolute;
	right: 0;
	top: 0;
	border-right: 1px solid #229bec;
	content: "";
}

.why_menu li:last-child:after {
	border: none;
}

.hui_bottom {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

.dropdown {
	width: 100%;
	position: relative;
	height: 220px;
}

.dropdown span {
	text-align: center;
	margin: 0 auto;
	font-size: 26px;
}

.dropdown span span {
	margin: 15px 0;
	display: block;
}

.mainBox .dropdown-content {
	display: none;
	position: absolute;
	background-color: #229bec;
	width: 100%;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	padding: 12px 16px;
	z-index: 10;
	text-align: left;
	margin: 0 auto;
	color: #fff !important;
	box-sizing: border-box;
}

.mainBox .dropdown-content p {
	color: #FFF;
	font-size: 18px;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dr_title {
	text-align: center;
	display: block;
}

.dr_title img {}

.bodernone {
	border-right: none !important;
}

/*产品推荐*/


.lei_more {
	position: absolute;
	right: 0%;
	bottom: 0;
	width: 150px;
	height: 50px;
	border-radius: 5px;
	background-color: #229bec;
}

.lei_more a {
	color: #fff;
	text-align: center;
	font-size: 24px;
	display: block;
	line-height: 50px;
}

.tuijian_box {
	margin: 0 8.5% 2%;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.pro_photo {
	border: 1px solid #b9b9b9;
	width: auto;
	margin-bottom: 20px;
	max-width: 280PX;
}

.cp_title {
	font-size: 1rem !important;
	margin-bottom: 20px;
	text-align: center;
}

.control-box {
	width: 100% height: auto;
	margin-left: auto;
}

.control-box ul {
	list-style: none;
	position: relative;
}

.control-box ul li {
	position: absolute;
	top: 50px;
	cursor: pointer;
}

.prev {
	left: 0;
}

.next {
	right: 0;
}

.bigbox {
	overflow: hidden;
	width: 86%;
	margin: auto 70px auto;
	height: 400px;
	padding-left: 2%;
}

#switcher {
	height: 190px;
	left: 0px;
}

.content_1.content_2 {
	width: 100%;
	float: left;
}

.box {
	transition: all .7s ease 0s;
	width: 16%;
	float: left;
}

.viewnow {
	width: 180px;
	height: 45px;
	background-color: #e2e2e2;
	margin: 0 auto;
}

.viewnow a {
	display: block;
	line-height: 2.5;
	text-align: center;
}

/*手机端产品展示*/

.m_products {
	padding-bottom: 2%;
	margin-bottom: 5%;
}

.m_products li {
	float: left;
	width: 45%;
	padding-right: 5%;
}

.m_pr_photo {
	border: 1px solid #b9b9b9;
}

.m_pr_title {
	font-size: 15px;
	text-align: center;
}

.m_pr_now {
	text-align: center;
}

.m_pr_now a {
	font-size: 14px;
	color: #70b749 !important;
}

/*footer开始*/


.fooer_bg {
	background: url(../images/fooet_bg.jpg) no-repeat center top;
	width: 100%;
	overflow: hidden;
	background-size: cover;
	padding: 3% 0;
	color: #fff;
}

.f_title {
	margin-bottom: 2%;
}

.f_content p {
	line-height: 2;
}

.f_menu {
	width: 30%;
	float: left;
	padding-right: 3.3%;
}

.faddress {
	display: inline-block;
}

.prod_menu {
	padding-left: 18%;
}

.prod_menu li {
	margin-bottom: 3%;
}

.prod_menu li a {
	color: #fff;
}

.shemei {
	padding-left: 16%;
	margin-bottom: 5%;
}

.shemei li {
	float: left;
	width: 25%;
}

.f_clink {
	width: 80%;
	margin: 12% auto 0;
	padding-left: 10%;
}

.f_bttom {
	background-color: #363636;
	width: 100%;
	overflow: hidden;
	padding: 2% 0;
	color: #fff;
}

.f_bttom span {
	width: 50%;
}

.tlr {
	text-align: right;
	padding-right: 5%;
}

.mainBox .menu_text p {
	color: #fff;
	line-height: 45px;
}

.mainBox .menu_title {
	font-weight: bold;
	/* margin-bottom: 33%; */
	font-size: 32px;
	line-height: 35px;
}

.mainBox .menu_title1 {
	margin-bottom: 5%;
}

.mainBox .menu_text3 {
	margin-bottom: 13%;
	padding-top: 35%;
}

/*footer结束*/

/*------------------------------------------------------------
	gHeader
------------------------------------------------------------*/
@media (min-width: 1200px) {
	/*banner开始*/

	video {
		width: 100%;
		overflow: hidden;
		position: relative;
	}

	.banner_soglin {
		position: absolute;
		z-index: 10;
		top: 50%;
		left: 13%;
	}

	.banner_soglin p {
		margin: 0 auto;
		font-size: 5rem;
		text-align: center;
		color: #d80a0a;
		-webkit-text-stroke: 3px #fff;
		font-family: timesbd !important;
		src: url(font/timesbd.ttf) !important;
		width: 100%;
		font-weight: bold;
		letter-spacing: 5px;
	}

	/*banner结束*/

	/*优势开始*/


	.nt_title {
		font-size: 3rem;
		font-weight: bold;
		font-family: TimesNewRomanPS-BoldMT !important;
		src: url(font/timesbd.ttf) !important;
		text-align: center;
		margin-bottom: 5%;
	}

	.nt_title3 {
		margin-bottom: 1% !important;
	}

	/*优势开始*/


	.ys_content li {
		float: left;
		width: 22%;
		margin-right: 20%；
	}

	.ys_content .menu_bg01 .bgBox {
		margin-bottom: 0;
	}

	.menu_text {
		margin: 0 auto 3% !important;
		padding: 0 20%;
	}

	.menu_text:last-child {
		margin-bottom: 0 !important;
	}

	.menu_bg02 {
		background: url(../images/ysmenu_bg2.png) no-repeat center bottom;
		background-size: 100% auto;
		/* padding: 0 0 5%; */
	}
}

/* 平板电脑和小屏电脑之间的分辨率 */
@media (min-width: 768px) and (max-width: 979px) {
	.logo {
		width: 18%;
		float: left;
		padding-top: 5%;
	}

	.logo img {
		width: 100%;
	}

	.nav {
		width: 70%;
		float: right;
	}

	ul.nav {
		display: inline-flex;
		flex: 1;
		padding-left: 10px;
	}

	li.nav-item {
		flex: 1;
	}

	li.nav-item>a {
		display: block;
		text-align: center;
		line-height: 100px;
		font-size: 1rem;
		position: relative;
	}

	li.nav-item>a::before {
		display: none;
		content: '';
		position: absolute;
		left: 50%;
		bottom: 0;
		transform: translateX(-50%);
		border-width: 0 10px 10px;
		border-style: solid;
		border-color: transparent transparent #119f0f;
		position: absolute;
	}

	li.nav-item:hover>a,
	li.nav-item.active>a {
		color: #119f0f;
	}

	/* 二级菜单 */
	.subMenu {
		display: none;
		position: absolute;
		top: 120px;
		left: 0;
		width: 100%;
		height: 215px;
		background-color: #229bec;
		z-index: 999;
	}

	.subMenu>ul {
		padding: 15px;
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: center;
		align-items: top;
	}

	.subMenu>ul>li {
		float: left;
	}

	.subMenu>ul>li:first-child {
		width: 15.66%;
	}

	.subMenu>ul>li:nth-child(2) {
		width: 21.66%;
	}

	.subMenu>ul>li:nth-child(3) {
		width: 16.66%;
	}

	.subMenu>ul>li:nth-child(4) {
		width: 18.66%;
	}

	.subMenu>ul>li:nth-child(5) {
		width: 15.66%;
	}

	.subMenu>ul>li:last-child {
		width: 11%;
	}

	.subMenu>ul>li>a {
		display: block;
		padding: 0;
		text-align: left;
		color: #fff;
		line-height: 30px;
	}

	.subMenu>ul>li>a:hover {
		color: red
	}

	.s_earch {
		display: none;
	}

	/* 三级菜单

	.subMenu>ul>ul {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		float: left;
	}

	.subMenu>ul>li>ul>li {}

	.subMenu>ul>li>ul>li>a {
		display: block;
		padding: 0 18px;
		text-align: left;
		color: #fff;
		font-size: 13px;
		line-height: 1.5;
		display: inline-block
	}

	.subMenu>ul>li>ul>li>a:hover {
		color: #F00;
	}

	.s_earch {
		display: none !important;
	}

	/*banner开始*/
	
	
	
	.banner1 {
		width: 100%;
		margin:0 auto;
	}
	
		.banner img {
			width:100%;
		}
	video {
		width: 100%;
		overflow: hidden;
		position: relative;
	}

	.banner_soglin {
		position: absolute;
		z-index: 10;
		top: 80%;
		left: 8%;
	}

	.banner_soglin p {
		margin: 0 auto;
		font-size: 3.5rem;
		text-align: center;
		color: #d80a0a;
		-webkit-text-stroke: 3px #fff;
		font-family: timesbd !important;
		src: url(font/timesbd.ttf) !important;
		width: 100%;
		font-weight: bold;
		letter-spacing: 5px;
	}

	/*banner结束*/

	/*资质开始*/



	.zz_menu ul li {
		float: left;
		width: 12.5%;
	}

	.zz_menu ul li IMG {
		width: 100%;
	}

	/*资质结束*/




}

/* 横向放置的手机和竖向放置的平板之间的分辨率 */
@media (max-width: 1280px) {
	.m_header {
		width: 100%;
		margin: 0 auto;
		padding: 3% 0 2% 0;
		position: relative;
		z-index: 10000;
	}

	.logo {
		width: 50%;
		float: left;
	}

	.logo img {
		width: 100%;
	}

	/*导航右侧弹出菜单 开始*/



	.iphone__item {
		width: 16.06em;
		height: 1em;
		position: absolute;
		bottom: -2em;
		color: #158f76;
		text-align: center;
	}

	.iphone__power-btn {
		width: 2.188em;
		height: .188em;
		background: #e0e0e0;
		position: absolute;
		right: 2.5em;
		top: -0.188em;
	}

	.iphone__left-btn {
		width: .188em;
		height: 1.250em;
		top: 3.250em;
		left: -0.188em;
		position: absolute;
		background: #e0e0e0;
	}

	.iphone__left-btn:before {
		content: '';
		width: .188em;
		height: .875em;
		position: absolute;
		top: 3em;
		background: #e0e0e0;
	}

	.iphone__left-btn:after {
		content: '';
		width: .188em;
		height: .875em;
		position: absolute;
		top: 5.5em;
		background: #e0e0e0;
	}

	.iphone__details {
		width: .438em;
		height: .438em;
		border-radius: 100%;
		position: relative;
		top: 1.313em;
		left: 8em;
		background: #7c7c7c;
	}

	.iphone__details:before {
		content: '';
		width: 2.5em;
		height: .25em;
		border-radius: .25em;
		position: absolute;
		top: 1em;
		left: -1em;
		background: #7c7c7c;
	}

	/*.iphone__home-btn {
  width: 2.25em;
  height: 2.25em;
  border-radius: 100%;
  position: absolute;
  bottom: 1em;
  right: 6.75em;
  background: #f7f7f7;
}*/
	/*.iphone__home-btn:before {
  content: '';
  width: .813em;
  height: .813em;
  border: .15em solid #a8a8a8;
  border-radius: .2em;
  position: absolute;
  top: .6em;
  left: .57em;
}*/
	.iphone__screen {
		width: 35.5em;
		height: 22.938em;
		position: absolute;
		left: 5.750em;
		overflow: hidden;
	}

	/**
* Navigation Defaults
*/
	.nav {
		position: absolute;
		z-index: 100;
		opacity: 0;
		-webkit-transition-property: all;
		transition-property: all;
		-webkit-transition-duration: 300ms;
		transition-duration: 300ms;
	}

	.nav--active .nav {
		opacity: 1;
		background-color: #229bec;
	}

	.nav__list {
		margin: 0;
		padding: 10px;
	}

	.nav__item {
		list-style-type: none;
		text-align: left;
	}

	.nav__link {
		font-size: 1.3em;
		text-transform: uppercase;
		text-decoration: none;
		color: #FFFFFF !important;
		opacity: 1;
		-webkit-transition: opacity 300ms ease-in-out;
		transition: opacity 300ms ease-in-out;
		line-height: 2.5;
	}

	/* Default navigation icon */
	.nav__trigger {
		display: block;
		position: absolute;
		width: 50PX;
		height: 25px;
		right: 10px;
		top: 10px;
		z-index: 200;
		float: right;
	}

	.nav--active .nav__trigger {
		opacity: 0.5;
	}

	.nav__icon {
		display: inline-block;
		position: relative;
		width: 30px;
		height: 5px;
		background-color: #229bec;
		-webkit-transition-property: background-color, -webkit-transform;
		transition-property: background-color, -webkit-transform;
		transition-property: background-color, transform;
		transition-property: background-color, transform, -webkit-transform;
		-webkit-transition-duration: 300ms;
		transition-duration: 300ms;
	}

	.nav__icon:before,
	.nav__icon:after {
		content: '';
		display: block;
		width: 30px;
		height: 5px;
		position: absolute;
		background: #229bec;
		-webkit-transition-property: margin, -webkit-transform;
		transition-property: margin, -webkit-transform;
		transition-property: margin, transform;
		transition-property: margin, transform, -webkit-transform;
		-webkit-transition-duration: 300ms;
		transition-duration: 300ms;
	}

	.nav__icon:before {
		margin-top: -10px;
	}

	.nav__icon:after {
		margin-top: 10px;
	}

	/* Don't nest if you don't have to. */
	/**
* Style #1
*/
	.style-1 .nav {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		width: 100%;
		height: 100%;
	}

	.style-1 .nav__link {
		opacity: 0;
		-webkit-transition-delay: 500ms;
		transition-delay: 500ms;
	}

	.style-1 .nav--active .nav__link {
		opacity: 1;
	}

	.style-1 .nav--active .nav {
		-webkit-transition: all 300ms ease-in-out;
		transition: all 300ms ease-in-out;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	.style-1 .nav--active .nav__icon {
		background: rgba(0, 0, 0, 0);
	}

	.style-1 .nav--active .nav__icon:before {
		margin-top: 0;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.style-1 .nav--active .nav__icon:after {
		margin-top: 0;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	/*导航右侧弹出菜单 结束*/


	/*banner开始*/

	.banner_soglin {
		position: absolute;
		z-index: 10;
		top: 45%;
		left: 5%;
	}

	.banner_soglin p {
		margin: 0 auto;
		font-size: 2rem;
		text-align: center;
		color: #d80a0a;
		-webkit-text-stroke: 3px #fff;
		font-family: timesbd !important;
		src: url(font/timesbd.ttf) !important;
		width: 100%;
		font-weight: bold;
		letter-spacing: 5px;
	}

	/*banner结束*/



}

/* 横向放置的手机及分辨率更小的设备 */
@media (max-width: 480px) {
	.m_header {
		width: 100%;
		margin: 0 auto;
		padding: 3% 0 2% 0;
	}

	.logo {
		width: 50%;
		float: left;
	}

	.logo img {
		width: 100%;
	}

	.m_nav {
		width: 30%;
		float: right;
	}

	/*导航右侧弹出菜单 开始*/



	.iphone__item {
		width: 16.06em;
		height: 1em;
		position: absolute;
		bottom: -2em;
		color: #158f76;
		text-align: center;
	}

	.iphone__power-btn {
		width: 2.188em;
		height: .188em;
		background: #e0e0e0;
		position: absolute;
		right: 2.5em;
		top: -0.188em;
	}

	.iphone__left-btn {
		width: .188em;
		height: 1.250em;
		top: 3.250em;
		left: -0.188em;
		position: absolute;
		background: #e0e0e0;
	}

	.iphone__left-btn:before {
		content: '';
		width: .188em;
		height: .875em;
		position: absolute;
		top: 3em;
		background: #e0e0e0;
	}

	.iphone__left-btn:after {
		content: '';
		width: .188em;
		height: .875em;
		position: absolute;
		top: 5.5em;
		background: #e0e0e0;
	}

	.iphone__details {
		width: .438em;
		height: .438em;
		border-radius: 100%;
		position: relative;
		top: 1.313em;
		left: 8em;
		background: #7c7c7c;
	}

	.iphone__details:before {
		content: '';
		width: 2.5em;
		height: .25em;
		border-radius: .25em;
		position: absolute;
		top: 1em;
		left: -1em;
		background: #7c7c7c;
	}

	/*.iphone__home-btn {
  width: 2.25em;
  height: 2.25em;
  border-radius: 100%;
  position: absolute;
  bottom: 1em;
  right: 6.75em;
  background: #f7f7f7;
}*/
	.iphone__home-btn:before {
		content: '';
		width: .813em;
		height: .813em;
		border: .15em solid #a8a8a8;
		border-radius: .2em;
		position: absolute;
		top: .6em;
		left: .57em;
	}

	.iphone__screen {
		width: 14.5em;
		height: 22.938em;
		position: absolute;
		overflow: hidden;
	}

	/**
* Navigation Defaults
*/
	.nav {
		position: absolute;
		z-index: 100;
		opacity: 0;
		-webkit-transition-property: all;
		transition-property: all;
		-webkit-transition-duration: 300ms;
		transition-duration: 300ms;
	}

	.nav--active .nav {
		opacity: 1;
		background-color: #229bec;
	}

	.nav__list {
		margin: 0;
		padding: 10px;
	}

	.nav__item {
		list-style-type: none;
		text-align: left;
	}

	.nav__link {
		font-size: 1.2em;
		text-transform: uppercase;
		text-decoration: none;
		color: #FFFFFF !important;
		opacity: 1;
		-webkit-transition: opacity 300ms ease-in-out;
		transition: opacity 300ms ease-in-out;
		line-height: 2.5;
	}

	/* Default navigation icon */
	.nav__trigger {
		display: block;
		position: absolute;
		width: 30px;
		height: 25px;
		right: 10px;
		top: 10px;
		z-index: 200;
	}

	.nav--active .nav__trigger {
		opacity: 0.5;
	}

	.nav__icon {
		display: inline-block;
		position: relative;
		width: 30px;
		height: 5px;
		background-color: #333;
		-webkit-transition-property: background-color, -webkit-transform;
		transition-property: background-color, -webkit-transform;
		transition-property: background-color, transform;
		transition-property: background-color, transform, -webkit-transform;
		-webkit-transition-duration: 300ms;
		transition-duration: 300ms;
	}

	.nav__icon:before,
	.nav__icon:after {
		content: '';
		display: block;
		width: 30px;
		height: 5px;
		position: absolute;
		background: #333;
		-webkit-transition-property: margin, -webkit-transform;
		transition-property: margin, -webkit-transform;
		transition-property: margin, transform;
		transition-property: margin, transform, -webkit-transform;
		-webkit-transition-duration: 300ms;
		transition-duration: 300ms;
	}

	.nav__icon:before {
		margin-top: -10px;
	}

	.nav__icon:after {
		margin-top: 10px;
	}

	/* Don't nest if you don't have to. */
	/**
* Style #1
*/
	.style-1 .nav {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		width: 100%;
		height: 100%;
	}

	.style-1 .nav__link {
		opacity: 0;
		-webkit-transition-delay: 500ms;
		transition-delay: 500ms;
	}

	.style-1 .nav--active .nav__link {
		opacity: 1;
	}

	.style-1 .nav--active .nav {
		-webkit-transition: all 300ms ease-in-out;
		transition: all 300ms ease-in-out;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	.style-1 .nav--active .nav__icon {
		background: rgba(0, 0, 0, 0);
	}

	.style-1 .nav--active .nav__icon:before {
		margin-top: 0;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.style-1 .nav--active .nav__icon:after {
		margin-top: 0;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	/*导航右侧弹出菜单 结束*/


	/*banner开始*/

	.banner_soglin {
		position: absolute;
		z-index: 10;
		top: 45%;
		left: 8%;
	}

	.banner_soglin p {
		margin: 0 auto;
		font-size: 1.4rem;
		text-align: center;
		color: #d80a0a;
		-webkit-text-stroke: 1px #fff;
		font-family: timesbd !important;
		src: url(font/timesbd.ttf) !important;
		width: 100%;
		font-weight: bold;
	}
}

/*banner结束完*/


/*mainBox*/
.mainBox p {
	color: #595959;
	font-size: 24px;
	line-height: 35px;
}

/*about*/
.aboutBox .section01 {
	margin: 0 3% 2% 0;
}

.aboutBox .section01 .lBox {
	margin-top: 1.85%;
	width: 50.8%;
	float: left;
}

.aboutBox .section01 .lBox p {
	margin: 0 0 3.5% 7%;
	color: #8b8b8b;
}

.aboutBox .section01 .rBox {
	width: 46.1%;
	float: right;
}

.aboutBox .title {
	margin-bottom: 2.5%;
	text-align: center;
}

.aboutBox .section01 .title {
	margin-bottom: 5.5%;
}

.aboutBox .title img {
	width: 32.5%;
}

.aboutBox .section01 .title img {
	width: 28.5%;
}

.aboutBox .ulText li {
	margin-bottom: 35px;
}

.aboutBox .ulText li span {
	padding-left: 65px;
	display: inline-block;
	color: #595959;
	font-size: 24px;
	line-height: 35px;
	background: url(../images/icon_01.png) no-repeat left 5px;
}

.aboutBox .section01 .img {
	margin-right: 23%;
	text-align: right;
}

.aboutBox .section01 .img img {
	width: 66%;
}

.aboutBox .section02 {
	margin-bottom: 4%;
}

.aboutBox .section02 .ulText {
	margin-bottom: 2%;
	text-align: center;
}

.aboutBox .section02 .ulText li {
	margin-bottom: 25px;
}

.aboutBox .section02 .ulText li span {
	padding: 5px 0 5px 65px;
	background: url(../images/icon_01.png) no-repeat left center;
}

.aboutBox .section02 .ulImg {
	margin: 0 16% 0 12%;
}

.aboutBox .section02 .ulImg li {
	width: 50%;
	float: left;
	text-align: center;
}

.aboutBox .section02 .ulImg li img {
	width: 87%;
}

.aboutBox .section03 {
	padding: 6% 0 8.8%;
	background: #F3F3F3 url(../images/about_bg.png) no-repeat bottom;
	background-size: 100% auto;
}

.aboutBox .section03 .title {
	margin-bottom: 4%;
}

.aboutBox .section03 .title img {
	width: 16.5%;
}

.mainBox .bigImg {
	padding: 2.8% 4.5% 0;
}

.mainBox .bigImg img {
	margin-bottom: 2.6%;
}

.aboutBox .section04 {
	margin: -2.6% 0 0 4.5%;
}

.aboutBox .section04 .lBox {
	margin-top: 2.8%;
	width: 47.8%;
	float: left;
}

.aboutBox .section04 .lBox p {
	margin-bottom: 3.5%;
}

.aboutBox .section04 .lBox .txt {
	font-size: 30px;
	font-weight: bold;
}

.aboutBox .section04 .lBox .pLink a {
	color: #58aa32;
	font-weight: bold;
	font-size: 24px;
}

.aboutBox .section04 .img {
	margin-bottom: 5.5%;
	text-align: right;
}

.aboutBox .section04 .img img {
	margin-right: -17.6%;
	width: 50.9%;
}

.aboutBox .section04 .rBox {
	width: 41.4%;
	float: right;
}

.aboutBox .section05 {
	margin: 0 2.5%;
}

.aboutBox .section05 .title {
	margin-bottom: 5.4%;
}

.aboutBox .section05 .title img {
	margin-top: -6%;
	width: 26%;
}

.aboutBox .section05 li {
	padding: 0 1%;
	width: 14.66%;
	float: left;
	text-align: center;
}

.aboutBox .section05 li .border {
	display: block;
	border: 18px solid #58AA32;
	border-radius: 50%;
}

.aboutBox .section05 li span img {
	border-radius: 50%;
}

.aboutBox .section05 li span {
	min-height: 100px;
	display: flex;
	color: #595959;
	font-size: 24px;
	align-items: center;
	justify-content: center;
}

/*touch*/
.touchBox .section01 {
	margin-bottom: 4.5%;
}

.touchBox .section01 .lBox {
	padding: 1.8% 7.5% 11% 2.5%;
	width: 50%;
	float: left;
	position: relative;
	box-sizing: border-box;
}

.touchBox .section01 .lBox .img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.touchBox .section01 .lBox p {
	margin-bottom: 13.7%;
	color: #FFF;
}

.touchBox .section01 .lBox .txt {
	margin-bottom: 35px;
	font-size: 22px;
}

.touchBox .section01 .lBox li {
	margin-bottom: 10px;
}

.touchBox .section01 .lBox li span {
	margin-bottom: 3%;
	display: block;
	color: #FFF;
	font-size: 22px;
}

.touchBox .section01 .lBox li input {
	width: 79%;
	height: 48px;
	font-size: 24px;
	line-height: 48px;
	border: none;
	border-radius: 0;
	box-sizing: border-box;
}

.touchBox .section01 .lBox textarea {
	padding: 5% 3%;
	width: 79%;
	height: 168px;
	color: #bcbcbc;
	font-size: 20px;
	line-height: 25px;
	box-sizing: border-box;
	border: none;
	border-radius: 0;
}

.touchBox .section01 .lBox .button {
	margin-left: 1%;
}

.touchBox .section01 .lBox .button button {
	width: 76%;
	height: 98px;
	color: #000;
	font-size: 32px;
	line-height: 98px;
	text-align: center;
	border: 1px solid #FFF;
	background-color: #fcaf7b;
	border-radius: 60px;
}

.touchBox .section01 .rBox {
	padding: 3.2% 13% 0 0;
	width: 46%;
	float: right;
	box-sizing: border-box;
}

.touchBox .section01 .rBox p {
	margin: 0 0 6.8% 10%;
	color: #8b8a8a;
	font-size: 27px;
}

.touchBox .section01 .rBox .title {
	margin: 0 0 10.5%;
	text-align: center;
}

.touchBox .section01 .rBox .title img {
	width: 100%;
}

.touchBox .section01 .rBox .img {
	text-align: right;
}

.touchBox .section01 .rBox .img img {
	margin-right: -22%;
	width: 96%;
}

.touchBox .section02 {
	margin: 0 1.7% 4.5% 5.3%;
}

.touchBox .section02 .lBox {
	/* margin-top: 4.5%; */
	width: 40% !important;
	float: left !important;
}

.touchBox .section02 .lBox li {
	margin-bottom: 5%;
	display: flex;
	align-items: center;
}

.touchBox .section02 .lBox li img {
	width: 24%;
}

.touchBox .section02 .lBox li span {
	padding-left: 14%;
	color: #000;
	font-size: 25px;
	line-height: 55px;
}

.touchBox .section02 .rBox {
	width: 56% !important;
	float: right !important;
}

.touchBox .section02 .rBox iframe {
	width: 100% !important;
	height: 580px !important;
}

.touchBox .section03 .title {
	margin-bottom: 4%;
	text-align: center;
}

.touchBox .section03 .title img {
	width: 20%;
}

.touchBox .section03 {
	margin: 0 1.8%;
}

.touchBox .section03 ul {
	display: flex;
	align-items: center;
	justify-content: center;
}

.touchBox .section03 li {
	padding: 0 0.8%;
	width: 31.73%;
	text-align: center;
}

/*news*/
.newsBox {
	margin: 3% 2.5% 0;
}

.newsBox p {
	color: #828282;
}

.newsBox .ulImg {
	margin: 0 -4% 4.5%;
}

.newsBox .ulImg li {
	margin: 0 1%;
	width: 31.33%;
	padding: 0 3%;
	min-height: 170px;
	float: left;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	border-radius: 30px;
}

.newsBox .ulImg li:hover {
	background-color: #229bec;
}

.newsBox .ulImg li:hover span {
	color: #fff;
}

.newsBox .ulImg li img {
	margin-right: 3%;
	padding: 8px;
	width: 34%;
	box-sizing: border-box;
	border: 2px solid #229bec;
	border-radius: 50%;
}

.newsBox .ulImg li span {
	color: #229bec;
	font-size: 37px;
}

.newsBox .ulImg .liSpe span {
	color: #FFF;
}

.newsBox .txt {
	margin: 0 1% 4.3%;
}

.newsBox .imgBox {
	margin-bottom: 2.5%;
	padding: 1.5% 2.5%;
	background-color: #FFF;
	border-radius: 30px;
	box-shadow: 0 0 20px #eee;
}

.newsBox .imgBox .photoBox {
	width: 25%;
	float: left;
}

.newsBox .imgBox .textBox {
	width: 69%;
	float: right;
}

.newsBox .imgBox .textBox p {
	margin-bottom: 2.2%;
}

.newsBox .imgBox .textBox .title {
	margin-bottom: 3%;
	color: #229bec;
	font-size: 36px;
}

.newsBox .imgBox .textBox .date {
	margin-bottom: 5%;
	padding: 10px 0 10px 65px;
	background: url(../images/news_icon01.png) no-repeat left center;
	background-size: 38px;
}

.newsBox .imgBox .textBox .btmBox .link {
	float: left;
}

.newsBox .imgBox .textBox .btmBox .link a {
	padding: 15px 50px;
	display: inline-block;
	color: #FFF;
	font-size: 22px;
	background-color: #229bec;
	border-radius: 15px;
}

.newsBox .section01 {
	margin-bottom: 5%;
	text-align: center;
	position: relative;
}

.newsBox .section01 p {
	color: #595959;
}

.newsBox .section01 .txt {
	margin: 4% 0 0;
	line-height: 44px;
	text-indent: 3.2em;
	letter-spacing: -0.5px;
}

.newsBox .section01 .img {
	position: absolute;
	right: 0;
	top: -35%;
}

.newsBox .section01 .img img {
	width: 100%;
}

.newsBox .section01 .title {
	margin-bottom: 3.3%;
	color: #229bec;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
}

.newsBox .imgBox .textBox .btmBox .img {
	float: right;
}

.newsBox .section02 {
	margin: 0 -2.5% 5.6%;
	padding: 5.8% 18% 5.4%;
	position: relative;
	background-color: #F1F1F1;
}

.newsBox .section02 .infoBox {
	margin-bottom: 5%;
}

.newsBox .section02 .photo {
	width: 9.2%;
	float: left;
}

.newsBox .section02 .txtBox {
	margin-top: 0.5%;
	width: 87%;
	float: right;
}

.newsBox .section02 .txtBox p {
	margin: 0 -10% 0.5% 0;
	color: #595959;
	line-height: 45px;
}

.newsBox .section02 .txtBox .date {
	margin-bottom: 3%;
}

.newsBox .section02 .txtBox .date span {
	padding: 0 10px 34px 0;
	color: #878787;
	font-size: 24px;
	background: url(../images/shownews_bg.png) no-repeat right bottom;
	background-size: 174px auto;
}

.newsBox .section02 textarea {
	margin-bottom: 6.5%;
	padding: 6% 10%;
	width: 100%;
	color: #bcbcbc;
	font-size: 24px;
	border: none;
	box-shadow: 0 0 20px #eee;
	box-sizing: border-box;
}

.newsBox .section02 .button {
	text-align: center;
}

.newsBox .section02 .button button {
	width: 42%;
	height: 92px;
	color: #FFF;
	font-size: 40px;
	line-height: 92px;
	text-align: center;
	border: none;
	background-color: #54aa33;
	border-radius: 60px;
}

.newsBox .section02 .img {
	position: absolute;
	left: 2.6%;
	bottom: 5%;
}

.newsBox .section03 .title {
	margin: 0 1.3% 2.7%;
}

.newsBox .section03 .title img {
	width: 15.5%;
}

.mainBox .comUlImg li {
	padding: 0 1%;
	width: 23%;
	float: left;
}

.mainBox .comUlImg li span {
	display: block;
}

.mainBox .comUlImg li .border {
	margin-bottom: 5.8%;
	padding: 30px;
	border: 2px solid #EEE;
	background-color: #FFF;
	border-radius: 10px;
}

.newsBox .comUlImg li .border {
	padding: 0;
}

.mainBox .comUlImg li .border img {
	border-radius: 10px;
}

.mainBox .comUlImg li .txtSpan {
	padding: 0 5%;
}

.mainBox .comUlImg li .txtSpan span {
	color: #898989;
	font-size: 18px;
	line-height: 35px;
}

.mainBox .comUlImg li .txtSpan .tit {
	margin-bottom: 5.8%;
	color: #000000;
	font-size: 30px;
}

.showproducts,
.productsBox {
	padding: 7.15% 2.5%;
	background: url(../images/products_bg.png) no-repeat left top;
	background-size: 100% auto;
}

.showproducts .txt,
.productsBox .txt {
	margin-bottom: 120px;
}

.comSection .lBox {
	width: 21%;
	float: left;
}

.comSection .lBox .title {
	margin-bottom: 3%;
}

.comSection .lBox ul {
	margin: 0 1% 2.8%;
}

.comSection .lBox li {
	padding-bottom: 5.5%;
}

.comSection .rBox {
	margin-top: 6.2%;
	width: 78%;
	float: right;
}

.productsBox .comUlImg li {
	margin-bottom: 3%;
	width: 31.33%;
}

.productsBox .comUlImg li {
	margin-bottom: 3%;
	width: 23%;
}

.mainBox .comUlImg li .text span {
	min-height: 30px;
	color: #399218;
	font-size: 24px;
	line-height: 30px;
	font-weight: bold;
	letter-spacing: -1px;
	text-align: center;
	overflow: hidden;
}

.mainBox .comUlImg li .text .link {
	margin: 7% auto 0;
	width: 45%;
	height: 58px;
	line-height: 58px;
	font-weight: normal;
	text-align: center;
	border: 2px solid #399218;
}

.comSection .bgBox {
	padding: 14% 10% 20%;
	background-color: #229bec;
	border-radius: 10px;
}

.comSection .bgBox p {
	margin-bottom: 19%;
	color: #FFF;
	font-size: 15px;
	line-height: 28px;
}

.comSection .bgBox .title {
	margin-bottom: 10%;
	text-align: center;
}

.comSection .bgBox .title img {
	width: 64%;
}

.comSection .bgBox .inputBox {
	background-color: #FFF;
	border-radius: 12px;
}

.comSection .bgBox .inputBox input {
	margin: 0;
	padding: 0 11%;
	width: calc(100% - 65px);
	height: 44px;
	color: #acacac;
	font-size: 15px;
	line-height: 44px;
	border: none;
	background: none;
	border-radius: 12px;
	box-sizing: border-box;
}

.comSection .bgBox .inputBox button {
	width: 60px;
	height: 44px;
	line-height: 44px;
	background-color: #F3CF09;
	border-radius: 12px;
	border: none;
}

.showproducts .comSection {
	margin-bottom: 0.5%;
}

.showproducts .comSection .rBox {
	width: 74.5%;
}

.showproducts .comSection .rBox .jsBox {
	width: 46%;
	float: left;
}

.showproducts .comSection .subBox {
	margin-top: 1.5%;
	width: 49.5%;
	float: right;
}

.showproducts .comSection .subBox .title {
	margin-bottom: 8.5%;
	color: #229bec;
	font-size: 40px;
	font-weight: bold;
}

.showproducts .comSection .subBox .title img {
	width: 88%;
}

.showproducts .comSection .subBox .tabUl {
	margin-bottom: 7.5%;
	border-bottom: 1px solid #60AE33;
}

.showproducts .comSection .subBox .tabUl li {
	float: left;
}

.showproducts .comSection .subBox .tabUl li a {
	min-width: 160px;
	height: 55px;
	display: block;
	color: #7e7e7e;
	font-size: 24px;
	line-height: 55px;
	text-align: center;
}

.showproducts .comSection .subBox .tabUl .on a {
	color: #FFF;
	background-color: #229bec;
}

.showproducts .comSection .subBox .ulList {
	margin-bottom: 5%;
}

.showproducts .comSection .subBox .ulList li {
	padding-bottom: 2.5%;
}

.showproducts .comSection .subBox .ulList li a {
	padding-left: 9%;
	display: inline-block;
	color: #7e7e7e;
	font-size: 24px;
	line-height: 35px;
	background: url(../images/showproducts_icon.png) no-repeat left 5px;
	background-size: 26px;
}

.showproducts .comSection .subBox .img {
	margin: 0 0 6% 6%;
}

.showproducts .comSection .subBox .img img {
	width: 40%;
}

/* .showproducts .comSection .subBox .link {
	margin-left: 3%;
} */

.showproducts .comSection .subBox .link a {
	width: 50%;
	height: 79px;
	display: inline-block;
	color: #FFF;
	font-size: 43px;
	line-height: 79px;
	text-align: center;
	background-color: #fcaf7b;
}

.showproducts .speTitle img {
	width: 24.7%;
}

.showproducts .infoSection {
	margin-bottom: 2%;
	padding: 4% 2% 2%;
	border-radius: 30px;
	box-shadow: 0 0 20px #DDD;
}

.sideMenu p {
	margin-bottom: 2%;
	padding: 0 2% 2%;
	cursor: pointer;
	border-bottom: 1px solid #60ae33;
}

.sideMenu p span {
	padding-left: 30px;
	display: inline-block;
	color: #60ae33;
	font-size: 30px;
	background: url(../images/icoAdd.png) no-repeat left 10px;
}

.sideMenu p.on span {
	background: url(../images/icoAdd_on.png) no-repeat left 10px;
}

.sideMenu ul {
	margin-bottom: 2%;
}

.sideMenu li {
	padding: 0 2%;
	color: #7e7e7e;
	font-size: 20px;
}

.showproducts .boxInfo {
	margin: 0 15% 2%;
}

.showproducts .boxInfo .topImg {
	margin-bottom: 4%;
}

.showproducts .boxInfo .topImg img {
	width: 71%;
}

.showproducts .boxInfo .title {
	margin-bottom: 2%;
}

.showproducts .boxInfo .title img {
	width: 23%;
}

.showproducts .boxInfo .img {
	margin-bottom: 3%;
}

.showproducts .btmBox .title {
	margin-bottom: 2%;
}

.showproducts .btmBox .title img {
	width: 20%;
}

/* 本例子css */
.picScroll-left {
	overflow: hidden;
	position: relative;
}

.picScroll-left .prev,
.picScroll-left .next {
	position: absolute;
	top: 19%;
	width: 4%;
	height: 28.5%;
	display: block;
}

.picScroll-left .prev {
	left: 0;
	background: url(../images/left_02.png) no-repeat left top;
	background-size: 100% auto;
}

.picScroll-left .next {
	right: 0;
	background: url(../images/right_02.png) no-repeat left top;
	background-size: 100% auto;
}

.picScroll-left .hd .prevStop {
	background-position: -60px 0;
}

.picScroll-left .hd .nextStop {
	background-position: -60px -50px;
}

.picScroll-left .hd ul {
	display: none;
}

.picScroll-left .bd {
	margin: 0 auto;
	width: 90%;
}

.picScroll-left .comUlImg li {
	padding: 0 15px;
}

.picScroll-left .comUlImg li .text span {
	color: #595959;
	font-size: 22px;
	font-weight: normal;
}

.picScroll-left .comUlImg li .text .link {
	border: 2px solid #E2E2E2;
	background-color: #E2E2E2;
}

.picScroll-left02 {
	display: none;
}

div.box {
	width: 100%;
	height: 621px;
	padding: 10px;
	border: 1px solid #CCC;
	box-sizing: border-box;
}

div.box a.phone-display {
	display: block;
	position: relative;
	height: 100%;
}

div.bottom-nav {
	margin-top: 20px;
}

div.bottom-nav div.tab-btn {
	position: relative;
	width: 40px;
	height: 133px;
	cursor: pointer;
}

div.tab-btn:hover {
	opacity: .6;
}

div.tab-btn.btn-left {
	float: left;
}

div.tab-btn.btn-right {
	float: right;
}

i.shift-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 23px;
	height: 42px;
	border-radius: 50%;
}

i.shift-icon>span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 23px;
	height: 23px;
	border-bottom: 1.5px solid #999;
}

div.btn-left i.shift-icon>span {
	border-left: 1.5px solid #999;
	transform: translate(-30%, -50%) rotate(45deg);
}

div.btn-right i.shift-icon>span {
	border-right: 1.5px solid #999;
	transform: translate(-70%, -50%) rotate(-45deg);
}

div.bottom-nav div.bottom-center-nav {
	position: relative;
	height: 133px;
	overflow: hidden;
}

div.bottom-center-nav ul.small-img-ul {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
}

ul.small-img-ul li.img {
	margin: 5px;
	width: 123px;
	height: 123px;
	float: left;
	position: relative;
	cursor: pointer;
	background-size: 123px;
}

ul.small-img-ul li.img:after {
	width: 131px;
	height: 131px;
	position: absolute;
	left: -5px;
	top: -5px;
	content: "";
	border: 1px solid transparent;
}

ul.small-img-ul li.img.active:after {
	border-color: rgb(160, 27, 27);
}

.mainBox {
	padding-bottom: 3%;
}

.indexBox .btmBox {
	margin: 0 2.5%;
}

.showproducts .shar_icon ul {
	margin-bottom: 4%;
	overflow: hidden;
}

.showproducts .shar_icon li {
	float: left;
}

@media (min-width: 0px) and (max-width: 1280px) {
	.header {
		padding: 10px 2.5% 0;
	}

	.m_header {
		padding: 10px;
		box-sizing: border-box;
	}

	.header {
		display: none;
	}

	.m_header {
		display: block !important;
	}

	.logo {
		padding: 0 0 0;
		width: auto;
	}

	.logo img {
		width: 150px;
	}

	ul.nav {
		padding-left: 0;
		width: 70%;
		float: right;
	}

	.nav__trigger {
		width: 30px;
	}

	.iphone__screen {
		width: 14.5em;
		height: 260px;
		left: inherit !important;
		right: 0;
	}

	.nav__link {
		font-size: 16px;
	}

	.nav__trigger {
		right: 10px;
		top: 5px;
	}

	.iphone__home-btn:before {
		border: none;
	}

	.nav {
		margin-bottom: 0;
	}

	.nav__icon,
	.nav__icon:before,
	.nav__icon:after {
		background: #333;
	}

	.mainBox {
		padding: 0 0 20px;
	}

	.mainBox p {
		font-size: 16px;
		line-height: 25px;
		text-align: center;
	}

	.aboutBox .section01 {
		margin: 0 0 30px;
	}

	.aboutBox .section01 .lBox,
	.aboutBox .section01 .rBox,
	.aboutBox .section04 .lBox,
	.aboutBox .section04 .rBox {
		width: auto;
		float: none;
	}

	.aboutBox .section01 .lBox {
		margin-top: 0;
	}

	.aboutBox .section01 .lBox p {
		margin: 0 20px 10px;
		text-align: left;
	}

	.aboutBox .section01 .lBox img,
	.aboutBox .section04 .rBox img {
		width: 60%;
	}

	.aboutBox .section01 .rBox {
		margin: 0 20px;
	}

	.aboutBox .title {
		margin-bottom: 10px !important;
	}

	.aboutBox .ulText li {
		margin-bottom: 10px !important;
	}

	.aboutBox .ulText li span {
		padding-left: 30px;
		font-size: 16px;
		line-height: 25px;
		background-size: 20px !important;
	}

	.aboutBox .section01 .img {
		margin-right: 0;
	}

	.aboutBox .title img {
		width: 65%;
	}

	.aboutBox .section02 {
		margin: 0 20px 20px;
	}

	.aboutBox .section02 .ulText {
		margin-bottom: 20px;
		text-align: left;
	}

	.aboutBox .section02 .ulText li span {
		padding-left: 30px;
		background: url(../images/icon_01.png) no-repeat left 5px;
	}

	.aboutBox .section02 .ulImg {
		margin: 0;
	}

	.aboutBox .section03 {
		padding: 20px 20px 40px;
	}

	.aboutBox .section03 .title img {
		width: 35%;
	}

	.mainBox .bigImg {
		padding: 15px 0 0;
	}

	.aboutBox .section04 {
		margin: 0 0 20px;
	}

	.aboutBox .section04 .lBox,
	.aboutBox .section05 {
		margin: 0 20px;
	}

	.aboutBox .section04 .img img {
		margin: 0;
		width: 66%;
	}

	.aboutBox .section04 .lBox .txt {
		font-size: 16px;
	}

	.aboutBox .section04 .lBox p {
		margin-bottom: 15px;
		text-align: left;
	}

	.aboutBox .section04 .lBox .pLink a {
		font-size: 16px;
	}

	.aboutBox .section04 .rBox {
		text-align: right;
	}

	.aboutBox .section05 .title img {
		margin-top: 0;
		width: 45%;
	}

	.aboutBox .section05 ul {
		padding-top: 10px;
	}

	.aboutBox .section05 li {
		padding: 0 1%;
		width: 31.33%;
	}

	.aboutBox .section05 li .border {
		border: 4px solid #58AA32;
	}

	.aboutBox .section05 li span {
		font-size: 12px;
		min-height: 40px;
	}

	.touchBox {
		padding-top: 0;
	}

	.touchBox .section01 .lBox,
	.touchBox .section01 .rBox,
	.touchBox .section02 .lBox,
	.touchBox .section02 .rBox {
		margin: 0;
		padding: 0;
		width: auto !important;
		float: none !important;
	}

	.touchBox .section02 .rBox iframe {
		height: auto !important;
	}

	.touchBox .section01 .lBox {
		margin-bottom: 20px;
		padding: 20px;
		background: #01499d;
	}

	.touchBox .section01 .lBox p {
		margin-bottom: 10px !important;
	}

	.touchBox .section01 .lBox .txt {
		font-size: 15px;
	}

	.touchBox .section01 .lBox li span {
		margin-bottom: 10px;
		font-size: 15px;
	}

	.touchBox .section01 .lBox li input {
		width: 100%;
		height: 40px;
		font-size: 15px;
		line-height: 40px;
	}

	.touchBox .section01 .lBox textarea {
		width: 100%;
		height: 138px;
		font-size: 15px;
	}

	.touchBox .section01 .lBox .button button {
		width: 100%;
		height: 38px;
		font-size: 16px;
		line-height: 38px;
	}

	.touchBox .section01 .rBox {
		padding: 0 20px;
	}

	.touchBox .section01 .rBox .title img {
		width: 50%;
	}

	.touchBox .section01 .rBox p {
		margin: 0 0 10px;
		font-size: 16px;
	}

	.touchBox .section01 .rBox .title {
		margin-bottom: 20px;
	}

	.touchBox .section01 .rBox .img img {
		margin-right: -20px;
		width: 60%;
	}

	.touchBox .section02 {
		margin: 0 20px 20px;
	}

	.touchBox .section02 .lBox li img {
		width: 16%;
	}

	.touchBox .section02 .lBox li span {
		padding-left: 4%;
		font-size: 16px;
		line-height: 25px;
	}

	.touchBox .section03 .title img {
		width: 35%;
	}

	.newsBox {
		margin: 0 20px;
	}

	.newsBox .ulImg {
		margin: 0;
	}

	.newsBox .ulImg li {
		margin: 0 0 20px;
		width: 100%;
		min-height: 80px;
		border-radius: 10px;
	}

	.newsBox .ulImg li img {
		padding: 4px;
		width: 25%;
	}

	.newsBox .ulImg li span {
		font-size: 22px;
	}

	.newsBox .txt {
		margin: 0 0 20px;
	}

	.newsBox .imgBox {
		padding: 15px;
		border-radius: 10px;
	}

	.newsBox .imgBox .photoBox,
	.newsBox .imgBox .textBox {
		width: auto;
		float: none;
	}

	.newsBox .imgBox .textBox p {
		font-size: 16px;
		text-align: left;
	}

	.newsBox .imgBox .textBox .title {
		font-size: 20px;
	}

	.newsBox .imgBox .textBox .date {
		margin-bottom: 10px;
		padding-left: 35px;
		background-size: 24px;
	}

	.newsBox .imgBox .textBox .btmBox .link a {
		padding: 8px 40px;
		font-size: 16px;
		border-radius: 10px;
	}

	.newsBox .imgBox .textBox .btmBox .img {
		margin-top: 4px;
	}

	.newsBox .imgBox .textBox .btmBox .img img {
		width: 44px;
	}

	.newsBox .section01 .img,
	.newsBox .section02 .img {
		display: none;
	}

	.newsBox .section01 .title {
		margin-bottom: 20px;
		font-size: 22px;
	}

	.newsBox .section02 {
		margin: 0 -20px;
		padding: 20px;
	}

	.newsBox .section02 .photo {
		margin: 0 auto;
		width: 20%;
		float: none;
	}

	.newsBox .section02 .txtBox {
		margin-top: 20px;
		float: none;
		width: auto;
	}

	.newsBox .section02 .txtBox p {
		margin-right: 0;
		line-height: 30px;
	}

	.newsBox .section02 .txtBox .date span {
		padding: 0 20px 20px 0;
		font-size: 16px;
		background: url(../images/shownews_bg.png) no-repeat right bottom;
		background-size: 120px auto;
	}

	.newsBox .section02 textarea {
		margin-bottom: 20px;
		padding: 20px;
		font-size: 16px;
	}

	.newsBox .section02 .button button {
		width: 70%;
		height: 48px;
		font-size: 16px;
		line-height: 48px;
	}

	.newsBox .section03 {
		padding: 20px 0;
	}

	.newsBox .section03 .title {
		margin: 0 0 20px;
	}

	.newsBox .section03 .title img {
		width: 50%;
	}

	.newsBox .section03 ul {
		margin: 0 -10px;
	}

	.newsBox .section03 li {
		margin-bottom: 10px;
		width: 48%;
	}

	.newsBox .section03 li .txtSpan .tit {
		font-size: 20px;
		line-height: 25px;
	}

	.newsBox .section03 li .txtSpan span {
		font-size: 16px;
		line-height: 25px;
	}

	.productsBox p {
		text-align: left;
	}

	.productsBox .txt {
		margin-bottom: 20px;
	}

	.comSection .lBox,
	.comSection .rBox {
		width: auto;
		float: none;
	}

	.comSection .lBox .title {
		margin-bottom: 10px;
	}

	.comSection .lBox .title img {
		width: 30%;
	}

	.comSection .lBox ul {
		margin: 0;
		overflow: hidden;
	}

	.comSection .lBox li {
		padding-bottom: 10px;
		width: 49%;
		float: left;
	}

	.comSection .lBox li:nth-child(2n) {
		float: right;
	}

	.comSection .bgBox {
		padding: 20px;
	}

	.comSection .bgBox p {
		margin-bottom: 20px;
	}

	.comSection .lBox .title img {
		width: 40%;
	}

	.comSection .comUlImg li .text span {
		min-height: auto;
		font-size: 14px;
		line-height: 20px;
	}

	.comSection .comUlImg li .text .link {
		margin-top: 5px;
		width: 70%;
		min-height: auto;
		height: 28px;
		line-height: 28px;
		border: 1px solid #399218;
	}

	.comSection .comUlImg li .text .link a {
		font-size: 13px;
	}

	.showproducts,
	.productsBox {
		padding: 10px 10px 20px;
		background: none;
	}

	.showproducts p {
		text-align: left;
	}

	.showproducts .txt,
	.productsBox .txt {
		margin-bottom: 20px;
	}

	.showproducts .comSection {
		margin-bottom: 20px;
	}

	.showproducts .comSection .rBox {
		margin-top: 10px;
		width: 100%;
	}

	.showproducts .comSection .rBox .jsBox,
	.showproducts .comSection .subBox {
		float: none;
		width: auto;
	}

	.showproducts .comSection .subBox {
		margin: 0;
	}

	.showproducts .comSection .subBox .title img {
		width: 60%;
	}

	.showproducts .comSection .subBox .tabUl {
		margin-bottom: 10px;
	}

	.showproducts .comSection .subBox .tabUl li {
		width: 33.33%;
	}

	.showproducts .comSection .subBox .tabUl li a {
		min-width: 100px;
		font-size: 18px;
		height: 30px;
		line-height: 30px;
	}

	.showproducts .comSection .subBox .ulList {
		margin-bottom: 0;
	}

	.showproducts .comSection .subBox .ulList li {
		padding-bottom: 10px;
	}

	.showproducts .comSection .subBox .ulList li a {
		padding-left: 26px;
		font-size: 16px;
		line-height: 25px;
		background: url(../images/showproducts_icon.png) no-repeat left 3px;
		background-size: 20px;
	}

	.showproducts .comSection .subBox .img {
		margin: 0 0 10px;
	}

	.showproducts .comSection .subBox .link {
		margin-left: 0;
	}

	.showproducts .comSection .subBox .link a {
		width: 100%;
		height: 40px;
		font-size: 16px;
		line-height: 40px;
	}

	.showproducts .speTitle {
		margin-bottom: 20px;
	}

	.showproducts .speTitle img {
		width: 60%;
	}

	.showproducts .infoSection {
		margin-bottom: 20px;
		padding: 10px;
		border-radius: 10px;
	}

	.showproducts .infoSection p {
		padding: 0 10px 10px;
	}

	.sideMenu p span {
		font-size: 18px;
		line-height: 25px;
		background: url(../images/icoAdd.png) no-repeat left 8px;
		background-size: 10px !important;
	}

	.sideMenu li {
		padding: 0 10px;
		font-size: 16px;
	}

	.showproducts .boxInfo {
		margin: 0 0 20px;
	}

	.showproducts .boxInfo .topImg,
	.showproducts .boxInfo .title,
	.showproducts .btmBox .title {
		margin-bottom: 20px;
	}

	.showproducts .boxInfo .topImg img {
		width: 80%;
	}

	.showproducts .boxInfo .title img,
	.showproducts .btmBox .title img {
		width: 40%;
	}

	.picScroll-left .comUlImg li {
		margin-bottom: 0;
		padding: 0 5px;
	}

	.mainBox .comUlImg li .border {
		margin-bottom: 5px;
		padding: 80px;
		border: 1px solid #EEE;
	}

	.productsBox .comUlImg li .border {
		padding: 10px;
	}

	.picScroll-left01 {
		display: none;
	}

	.picScroll-left02 {
		display: block;
	}

	.picScroll-left .bd {
		width: 100%;
	}

	.picScroll-left .next,
	.picScroll-left .prev {
		width: 26px;
		height: 39px;
		top: 30%;
		background-size: 26px 39px;
		z-index: 10;
	}

	.picScroll-left .next {
		right: 10px;
	}

	.picScroll-left .prev {
		left: 10px;
	}

	.picScroll-left .comUlImg li {
		padding: 0;
		width: 100%;
	}

	.picScroll-left .comUlImg li .text span {
		font-size: 16px;
	}

	.picScroll-left .comUlImg li .text .link {
		margin-top: 10px;
		width: 50%;
		height: 38px;
		line-height: 38px;
	}

	.showproducts .comSection .rBox .jsBox {
		height: 500px;
	}

	div.bottom-nav div.tab-btn {
		height: 103px;
	}

	div.bottom-nav div.bottom-center-nav {
		margin: 0 auto;
		width: 62%;
		height: 103px;
		overflow: hidden;
	}

	div.box {
		margin: 0 auto;
		width: 100%;
		height: 360px;
	}

	div.box a.phone-display {
		width: 100%;
	}

	ul.small-img-ul li.img {
		width: 93px;
		height: 93px;
		background-size: 93px;
	}

	ul.small-img-ul li.img::after {
		width: 101px;
		height: 101px;
	}

	.shar_icon li img {
		width: 80% !important;
	}

	.showproducts .comSection .subBox .title {
		margin-bottom: 20px;
	}

	.touchBox .section01 .lBox .img {
		display: none;
	}

	.f_menu1 .f_title,
	.f_menu2 .f_title {
		margin-left: -20px;
	}

	.f_title img {
		width: 200px;
	}

	.f_menu {
		padding: 0;
		width: auto;
		float: none;
	}

	.f_content p {
		margin-bottom: 10px;
		padding-bottom: 10px;
		font-size: 18px;
		line-height: 30px;
		/* display: flex;
		align-items: center; */
		/* overflow: hidden; */
		text-align: center;
		border-bottom: 1px solid #FFF;
	}

	.f_content p img {
		margin: 0 auto;
		display: block;
	}

	.f_content p span {
		width: calc(100% - 43px);
	}

	.prod_menu {
		padding-left: 0;
		overflow: hidden;
	}

	.prod_menu li {
		margin-bottom: 10px;
		width: 50%;
		float: left;
		text-align: center;
	}

	.shemei {
		padding: 0;
		margin: 0;
		overflow: hidden;
	}

	.shemei li {
		text-align: center;
	}

	.shemei li img {
		width: 40px;
	}

	.f_clink {
		margin: 10px 0;
		padding: 0;
		width: 100%;
	}

	.f_bttom span {
		margin-bottom: 10px;
		width: auto;
		text-align: left;
		display: block;
		float: none;
	}

	.banner {
		margin-bottom: 10px;
		position: relative;
	}

	.mainBox .banner_soglin p {
		font-size: 18px;
		-webkit-text-stroke: 0px #d80a0a;
	}

	.ys_bg {
		padding: 20px 30px;
		width: auto;
	}

	.zz_menu {
		margin-bottom: 10px;
	}

	.nt_title {
		margin-bottom: 10px;
		font-size: 22px;
	}

	.ys_content li {
		margin: 0 0 20px;
		padding: 20px;
		width: auto;
		float: none;
		background: #FFF;
		border-radius: 20px;
	}

	.mainBox .menu_img,
	.mainBox .menu_title,
	.mainBox .menu_text p {
		margin-bottom: 10px;
	}

	.mainBox .menu_img img {
		width: 100px;
	}

	.mainBox .menu_title,
	.mainBox .menu_text p {
		font-size: 16px;
		color: #000;
		line-height: 20px;
	}

	.mainBox .menu_text3 {
		margin-bottom: 10px;
		padding-top: 0;
	}

	.why_menu li {
		margin-bottom: 10px;
		width: 50%;
	}

	.why_menu li .why_img img {
		width: 100px;
		height: auto;
	}

	.dropdown {
		height: 60px;
	}

	.dropdown span {
		margin: 10px 0;
		font-size: 14px;
	}

	.dropdown span span {
		margin: 5px 0;
	}

	.mainBox .dropdown-content p {
		font-size: 14px;
	}

	.why_menu li:after {
		height: 127px;
		border-right: 1px solid #229bec !important;
	}

	.why_menu li:nth-child(2n):after {
		border-right: none !important;
	}

	.lei_more {
		width: 80px;
		height: 30px;
	}

	.lei_more a {
		font-size: 14px;
		line-height: 30px;
	}

	.f_clink img {
		width: 100%;
	}

	.productsBox .comUlImg li {
		width: 31.33%;
	}

	/* .dropdown-content {
		display: none;
	} */

	.ys_content li .bgBox {
		margin-bottom: 0;
		padding: 0 !important;
		background: none;
	}
}

@media (min-width: 1281px) and (max-width: 1880px) {
	.header {
		padding-top: 0;
	}

	.logo {
		padding: 2% 0 0;
	}

	.nav {
		width: 55%;
		box-sizing: border-box;
		padding-top: 1%;
	}

	li.nav-item>a {
		line-height: 80px;
	}

	.mainBox {
	}

	.subMenu {
		height: 260px;
	}

	.subMenu>ul {
		padding-top: 10px;
	}

	.subMenu>ul>li {
		width: 15%;
	}

	.subMenu {
		top: 80px;
	}

	.aboutBox .ulText li {
		margin-bottom: 10px !important;
	}

	.aboutBox .ulText li span {
		font-size: 20px;
		background-size: 38px !important;
	}

	.aboutBox .section01 {
		margin: 0 0 40px;
	}

	.aboutBox .section01 .lBox,
	.aboutBox .section01 .rBox,
	.aboutBox .section04 .lBox,
	.aboutBox .section04 .rBox {
		width: auto;
		float: none;
	}

	.aboutBox .section01 .lBox {
		margin-top: 0;
	}

	.aboutBox .section01 .lBox p {
		margin: 0 0 20px;
		text-align: center;
	}

	.aboutBox .section01 .lBox img {
		width: 50%;
		float: left;
	}

	.aboutBox .section04 .rBox img {
		width: 50%;
		float: right;
	}

	.aboutBox .title img {
		width: 40%;
	}

	.aboutBox .section01 .title img {
		width: 22%;
	}

	.aboutBox .section01 .rBox {
		margin: 0 20px;
		width: 45%;
		float: right;
	}

	.aboutBox .section01 .img {
		margin-right: 0;
	}

	.aboutBox .section01 .img img {
		width: 40%;
	}

	.aboutBox .section02 {
		margin: 0 20px 40px;
	}

	.aboutBox .section02 .ulText {
		text-align: center;
	}

	.aboutBox .section02 .ulText li span {
		background: url(../images/icon_01.png) no-repeat left 5px;
	}

	.aboutBox .section03 {
		padding: 40px 20px;
	}

	.aboutBox .section03 .title img {
		width: 26%;
	}

	.mainBox .bigImg {
		padding: 20px 0 0;
	}

	.aboutBox .section04 {
		margin: 0 20px 40px;
	}

	.aboutBox .section04 .lBox {
		margin-top: 0;
		width: 50%;
		float: left;
	}

	.aboutBox .section04 .img img {
		margin-right: 0;
		width: 40%;
	}

	.aboutBox .section04 .rBox {
		margin-right: -20px;
		text-align: right;
	}

	.aboutBox .section05 .title img {
		margin-top: 0;
	}

	.aboutBox .section05 li {
		width: 23%;
	}

	.touchBox {
		padding-top: 0;
	}

	/* .touchBox .section01 .lBox,
	.touchBox .section01 .rBox, */
	.touchBox .section02 .lBox,
	.touchBox .section02 .rBox {
		margin: 0;
		padding: 0;
		width: auto;
		float: none;
	}

	.touchBox .section01 .lBox {
		margin-bottom: 20px;
		padding: 2% 8% 2% 2%;
		background: url(../images/touch_bg.png) no-repeat center top;
		background-size: 100% 100%;
		float: left;
		padding-bottom: 10%;
	}

	.touchBox .section01 .lBox p {
		margin-bottom: 10px !important;
	}

	.touchBox .section01 .lBox .txt {
		font-size: 22px;
	}

	.touchBox .section01 .lBox li span {
		margin-bottom: 10px;
		font-size: 22px;
	}

	.touchBox .section01 .lBox li input {
		width: 80%;
		height: 40px;
		font-size: 22px;
		line-height: 40px;
	}

	.touchBox .section01 .lBox textarea {
		width: 80%;
		height: 168px;
		font-size: 22px;
	}

	.touchBox .section01 .lBox .button button {
		height: 58px;
		font-size: 22px;
		line-height: 58px;
	}

	.touchBox .section01 .rBox {
		padding: 0 20px;
		width: 43%;
		float: right;
		padding-top: 5%;
	}

	.touchBox .section01 .rBox .title img {
		width: 50%;
	}

	.touchBox .section01 .rBox p {
		margin: 0 0 10px !important;
		font-size: 24px;
	}

	.touchBox .section01 .rBox .img img {
		margin-right: -20px;
		width: 60%;
	}

	.touchBox .section02 {
		margin: 0 20px 20px;
	}

	.touchBox .section02 .lBox li img {
		width: 16%;
	}

	.touchBox .section02 .lBox li span {
		padding-left: 4%;
		font-size: 22px;
		line-height: 45px;
	}

	.touchBox .section03 .title img {
		width: 25%;
	}

	.newsBox {
		margin-top: 0;
	}

	.newsBox .txt,
	.newsBox .imgBox .textBox .title,
	.newsBox .imgBox .textBox .date {
		margin-bottom: 2%;
		font-size: 22px;
	}

	.newsBox .ulImg {
		margin: 0 -1.5% 2.5%;
	}

	.newsBox .ulImg li {
		margin: 0 0.5%;
		padding: 0 1%;
		width: 32.33%;
		min-height: 90px;
		border-radius: 10px;
	}

	.newsBox .ulImg li img {
		padding: 4px;
		width: 30%;
	}

	.newsBox .ulImg li span {
		font-size: 22px;
	}

	.newsBox .imgBox .photoBox,
	.newsBox .imgBox .textBox {
		/*	width: auto;
	float: none;*/
	}

	.newsBox .imgBox .textBox .title {
		font-size: 20px !important;
	}

	.newsBox .imgBox .textBox p,
	.newsBox .imgBox .textBox .btmBox .link a {
		font-size: 18px !important;
	}

	.newsBox .section01 .img,
	.newsBox .section02 .img {
		display: none;
	}

	.newsBox .section02 {
		padding: 2% 5%;
	}

	.newsBox .section02 textarea {
		margin-bottom: 2%;
		padding: 4% 5%;
	}

	.newsBox .section02 .button button {
		height: 48px;
		font-size: 24px;
		line-height: 48px;
	}

	.newsBox .section03 .title img {
		width: 30%;
	}

	.newsBox .section03 li .txtSpan .tit {
		font-size: 20px;
	}

	.newsBox .section03 li .txtSpan span {
		font-size: 16px;
		line-height: 25px;
	}

	.productsBox .txt {
		margin-bottom: 60px;
	}

	.comSection .bgBox .title img {
		width: 100%;
	}

	.comSection .comUlImg li .text span {
		font-size: 17px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.comSection .comUlImg li .text .link {
		margin-top: 10px;
		width: 60%;
		height: 38px;
		line-height: 38px;
	}

	.picScroll-left .comUlImg li {
		padding: 0 10px;
	}

	div.box {
		margin: 0 auto;
		width: 100%;
		height: 500px;
	}

	div.box a.phone-display {
		width: 100%;
	}

	.touchBox .section01 .lBox .img {
		display: none;
	}

	.menu_bg02 {
		background: url(../images/ysmenu_bg2.png) no-repeat center bottom;
		background-size: 100% auto;
		padding: 0 0 2.5%;
	}

	.mainBox .menu_title {
		font-size: 26px;
	}

	.mainBox .menu_text p {
		font-size: 18px;
	}

	.mainBox .menu_img img {
		margin: 0 auto;
		width: 30%;
	}
}

@media (min-width: 1281px) and (max-width: 1480px) {
	div.box {
		height: 380px;
	}
}

/*聊天*/

#chat_window .chat_box {
	position: fixed;
	top: 50%;
	z-index: 999;
	right: 20px;
}

#chat_window .chat_box .box {
	display: none;
}

#chat_window .chat_box.pc_limit:hover .box,
#chat_window .chat_box.cur .box {
	display: block;
}

#chat_window .chat_box .chat_item {
	display: block;
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: url(../images/icon_chat.png) no-repeat 0 0;
	margin-bottom: 6px;
}

#chat_window .chat_box a.chat_item {
	text-indent: 100px;
	overflow: hidden;
	white-space: nowrap;
}

#chat_window .chat_box .chat_qq {
	background-color: #4cafe9;
}

#chat_window .chat_box .chat_skype {
	background-color: #5996ff;
	background-position: 0 -50px;
}

#chat_window .chat_box .chat_email {
	background-color: #f5b246;
	background-position: 0 -100px;
}

#chat_window .chat_box .chat_trademanager {
	background-color: #33bbf9;
	background-position: 0 -150px;
}

#chat_window .chat_box .chat_wechat {
	background-color: #59c682;
	background-position: 0 -200px;
}

#chat_window .chat_box .chat_whatsapp {
	background-color: #55d5bb;
	background-position: 0 -250px;
}

#chat_window .chat_box .abs {
	display: none;
	position: absolute;
	bottom: 0;
	right: 0px;
	margin-right: 50px;
	padding-right: 15px;
}

#chat_window .chat_box .more_box {
	position: relative;
	padding: 10px 0px;
	border: 1px solid #e8e8e8;
	background: #fff;
	border-radius: 5px;
}

#chat_window .chat_box .more_box:before {
	content: '';
	position: absolute;
	bottom: 19px;
	right: -8px;
	border-width: 7.5px 0 7.5px 8px;
	border-color: transparent;
	border-left-color: #e8e8e8;
	border-style: solid;
}

#chat_window .chat_box .more_box:after {
	content: '';
	position: absolute;
	bottom: 19px;
	right: -6.5px;
	border-width: 7.5px 0 7.5px 8px;
	border-color: transparent;
	border-left-color: #fff;
	border-style: solid;
}

#chat_window .chat_item:hover .abs {
	display: block;
}

#chat_window .chat_box .more_box a {
	position: relative;
	display: block;
	min-width: 80px;
	height: 30px;
	line-height: 30px;
	padding: 0px 17px;
	font-size: 14px;
	color: #333;
	white-space: nowrap;
}

#chat_window .chat_box .more_box a:hover {
	background-color: #effaf7;
	text-decoration: none;
}

#chat_window .chat_box .more_box .item {
	width: auto;
	margin: 0;
	border: 0;
}

#chat_window .chat_box .more_box .relimg {
	display: none;
	position: absolute;
	top: 0;
	left: -105px;
	padding-right: 5px;
	width: 100px;
	height: 100px;
	text-align: right;
	margin-bottom: 5px;
}

#chat_window .chat_box .more_box .relimg img {
	padding: 2px;
	border: 1px solid #effaf7;
	border-radius: 2px;
	background: #fff;
}

#chat_window .chat_box .more_box a:hover .relimg {
	display: block;
}

#chat_window .chat_box .chat_box_menu {}

#chat_window .chat_box .chat_box_menu a {
	width: 50px;
	height: 50px;
	display: block;
	border-radius: 100%;
	margin-bottom: 6px;
	background: #07bb8a url(../images/icon_chat_menu.png) no-repeat 0 0;
}

#chat_window .chat_box .chat_box_menu #go_top {
	visibility: hidden;
	opacity: 0;
}

#chat_window .chat_box .chat_box_menu #go_top.show {
	visibility: visible;
	opacity: 1;
}

#chat_window .chat_box .chat_box_menu .more {}

/*#chat_window .chat_box.pc_limit:hover .chat_box_menu .more,#chat_window .chat_box.cur .chat_box_menu .more{display: none;}*/
#chat_window .chat_box .chat_box_menu .more {
	display: none;
}

#chat_window .chat_box .chat_box_menu .more.default_show {
	display: block;
}

#chat_window .chat_box:hover .chat_box_menu .more.default_show {
	display: none;
}

#chat_window .chat_box .chat_box_menu .top {
	background-position: 0 -50px;
	background-color: #b0b0b0;
}

#chat_window .chat_box .box .chat_close {
	display: none;
}

/*浮动窗---2*/
.chatfloat1 {
	position: fixed;
	right: 0;
	top: 150px;
	z-index: 1000;
}

*.win_alert {
	width: 90%;
	max-width: 400px;
	max-height: 155px;
	left: 0 !important;
	top: 0 !important;
	right: 0;
	bottom: 0;
	margin: auto;
}

. win_alert .win_btns {
	height: auto;
	line-height: 1;
}

*/ #chat_window .chat_box a.chat_item {
	text-indent: 100px;
	overflow: hidden;
	white-space: nowrap;
}

@media (min-width:992px) {
	#chat_window .chat_box:hover .box {
		display: block;
	}

	#chat_window .chat_box:hover .chat_box_menu .more {
		display: none;
	}
}

/*手机版*/

@media only screen and (max-width: 991px) {
	#chat_window .chat_box .box {
		display: block;
		visibility: hidden;
		opacity: 0;
		overflow: hidden;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		background: #fff;
		width: 85%;
		max-height: 250px;
		height: 80%;
		z-index: 10001;
		box-shadow: 0 0 4px rgba(0, 0, 0, .5);
		border-radius: 10px;
		/*box-sizing: border-box;overflow-y: scroll;padding: 5px 15px;*/
	}

	#chat_window .chat_box .box.show {
		visibility: visible;
		opacity: 1;
	}

	#chat_window .chat_box .abs {
		display: block;
		position: unset;
		padding-right: 0;
	}

	#chat_window .chat_box .box .box_area {
		position: absolute;
		left: 0;
		width: 100%;
		height: 90%;
		padding: 0 15px;
		box-sizing: border-box;
		overflow: hidden;
		overflow-y: scroll;
	}

	#chat_window .chat_box .box .chat_close {
		display: block;
		position: absolute;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 30px;
		background: url(../images/icon_close.png) no-repeat center/22px;
	}

	#chat_window .chat_box .chat_item {
		background: none;
		width: auto;
		height: auto;
		margin-bottom: 0;
	}

	#chat_window .chat_box a.chat_item {
		position: relative;
		display: block;
		min-width: 80px;
		height: 30px;
		line-height: 30px;
		padding: 0px 17px;
		font-size: 14px;
		color: #333;
		white-space: nowrap;
		text-indent: 0;
	}

	#chat_window .chat_box a.chat_wechat,
	#chat_window .chat_box a.chat_trademanager,
	#chat_window .chat_box .chat_wechat.chat_item,
	#chat_window .chat_box .chat_trademanager.chat_item {
		display: none;
	}

	#chat_window .chat_box .more_box {
		border: none;
		padding: 0;
	}

	#chat_window .chat_box .more_box a,
	#chat_window .chat_box a.chat_item {
		padding: 0;
		padding-left: 25px;
		margin: 6px 0;
		background: no-repeat left center / 20px auto;
		border-radius: 0;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}

	#chat_window .chat_box .more_box a:hover {
		background-color: #fff;
	}

	#chat_window .chat_box .chat_qq .more_box a,
	#chat_window .chat_box a.chat_qq {
		background-image: url(../images/chat_qq.png);
	}

	#chat_window .chat_box .chat_skype .more_box a,
	#chat_window .chat_box a.chat_skype {
		background-image: url(../images/chat_skype.png);
	}

	#chat_window .chat_box .chat_email .more_box a,
	#chat_window .chat_box a.chat_email {
		background-image: url(../images/chat_email.png);
	}

	#chat_window .chat_box .chat_whatsapp .more_box a,
	#chat_window .chat_box a.chat_whatsapp {
		background-image: url(../images/chat_whatsapp.png);
	}

	#chat_window .chat_box .more_box:before,
	#chat_window .chat_box .more_box:after {
		display: none;
	}

	#chat_window .chat_box .more_box a:hover .relimg {
		display: none;
	}

	.shar_icon li {
		float: left !important;
		width: 20% !important;
	}

	.shar_icon li a {
		float: left;
	}

	/* .shar_icon li img {
		width: 20% !important;
	} */
}



.comImgBox .photoBox {
	width: 49.8%;
}
.comImgBox .textBox {
	width: 47%;
}
.comImgBox .textBox .title {
	color: #000;
	font-size: 28px;
	font-weight: bold;
	line-height: 1.5;
}
.comImgBox .textBox .txt {
	margin: 5% 0 6.5%;
	font-size: 22px;
}
.comLink {
	margin: 10.3% 0 0 3%;
}
.comLink a {
	padding-left: 72px;
	width: 347px;
	height: 76px;
	color: #00909E;
	font-size: 20px;
	font-weight: bold;
	line-height: 76px;
	border: 1px solid #00909E;
	box-sizing: border-box;
	border-radius: 50px;
}
.engineerBox {
	margin-bottom: 3.2%;
	padding-top: 2%;
	background: url(../images/bg.png) no-repeat left top;
	background-size: 100% auto;
}
.engineerBox .comH2 {
	margin-bottom: 4.02%;
	color: #FFF;
}
.engineerBox .comImgBox {
	background-color: #FFF;
}
.engineerBox .comImgBox .photoBox {
	width: 48.8%;
}
.engineerBox .comImgBox .textBox {
	padding: 2.2% 2.5% 0 0;
	box-sizing: border-box;
}
.engineerBox .comImgBox .textBox p {
	font-size: 19px;
	line-height: 2.2;
}
.engineerBox .comImgBox .textBox .title {
	color: #0065b4;
	font-size: 22px;
	line-height: 2.0;
}
.engineerBox .comImgBox .textBox .title span {
	display: block;
	font-size: 36px;
}
.engineerBox .comImgBox .textBox .txt {
	margin: 8.5% 0 0.5%;
	color: #323232;
	font-size: 29px;
}
.engineerBox .comImgBox .textBox .comLink {
	margin-top: 7%;
}


@media screen and (min-width:0) and (max-width:767px) {
	
	.comImgBox .photoBox,  .comImgBox .textBox {
	width: auto;
	float: none;
}
.comImgBox .textBox {
	padding: 20px;
}
.comImgBox .textBox .title {
	font-size: 20px;
}
.comImgBox .textBox .txt {
	margin: 5px 0;
	font-size: 16px;
}
.jsBox {
	margin: 0 0 20px;
}
.jsBox a {
	margin: 0;
}
.jsBox .span {
	margin-left: -60px;
	width: 120px;
	font-size: 13px;
}
.jsBox .span .txt {
	margin-bottom: 10px;
	font-size: 16px;
}
.jsBox .border:before {
	height: 1px;
}
.comLink {
	margin: 20px 0 0;
}
.comLink a {
	padding: 10px 20px;
	height: 42px;
	font-size: 15px;
	line-height: 20px;
	background: url(../images/img_icon01.png) no-repeat 90% center;
	background-size: 10px;
}
.engineerBox {
	margin-bottom: 15px;
	padding: 20px;
	background: #0065B4;
}
.engineerBox .comImgBox .photoBox {
	width: auto;
}
.engineerBox .comImgBox .textBox {
	padding: 20px;
}
.engineerBox .comImgBox .textBox .title {
	font-size: 16px;
	line-height: 1.6;
}
.engineerBox .comImgBox .textBox .title span {
	font-size: 20px;
}
.engineerBox .comImgBox .textBox .txt {
	margin: 10px 0;
	font-size: 16px;
}
.engineerBox .comImgBox .textBox p {
	font-size: 14px;
	line-height: 1.6;
}
	
	
}


@media screen and (min-width:768px) and (max-width:1024px) {
	
	.jsBox {
	margin: 0 -30px 30px;
}
.jsBox a {
	margin: 0 10px;
}
.jsBox .span {
	margin-left: -80px;
	width: 160px;
	font-size: 17px;
}
.jsBox .span .txt {
	margin-bottom: 10px;
	font-size: 22px;
}
.comImgBox .textBox p {
	font-size: 14px;
}
.comImgBox .textBox .title {
	font-size: 22px;
}
.comImgBox .textBox .txt {
	margin: 10px 0;
	font-size: 16px;
}
.comLink {
	margin: 15px 0 0;
}
.comLink a {
	padding: 10px 20px;
	width: 120px;
	height: 42px;
	font-size: 15px;
	line-height: 20px;
	background: url(../images/img_icon01.png) no-repeat 90% center;
	background-size: 10px;
}
.engineerBox {
	margin-bottom: 15px;
	padding: 15px;
	background: #0065B4;
}
.engineerBox .comImgBox .textBox {
	padding: 10px 10px 0 0;
}
.engineerBox .comImgBox .textBox p {
	font-size: 14px;
	line-height: 1.7;
}
.engineerBox .comImgBox .textBox .title {
	font-size: 16px;
	line-height: 1.6;
}
.engineerBox .comImgBox .textBox .title span {
	font-size: 22px;
}
.engineerBox .comImgBox .textBox .txt {
	margin: 5px 0;
	font-size: 18px;
}
.engineerBox .comImgBox .photoBox {
	width: 50%;
}
.engineerBox .comImgBox .textBox .comLink {
	margin-top: 10px;
}

}

 @media screen and (min-width:1025px) and (max-width:1683px) {
	 
	 .jsBox {
	margin: 0 -30px 30px;
}
.jsBox a {
	margin: 0 10px;
}
.jsBox .span {
	margin-left: -80px;
	width: 160px;
	font-size: 20px;
}
.jsBox .span .txt {
	margin-bottom: 10px;
	font-size: 32px;
}
.comImgBox .textBox p {
	font-size: 18px;
}
.comImgBox .textBox .title {
	font-size: 28px;
}
.comImgBox .textBox .txt {
	margin: 10px 0;
	font-size: 18px;
}
.comLink {
	margin: 15px 0 0;
}
.comLink a {
	padding: 10px 30px;
	height: 52px;
	font-size: 22px;
	line-height: 30px;
	background-size: 10px;
}
.engineerBox {
	margin-bottom: 15px;
	padding: 15px;
	background: #0065B4;
}
.engineerBox .comImgBox .textBox {
	padding: 3.5% 10px 0 0;
}
.engineerBox .comImgBox .textBox p {
	font-size: 18px;
	line-height: 1.7;
}
.engineerBox .comImgBox .textBox .title {
	font-size: 20px;
	line-height: 1.6;
}
.engineerBox .comImgBox .textBox .title span {
	font-size: 28px;
}
.engineerBox .comImgBox .textBox .txt {
	margin: 10px 0;
	font-size: 18px;
}
.engineerBox .comImgBox .photoBox {
	width: 50%;
}
.engineerBox .comImgBox .textBox .comLink {
	margin-top: 10px;
}
 }
	
	
	/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
 
 .jsBox {
	margin-bottom: 10px;
	position: relative;
}

.jsBox .span {
	position: absolute;
	left: 20px;
	top: 45px;
	color: #FFF;
	font-size: 17px;
	line-height: 27px;
	font-weight: bold;
	z-index: 100;
}

.jsBox .span span {
	display: block;
	font-size: 21px;
}



#owl-demo{position:relative;width:100%;height:550px;}
#owl-demo .item{ position:relative;display:block;}
#owl-demo img{display:block;width:100%;height:550px;}

.owl-pagination{ display: none; position:absolute;left:50%;margin-left: -21px;bottom: 10px;font-weight:bold;font-family:Arial, Helvetica, sans-serif;}
.owl-page{display:inline-block;background:grey;display:block;float:left;width:8px; height:8px;margin: 0 3px;color:#FFFFFF;text-decoration:none; cursor:pointer; border-radius: 50%;}
.owl-pagination .active{background-color:rgb(51, 51, 51);} 
.owl-buttons{display:none;}
.owl-buttons div{position:absolute;top:50%;width:40px;height:65px;margin-top:-40px;text-indent:-9999px;}
/*.owl-prev{left:5px;background-image:url(../image/bg17.png);}
.owl-next{right:5px;background-image:url(../image/bg18.png);}
.owl-prev:hover{background-image:url(../image/bg19.png);}
.owl-next:hover{background-image:url(../image/bg20.png);}
*//* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}


.mb20 {
	margin-bottom:20px !important;
} 



