/* -------------------------------- 

Primary style

-------------------------------- */
button{
	background-color: transparent;
	border: none;
	outline: none;
}
*{
	font-family: "微软雅黑"
}
.row{
	margin: 0;
}
body{
	margin: 0;
	padding: 0;
}
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  font-size: 100%;
  font-family: "Roboto", sans-serif,"微软雅黑";
  color: #3d3536;
  background-color: white;
}

body, html {
  /* important */
  height: 100%;
}

a {
  color: #b4d7a8;
  text-decoration: none;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
  float: left;
  margin: 13px 0 0 5%;
}
.cd-header #cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 70px;
  }
  .cd-header #cd-logo {
    margin: 23px 0 0 5%;
  }
}

.cd-main-nav {
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../img/cd-icon-menu.svg") no-repeat center center;
  background-size: 44px 44px;
  cursor: pointer;
}
.cd-main-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-main-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-main-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #2f292a;
  border-top: 1px solid #453c3d;
  color: #8e7d7f;
}
@media only screen and (min-width: 768px) {
  .cd-main-nav {
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .cd-main-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-main-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-main-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-main-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
    color: #3d3536;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .no-touch .cd-main-nav a:hover {
    color: #99a478;
  }
}

.cd-main-content {
  /* you need to assign a min-height to the main content so that the children can inherit it*/
  height: 100%;
  position: relative;
  z-index: 1;
}

.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.cd-fixed-bg h1, .cd-fixed-bg h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 1170px;
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}
.cd-fixed-bg.cd-bg-1 {
  background-image: url("../img/aboutusTop.jpg");
  z-index: 0;
}
.lastImg{
	position: relative;
}

.cd-fixed-bg.cd-bg-1+div{
	height: auto;
}
.cd-fixed-bg.cd-bg-2+div{
	height: auto;
	padding: 116px 0 104px 0;
}
.cd-fixed-bg.cd-bg-3+div{
	height: auto;
	padding: 116px 0 162px 0;
}
.cd-fixed-bg.cd-bg-4+div{
	height: auto;
	padding: 116px 0 198px 0;
}
.cd-fixed-bg.cd-bg-5+div{
	height: auto;
	padding: 116px 0 198px 0;
}

@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 0px) {
  #dous{
  	display: none;
  }
  #brs{
  	display: inline-block;
  }
}
@media only screen and (min-width: 1024px) {
  #brs{
  	display: none;
  }
  #dous{
  	display: inline-block;
  }
}
@media only screen and (min-width: 1921px) {
  .cd-fixed-bg.cd-bg-1 {
    background-attachment: fixed;
  }
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 48px;
    font-weight: 300;
  }
}

.cd-scrolling-bg {
  position: relative;
  /*min-height: 100%;*/
  padding: 0;
  line-height: 1.6;
  /*box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);*/
  z-index: 2;
}
.cd-scrolling-bg.cd-color-1 {
  background-color: #3d3536;
  color: #a6989a;
}
.cd-scrolling-bg.cd-color-2 {
  background-color: #fff;
}
.cd-scrolling-bg.cd-color-3 {
  background-color: #fff;
}
.cd-scrolling-bg.cd-color-3.gray{
	background-color: #f4f4f4;
	padding-bottom: 79px;
}
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding:0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 300;
  }
}
.main_part{
	margin: 0 auto;
	height: 100%;
}
.main_part h1{
	margin: 0 auto;
	padding: 0;
	text-align: center;
	font-family: "微软雅黑";
	font-weight: normal;
	font-size: 40px;
	color: #363636;
}
.mt40{
	margin-top: 34px;
	font-family: "微软雅黑";
	font-size: 18px;
	color: #848484;
}
.tips1{
	display: inline-block;
	background-image: url("../img/tips.jpg");
	width: 24px;
	height: 24px;
	position: relative;
	top: 6px;
}
.mainPart01{
	margin: 0;
	margin-top: 27px;
}
.mainPart01 img{
	margin-top: 10px;
}
.mainPart01 .row div:first-child{
	font-size: 16px;
	color: #363636;
}
.mainPart01 .row{
	margin-top: 10px;
}
.mainPart01 .row div:first-child+div{
	font-size: 16px;
	color: #848484;
}

