@charset "utf-8";

/*清除内边距*/

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
ul,
ol,
li,
pre,
fieldset,
lengend,
input,
textarea,
th,
td,
figure {
	border: none;
	padding: 0;

	margin: 0;

}

/*设置默认字体*/

body,
button,
select,
textarea {
	/* 用 ascii 字符表示，使得在任何编码下都无问题 */
	border: none;
}

html {

	height: 100%;

}

html,
body {
	color: rgba(0, 0, 0, .8);
}

h1 {

	font-size: 52px;

}

h2 {

	font-size: 18px;

}

h3 {

	font-size: 17px;

}

h4 {

	font-size: 16px;

}

h5,
h6 {

	font-size: 14px;

}

address,
cite,
dfn,
em,
var {

	font-style: normal;

}

code,
kbd,
pre,
samp,
tt {
	font-family: "Courier New", Courier, monospace;
}

/* 统一等宽字体 */

small {
	font-size: 12px;
}

/* 小于 12px 的中文很难阅读，让 small 正常化 */



/*重置列表元素*/

ul,
li {

	list-style: none;
	cursor: pointer;
}

/*重置文本格式元素*/

a {
	text-decoration: none;
}


a:hover {
	text-decoration: none;
	/* color:rgba(229,126,26,1); */
}

abbr[title],
acronym[title] {
	/* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */

	border-bottom: 1px dotted;

	cursor: help;
}

/*重置表单元素*/

legend {
	color: #000;
}

/* for ie6 */

fieldset,
img {
	border: none;
}

/* img 让链接里的 img 无边框 */

/* 注：optgroup 无法扶正 */

img {
	margin: 0px;
	padding: 0px;
	vertical-align: bottom;
	font-size: 0;

	-webkit-transition-delay: 0s;
	-webkit-transition-duration: 2s;
	-webkit-transition-property: all;
	-webkit-transition-timing-function: ease;
}

button,
input,
select,
textarea {

	font-size: 100%;
	/* 使得表单元素在 ie 下能继承字体大小 */
	outline: none;
	border: 0;
	border-color: #2f6ad3;

}

/*重置表格元素*/

table {

	border-collapse: collapse;

	border-spacing: 0;

}

/*重置hr元素*/

hr {

	border: none;

	height: 1px;

}

/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */

/* html { overflow-y: scroll; } */

/*规定html5样式*/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
section,
summary {

	display: block;

}

audio,
canvas,
progress,
video {

	display: inline-block;

	vertical-align: baseline;

	*display: inline;

	*zoom: 1;

}

audio:not([controls]) {

	display: none;

	height: 0;

}

/*苹果系统input去除*/
input[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
}

textarea {
	-webkit-appearance: none;
}

/* 浮动 */
.left {
	float: left;
}

.right {
	float: right;
}

/*清理浮动*/

.clear:before,
.clear:after {

	content: "";

	display: table;

}

.clear:after {
	clear: both;
}

.clear {

	*zoom: 1;
	/*IE/7/6*/

}

/*动画*/

p:hover {
	transition: all 0.3s ease 0s;
}

/* a:hover{ opacity:0.8;transition: all 0.3s ease 0s;} */


.pull-left {
	float: left;
}

.pull-right {
	float: right;
}

.btn {
	display: block;
	width: 270px;
	height: 54px;
	color: #000000;
	margin: 60px auto;
	border-radius: 5px;
	text-align: center;
	background: #ffd200;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn p:nth-child(1) {
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
}

.btn p:nth-child(2) {
	font-size: 12px;
}

.btn:after {
	width: 0%;
	height: 100%;
	top: 0;
	left: 0;
	background: #0068b7;
}

.btn:hover,
.btn:active {
	color: #ffffff;
	background: #0068b7;
}

.btn:hover:after,
.btn:active:after {
	width: 100%;
}

.box {
	overflow: hidden;
}

.tupian {
	line-height: 0;
}

.container {
	width: 100%;
	background-color: #131418;
	box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
	position: fixed;
	z-index: 10;
}




/*Styling Buttons*/
.login-button {
	background-color: transparent;
	border: 1.5px solid #f2f5f7;
	border-radius: 2em;
	padding: 0.6rem 0.8rem;
	margin-left: 2vw;
	cursor: pointer;

}

.login-button:hover {
	color: #131418;
	background-color: #f2f5f7;
	border: 1.5px solid #f2f5f7;
	transition: all ease-in-out 350ms;
}

.join-button {
	color: #131418;
	background-color: #61DAFB;
	border: 1.5px solid #61DAFB;
	border-radius: 2em;
	padding: 0.6rem 0.8rem;
	cursor: pointer;
}