@media only screen and (min-width: 768px) {
	.mainPart01 div.col-md-4:first-child{
		padding: 0;
		padding-right: 10px;
	}
	.mainPart01 div.col-md-4:first-child+div{
		padding-right: 5px;
		padding-left: 5px;
	}
	.mainPart01 div.col-md-4:first-child+div+div{
		padding:0px;
		padding-left: 10px;
	}
}
.phonePart{
	position: relative;
}
.phones,.phones1{
	position: absolute;
	top: -265px;
	right: 0;
}
.phones1{
	left: 0;
}
.phonePart_worsd{
	font-size: 20px;
	color: #848484;
	line-height: 36px;
	margin-top: 36px;
}
.phonePart_worsd_tip{
	font-size: 16px;
	color: #a9a9a9;
	margin-top: 26px;
}
@media only screen and (max-width: 769px){
	.phones{
		top:-458px
	}
	.phones1{
		top:-165px
	}
	.phones2{
		top:-324px
	}
	.halfss_img{
		left: 25%;
	}
	.phonePart div.row .halfss{
		width: 100%;
		position: relative;
		top: 100px;
		text-align: center;
	}
	.phonePart div.row .halfss h1{
		text-align: center !important;
		font-size: 30px
	}
	.phonePart div.row .halfss h1+p{
		font-size: 16px;
		padding: 0 10px;
	}
	.phonePart div.row .halfss h1+p+p{
		font-size: 14px;
		padding: 0 10px;
	}
}

@media only screen and (max-width: 1024px){
	.cd-bg-6{
		min-height: 200px;
	}
	.down-load{
		padding-top: 310px;
	}
	
}
.down-load .dl_type{
	width: 243px;
	height: 243px;
	border: solid 1px #e4e4e4;
	margin-top: 10px;
}
.android_dl .dl_type,.iphone_dl .dl_type{
	cursor: pointer;
}
.android_dl .dl_type:hover,.iphone_dl .dl_type:hover{
	background-color: #61ad07;
	box-shadow: 0px 20px 20px 0px rgba(97,173,7,.3);
}
.android_dl .dl_type:hover>div>i,.android_dl .dl_type:hover>div{
	color: #fff;
}
.dlIcon{
	margin-top: 72px;
}
.dl_words{
	text-align: center;
	color: #8b8a8a;
	font-size: 16px;
	margin-top: 18px;
}
.android_dl i{
	font-size: 60px;
	margin-left: 40%;
	color: #93c33e;
}
.footers{
	color:#848484 ;
	line-height: 78px;
	font-size: 14px;
	text-align: center;
	background-color:#f8f8f8;
	padding-bottom: 3px;
}
.erweiBox{
	margin: 0 auto;
	width: 99px;
	height: 99px;
	background-image: url("../img/erweima.jpg");
	margin-top: 70px;
}
.down-load h1{
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 36px;
	color: #363636;
}
.down-load p{
	margin: 0;
	padding: 0;
	text-align: center;
	margin-top: 30px;
	font-size: 18px;
	color: #848484;
	padding-bottom: 50px;
}
.navue{
	padding: 0 20px;
	position: fixed;
	width: 100%;
	z-index: 199999;
	padding-top: 36px;
	background-color: #fff;
	min-width: 800px;
}
.logo_part{
	display: inline-block;
	position: absolute;
	width: 186px;
	height: 36px;
	background-size: contain;
	background-position: center center;
	top: 14px;
}
.nav_part{
	width: 620px;
	overflow: hidden;
	margin: 0 auto;
	position: relative;
	top: -15px;
}
.nav_part li{
	float: left;
	margin: 0 25px;
}
.nav_part li a{
	font-size: 20px;
	color: #646464;
	text-decoration: none;
	display: inline-block;
	padding-bottom: 4px;
	border-bottom: solid 2px transparent;
}
.nav_part li a:hover{
	color: #61ad07;
	border-bottom: solid 2px #61ad07;
	
}
.share_part{
	position: absolute;
	top: 26px;
	right: 20px;
}
.share_part i{
	color: #a9a9a9;
	font-size: 20px
}
.share_part a:hover{
	text-decoration: none;
}
.downLoad_btn{
	display: block;
	z-index: 99999;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 290px;
	height: 74px;
	border: solid 2px rgba(255,255,255,0.4);
	color: #fff;
	text-align: center;
	line-height: 74px;
	font-size: 28px;
	margin-left: -145px;
	margin-top: -37px;
	font-family: "微软雅黑";
	font-weight: 100;
}
.downLoad_btn:hover{
	text-decoration: none;
	opacity: 1;
	color: #fff;
}
.downLoad_btn i{
	position: relative;
	top:2px;
	right: 2px;
}