.join-button:hover {
	color: #f2f5f7;
	background-color: transparent;
	border: 1.5px solid #f2f5f7;
	transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/



/*Stying for small screens*/
@media screen and (max-width: 750px) {
	.container {
		width: 7.5rem;
		margin: 0 auto;
		overflow: hidden;
	}

	.nav_box {
		width: 7.5rem;
		background-color: #fff;
		box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
		position: fixed;
		z-index: 10;
		top: 0;
	}

	.nav {
		width: 7.5rem;
		height: 1.5rem;
		margin: 0 auto;
		display: flex;
	}

	.logo {
		width: 2.5rem;
		height: .9rem;
		margin-left: .2rem;
		line-height: 0;
		text-align: center;
	}

	.logo img {
		width: 2.5rem;
		height: .9rem;
		margin-top: .3rem;
	}

	.hamburger {
		display: block;
		position: absolute;
		cursor: pointer;
		right: 5%;
		top: 50%;
		transform: translate(-5%, -50%);
		z-index: 2;
		transition: all 0.7s ease;
	}

	.hamburger div {
		width: 30px;
		height: 3px;
		background: #44cb1d;
		margin: 5px;
		transition: all 0.3s ease;
	}

	.nav-links {
		position: fixed;
		background: #222222;
		height: 50vh;
		width: 7.5rem;
		flex-direction: column;
		clip-path: circle(50px at 90% -20%);
		-webkit-clip-path: circle(50px at 90% -15%);
		transition: all 1s ease-out;
		pointer-events: none;
		top: 0;
	}

	.nav-links {
		display: flex;
		list-style: none;
		padding: 0;
		justify-content: space-evenly;
		align-items: center;
		text-transform: uppercase;
	}

	.nav-links.open {
		clip-path: circle(1000px at 90% -10%);
		-webkit-clip-path: circle(1000px at 90% -10%);
		pointer-events: all;
	}

	.nav-links li {
		opacity: 0;
	}

	.nav-links li a {
		width: 7.5rem;
		text-align: center;
		font-size: .32rem;
		font-weight: 300;
		display: block;
		color: #fff;
	}

	.nav-links li a:hover {
		color: #44cb1d;
	}

	.nav-links li:nth-child(1) {
		transition: all 0.5s ease 0.2s;
	}

	.nav-links li:nth-child(2) {
		transition: all 0.5s ease 0.4s;
	}

	.nav-links li:nth-child(3) {
		transition: all 0.5s ease 0.6s;
	}

	.nav-links li:nth-child(4) {
		transition: all 0.5s ease 0.7s;
	}

	.nav-links li:nth-child(5) {
		transition: all 0.5s ease 0.8s;
	}

	.nav-links li:nth-child(6) {
		transition: all 0.5s ease 0.9s;
		margin: 0;
	}

	.nav-links li:nth-child(7) {
		transition: all 0.5s ease 1s;
		margin: 0;
	}

	li.fade {
		opacity: 1;
	}

	.pgqm {
		width: 7.5rem;
		margin: 1.5rem auto 0 auto;
		position: relative;
		background-image: url(../images/w_02.jpg);
		background-repeat: no-repeat;
		background-size: 100% 100%;
		height: 9.6rem;
		overflow: hidden;
	}

	.miaod1 {
		height: 10px;
		position: absolute;
		top: -2rem;
		overflow: hidden;
	}

	.container1 {
		width: 7.5rem;
		margin: 0 auto;
		overflow: hidden;
	}

	.pgqm_bt {
		height: .71rem;
		margin: 1.2rem auto 0 auto;
		line-height: 0;
		overflow: hidden;
	}

	.pgqm_bt img {
		width: 3.16rem;
		height: .71rem;
		margin-left: .7rem;
	}

	.pgqm_xian {
		width: 1.55rem;
		height: 1px;
		background: #fff;
		margin-top: .5rem;
		margin-left: .7rem;
		overflow: hidden;
	}

	.pgqm_wz {
		width: 6.1rem;
		font-size: .22rem;
		line-height: .36rem;
		color: #fff;
		margin: .5rem auto 0 auto;
		overflow: hidden;
	}

	.pgqm_an {
		width: 4rem;
		height: .70rem;
		font-size: .24rem;
		line-height: .7rem;
		line-height: .36rem;
		color: #fff;
		margin-top: 1rem;
		margin-left: .7rem;
		background: #74c11e;
		overflow: hidden;
	}

	.pgqm_an_l {
		width: 3rem;
		height: .7rem;
		line-height: .7rem;
		text-align: right;
		float: left;
	}

	.pgqm_an a {
		color: #fff;
		background: #74c11e;
	}

	.pgqm_an:hover {
		background: #3a640b;
		transition: background-color 1000ms 0ms ease;
	}


	.pgqm_an_r {
		width: 1rem;
		height: .7rem;
		line-height: 0;
		text-align: center;
		float: left;
	}

	.pgqm_an_r img {
		width: .42rem;
		height: .42rem;
		margin-top: .16rem;
	}

	.services_box {
		width: 7.5rem;
		margin: 0 auto;
		background-image: url(../images/w_07.jpg);
		background-repeat: no-repeat;
		background-size: 100% 100%;
		height: 15.06rem;
		overflow: hidden;
	}

	.services {
		width: 6.1rem;
		margin: 0 auto;
		overflow: hidden;
	}

	.services_ybt {
		font-size: .9rem;
		color: #f1f9e8;
		text-align: center;
	}

	.services_zbt {
		font-size: .45rem;
		color: #000a2b;
		text-align: center;
	}

	.services_nr {
		width: 6.1rem;
		margin-top: .4rem;
		overflow: hidden;
	}

	.services_nr_l {
		width: .25rem;
		font-size: .25rem;
		color: #74c11e;
		float: left;
	}

	.services_nr_r {
		width: 5.7rem;
		float: left;
		margin-left: .15rem;
	}

	.services_nr_r h1 {
		font-size: .28rem;
		font-weight: 400;
	}

	.services_nr_r_img {
		margin-top: .1rem;
		line-height: 0;
	}

	.services_nr_r p {
		font-size: .18rem;
		font-weight: 400;
		margin-top: .1rem;
	}

	.qyqm_box {
		width: 7.5rem;
		margin: 0 auto;
		position: relative;
		background-image: url(../images/w_08.jpg);
		background-repeat: no-repeat;
		background-size: 100% 100%;
		height: 14rem;
		overflow: hidden;
	}

	.miaod2 {
		height: 10px;
		position: absolute;
		top: -2rem;
		overflow: hidden;
	}

	.qyqm {
		width: 6.1rem;
		margin: 0 auto;
		overflow: hidden;
	}

	.qyqm_nr {
		width: 6.1rem;
		margin: 0 auto;
		overflow: hidden;
	}

	.qyqm_img {
		width: 4.14rem;
		line-height: 0;
		position: relative;
		overflow: hidden;
	}

	.qyqm_bt {
		font-size: .45rem;
		font-weight: bold;
		color: #000a2b;
		position: absolute;
		top: .5rem;
		left: 2rem;
	}

	.qyqm_wz {
		width: 5.7rem;
		font-size: .2rem;
		margin-top: .46rem;
		margin-left: .4rem;
	}

	.qyqm_an {
		width: 4rem;
		height: .7rem;
		font-size: .24rem;
		line-height: .7rem;
		line-height: .36rem;
		color: #fff;
		margin-top: .8rem;
		margin-left: .4rem;
		background: #74c11e;
		overflow: hidden;
	}

	.qyqm_an a {
		color: #fff;
		background: #74c11e;
	}

	.qyqm_an:hover {
		background: #3a640b;
		transition: background-color 1000ms 0ms ease;
	}

	.qyqm_an_l {
		width: 3rem;
		height: .7rem;
		line-height: .7rem;
		text-align: right;
		float: left;
	}

	.qyqm_an_r {
		width: 1rem;
		height: .7rem;
		line-height: 0;
		text-align: center;
		float: left;
	}

	.qyqm_an_r img {
		width: .42rem;
		height: .42rem;
		margin-top: .16rem;
	}

	.cjqm_box {
		width: 7.5rem;
		margin: 0 auto;
		position: relative;
		background-image: url(../images/w_09.jpg);
		background-repeat: no-repeat;
		background-size: 100% 100%;
		height: 10rem;
		overflow: hidden;
	}

	.miaod3 {
		height: 10px;
		position: absolute;
		top: -1.5rem;
		overflow: hidden;
	}


	.cjqm {
		width: 6.1rem;
		height: 10.06rem;
		margin: 0 auto;
		background: #fff;
		overflow: hidden;
	}

	.cjqm_l {
		width: 4.60rem;
		margin: 0 auto;
		overflow: hidden;
	}

	.cjqm_r {
		width: 5.21rem;
		margin: .8rem auto 0 auto;
		overflow: hidden;
	}

	.cjqm_bt {
		width: 2.43rem;
		height: .69rem;
		line-height: 0;
		margin-top: .8rem;
		overflow: hidden;
	}

	.cjqm_wz {
		font-size: .2rem;
		color: #282828;
		line-height: .36rem;
		margin-top: .3rem;
	}

	.cjqm_an {
		width: 4rem;
		height: .7rem;
		font-size: .24rem;
		line-height: .7rem;
		line-height: .36rem;
		color: #fff;
		margin-top: .4rem;
		background: #74c11e;
		overflow: hidden;
	}

	.cjqm_an a {
		color: #fff;
		background: #74c11e;
	}

	.cjqm_an:hover {
		background: #3a640b;
		transition: background-color 1000ms 0ms ease;
	}

	.cjqm_an_l {
		width: 3rem;
		height: .7rem;
		line-height: .7rem;
		text-align: right;
		float: left;
	}

	.cjqm_an_r {
		width: 1rem;
		height: .7rem;
		line-height: 0;
		text-align: center;
		float: left;
	}

	.cjqm_an_r img {
		width: .42rem;
		height: .42rem;
		margin-top: .16rem;
	}

	.tfqm_box {
		width: 7.5rem;
		height: 10rem;
		position: relative;
		overflow: hidden;
	}
	.miaod4 {
		height: 10px;
		position: absolute;
		top: -1.5rem;
		overflow: hidden;
	}

	.tfqm {
		display: none;
	}

	.wtfqm {
		width: 6.1rem;
		height: 10rem;
		margin: 0 auto;
		background: #222222;
		overflow: hidden;
	}

	.tfqm_l {
		width: 4.60rem;
		margin: .8rem auto 0 auto;
		overflow: hidden;
	}

	.tfqm_r {
		width: 4.60rem;
		margin: 0 auto;
		overflow: hidden;
	}

	.tfqm_r h1 {
		font-size: .45rem;
		color: #74c11e;
		margin-top: .8rem;
		overflow: hidden;
	}

	.tfqm_r p {
		font-size: .20rem;
		line-height: .36rem;
		color: #fff;
		margin-top: .30rem;
		overflow: hidden;
	}

	.tfqm_an {
		width: 4rem;
		height: .7rem;
		font-size: .24rem;
		line-height: .7rem;
		line-height: .36rem;
		color: #fff;
		margin-top: .6rem;
		background: #74c11e;
		overflow: hidden;
	}

	.tfqm_an a {
		color: #fff;
		background: #74c11e;
	}

	.tfqm_an:hover {
		background: #3a640b;
		transition: background-color 1000ms 0ms ease;
	}

	.tfqm_an_l {
		width: 3rem;
		height: .7rem;
		line-height: .7rem;
		text-align: right;
		float: left;
	}

	.tfqm_an_r {
		width: 1rem;
		height: .7rem;
		line-height: 0;
		text-align: center;
		float: left;
	}

	.tfqm_an_r img {
		width: .42rem;
		height: .42rem;
		margin-top: .16rem;
	}

	.advantage_box {
		width: 100%;
		margin: 0 auto;
		position: relative;
		overflow: hidden;
	}
	.miaod5 {
		height: 10px;
		position: absolute;
		top: -1rem;
		overflow: hidden;
	}

	.advantage {
		width: 6.1rem;
		margin: 0 auto;
		overflow: hidden;
	}

	.advantage_ybt {
		font-size: .8rem;
		color: #f1f9e8;
		margin-top: .3rem;
		text-align: center;
	}

	.advantage_zbt {
		font-size: .45rem;
		color: #000a2b;
		text-align: center;
	}

	.advantage_nr {
		width: 6.1rem;
		margin: 0 auto;
		padding-bottom: 10px;
		overflow: hidden;
	}

	.advantage_nr ul li {
		width: 2.8rem;
		height: 4.3rem;
		margin-right: .5rem;
		margin-top: .5rem;
		float: left;
		overflow: hidden;
	}

	.advantage_nr ul li:nth-child(2n) {
		margin-right: 0px;
	}

	.advantage_nr ul li:hover {
		box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2);
	}

	.advantage_meu {
		width: 2.8rem;
		margin: 0 auto;
		overflow: hidden;
	}

	.advantage_img {
		width: 1.22rem;
		height: 1.22rem;
		margin: .20rem auto 0 auto;
	}

	.advantagse_bt {
		font-size: .28rem;
		text-align: center;
		margin-top: .2rem;
	}

	.advantage_wz {
		font-size: .18rem;
		text-align: center;
		line-height: .3rem;
		margin-top: .2rem;
		padding-bottom: .3rem;
	}

	.about_box {
		width: 100%;
		background: #74c11e;
		margin: 0 auto;
		overflow: hidden;
	}

	.about {
		width: 7.5rem;
		margin: 0 auto;
		overflow: hidden;
	}

	.about_l {
		width: 6.1rem;
		margin: 0 auto;
		overflow: hidden;
	}

	.about_r {
		width: 6.1rem;
		margin: 0 auto;
		overflow: hidden;
	}

	.about_r img {
		margin-top: .8rem;
	}

	.about_zbt {
		font-size: .45rem;
		margin-top: .7rem;
		color: #fff;
	}

	.about_ybt {
		font-size: .45rem;
		font-weight: bold;
		color: #fff;
	}

	.about_jt {
		line-height: 0;
		margin-top: .3rem;
	}

	.about_nr {
		font-size: .2rem;
		color: #fff;
		line-height: .36rem;
		margin-top: .3rem;
	}

	.about_wz {
		width: 6.1rem;
		background: #fff;
		margin-top: .5rem;
		overflow: hidden;
	}

	.about_wz_nr {
		width: 5rem;
		font-size: .2rem;
		color: #222222;
		line-height: .36rem;
		margin: .3rem auto;
		overflow: hidden;
	}

	.about_wz span {
		font-weight: bold;
	}

	.footer_box {
		width: 100%;
		background: #222222;
		margin: 0 auto;
		overflow: hidden;
	}

	.footer {
		width: 7.5rem;
		background: #222222;
		margin: 0 auto;
		overflow: hidden;
	}

	.footer_img {
		width: 2.76rem;
		height: .90rem;
		line-height: 0;
		margin: .6rem auto 0 auto;
	}

	.footer_wz {
		font-size: .2rem;
		color: #7f7f7f;
		margin-top: .4rem;
		text-align: center;
		padding-bottom: .5rem;
	}

}