.cd-bg-1 .llTitl{
	color: #fff;
	position: fixed;
	top: 23%;
	font-size: 64px;
	font-weight: 400;
}
.cd-bg-1 p{
	color: #fff;
	position: fixed;
	top: 36%;
	width: 100%;
	text-align: center;
	font-size: 28px;
	font-weight: 100;
}

.dowhat,.hztype,.whychoice,.howtobecome,.pk{
	padding: 0;
	margin: 0;
}
.dowhat h1,.hztype h1,.whychoice h1,.howtobecome h1,.pk h1{
	font-weight: 100;
	font-size: 42px;
	color: #484848;
	margin-top: 200px;
}
.hztype h1{
	margin-top: 114px;
}
.whychoice h1{
	margin-top: 0;
	line-height: 160px;
}
.howtobecome h1{
	margin-top: 80px;
}
.pk h1{
	margin-top: 0;
	line-height: 156px;
}
.dowhat_part{
	margin-top: 60px;
}
.dowhat_part h1{
	font-size: 24px;
	color: #363636;
	margin-top: 40px;
}
.dowhat_part h2{
	font-size: 18px;
	color: #646464;
	font-weight: 100;
	text-align: center;
	margin: 0;
	padding: 0;
	line-height: 34px;
	margin-top: 20px;
}
.hz_main{
	margin-top: 60px;
}
.hz_main h2{
	margin: 0;
	padding: 0;
	font-size: 32px;
	color: #363636;
	font-weight: 100;
	margin-top: 100px;
}
.hz_main p{
	font-size: 20px;
	color: #646464;
	margin: 0;
	padding: 0;
	line-height: 38px;
	margin-top: 22px;
}
.reson{
	padding: 60px;
	background-color: #fff;
	min-height: 710px;
	border-bottom: solid 2px #e5e5e5;
}
.reson h1{
	padding: 0;
	margin: 0;
	font-size: 32px;
	color: #363636;
	font-weight: 100;
	text-align: left;
	display: inline-block;
}
.reson h1.mt52{
	margin-top: 50px;
}
.reson .Eng,.ping_kong .Eng{
	color: #fff;
	line-height: 32px;
	padding: 0px 15px;
	font-size: 16px;
	background-color: #26c2ad;
	display: inline-block;
	position: relative;
	top: -5px;
	border-radius:3px ;
	margin-left: 10px;
}
.ping_kong .Eng{
	padding-left: 20px;
	padding-right: 20px;
}
.reson p{
	font-size: 20px;
	color: #848484;
	margin: 0;
	padding: 0;
	line-height: 36px;
	margin-top: 15px;
}
.reson h2{
	font-size: 24px;
	color: #363636;
	font-weight: 100;
	margin-top: 32px;
}