#contact-information li {
	box-shadow: 0 3px 14px 0 rgb(20 34 67 / 30%);
}

/*右侧悬停*/
.fixed-right {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	z-index: 999;
	/* display: none;*/
}

.fixed-right li {
	width: 80px;
	height: 80px;
	border: 1px solid #e5e5e5;
	display: flex;
	line-height: 0;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	cursor: pointer;
	position: relative;
}

.fixed-right li+li {
	border-top: transparent;
}

.fixed-right li .iconfont {
	color: #999;
}

.fixed-right li .icon-qq {
	font-size: 30px;
}

.fixed-right li .icon-weixin1 {
	font-size: 25px;
}

.fixed-right li .icon-go-top {
	font-size: 36px;
}

.fixed-right li .wechat {
	background: url('../images/img-15.png') no-repeat;
	width: 146px;
	height: 135px;
	position: absolute;
	top: -18px;
	right: calc(100% + 10px);
	padding: 10px 0 0 10px;
	z-index: 1000;
	display: none;
	transition: all 600ms;
}

.fixed-right li:hover .wechat {
	display: block;
}

.fixed-right li:hover .iconfont {
	color: #157df1;
}

.fixed-right li .wechat img {
	width: 115px;
	height: 115px;
}

.fixed-right .go-top {
	display: none;
}