.howtotip{
	margin: 0;
	padding: 0;
	font-size: 20px;
	color: #646464;
	text-align: center;
	line-height: 36px;
	margin-top: 30px;
}
.howtoImg{
	margin-top: 10px;
}
.howtoImg img{
	cursor: pointer;
	margin-top: 10px;
}
.howtoImg img:hover{
	opacity: 0.9;
}

.clickTomain p{
	text-align: center;
	line-height: 78px;
	font-size: 20px;
	color: #a9a9a9;
}
.ping_kong{
	border-bottom: solid 2px #e6e6e6;
}
.ping_kong div{
	background-color: #fff;
}
.ping_kong>div:first-child{
	padding: 60px 80px;
	
}
.ping_kong h1{
	margin: 0;
	padding: 0;
	font-size: 32px;
	color: #363636;
	display: inline-block;
}
.ping_kong p{
	font-size: 20px;
	color: #848484;
	line-height: 36px;
	margin-top: 20px;
}

.content-btns,.content-button{
	z-index: 2;
}
.content-btns h1{
	text-align: center;
	font-size: 36px;
	color: #363636;
	font-weight: 100;
	margin: 0;
	padding: 0;
	margin-top: 100px;
}
.big_title .btn_box{
	width: 100%;
}
.big_title button,.mainPart button{
	display: block;
	margin: 0 auto;
	height: 50px;
	width: 194px;
	line-height: 50px;
	background-color: #79b92c;
	font-size: 20px;
	text-align: center;
	color: #fff;
	border: 0;
	outline: none;
	margin-top: 22px;
	box-shadow: 0px 10px 20px 0px rgba(121,185,44,.3);
}
.big_title button:hover{
	background-color:#6aa127
}
.btn_box button:hover{
	background-color:#6aa127
}
.content-button{
	padding-bottom: 120px;
}
.content-button button:hover{
	box-shadow: 0px 10px 20px 0px rgba(39,187,161,.3);
}
.contentus{
	border-radius: 0;
}
.modal-lg{
	min-width: 1200px;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	top: 20%;
	left: 50%;
	margin-left: -600px;
	background-color: transparent;
}
.modal-content{
	background-color: transparent;
	box-shadow: none;
	border: none;
}
.mainForm{
	width: 733px;
	margin: 0 auto;
	background-color: #fff;
	padding:16px 80px 60px 80px;
}
.mainForm h1{
	margin: 0;
	padding: 0;
	text-align: center;
	color: #4a4b4b;
	font-size: 36px;
	font-weight: 100;
	line-height: 122px;
}

.mainForm input.normal_inp{
	border-bottom: 1px solid #d8d8d8;
	margin-top: 20px;
	font-weight: 400;
	color: #79b92c;
}
.mainForm input{
	font-size: 24px;
	line-height: 62px;
	height: 62px;
	width: 100%;
	outline: none;
	border: none;
};
.mainForm form{
	position: relative;
}
.mainForm form span{
	position: absolute;
	right: 0;
	font-size: 20px;
	color: #848484;
	display: none;
}
.mainForm form span.compony_name{
	top: 36px;
}
.mainForm form span.people{
	top: 118px;
}
.mainForm form span.telphone{
	top: 200px;
}
.mainForm form p{
	margin: 0;
	padding: 0;
	color: #a9a9a9;
	font-size: 20px;
	text-align: center;
	margin-top: 40px;
}
#down_load{
	z-index: 1;
}
.wrong_tip{
	color: #e95f4c;
	font-weight: normal;
	font-size: 16px;
	position: absolute;
	top: 265px;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #a9a9a9;
  text-align: center;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color:#a9a9a9;
  text-align: center;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color:#a9a9a9;
  text-align: center;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color:#a9a9a9;
  text-align: center;
}
.saveBtn{
	width: 100%;
	text-align: center;
	border: none;
	outline: none;
	height: 64px;
	line-height: 64px;
	color: #fff;
	font-size: 24px;
	background-color: #79b92c;
	margin-top: 60px;
	box-shadow: 0px 10px 20px 0px rgba(121,185,44,.3);
}
.saveBtn:hover{
	background-color: #6aa127;
}
.closeBtns{
	width: 64px;
	height: 64px;
	background-color: #000;
	text-align: center;
	line-height: 64px;
	color: #fff;
	position: absolute;
	top: -64px;
	right: 233px;
	font-size: 45px;
	font-weight: 100;
	opacity: 0.5;
}
.closeBtns:hover{
	color: #fff;
}
.zczz_modal{
	width: 760px;
	margin: 0 auto;
}
.zczz_modal p{
	text-align: center;
	color: #1ab5a0;
	font-size: 24px;
	font-weight: 100;
	line-height: 100px;
}
.zczz_modal>div{
	background-color: #fff;
}
.zczz_modal div:first-child{
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center left;
}
.zczz_modal h1{
	font-size: 36px;
	color: #4a4b4b;
	padding-left: 16px;
	padding-top: 57px;
	text-align: center;
}
.zczz_modal h1 span{
	padding-left: 41px;
}
.zz_list{
	padding-left: 100px;
}
.zz_list h4{
	font-size: 20px;
	color: #4a4b4b;
	line-height: 80px;
}
.zz_list li{
	font-size: 20px;
	color: #848484;
	line-height: 35px;
}
.zz_list li.bottom_li{
	position: absolute;
	bottom: 80px;
}
.zz_list li.line_li{
	position: absolute;
	bottom: 140px;
	color: #e5e5e5;
}
.zz_list li.line_lis{
	color: #e5e5e5;
}
ol{
	padding: 0;
	padding-right: 52px;
	margin: 0;
	padding-left: 30px;
}
.teshuShop>div{
	height: 780px;
}
.ts_bottom{
	overflow: hidden;
	padding-left: 110px;
	margin-top: ;
}

.ts_bottom .tsList{
	float: left;
	border: solid 1px #d8d8d8;
	width: 120px;
	height: 52px;
	line-height: 52px;
	text-align: center;
	font-size: 18px;
	color: #848484;
	margin-right: 10px;
}