/*/右侧悬停*/

/*Animating Hamburger Icon on Click*/
.toggle .line1 {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
	transition: all 0.7s ease;
	width: 0;
}

.toggle .line3 {
	transform: rotate(45deg) translate(-5px, -6px);
}

@media (min-width:751px) {
	.nav_box {
		width: 100%;
		background-color: #fff;
		box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
		position: fixed;
		top: 0;
		z-index: 10;
	}

	.nav {
		width: 1200px;
		height: 120px;
		margin: 0 auto;
		display: flex;
	}

	.logo {
		width: 214px;
		font-size: 20px;
		text-align: center;
	}

	.logo img {
		width: 214px;
		height: 74px;
		margin-top: 27px;
	}

	.hamburger {
		display: none;
	}

	.nav-links {
		display: flex;
		list-style: none;
		width: 986px;
		font-size: 20px;
		justify-content: space-evenly;
		align-items: center;
		text-transform: uppercase;
	}

	.nav-links li a {
		font-size: 20px;
		color: #282828;
	}

	.nav-links li a:hover {
		color: #44cb1d;
	}

	.nav-links li {
		position: relative;
	}

	.nav-links li a::before {
		content: "";
		display: block;
		height: 3px;
		width: 0%;
		background-color: #44cb1d;
		position: absolute;
		bottom: -10px;
		transition: all ease-in-out 250ms;
		margin: 0 0 0 10%;
	}

	.nav-links li a:hover::before {
		width: 80%;
	}

	.pgqm {
		width: 100%;
		margin: 120px auto 0 auto;
		background-image: url(../images/1_02.jpg);
		background-repeat: no-repeat;
		background-position: center;
		height: 1352px;
		overflow: hidden;
	}

	.miaod1 {
		height: 10px;
		position: absolute;
		top: 200px;
		overflow: hidden;
	}

	.container1 {
		width: 1200px;
		margin: 0 auto;
		overflow: hidden;
	}

	.shapeesright {
		width: 1200px;
		position: relative;
		margin: 0 auto;
		overflow: hidden;
	}

	.pgqm_bt {
		height: 71px;
		margin: 330px auto 0 auto;
		line-height: 0;
		overflow: hidden;
	}

	.pgqm_bt img {
		width: 316px;
		height: 71px;
	}

	.pgqm_xian {
		width: 155px;
		height: 1px;
		background: #fff;
		margin-top: 40px;
		overflow: hidden;
	}

	.pgqm_wz {
		width: 750px;
		font-size: 22px;
		line-height: 36px;
		color: #fff;
		margin-top: 40px;
		overflow: hidden;
	}

	.pgqm_an {
		width: 400px;
		height: 70px;
		font-size: 24px;
		line-height: 70px;
		line-height: 36px;
		color: #fff;
		margin-top: 150px;
		background: #74c11e;
		overflow: hidden;
	}

	.pgqm_an_l {
		width: 300px;
		height: 70px;
		line-height: 70px;
		text-align: right;
		float: left;
	}

	.pgqm_an a {
		color: #fff;
		background: #74c11e;
	}

	.pgqm_an:hover {
		background: #3a640b;
		transition: background-color 1000ms 0ms ease;
	}

	.pgqm_an_r {
		width: 100px;
		height: 70px;
		line-height: 0;
		text-align: center;
		float: left;
	}

	.pgqm_an_r img {
		width: 42px;
		height: 42px;
		margin-top: 16px;
	}

	.services_box {
		width: 100%;
		margin: 0 auto;
		background-image: url(../images/1_07.jpg);
		background-repeat: no-repeat;
		background-position: center;
		height: 1006px;
		overflow: hidden;
	}

	.services {
		width: 1200px;
		margin: 0 auto;
		overflow: hidden;
	}

	.services_ybt {
		font-size: 90px;
		color: #f1f9e8;
		text-align: center;
	}

	.services_zbt {
		font-size: 45px;
		color: #000a2b;
		text-align: center;
	}

	.services_nr {
		width: 582px;
		margin-top: 94px;
		overflow: hidden;
	}

	.services_nr_l {
		width: 25px;
		font-size: 25px;
		color: #74c11e;
		float: left;
	}

	.services_nr_r {
		width: 540px;
		float: left;
		margin-left: 17px;
	}

	.services_nr_r h1 {
		font-size: 28px;
		font-weight: 400;
	}

	.services_nr_r_img {
		margin-top: 10px;
		line-height: 0;
	}

	.services_nr_r p {
		font-size: 18px;
		font-weight: 400;
		margin-top: 10px;
	}

	.qyqm_box {
		width: 100%;
		margin: 0 auto;
		background-image: url(../images/1_12.jpg);
		background-repeat: no-repeat;
		background-position: center;
		height: 1170px;
		overflow: hidden;
	}

	.qyqm {
		width: 1200px;
		margin: 0 auto;
		overflow: hidden;
	}

	.qyqm_nr {
		width: 680px;
		margin-left: 520px;
		overflow: hidden;
	}

	.qyqm_img {
		width: 414px;
		line-height: 0;
		margin-top: 190px;
		position: relative;
		overflow: hidden;
	}

	.qyqm_bt {
		font-size: 45px;
		font-weight: bold;
		color: #000a2b;
		position: absolute;
		top: 50px;
		left: 200px;
	}

	.qyqm_wz {
		width: 640px;
		font-size: 20px;
		margin-left: 40px;
		margin-top: 46px;
	}

	.qyqm_an {
		width: 400px;
		height: 70px;
		font-size: 24px;
		line-height: 70px;
		line-height: 36px;
		color: #fff;
		margin-top: 110px;
		margin-left: 40px;
		background: #74c11e;
		overflow: hidden;
	}

	.qyqm_an a {
		color: #fff;
		background: #74c11e;
	}

	.qyqm_an:hover {
		background: #3a640b;
		transition: background-color 1000ms 0ms ease;
	}

	.qyqm_an_l {
		width: 300px;
		height: 70px;
		line-height: 70px;
		text-align: right;
		float: left;
	}

	.qyqm_an_r {
		width: 100px;
		height: 70px;
		line-height: 0;
		text-align: center;
		float: left;
	}

	.qyqm_an_r img {
		width: 42px;
		height: 42px;
		margin-top: 16px;
	}

	.cjqm_box {
		width: 100%;
		margin: 0 auto;
		position: relative;
		background-image: url(../images/1_17.jpg);
		background-repeat: no-repeat;
		background-position: center;
		height: 644px;
		overflow: hidden;
	}

	.miaod3 {
		height: 10px;
		position: absolute;
		top: -100px;
		overflow: hidden;
	}

	.cjqm {
		width: 1200px;
		height: 644px;
		margin: 0 auto;
		background: #fff;
		overflow: hidden;
	}

	.cjqm_l {
		width: 460px;
		margin-left: 90px;
		margin-right: 40px;
		float: left;
		overflow: hidden;
	}

	.cjqm_r {
		width: 521px;
		margin-top: 124px;
		float: left;
		overflow: hidden;
	}

	.cjqm_bt {
		width: 243px;
		height: 69px;
		line-height: 0;
		margin-top: 118px;
		overflow: hidden;
	}

	.cjqm_wz {
		font-size: 24px;
		color: #282828;
		line-height: 36px;
		margin-top: 30px;
	}

	.cjqm_an {
		width: 400px;
		height: 70px;
		font-size: 24px;
		line-height: 70px;
		line-height: 36px;
		color: #fff;
		margin-top: 40px;
		background: #74c11e;
		overflow: hidden;
	}

	.cjqm_an a {
		color: #fff;
		background: #74c11e;
	}

	.cjqm_an:hover {
		background: #3a640b;
		transition: background-color 1000ms 0ms ease;
	}

	.cjqm_an_l {
		width: 300px;
		height: 70px;
		line-height: 70px;
		text-align: right;
		float: left;
	}

	.cjqm_an_r {
		width: 100px;
		height: 70px;
		line-height: 0;
		text-align: center;
		float: left;
	}

	.cjqm_an_r img {
		width: 42px;
		height: 42px;
		margin-top: 16px;
	}

	.tfqm_box {
		width: 100%;
		margin: 0 auto;
		position: relative;
		background-image: url(../images/1_25.jpg);
		background-repeat: no-repeat;
		background-position: center;
		height: 644px;
		overflow: hidden;
	}

	.miaod4 {
		height: 10px;
		position: absolute;
		top: -100px;
		overflow: hidden;
	}

	.wtfqm {
		display: none;
	}

	.tfqm {
		width: 1200px;
		height: 644px;
		margin: 0 auto;
		background: #222222;
		overflow: hidden;
	}

	.tfqm_l {
		width: 474px;
		margin-left: 90px;
		margin-right: 86px;
		margin-top: 126px;
		float: left;
		overflow: hidden;
	}

	.tfqm_r {
		width: 460px;
		float: left;
		overflow: hidden;
	}

	.tfqm_r h1 {
		font-size: 45px;
		color: #74c11e;
		margin-top: 140px;
		overflow: hidden;
	}

	.tfqm_r p {
		font-size: 20px;
		line-height: 36px;
		color: #fff;
		margin-top: 30px;
		overflow: hidden;
	}

	.tfqm_an {
		width: 400px;
		height: 70px;
		font-size: 24px;
		line-height: 70px;
		line-height: 36px;
		color: #fff;
		margin-top: 60px;
		background: #74c11e;
		overflow: hidden;
	}

	.tfqm_an a {
		color: #fff;
		background: #74c11e;
	}

	.tfqm_an:hover {
		background: #3a640b;
		transition: background-color 1000ms 0ms ease;
	}

	.tfqm_an_l {
		width: 300px;
		height: 70px;
		line-height: 70px;
		text-align: right;
		float: left;
	}

	.tfqm_an_r {
		width: 100px;
		height: 70px;
		line-height: 0;
		text-align: center;
		float: left;
	}

	.tfqm_an_r img {
		width: 42px;
		height: 42px;
		margin-top: 16px;
	}

	.advantage_box {
		width: 100%;
		margin: 0 auto;
		position: relative;
		background-image: url(../images/1_29.jpg);
		background-repeat: no-repeat;
		background-position: center;
		height: 1169px;
		overflow: hidden;
	}

	.miaod5 {
		height: 10px;
		position: absolute;
		top: -100px;
		overflow: hidden;
	}

	.advantage {
		width: 1200px;
		margin: 0 auto;
		overflow: hidden;
	}

	.advantage_ybt {
		font-size: 90px;
		color: #f1f9e8;
		margin-top: 30px;
		text-align: center;
	}

	.advantage_zbt {
		font-size: 45px;
		color: #000a2b;
		text-align: center;
	}

	.advantage_nr {
		width: 1200px;
		margin: 0 auto;
		padding-bottom: 10px;
		overflow: hidden;
	}

	.advantage_nr ul li {
		width: 360px;
		height: 390px;
		margin-right: 15px;
		margin-left: 10px;
		margin-top: 50px;
		float: left;
		overflow: hidden;
	}

	.advantage_nr ul li:nth-child(3n) {
		margin-right: 0px;
	}

	.advantage_nr ul li:hover {
		box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2);
	}

	.advantage_meu {
		width: 300px;
		margin: 0 auto;
		overflow: hidden;
	}

	.advantage_img {
		width: 122px;
		height: 122px;
		margin: 20px auto 0 auto;
	}

	.advantagse_bt {
		font-size: 28px;
		text-align: center;
		margin-top: 20px;
	}

	.advantage_wz {
		font-size: 18px;
		text-align: center;
		line-height: 30px;
		margin-top: 20px;
		padding-bottom: 30px;
	}

	.about_box {
		width: 100%;
		background: #74c11e;
		position: relative;
		margin: 0 auto;
		overflow: hidden;
	}

	.miaod6 {
		height: 10px;
		position: absolute;
		top: -100px;
		overflow: hidden;
	}

	.about {
		width: 1200px;
		margin: 0 auto;
	}

	.about_l {
		width: 500px;
		float: left;
		margin-right: 66px;
		overflow: hidden;
	}

	.about_r {
		width: 634px;
		float: left;
	}

	.about_r img {
		margin-top: 80px;
	}

	.about_zbt {
		font-size: 45px;
		margin-top: 70px;
		color: #fff;
	}

	.about_ybt {
		font-size: 45px;
		font-weight: bold;
		color: #fff;
	}

	.about_jt {
		line-height: 0;
		margin-top: 30px;
	}

	.about_nr {
		font-size: 20px;
		color: #fff;
		line-height: 36px;
		margin-top: 30px;
	}

	.about_wz {
		width: 360px;
		background: #fff;
		margin-top: 50px;
		overflow: hidden;
	}

	.about_wz_nr {
		width: 300px;
		font-size: 20px;
		color: #222222;
		line-height: 36px;
		margin: 30px auto;
		overflow: hidden;
	}

	.about_wz span {
		font-weight: bold;
	}

	.footer_box {
		width: 100%;
		background: #222222;
		margin: 0 auto;
		overflow: hidden;
	}

	.footer {
		width: 1200px;
		background: #222222;
		margin: 0 auto;
		overflow: hidden;
	}

	.footer_img {
		width: 276px;
		height: 90px;
		line-height: 0;
		margin: 60px auto 0 auto;
	}

	.footer_wz {
		font-size: 20px;
		color: #7f7f7f;
		margin-top: 40px;
		text-align: center;
		padding-bottom: 50px;
	}



	.shape1 {
		position: absolute;
		right: -250px;
		top: -80px;
		animation: animationFramesTwo 30s alternate infinite linear;
	}

	.shape2 {
		position: absolute;
		right: -127px;
		top: 128px;
		animation: zoomIn 5s alternate infinite linear;
	}

	.shape3 {
		position: absolute;
		right: -250px;
		top: 320px;
	}

	.shape4 {
		position: absolute;
		top: -124px;
		left: 256px;
	}

	.shape5 {
		position: absolute;
		top: -132px;
		left: 291px;
		animation: animationFramesTwo 30s alternate infinite linear;
	}

	.shape6 {
		position: absolute;
		right: 123px;
		top: -220px;
		animation: fadeInLeft 2s alternate infinite linear;
	}

	.shape7 {
		position: absolute;
		left: -72px;
		top: 132px;
		animation: animationFramesTwo 30s alternate infinite linear;
	}

	.shape8 {
		position: absolute;
		top: 464px;
		left: 445px;
		animation: animationFramesTwo 30s alternate infinite linear;
	}

	.shape9 {
		position: absolute;
		top: 493px;
		left: 630px;
	}

	.shape11 {
		position: absolute;
		top: 394px;
		left: 504px;
	}

	.fudong {
		position: absolute;
		width: 10px;
		height: 10px;
		border-radius: 5px;
		background: red;
		top: 50%;
		animation-name: myfirst;
		animation-duration: 5s;
		animation-timing-function: linear;
		animation-delay: 2s;
		animation-iteration-count: infinite;
		animation-direction: alternate;
		animation-play-state: running;
		/* Safari and Chrome: */
		-webkit-animation-name: myfirst;
		-webkit-animation-duration: 5s;
		-webkit-animation-timing-function: linear;
		-webkit-animation-delay: 2s;
		-webkit-animation-iteration-count: infinite;
		-webkit-animation-direction: alternate;
		-webkit-animation-play-state: running;
	}

	@keyframes myfirst {
		0% {
			background: red;
			left: 0px;
			top: 0px;
		}

		25% {
			background: yellow;
			left: 200px;
			top: 0px;
		}

		50% {
			background: blue;
			left: 200px;
			top: 200px;
		}

		75% {
			background: green;
			left: 0px;
			top: 200px;
		}

		100% {
			background: red;
			left: 0px;
			top: 0px;
		}
	}

	@-webkit-keyframes myfirst

	/* Safari and Chrome */
		{
		0% {
			background: red;
			left: 0px;
			top: 0px;
		}

		25% {
			background: yellow;
			left: 200px;
			top: 0px;
		}

		50% {
			background: blue;
			left: 200px;
			top: 200px;
		}

		75% {
			background: green;
			left: 0px;
			top: 200px;
		}

		100% {
			background: red;
			left: 0px;
			top: 0px;
		}
	}

}