h1{
	margin: 0;
	padding: 0;
}
.mainPart{
	width: 1200px;
	margin: 0 auto;
	/*padding-top: 85px;*/
	background-color: #fff;
}
.mainPartTop{
	width: 100%;
	margin: 0 auto;
	background-color: #f8f8f8;
	margin-top: 80px;
	padding-bottom:80px ;
}
.mainBottom{
	width: 1200px;
	margin: 0 auto;
}
.mainBottom h1{
	line-height: 146px;
	text-align: center;
	font-size: 28px;
	color: #363636;
	font-weight: 100;
}
.big_title{
	width: 854px;
	height: 457px;
	margin: 0 auto;
}
.big_title h1{
	text-align: center;
	font-size: 64px;
	color: #363636;
	font-weight: 200;
	padding-top: 106px;
}
.big_title p{
	text-align: center;
	font-size: 24px;
	color: #646464;
	font-weight: 100;
	line-height: 70px;
}
.apply_part{
	width: 1116px;
	margin: 0 auto;
	margin-top: 44px;
}
.apply_part div{
	float: left;
	border: solid 2px #e8efef;
	width: 556px;
	height: 190px;
	position: relative;
	box-shadow:0 4px 10px 0 rgba(0,0,0,.04);
}
.apply_part div i{
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	display: block;
	top: 60px;
}
.apply_part div i.apply_imgL{
	width: 64px;
	height: 64px;
	left: -32px;
}
.apply_part div i.apply_imgR{
	width: 62px;
	height: 62px;
	right: -31px;
}
.apply_part div:first-child{
	border-right:none;
	padding: 30px 46px 36px 60px;
}
.apply_part div:first-child+div{
	padding: 30px 74px 36px 39px;
}
.apply_part h1{
	font-size: 24px;
	color: #363636;
	font-weight: 200;
}
.apply_part p{
	font-size: 18px;
	color: #646464;
	line-height: 33px;
	margin-top: 14px;
	font-weight: 100;
}
.youshi_part{
	clear: both;
}
.youshi_part .row{
	margin-top: 60px;
}
.youshi_part p{
	font-weight: 100;
	font-size: 16px;
	color: #646464;
	line-height: 30px;
	padding-top: 50px;
}
.main_title{
	font-size: 36px;
	color: #363636;
	text-align: center;
	font-weight: 100;
}
.youshi_part h1{
	padding-top: 120px;
}
.youshi_part i{
	display: block;
	width: 87px;
	height: 87px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.banner_small{
	width: 1200px;
	margin: 0 auto;
	text-align: center;
	height: 107px;
	line-height: 107px;
	border: solid 2px #e8efef;
	font-weight: 100;
	font-size: 28px;
	color: #363636;
	margin-top: 70px;
	box-shadow:0 4px 10px 0 rgba(0,0,0,.04);
}
.tuiguang_part h1{
	padding-top: 120px;
}
.tuiguang_part p{
	text-align: center;
	font-size: 20px;
	color: #848484;
	font-weight: 100;
	margin-top: 30px;
}
.tuiguang_part h4{
	color: #61ad07;
	font-size: 32px;
	font-weight: 100;
	text-align: center;
	width: 150px;
	border-bottom: solid 2px #f0f0f0;
	margin: 0;
	padding: 0;
	padding-bottom: 30px;
	margin: 0 auto;
}
.tuiguang_part h3{
	color: #646464;
	font-size: 20px;
	font-weight: 100;
	text-align: center;
	width: 150px;
	border-top: solid 2px #f0f0f0;
	margin: 0;
	padding: 0;
	padding-top: 30px;
	margin: 0 auto;
}
.tuiguang_part .row{
	margin-top: 80px;
}
.servicePart{
	height: 255px;
	background-color: #fff;
	border-bottom: solid 2px #e9e9e9;
	padding-left: 80px;
	padding-top: 80px;
	background-repeat: no-repeat;
	background-position:  800px center;
	background-size: contain;
}
.mt30{
	margin-top: 30px;
}
.servicePart h2{
	font-size: 36px;
	color: #363636;
	text-align: left;
	font-weight: 100;
	margin: 0;
	padding: 0;
}
.servicePart p{
	font-size: 20px;
	color: #848484;
	margin: 0;
	padding: 0;
	padding-top: 40px;
	font-weight: 100;
}
.nopadding{
	padding: 0;
	padding-top: 100px;
}
.mainPart button{
	margin-top: 30px;
}
.nav_part li a.navCurr{
	color: #61ad07;
}
.weixIcon{
	display: inline-block;
	width: 25px;
	height: 20px;
	background-position: center center;
	background-size: contain;
}
#wxin,#wxinIE{
	position: relative;
}
#wxin:hover>span,#wxinIE:hover>span{
	display: block;
	top: 24px;
	animation:mymove 0.4s forwards ;
	-webkit-animation:mymove 0.4s forwards ;
	-moz-animation:mymove 0.4s forwards ;
	-ms-animation:mymove 0.4s forwards ;
	-o-animation:mymove 0.4s forwards ;
}
@keyframes mymove{
	0% {padding-top:0px;}
	100% {padding-top:10px;}
}
#wxin:hover>i{
	color: #05af10;
}
#wbo:hover>i{
	color: #da251c;
}
.code_box{
	width: 120px;
	height: 120px;
	display: block;
	position: absolute;
	top: 26px;
	left: -46px;
	display: none;
	padding-top: 9px;
	background-color: #fff;
	box-shadow: 0px 20px 20px 0px rgba(0,0,0,.1);
}
.small_tipp{
	width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 30px solid transparent;
    position: absolute;
    top: -10px;
    left: 0;
    margin-left: -10px;
}