body {
	margin: 0px;
	padding: 0px;
	border: 0px;
	font-family: "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei";
	color: #333333;
	font-size: 14px;
	width: 100%;
	background: #ffffff;
}
a {
	margin: 0px;
	padding: 0px;
	border: 0px;
	text-decoration: none;
	color: #333333;
	font-size: 13px;
}

a:hover {
	text-decoration: none !important;
}

* {
	padding: 0px;
	margin: 0px;
	border: 0px;
}


/* background:rgba(0,0,0,0);filter:progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7F000000,endcolorstr=#7F000000);*/

li {
	list-style: none;
}

.clear {
	clear: both !important;
	height: 0px !important;
	width: 0px !important;
	float: none !important;
	margin: 0px !important;
	padding: 0px !important;
	border: 0px !important;
}
textarea{
	resize: none;
}
textarea:focus {
	outline: none;
}

input:focus {
	outline: none;
}

input:focus {
	outline: none;
}
/*去除按钮选中的高亮标签*/
img {
	max-width: 100% !important;
	-webkit-animation:imgease 1s linear alternate;
	-o-animation:imgease 1s linear alternate;
	animation:imgease 1s linear alternate
}

@keyframes imgease
{
	from {opacity:0;}
	to {opacity:1;}
}

@-webkit-keyframes imgease /*Safari and Chrome*/
{
	from {opacity:0;}
	to {opacity:1;}
}

div,
p,
table,
td,
ul,
li,
span,
a,
ol,
input {
	padding: 0px;
	margin: 0px;
	border: 0px;
}

input::-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #4d4d4d;
	font-size: 14px;
}
a,input,em,h2,button{
	-webkit-tap-highlight-color:rgba(255,0,0,0);
}

input::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #4d4d4d;
	font-size: 14px;
}

input::-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #4d4d4d;
	font-size: 14px;
}

input::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #4d4d4d;
	font-size: 14px;
}

.fl {
	float: left;
}

.fr {
	float: right;
}
.pos-r{
	position: relative;
}
.pos-a{
	position: absolute;
}
.container{
	width: 1200px;
    max-width: none !important;
    padding-left: 0px;
    padding-right: 0px;
}
.banner-wap{
	width: 100%;
	max-height: 600px;
}
.text-indent{
	text-indent: 2em;
}


/*flex 兼容性*/
/* 子元素-平均分栏 */
.flex1 {
  -webkit-box-flex: 1;      /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;         /* OLD - Firefox 19- */
  width: 20%;               /* For old syntax, otherwise collapses. */
  -webkit-flex: 1;          /* Chrome */
  -ms-flex: 1;              /* IE 10 */
  flex: 1;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 父元素-横向排列（主轴） */
.flex-h{
  display: box;              /* OLD - Android 4.4- */
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
/* 父元素-横向换行 */
.flex-hw {
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* 父元素-水平居中（主轴是横向才生效） */
.flex-hc {
  /* 09版 */
  -webkit-box-pack: center;
  /* 12版 */
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  /* 其它取值如下：
    align-items     主轴原点方向对齐
    flex-end        主轴延伸方向对齐
    space-between   等间距排列，首尾不留白
    space-around    等间距排列，首尾留白
   */
}
/* 父元素-纵向排列（主轴） */
.flex-v {
  display: box;              /* OLD - Android 4.4- */
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical; /* 09版 */
  /* 12版 */
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
/* 父元素-纵向换行 */
.flex-vw {
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* 父元素-竖直居中（主轴是横向才生效） */
.flex-vc {
  -webkit-box-align: center; /* 09版 */
  -webkit-align-items: center; /* 12版 */
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
/* 子元素-显示在从左向右（从上向下）第1个位置，用于改变源文档顺序显示 */
.flex-1 {
  -webkit-box-ordinal-group: 1;   /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 1;      /* OLD - Firefox 19- */
  -ms-flex-order: 1;              /* TWEENER - IE 10 */
  -webkit-order: 1;               /* NEW - Chrome */
  order: 1;                       /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 子元素-显示在从左向右（从上向下）第2个位置，用于改变源文档顺序显示 */
.flex-2 {
  -webkit-box-ordinal-group: 2;   /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 2;      /* OLD - Firefox 19- */
  -ms-flex-order: 2;              /* TWEENER - IE 10 */
  -webkit-order: 2;               /* NEW - Chrome */
  order: 2;                       /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/*清除浮动*/
.clearfix:after {
    content: ".";     /*内容为“.”就是一个英文的句号而已。也可以不写。*/
    display: block;   /*加入的这个元素转换为块级元素。*/
    clear: both;     /*清除左右两边浮动。*/
    visibility: hidden;      /*可见度设为隐藏。注意它和display:none;是有区别的。visibility:hidden;仍然占据空间，只是看不到而已；*/
    line-height: 0;    /*行高为0；*/
    height: 0;     /*高度为0；*/
    font-size:0;    /*字体大小为0；*/
}
.clearfix { *zoom:1;}   /*这是针对于IE6的，因为IE6不支持:after伪类，这个神奇的zoom:1让IE6的

/*模态框*/
.modal-footer{
	text-align: center;
	border-top: none;
}
.form-horizontal .form-group{
	margin-right: 50px;
}
.upload-wap{
	position: relative;
}
.custom-img{
	width: 240px;
	height: 180px;
	background-color: #0092EF;
	position: absolute;
	top: 0;
	opacity: 0;
	cursor: pointer;
}
.custom-item-img{
	width: 180px;
	height: 180px;
	background-color: #0092EF;
	position: absolute;
	top: 0;
	opacity: 0;
	cursor: pointer;
}
.upload-box{
	width: 240px;
	height: 180px;
	background-color: #f2f2f2;
	text-align: center;
	cursor: pointer;
	overflow: hidden;
	position: relative;
}
.upload-box img{
	position: absolute;
	left: 0;
	height: 100%;
}
.person-item .upload-box{
	display: inline-block;
	width: 200px;
	height: 180px;
	background-color: #f2f2f2;
	text-align: center;
	cursor: pointer;
	overflow: hidden;
	position: relative;
}

.upload-add-icon{
	width: 30px;
	height: 30px;
	margin: 0px auto;
	background-color: #2CA139;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	color: #FFFFFF;
	line-height: 30px;
	font-size: 26px;
	display: block;
	margin-top: 25px;
}
.upload-box h5{
	color: #808080;
}
.upload-box>p{
	color: #b3b3b3;
	font-size: 12px;
	line-height: 1.6;
}
.modal-tit-txt{
	height: 35px;
	display: block;
	padding-left: 40px;
	color: #555555;
}
.modal-info-txt{
	line-height: 35px;
	display: block;
	padding-left: 40px;
	color: #555555;
}
.has-feedback .form-control{
	padding-right: 0px;
}
#joib .col-lg-3,#joib .col-lg-9{
	padding-left: 0px;
	padding-right: 0px;
}
.progress-box{
	width: 240px;
}
.person-item .progress-box{
	width: 200px;
}

.loading{
	position: absolute;
	top: 0;
	width: 240px;
	height: 180px;
	background-color: #F2F2F2;
	display: none;
}
.person-item .loading{
	width: 200px;
}
.loading:after{
	display: block;
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
	width: 60px;
	height: 60px;
	background: url(../images/loading.gif) no-repeat center center;
	background-size: contain;
	-webkit-background-size: contain;
}

/*面包屑导航*/
.n-breadcrumb{
	padding: 24px 0px 24px 0px;
    list-style: none;
    color: #666666;
}
.n-breadcrumb>li{
	display: inline-block;
}
.n-breadcrumb>li+li:before {
    padding: 0 5px;
    content: ">";
}
.breadcrumb-mt{
	margin-top: 20px;
}

/*header css*/
.nav-static-top1 {
	width: 100%;
	height: 40px;
	background: #2f3238;
}
.nav-static-top1 .container {
	display: -webkit-flex;
	-webkit-justify-content: space-between;
	display: flex;
	justify-content: space-between;
}
.nav-static-top1 .container > div{
	-webkit-flex-basis: 50%;
	flex-basis: 50%;
}
.nav-static-top1 .top1_left {
	text-align: left;
	color: #FFFFFF;
	font-size: 12px;
	line-height: 40px;
	float: left;
}
.nav-static-top1 .top1_right {
	text-align: right;
	color: #FFFFFF;
	font-size: 12px;
	line-height: 40px;
	float: right;
}
.nav-static-top1 .top1_right a{
	color: #E6E6E6;
	margin-left: 30px;
}
.nav-static-top1 .top1_right a:hover{
	color: #FFFFFF;
}
.nav-static-top2{
	width: 100%;
	position: relative;
	height: 90px;
	background: #ffffff;
}
.nav-static-top2 .home-logo{
	display: inline-block;
	margin-top: 8px;
}
.nav-static-top2 .top-logo-txt{
	color: #2ca139;
	font-size: 12px;
	margin-top: -8px;
}
.nav-static-top2 .top-menu{
	float: left;
	margin-left: 40px;
	display: flex;
	display: -webkit-flex;
}
.nav-static-top2 .top-menu-pill{
	line-height: 90px;
	text-align: center;
	min-width: 56px;
	text-transform: uppercase;
	position: relative;
	float: left;
}
.nav-static-top2 .top-menu-pill .top-menu-a{
	transition: all ease 0.3s;
	display: inline-block;
	line-height: 26px;
	font-size: 16px;
	color: #363636;
	text-align: center;
	padding: 0px 26px 0px 26px;
	border-right: 1px solid #CCCCCC;
}
.nav-static-top2 .top-menu-pill:last-child .top-menu-a{
	border-right: none;
}
.nav-static-top2 .top-menu-pill .top-menu-txt{
	transition: all ease 0.3s;
	padding-bottom: 14px;
}
.nav-static-top2 .top-menu a.on .top-menu-txt{
	color: #2ca139;
	border-bottom: #2ca139 solid 2px;
}
.nav-static-top2 .top-menu-pill a:hover .top-menu-txt{
	color: #2ca139;
	border-bottom: #2ca139 solid 2px;
}
.nav-static-top2 .top-menu-pill .top-menu-md {
	position: absolute;
	z-index: 100;
	height: 0;
	overflow: hidden;
	width: 100%;
}
.nav-static-top2 .md .top-menu-a .top-menu-txt:after{
	display: inline-block;
	content:'';
	width: 10px;
	height: 8px;
	margin-left: 5px;
	background: url(../images/icon/arrow-dowm.png) no-repeat;
	background-size: contain;
	-webkit-background-size: contain;
}
.nav-static-top2 .top-menu-pill:hover .top-menu-md{
	height: auto;
	transition: all ease 0.3s;
	background: #FFFFFF;
	border-left: 1px solid #CCCCCC;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}

.nav-static-top2 .top-menu-pill .top-menu-md a {
	display: block;
	line-height: 45px;
	font-size: 13px;
	color: #333333;
	text-align: center;
}
.nav-static-top2 .top-menu-pill .top-menu-md a:hover{
	height: 45px;
	transition: all ease 0.6s;
	color: #2CA139;
}

/*footer css*/
.footer{
	width: 100%;
	width: 100%;
}
.footer .footer1-box{
	background-color: #000;
}
.footer .footer1{
	padding: 64px 80px 43px 80px;
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
 	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  	display: -ms-flexbox;      /* TWEENER - IE 10 */
  	display: -webkit-flex;     /* NEW - Chrome */
 	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */

 	/* 09版 */
 	-webkit-box-pack: space-around;
	/* 12版 */
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	-o-justify-content: space-around;
	justify-content: space-around;
	border-bottom:1px solid #131313; ;
}
.footer .footer1 .footer1-col{
	margin-left: 60px;
	display: inline-block;
	vertical-align: top

}
.footer .footer1 .footer1-col dt{
	color: #19AE7A;
	font-family: Microsoft YaHei;
	font-weight: regular;
	font-size: 16px;
	line-height: normal;
	letter-spacing: 0px;
}
.footer .footer1 .footer1-col ul{
	margin-top: 12px;
}
.footer .footer1 .footer1-col ul li{
	height: 27px;
}
.footer .footer1 .footer1-col ul li a{
	color: #C5C5C5;
	font-size: 12px;
}
.footer .footer1 .footer1-code{
	display: flex;
	display: -webkit-flex;
	justify-content: space-around;
	-webkit-justify-content: space-around;
	text-align: center;
	width: 142px;
	height: 111px;
}
.footer1-line{
	width: 1px;
	height: 140px;
	background: #131313;
}
.footer .footer1 .footer1-code dl{
	width: 100%;
}
.footer .footer1 .footer1-code img{
	width: 100%;
}
.footer .footer1 .footer1-code .tel{
	font-size: 15px;
}
.footer .footer1 .footer1-code .tel:before{
	vertical-align: middle;
}
.footer .footer2{
	text-align: center;
	/* border-top: 1px solid #bbbbbb; */
	padding-top: 20px;
	padding-bottom: 20px;
	background: #000;
}
.footer .footer2 .footer2_copyright{
	color: #bbbbbb;
	margin-top: 20px;
	line-height: 1.8;
}
.footer .footer2 .footer2_copyright span{
	margin-left: 20px;
}
/*index css*/
.wapper-box{
	padding: 0px 50px;
}
.page01-box{
	padding: 28px 0px;
	/* border: 1px solid #e6e6e6; */
	text-align: center;
}
h1.n-title{
	font-size: 48px;
}
h2.n-sub-tit{
	font-size: 40px;
	color: #383838;
}
.page01-title{
	color: rgb(25,174,122);
	font-size: 25px;
}
.page01-center{
	width: 530px;
	height: 110px;
	margin: 0 auto;
	border: 3px solid  rgb(25,174,122);
	text-align: center;
	margin-top: 50px;
}
.page01-ct-text{
	color: rgb(25,174,122);
	line-height: 55px;
	font-weight: bold;
}
.page01-footer{
	margin-top: 50px;
	text-align: center;
	color: #666666;
	font-family: Microsoft YaHei;
	font-weight: regular;
	font-size: 20px;
	line-height: normal;
	letter-spacing: 0px;

}
.page02-center{
	height: 716px;
	opacity: 0.029999999329447746;
	background: #19AE7A;

}
.page01-mo{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	margin-top: 64px;
}
.page01-mo-l{
	float: left;
	width: 480px;
}
.page01-mo-h2{
	margin-top: 60px;
}
.small-mo-txt{
	font-size: 20px;
	color: #666666;
}
.small-mo-txt span{
	margin-right: 20px;
}
.page01-btn{
	margin-top: 60px;
}
.page01-btn .btn{
	border: 1px solid #2CA139;
	color: #2CA139;
	margin-right: 30px;
	font-size: 18px;
	padding: 0px 18px;
	height: 46px;
	line-height: 46px;
	overflow: hidden;
	vertical-align:top;
	transition-property:height 1s linear .2s;
	/* Firefox 4 */
	-moz-transition:height 1s linear .2s;
	/* Safari and Chrome */
	-webkit-transition:height 1s linear .2s;
	/* Opera */
	-o-transition:height 1s linear .2s;
}
.page01-btn .btn img{
	display: block;
	width: 120px;
	height: 120px;
	margin: 0 auto;
}

.page01-btn .btn:hover{
	height: 180px;
	background-color: transparent;
}
.page01-mo-r{
	width: 550px;
	float: left;
}
.page2-bg{
	width: 100%;
	height: 716px;
	margin-top: 130px;
	background-image: url(../images/page02-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	/* opacity: 0.029999999329447746; */
	/* background: #19AE7A; */
	padding-top: 80px;
	
}
.page2-bg-1{
	width: 1200px;
	display: flex;
	align-items: center;
	margin: 0 auto;
	text-align: center;
	justify-content: space-between;
	/* margin-top: 80px; */
}
.page02-line{
	width:390px ;
	border: 1px solid  #19AE7A;

}
.page02-ct-all{
	display: flex;
	width: 1200px;
	margin: 80px auto;
	justify-content: space-between;
	
}
.page02-ct-alone{
	text-align: center;
}
.page02-text1{
	color: #19AE7A;
	font-family: Microsoft YaHei;
	font-weight: regular;
	font-size: 30px;
	line-height: normal;
	letter-spacing: 0px;
	text-align: left;
}
.page02-text2{
	color: #19AE7A;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 20px;
line-height: normal;
letter-spacing: 0px;
text-align: center;

}
.page02-box{
	padding: 46px 0px;
}
.page02-center-text{
	margin-top: 35px;
	color: #19AE7A;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 26px;
line-height: normal;
letter-spacing: 0px;
text-align: center;

}
.page02-center-text1{
	margin-top: 20px;
	width: 216px;
	color: #666666;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 18px;
line-height: normal;
letter-spacing: 0px;
text-align: center;

}
.page02-mo{
	display: flex;
	display: -webkit-flex;
}
.page02-mo-l{
	float: left;
	width: 310px;
	height: 533px;
}
.phone-bg{
	width: 100%;
	height: 100%;
	background-image: url(../images/phone_bg.png);
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-background-size: contain;
	display: -webkit-flex;
	-webkit-align-items: center;
    -webkit-justify-content: center;
	position: relative;
}
.phone-bg .app-phone-img{
	width: 208px;
	height: 368px;
	text-align: center;
	position: absolute;
	top: 61px;
	left: 52px;

}
.page02-mo-l img{
	width: 100%;
}
.page02-mo-r{
	float: left;
	width: 722px;
	margin-left: 68px;
	margin-top: 16px;
}
.app-action-items{
	margin-top: 42px;
}
.app-action-items ul li{
	width: 160px;
	height: 160px;
	border: 1px solid #EEEEEE;
	background-color: #FFFFFF;
	text-align: center;
	float: left;
	transition: all ease 0.3s;
    display: -webkit-flex;
	-webkit-align-items: center;
    -webkit-justify-content: center;
    margin-right:-1px;
    margin-bottom:-1px;
}
.app-action-items ul li .app-info{
	display: inline-block;
	margin-top: 20px\9;
}
.app-action-items ul li .info-img{
	width: 50px;
	height: 50px;
}
.app-action-items ul li .info-txt{
    text-transform: uppercase;
    width: 80%;
    text-align: center;
    font-size: 14px;
    color: #666666;
    margin: 15px auto 0px;
}
.app-action-items ul li:hover {
	background-color: #2CA139;
	transition: all ease 1s;
}
.app-action-items ul li:hover .info-txt{
	color: #FFFFFF;
}
.app-action-items ul li:hover .baseicon-action01{
	top: -1px;
	background-position: -50px 0px;
}
.app-action-items ul li:hover .baseicon-action02{
	top: -1px;
	background-position: -50px -50px;
}
.app-action-items ul li:hover .baseicon-action03{
	top: -1px;
	background-position: -50px -100px;
}
.app-action-items ul li:hover .baseicon-action04{
	top: -1px;
	background-position: -50px -150px;
}
.app-action-items ul li:hover .baseicon-action05{
	top: -1px;
	background-position: -50px -200px;
}
.app-action-items ul li:hover .baseicon-action06{
	top: -1px;
	background-position: -50px -250px;
}
.app-action-items ul li:hover .baseicon-action07{
	top: -1px;
	background-position: -50px -300px;
}
.app-action-items ul li:hover .baseicon-action08{
	top: -1px;
	background-position: -50px -350px;
}
.page03-box{
	padding: 80px 0px 0 0px;
}
.page03-tit-img{
	margin-top: 32px;
}
.page03-list{
	width: 1100px;
	margin-top: 18px;
}
.page03-list ul {
	display: inline-block;
}
.page03-list ul li{
	display: inline-block;
	width: 184px;
	height: 300px;
	border: 1px solid #EEEEEE;
	background-color: #FFFFFF;
	text-align: center;
	float: left;
	transition: all ease 0.3s;
    display: -webkit-flex;
	-webkit-align-items: center;
    display: flex;
    align-items: center;
    margin-right:-1px;
    margin-bottom:-1px;
}
.page03-list ul li .goods-list-item{
	display: inline-block;
	width: 140px;
	margin: 0 auto;
}
.page03-list ul li .goods-list-item .goods-img{
	widows: 140px;
	height: 140px;
	position: relative;
	overflow: hidden;
	background: #FFFFFF;
    -webkit-align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: center;
}
.page03-list ul li .goods-more h3{
	color: #666666;
}
.page03-list ul li .goods-list-item .goods-img .qr{
	position: absolute;
    background: rgba(255,255,255,0.55);
    width: 100% !important;
    height: 140px !important;
    -webkit-align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: center;
}
.page03-list ul li .goods-list-item .goods-info{
	margin-top: 25px;
	text-align: left;
}
.page03-list ul li .goods-list-item .goods-info .goods-name{
	color: #333333;
	font-size: 14px;
	line-height: 1.4em;
	height: 2.8em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    position: relative;
}
.page03-list ul li .goods-list-item .goods-info .goods-name:after{
   content: "...";
　　font-weight: bold;
　　position: absolute;
　　bottom: 0;
　　right: 0;
}
.page03-list ul li .goods-list-item .goods-info small{
	display: block;
	color: #666666;
	margin-top: 6px;
}
.page03-list ul li .goods-list-item .goods-info .goods-price{
	margin-top: 10px;
}
.page03-list ul li .goods-list-item .goods-info .n-color-price{
	font-size: 18px;
}
.page03-list ul li .goods-list-item .goods-info del{
	font-size: 12px;
	color: #808080;
}
.page03-list ul li .goods-list-item .goods-img .qr {
    position: absolute;
    background: rgba(0,0,0,0.5);
    width: 100% !important;
    height: 140px !important;
    -webkit-align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: center;
}
.page03-list ul li .goods-list-item .goods-img .qr img{
	width: 100px;
    height: 100px;
}
.page03-list ul li .goods-list-item .goods-img .qr .qr-txt {
    display: block;
    color: #FFFFFF;
    font-size: 12px;
    margin-top: 10px;
}
.page03-center{
	display: flex;
	width: 1200px;
	margin: 60px auto;
	justify-content: space-between;
}
.page03-ct-alone{
	width: 260px;
	height: 425px;
	border-radius: 10px;
	border: 0.5px solid #19AE7A;
	box-shadow:0px 0px 5px #19AE7A ;
	text-align: center;
	padding-top: 40px;
}
.page03-ct-text{
	margin: 20px auto;
	color: #19AE7A;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 24px;
line-height: normal;
letter-spacing: 0px;
text-align: center;

}
.page03-ct-text1{
	width: 208px;
	color: #666666;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 16px;
line-height: normal;
letter-spacing: 0px;
text-align: center;
margin: 0 auto;
}
.page04-box{
	padding-top: 80px;
	width:100% ;
	background-image: url('../images/page04-bg.png') ;
	/* background-position: center; */
	background-repeat: no-repeat;
	/* background-size: contain; */
}
.page04-center{
	width: 1200px;
	margin: 60px auto;
	text-align: center;
	color: #333333;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 18px;
line-height: normal;
letter-spacing: 0px;

}
.page04-footer{
	width: 1000px;
	margin: 0px auto;
	
}
.page04-footer-1{
	display: flex;
	justify-content: space-between;
	text-align: center;
	margin-top: 60px;
}
.page04-alone{
	display: flex;
	flex-wrap: nowrap;
}
.page04-footer-text{
	color: #19AE7A;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 20px;
line-height: normal;
letter-spacing: 0px;
text-align: left;
margin-left: 20px;

}
.page04-footer-text1{
	color: #666666;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 16px;
line-height: normal;
letter-spacing: 0px;
text-align: left;
margin-left: 20px;
margin-top: 20px;

}
/* 新闻资讯列表  */
.news-box{
	margin-top: 50px;
	margin-bottom: 40px;
}
.news-list{
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #E6E6E6;
}
.new-type-tit{
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
.new-type-tit h3{
	font-size: 20px;
	color: #333333;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	margin-top: 0px;
}
.new-type-tit h3:before{
	display: inline-block;
	content: '';
	width: 8px;
	height: 20px;
	background-color: #2CA139;
	margin-right: 12px;
}
.new-type-tit a{
	font-size: 16px;
}
.new-type-con{
	margin-top: 10px;
	display: block;
}
.new-type-con .nt-con-img{
	width: 340px;
	height: 220px;
	overflow: hidden;
	float: left;
}
.new-type-con .nt-con-img img{
	width: 100%;
	min-height: 220px;
}
.new-type-con .nt-con-info{
	width: 730px;
	float: right;
}
.new-type-con .nt-con-info h3{
	font-size: 20px;
	color: #333333;
}
.new-type-con .nt-con-info .nt-con-txt{
	margin-top: 20px;
	line-height: 1.6;
	font-size: 15px;
	color: #666666;
}
.new-type-list{
	margin-top: 40px;
	padding-bottom: 20px;
}
.new-type-list ul li{
	float: left;
	line-height: 20px;
	font-size: 14px;
	color: #333333;
	margin-right: 30px;
}
.new-type-list ul li a{
	font-size: 14px;
}
.new-type-list ul li:before{
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	background-color: #2CA139;
	content: '';
	margin-right: 5px;
	vertical-align: middle;
}
.new-type-list ul li:nth-child(2n+1){
	width: 340px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.new-type-list ul li:nth-child(2n){
	width: 700px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.new-type-imgs {
	width: 100%;
	margin: 20px auto 0px;
	height: 220px;
	position: relative;
}

.new-type-imgs .scroll-imgs {
	width: 100%;
	height: 220px;
	position: absolute;
}

.new-type-imgs .scroll-imgs .scroll-imgs_box {
	width: 100%;
	height: 220px;
	overflow: hidden;
}

.new-type-imgs .scroll-imgs .scroll-imgs_sel {
	width: 100%;
	height: 1px;
	position: relative;
}

.new-type-imgs .scroll-imgs .scroll-imgs_sel div {
	position: absolute;
	z-index: 1111;
	top: 77px;
	cursor: pointer;
}

.new-type-imgs .scroll-imgs .scroll-imgs_sel .scroll-imgs_left {
	left: 0px;
}
.new-type-imgs .scroll-imgs .scroll-imgs_sel .scroll-imgs_left .img1{
	display: none;
}
.new-type-imgs .scroll-imgs .scroll-imgs_sel .scroll-imgs_right {
	right: 0px;
}
.new-type-imgs .scroll-imgs .scroll-imgs_sel .scroll-imgs_right .img2{
	display: none;
}
.new-type-imgs .scroll-imgs .pxb_xun {
	width: 10000px;
}

.new-type-imgs .scroll-imgs .pxb_xun a {
	margin-right: 40px;
	display: inline-block;
	float: left;
	width: 340px;
	height: 220px;
}
.new-type-imgs .scroll-imgs .pxb_xun a .pxb_xun_img {
	background: #FFFFFF;
	-webkit-align-items: center;
	display: -webkit-flex;
	-webkit-justify-content: center;
	position: relative;
	width: 100%;
	height: 225px;
	overflow: hidden;
}

.new-type-imgs .scroll-imgs .pxb_xun a .pxb_xun_img .titlepic {
	width: 100%;
}

.new-type-imgs .scroll-imgs .pxb_xun a .pxb_xun_img .ban {
	position: absolute;
	background: rgba(199, 5, 5, 0.55);
	width: 100% !important;
	height: 225px !important;
	-webkit-align-items: center;
	display: -webkit-flex;
	-webkit-justify-content: center;
}

.new-type-imgs .scroll-imgs .pxb_xun a .pxb_xun_title {
	font-size: 14px;
	line-height: 60px;
	width: 100%;
	background-color: #FFFFFF;
	text-align: center;
}

.new-type-imgs .scroll-imgs .pxb_xun a .pxb_xun_time {
	font-size: 12px;
	line-height: 30px;
	width: 100%;
	color: #737577;
	background: url(../images/bg24.png) no-repeat 100% 50%;
}

/*资讯分类列表*/
.new2-list{
	margin-top: 0px;
}

/*资讯详情*/
.news-detail{
	text-align: center;
}
.news-detail h3{
	margin-top: 50px;
}
.news-detail h5{
	color: #666666;
	margin-top: 20px;
}
.news-detail .news-date{
	margin-left: 10px;
}
.news-detail .news-con{
	margin-top: 40px;
	text-align: center;
	padding-bottom: 40px;
	border-bottom: 1px solid #E8E8E8;
}
.news-detail .news-con p{
	text-align: left;
	line-height: 2;
	font-size: 16px;
	color: #666666;
	text-indent: 2em;
	margin-top: 40px;
}
.news-detail .news-con img{
	display: block;
	max-width: 680px;
	margin: 40px auto;
	text-align: center;
}
.news-arrlist{
	margin-top: 40px;
	margin-bottom: 60px;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-align-content: space-between;
}
.news-arrlist a{
	display: inline-block;
	color: #666666;
	font-size: 16px;
}

/*农牧人商城*/
.shop-box{
	margin-top: 60px;
	margin-bottom: 100px;
}
.ml-tit{
	margin-left: 70px;
}
.shop-box .shop-info-items .info-img{
	width: 80px;
	height: 80px;
}
.shop-box .shop-info-items{
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: space-around;
	-webkit-justify-content: space-around;
	flex-wrap:wrap;
	-webkit-flex-wrap: wrap;
}
.shop-box .shop-info-items h4{
	font-size: 20px;
	color: #333333;
}
.shop-box .shop-info-items h5{
	font-size: 14px;
	color: #808080;
}
.shop-box .shop-info-items .shop-info-box{
	text-align: center;
	width: 20%;
	flex-basis: 20%;
	-webkit-flex-basis: 20%;
	margin-top: 60px;
}
.baseShopicon{
	position: relative;
    display: inline-block;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    background: url(../../page/shop/images/nmrsc_icon.png);
    background-repeat: no-repeat;
    vertical-align: middle;
}
.baseicon-shop01{
	top: -1px;
	background-position: 0px 0px;
}
.baseicon-shop02{
	top: -1px;
	background-position: 0px -80px;
}
.baseicon-shop03{
	top: -1px;
	background-position: 0px -160px;
}
.baseicon-shop04{
	top: -1px;
	background-position: 0px -240px;
}
.baseicon-shop05{
	top: -1px;
	background-position: 0px -320px;
}
.baseicon-shop06{
	top: -1px;
	background-position: -80px 0px;
}
.baseicon-shop07{
	top: -1px;
	background-position: -80px -80px;
}
.baseicon-shop08{
	top: -1px;
	background-position: -80px -160px;
}
.baseicon-shop09{
	top: -1px;
	background-position: -80px -240px;
}
.baseicon-shop10{
	top: -1px;
	background-position: -80px -320px;
}


/*商品列表*/
.goods-box{
	padding: 0px 0px 100px 0px;
}
.goods-list ul li{
	width: 300px;
	height: 406px;
	border: 1px solid #CCCCCC;
	background-color: #FFFFFF;
	text-align: center;
	float: left;
	transition: all ease 0.3s;
    display: -webkit-flex;
	-webkit-align-items: center;
    -webkit-justify-content: center;
    margin-right:-1px;
    margin-bottom:-1px;
}
.goods-list ul li .goods-list-item{
	display: inline-block;
	width: 260px;
	margin: 0 auto;
}
.goods-list ul li .goods-list-item .goods-img{
	width: 260px;
	height: 260px;
	position: relative;
	overflow: hidden;
	background: #FFFFFF;
    -webkit-align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: center;
}
.goods-list ul li .goods-more h3{
	color: #666666;
}
.goods-list ul li .goods-list-item .goods-img .qr{
	position: absolute;
    background: rgba(0,0,0,0.5);
    width: 100% !important;
    height: 260px !important;
    -webkit-align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: center;
}
.goods-list ul li .goods-list-item .goods-img .qr-box{
	display: inline-block;
}
.goods-list ul li .goods-list-item .goods-img .qr img{
	width: 180px;
	height: 180px;
}
.goods-list ul li .goods-list-item .goods-img .qr .qr-txt{
	display: block;
	color: #FFFFFF;
	font-size: 20px;
	margin-top: 10px;
}
.goods-list ul li .goods-list-item .goods-info{
	margin-top: 25px;
	text-align: left;
}
.goods-list ul li .goods-list-item .goods-info .goods-name{
	color: #333333;
	font-size: 14px;
	line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 35px;
}
.goods-list ul li .goods-list-item .goods-info small{
	display: block;
	color: #999999;
	margin-top: 6px;
}
.goods-list ul li .goods-list-item .goods-info .goods-price{
	margin-top: 20px;
}
.goods-list ul li .goods-list-item .goods-info .n-color-price{
	color: #f02b2b;
	font-size: 20px;
}
.goods-list ul li .goods-list-item .goods-info del{
	font-size: 14px;
	color: #999999;
}
.goods-list .bg-more{
	background: #E6E6E6;
	color: #333333;
}
.goods-list .bg-more .goods-more h4{
	font-size: 20px;
	margin-top: 25px;
}

/*县域合伙人*/
.part01{
	padding-top: 70px;
	padding-bottom: 70px;
}
.part-box .center-tit{
	color: #333333;
	font-size: 48px;
}
.part01 .part-info-items{
	display: flex;
	display: -webkit-flex;
	justify-content: space-around;
	-webkit-justify-content: space-around;
	flex-wrap:wrap;
	-webkit-flex-wrap: wrap;
	margin-top: 80px;
}
.part01 .part-info-items .part-info-box{
	float: left;
	width: 235px;
	flex-basis: 235px;
	-webkit-flex-basis: 235px;
	text-align: center;
}
.part01 .part-info-items .part-info-box + .part-info-box{
	margin-left: 53px;
	}
.part01 .part-info-items .part-info-box h2{
	color: #333333;
}
.part01 .part-info-items .part-info-box h4{
	margin: 20px auto 0px;
	color: #666666;
	text-align: left;
	font-size: 16px;
	line-height: 1.6;
}

.part01 .part-info-items .part-info-box .info-img{
	width: 144px;
	height: 144px;
	margin-bottom: 40px;
}
.baseSuporticon{
	position: relative;
    display: inline-block;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.baseicon-suport01{
	background: url(../../page/cooperation/images/icon_zhichi01.png);
}
.baseicon-suport02{
	background: url(../../page/cooperation/images/icon_zhichi02.png);
}
.baseicon-suport03{
	background: url(../../page/cooperation/images/icon_zhichi03.png);
}
.baseicon-suport04{
	background: url(../../page/cooperation/images/icon_zhichi04.png);
}

.part02-bg{
	width: 100%;
	height: 713px;
	background-image: url(../../page/cooperation/images/bg.jpg);
	background-repeat: no-repeat;
	background-size: 100% 590px;
	-webkit-background-size: 100% 590px;
}
.part02{
	margin-bottom: 70px;
}
.part02 .center-tit{
	color: #FFFFFF;
}
.part02 .advantage-box{
	margin-top: 40px;
}
.part02 .advantage-box ul{
	display: flex;
	display: -webkit-flex;
	justify-content: space-around;
	-webkit-justify-content: space-around;
}
.part02 .advantage-box ul li{
	float: left;
	width: 330px;
	flex-basis: 330px;
	-webkit-flex-basis: 330px;
	height: 525px;
	background-color: #FFFFFF;
	border: 1px solid #666666;
}
.part02 .advantage-box ul li + li{
	margin-left: 20px;
	}
.part02 .advantage-box ul li .advantage-item{
	width: 230px;
	margin: 30px auto 15px;
}
.part02 .advantage-box ul li .advantage-item b{
	font-size: 60px;
	color: #1ba962;
	display: inline-block;
	font-family: "arial, helvetica, sans-serif";
    font-weight: inherit;
}
.part02 .advantage-box ul li .advantage-item h2{
	margin-top: 40px;
}
.part02 .advantage-box ul li .advantage-item .adv-con{
	margin-top: 37px;
	font-size: 18px;
	color: #333333;
	line-height: 1.6;
}
.part03{
	margin-top: 65px;
	margin-bottom: 80px;
}
.part03 .part-info-items{
	width: 100%;
}
.part03 .part-info-items .part-info-box{
	float: left;
	width: 510px;
	height: 190px;
	overflow: hidden;
	margin-top: 50px;
}
.part03 .part-info-items .part-info-box h3{
	padding: 12px 30px;
	color: #333333;
}
.part03 .part-info-items .part-info-box p{
	margin-top: 22px;
	color: #666666;
	font-size: 16px;
	line-height: 1.6;
	padding: 12px 30px;
}
.part03 .part-info-items .part-info-box.why01{
	border: 1px solid #76ea81;
	background-color: #eef9ed;
	margin-left: 15px;
}
.part03 .part-info-items .part-info-box.why02{
	border: 1px solid #fdd189;
	background-color: #f9f4ed;
	margin-left: 50px;
}
.part03 .part-info-items .part-info-box.why03{
	border: 1px solid #f8b2b4;
	background-color: #fdf2f1;
	margin-left: 15px;
}
.part03 .part-info-items .part-info-box.why04{
	border: 1px solid #76dbea;
	background-color: #f2f9fa;
	margin-left: 50px;
}
.part04-bg{
	width: 100%;
	background-color: #f8f8f8;
}
.part04{
	margin: 60px auto;
}
.joib-btn{
	display: block;
	width: 260px;
	height: 46px;
	border-radius: 23px;
	-webkit-border-radius: 23px;
	background-color: #1BA962;
	color: #FFFFFF;
	font-size: 22px;
	text-align: center;
	line-height: 46px;
	margin: 35px auto 0px;
}
.part04 .part-info-items{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	margin-top: 50px;
}
.part04 .part-info-items .part-info-box:first{
	width: 55%;
	flex-basis: 55%;
	-webkit-flex-basis: 55%;
}
.part04 .part-info-items .part-info-box:last-child{
	width: 35%;
	flex-basis: 35%;
	-webkit-flex-basis: 35%;
}
.part04 .part-info-items .part-info-box h2{
	color: #383838;
}
.part04 .part-info-items .part-info-box ul{
	margin-top: 28px;
}
.part04 .part-info-items .part-info-box ul li{
	color: #666666;
	font-size: 18px;
	line-height: 1;
}
.part04 .part-info-items .part-info-box ul li:before{
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
	content: '·';
	color: #1BA962;
	font-size: 36px;
}
.part04 .part-info-items .part-info-box .tel,.footer1-code .tel{
	margin-top: 20px;
	color: #666666;
	font-size: 24px;
}
.part04 .part-info-items .part-info-box .tel:before,.footer1-code .tel:before{
	display: inline-block;
	width: 20px;
	height: 20px;
	content: '';
	background-image: url(../images/icon/icon_phone.png);
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-background-size: contain;
	margin-right: 10px;
}
.part04 .part-info-items .part-info-box .touch-box{
	margin-top: 24px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
}
.part04 .part-info-items .part-info-box .touch-box img{
	width: 111px;
	height: 111px;
}
.part04 .part-info-items .part-info-box .touch-txt{
	color: #666666;
	font-size: 16px;
	line-height: 1.6;
	margin-left: 16px;
}

/*供应商加盟*/
.content-box{
	margin-top: 50px;
	margin-bottom: 40px;
}
.type-tit h3{
	font-size: 34px;
	color: #383838;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	margin-top: 0px;
}
.type-tit h3:before{
	display: inline-block;
	content: '';
	width: 8px;
	height: 34px;
	background-color: #2CA139;
	margin-right: 12px;
}
.join-type{
	padding-top: 50px;
	padding-bottom: 70px;
}
.join-type ul{
	display: box;              /* OLD - Android 4.4- */
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;

   /* 09版 */
  -webkit-box-pack: space-between;
  /* 12版 */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
	-webkit-box-align: center; /* 09版 */
  -webkit-align-items: center; /* 12版 */
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
.join-type ul li{
	width: 14%;
	flex-basis: 14%;
	-webkit-flex-basis: 14%;
	text-align: center;
	float: left;
}
.join-type ul li .info-img{
	width: 110px;
	height: 110px;
}
.baseTypeicon{
	position: relative;
    display: inline-block;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.baseicon-type01{
	background: url(../../page/cooperation/images/jiamen01.jpg);
}
.baseicon-type02{
	background: url(../../page/cooperation/images/jiamen02.jpg);
}
.baseicon-type03{
	background: url(../../page/cooperation/images/jiamen03.jpg);
}
.baseicon-type04{
	background: url(../../page/cooperation/images/jiamen04.jpg);
}
.baseicon-type05{
	background: url(../../page/cooperation/images/jiamen05.jpg);
}
.baseicon-type06{
	background: url(../../page/cooperation/images/jiamen06.jpg);
}
.baseicon-type07{
	background: url(../../page/cooperation/images/jiamen07.jpg);
}
.join-type .join-txt{
	margin-top: 46px;
	font-size: 16px;
	color: #666666;
	line-height: 1.8;
}

.join-require{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	padding-bottom: 70px;
}
.join-require .jr-tit{
	margin-top: 40px;
}
.join-require .jr-l{
	width: 530px;
	/*flex-basis: 530px;
	-webkit-flex-basis: 530px;*/
	border-right: 1px solid #E8E8E8;
	float: left;
}
.join-require .jr-r{
	width: 570px;
	/*flex-basis: 570px;
	-webkit-flex-basis: 570px;*/
	float: right;
}
.join-require .jr-l dl{
	margin-top: 40px;
	padding-right: 70px;
}
.join-require .jr-l dl h4{
	color: #333333;
}
.join-require .jr-l dl dd{
	line-height: 2;
	font-size: 14px;
}
.join-require .joib-btn{
	margin-top: 66px;
}
.join-require .jr-r .jr-tit{
	margin-left: 76px;
}
.join-require .jr-r ul{
	margin-left: 76px;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	align-items: center;
	-webkit-align-items: center;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.join-require .jr-r ul li{
	width: 247px;
	align-items: center;
	-webkit-align-items: center;
	margin-top: 35px;
	float: left;
}
.join-require .jr-r .jr-intro{
	margin-left: 30px;
	width: 181px;
	float: left;
}
.join-require .jr-r ul li p{
	padding-right: 50px;
	font-size: 14px;
	color: #666666;
}
.join-require .jr-r .info-img{
	width: 36px;
	height: 36px;
	flex: 0 0 36px;
	-webkit-flex: 0 0 36px;
	float: left;
	vertical-align: middle;
}
.baseGoodicon,.baseFlowicon{
	position: relative;
    display: inline-block;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    background: url(../../page/cooperation/images/gysjm.png);
    background-repeat: no-repeat;
    vertical-align: middle;
}
.baseicon-good01{
	background-position: 0px 0px;
}
.baseicon-good02{
	background-position: 0px -36px;
}
.baseicon-good03{
	background-position: 0px -72px
}
.baseicon-good04{
	background-position: 0px -108px
}
.baseicon-good05{
	background-position: 0px -144px
}
.baseicon-good06{
	background-position: 0px -180px
}
.join-flow{
	margin-top: 80px;
	margin-bottom: 108px;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	text-align: center;
	align-items: center;
	-webkit-align-items: center;
}
.join-flow .flow-box{
	float: left;
	width: 206px;
	height: 160px;
	border: 1px dashed #d9d9d9;
	border-radius: 6px;
	-webkit-border-radius: 6px;
}
.join-flow .flow-arrow{
	float: left;
	width: 92px;
	height: 160px;
	background-image: url(../../page/cooperation/images/jiantou.png);
	background-repeat: no-repeat;
	background-position: center center;
}
.join-flow .flow-box .info-img{
	width: 54px;
	height: 54px;
	top: -24px;
}
.baseicon-flow01{
	background-position: -36px 0px;
}
.baseicon-flow02{
	background-position: -36px -36px;
}
.baseicon-flow03{
	background-position: -36px -72px
}
.baseicon-flow04{
	background-position: -36px -108px
}
.join-flow .flow-box h3{
	color: #383838;
}
.join-flow .flow-box h5{
	color: #666666;
}
/* 城市新经纪人 */
.city01-box{
	width: 1200px;
	margin: 0 auto;
	text-align: center;
}
.city01-title{
	color: #19AE7A;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 30px;
line-height: normal;
letter-spacing: 0px;
text-align: center;
margin-top: 80px;
}
.city01-text{
	color: #333333;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 16px;
line-height: normal;
letter-spacing: 2px;
text-align: center;
/* margin-top: 40px; */
}
.city03-small-title{
	color: #19AE7A;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 18px;
line-height: normal;
letter-spacing: 0px;
text-align: center;
margin: 40px auto;
}
.city02-flex{
	display: flex;
	justify-content: space-between;
}
.city02-alone{
	width: 340px;
	height: 340px;
	background: #FFFFFF;
	margin-top: 40px;
}
.city02-img{
	margin: 0 auto;
	margin-top: 58px;
}
.city-02-bold{
	color: #333333;
font-family: Microsoft YaHei;
font-weight: bold;
font-size: 20px;
line-height: normal;
letter-spacing: 0px;
text-align: center;
margin: 0px auto ;
margin-top: 30px;
}
.city-02-text{
	color: #333333;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 14px;
line-height: normal;
letter-spacing: 0px;
text-align: center;
margin: 0px auto;
margin-top: 15px;
line-height: 2;
}
.city03-box{
	width: 100%;
	background-color: #ffffff;
	margin-top: 80px;
	padding-top: 80px;
}
.city03-flex{
	display: flex;
	align-items: center;
	justify-content: left;
}
.city03-alone{
	background: #F5F5F5;
	width: 200px;
	height: 79px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.city03-alone-text{
	color: #666666;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 14px;
line-height: normal;
letter-spacing: 0px;
text-align: center;
margin-left: 16px;
}
.city03-xia{
	width: 866px;
	height: 50px;
	line-height: 50px;
	text-align: right;
}
.city03-xia1{
	width: 866px;
	height: 50px;
	line-height: 50px;
	text-align: left;
	margin-left: 85px;
}
.city03-right{
	margin-left: 83.5px;
	width: 140px;
	height: 260px;
	text-align: center;
}
.city03-right img{
	width: 133px;
	height: 133px;
}
.city03-right-imgwaip{
	width: 140px;
	height: 140px;
	border: 1px solid #19AE7A;
	box-shadow: 0 0 5px #19AE7A;
}
.city03-right-one{
	color: #666666;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 14px;
line-height: normal;
letter-spacing: 0px;
text-align: left;
margin-top: 10px;
}
.city03-right-two{
	color: #333333;
	font-family: Microsoft YaHei;
	font-weight: regular;
	font-size: 20px;
	line-height: normal;
	letter-spacing: 0px;
	text-align: left;
	margin-top: 30px;	
}
.city03-right-three{
	color: #666666;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 20px;
line-height: normal;
letter-spacing: 0px;
text-align: left;
margin-top: 10px;
}
/*带路英雄招募令*/
.full-bgcolor{
	background-color: #f7f7f7;
}
.recruit-box{
	padding-top: 60px;
	padding-bottom: 70px;
}
.recruit-item{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
.recruit-item .recruit-01-l{
	width: 337px;
	height: 467px;
	flex: 0 0 337px;
	-webkit-flex: 0 0 337px;
}
.recruit-item .recruit-01-r{
	width: 833PX;
	margin-left: 70px;
}
.recruit-item .recruit-01-r>p{
	font-size: 16px;
	color: #666666;
	line-height: 1.8;
}
.recruit-item .recruit-01-r .recruit-01-imgs{
	margin-top: 40px;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	margin-bottom: 30px;
}
.recruit-item .recruit-01-r .recruit-01-imgs img{
	width: 200px;
	height: 130px;
}
.recruit-01-wap{
	text-align: center;
	margin-top: 40px;
}
.recruit-01-wap .recruit-check{
	margin-top: 20px;
}
.recruit-01-wap .recruit-check span{
	margin-right: 50px;
	color: #666666;
	font-size: 18px;
}
.recruit-01-wap .recruit-check span:before{
	display: inline-block;
	width: 24px;
	height: 20px;
	content: '';
	background: url(../images/icon/duigou.png) no-repeat left center;
	background-size: contain;
	-webkit-background-size: contain;
	vertical-align: middle;
	margin-top: -6px;
	margin-right: 10px;
}
.recruit-video-img{
	width: 560px;
	height: 360px;
	position: relative;
}
.recruit-video-img_bg{
	position: relative;
	z-index: 99;
}
.recruit-video-img .video-btn,.farm-video-box .video-show .video-play .video-btn{
	width: 124px;
	height: 84px;
	background: transparent url(../images/icon/bofang.png) no-repeat;
	background-size: contain;
	-webkit-background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 99;
	cursor: pointer;
}
.recruit-video-img .recruit_video{
	position: absolute;
	top: 0;
}
.recruit-video-info{
	width: 610px;
	color: #333333;
}
.recruit-video-info h3{
	margin-top: 0px;
}
.recruit-video-info .video-tit{
	font-size: 18px;
	margin-top: 20px;
}
.recruit-video-info .video-info{
	margin-top: 30px;
	line-height: 1.8;
	color: #666666;
	font-size: 16px;
}
.recr-but{
	width: 400px;
	height: 80px;
	line-height: 80px;
	background: #5fc491;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	color: #FFFFFF;
	text-align: center;
	font-size: 30px;
	box-shadow: 0 4px 4px rgba(95,196,145,.65);
	-webkit-box-shadow: 0 4px 4px rgba(95,196,145,.65);
	margin-top: 70px;
}




/*推广渠道*/
.hannels01{
	padding-top: 40px;
	padding-bottom: 60px;
}
.hannels01 .part-items{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	align-items: center;
	-webkit-align-items: center;
	padding-top: 30px;
}
.hannels01 .part-items .part-content{
	float: left;
	width: 660px;
	color: #666666;
	font-size: 16px;
	line-height: 2;
}
.hannels01 .part-items .part-img{
	width: 352px;
	height: 320px;
	float: right;
}
.hannels02-bg{
	width: 100%;
	background-color: #f8f8f8;
}
.hannels02  .part-items .part-img{
	width: 352px;
	height: 210px;
	float: right;
}
.hannels03{
	padding: 60px 0px;
	text-align: center;
}
.hannels03 .part-content{
	margin-top: 30px;
	color: #666666;
	font-size: 16px;
	line-height: 2;
}
.hannels03 img{
	margin-top: 40px;
}
.hannels05 {
	padding: 60px 0px;
}
.hannels05 .part-info-items{
	display: flex;
	display: -webkit-flex;
	justify-content: space-around;
	-webkit-justify-content: space-around;
	flex-wrap:wrap;
	-webkit-flex-wrap: wrap;
	margin-top: 60px;
}
.hannels05 .part-info-items .part-info-box{
	float: left;
	width: 25%;
	flex: 1;
	-webkit-flex: 1;
	text-align: center;
}
.hannels05 .part-info-items .part-info-box h4{
	color: #029bbc;
	font-size: 20px;
	margin-top: 20px;
}
.hannels05 .part-info-items .part-info-box h5{
	color: #3333333;
	line-height: 1.6;
}
.hannels05 .part-info-items .part-info-box .info-img{
	width: 120px;
	height: 120px;
}
.baseWapicon{
	position: relative;
    display: inline-block;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.baseicon-wap01{
	background: url(../../page/hannels/images/icon_youzhi01.png);
}
.baseicon-wap02{
	background: url(../../page/hannels/images/icon_youzhi02.png);
}
.baseicon-wap03{
	background: url(../../page/hannels/images/icon_youzhi03.png);
}
.baseicon-wap04{
	background: url(../../page/hannels/images/icon_youzhi04.png);
}
.hannels06{
	padding: 60px 0px 80px 0px;
}
.hannels06 .hannels-imgs{
	margin-top: 40px;
}
.hannels06 .scroll-imgs .scroll-imgs_sel {
    width: 100%;
    height: 1px;
    position: relative;
}
.hannels06 .scroll-imgs .scroll-imgs_sel div{
    position: absolute;
    z-index: 1111;
    top: 40px;
    color: #CCCCCC;
    cursor: pointer;
    font-size: 38px;
    transform: scale(0.5,1);
}
.hannels06 .scroll-imgs_left{
	left: 0px;
}
.hannels06 .scroll-imgs_right{
	right: 0px;
}

.hannels06 .scroll-imgs .scroll-imgs_box {
    width: 1020px;
    height: 120px;
    margin: 0 auto;
    overflow: hidden;
}
.hannels06 .scroll-imgs .pxb_xun {
    width: 10000px;
}
.hannels06 .scroll-imgs .pxb_xun a{
	margin-right: 5px;
    display: inline-block;
    float: left;
    width: 200px;
}
.hannels06 .scroll-imgs .pxb_xun a .pxb_xun_img {
    background: #FFFFFF;
    -webkit-align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: center;
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

/*分页 css*/
.pagess {
	clear: both;
	margin: 60px;
	overflow: hidden;
	margin-left: 0px;
	text-align: center;
	font-size: 12px
}

.pagess ul {
	display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
.pagess ul li {
	display: inline;
}

.pagess ul li a{
	position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #1BA962;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px;
}

.pagess ul li.thisclass a,.pagess ul li.thisclass a:hover{
	position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #fff;
    background-color: #1BA962;
    border: 1px solid #1BA962;
    margin-left: -1px;
}

.pagess ul li.disabled a{
	color: #999;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed;
}
.pagess ul li a:hover {
	background: #f2f2f2;
}

/*生态农场 */
.farm01-box{
	padding-top: 48px;
	padding-bottom: 60px;
}
.farm-video-box{
	background-color: #FFFFFF;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	margin-top: 10px;
}
.farm-video-box .video-show{
	width: 800px;
	flex: 0 0 800px;
	-webkit-flex: 0 0 800px;
}
.video-content{
	width: 100%;
	height: auto;
	/*background-color: #ffffff;*/
	color: #666666;
}
.video-content .video-content-wap{
	padding: 15px;
}
.farm-video-box .video-list{
	width: 270px;
	flex: 0 0 270px;
	-webkit-flex: 0 0 270px;
	float: right;
}
.farm-video-box .video-show{
	float: left;
}
.farm-video-box .video-show .video-play{
	width: 800px;
	height: 494px;
	overflow: hidden;
	font-size: 0px;
	background: #000000;
	position: relative;
}
.farm-video-box .video-show .video-play .video-play-bg{
	width: 100%;
	position: relative;
	height: 494px;
	overflow: hidden;
	z-index: 100;
	transition: all ease 0.3s;
}
.farm-video-box .video-show .video-play img{
	width: 100%;
}
.farm-video-box .video-show .video-tit{
	padding: 0px 10px;
	color: #666666;
	font-size: 20px;
	height: 45px;
	line-height: 45px;
}
.farm-video-box .video-list h4{
	margin-right: 10px;
	border-bottom: 1px solid #E6E6E6;
	height: 45px;
	line-height: 45px;
	margin-top: 0px;
	color: #333333;
}
.video-list-box{
	height: 475px;
	overflow-y: auto;
}

/*定义滚动条宽高及背景，宽高分别对应横竖滚动条的尺寸*/
.video-list-box::-webkit-scrollbar{
    width: 6px;
    height: 6px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background-color: #ccd0d7;
}
/*定义滚动条的轨道，内阴影及圆角*/
.video-list-box::-webkit-scrollbar-track{
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background-color: #e5e9ef;
}
/*定义滑块，内阴影及圆角*/
.video-list-box::-webkit-scrollbar-thumb{
    height: 6px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background-color: #ccd0d7;
}
.video-list-box ul li{
	margin-bottom: 15px;
	height: 80px;
	overflow: hidden;
	cursor: pointer;
}
.video-list-box ul li .video-list-item{
	/*display: flex;
	display: -webkit-flex;*/
	padding-right: 10px;
}
.video-list-item img{
	width: 128px;
	height: 80px;
	margin-right: 5px;
	float: left;
}
.video-item-info {
	float: left;
	width: 120px;
}
.video-item-info h5{
	color: #333333;
	line-height: 1.4em;
	height: 5.6em;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.video-item-info h6{
	color: #666666;
	margin-top: 4px;
}
.farm02-box{
	padding-top: 70px;
	padding-bottom: 50px;
}
.farm-safe-box{
	margin-top: 50px;
}
.farm-safe-box>p{
	font-size: 18px;
	color: #333333;
	line-height: 1.6;
}
.farm-flow{
	margin-top: 45px;
	display: box;              /* OLD - Android 4.4- */
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  	/* 09版 */
  -webkit-box-pack: space-between;
  /* 12版 */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;

	text-align: center;
	-webkit-box-align: center; /* 09版 */
  -webkit-align-items: center; /* 12版 */
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
.farm-flow .flow-box{
	float: left;
	width: 146px;
}
.farm-flow .flow-box h5{
	color: #666666;
	line-height: 1.8;
}
.farm-flow .flow-box .info-img{
	width: 146px;
	height: 146px;
}
.farm-flow .flow-arrow{
	float: left;
	width: 90px;
	height: 216px;
	background-image: url(../../page/cooperation/images/jiantou.png);
	background-repeat: no-repeat;
	background-position: center center;
	margin-top: -35px;
}

}
.baseFarmicon{
	position: relative;
    display: inline-block;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.baseicon-farm01{
	background-image: url(../../page/farm/images/nongchang01.png);
}
.baseicon-farm02{
	background-image: url(../../page/farm/images/nongchang02.png);
}
.baseicon-farm03{
	background-image: url(../../page/farm/images/nongchang03.png);
}
.baseicon-farm04{
	background-image: url(../../page/farm/images/nongchang04.png);
}
.baseicon-farm05{
	background-image: url(../../page/farm/images/nongchang05.png);
}
.farm03-box{
	padding-top: 50px;
	padding-bottom: 80px;
}
.farm-product-box{
	margin-top: 51px;
}
.farm-product-box>p{
	font-size: 20px;
	color: #333333;
}
.farm-product-box .product-items{
	margin-top: 50px;
}
.farm-product-box .product-items ul{
	display: box;              /* OLD - Android 4.4- */
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  	/* 09版 */
  -webkit-box-pack: space-between;
  /* 12版 */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;

}
.product01-bg{
	background-color: #f7faff;
}
.product02-bg{
	background-color: #f1fff8;
}
.product03-bg{
	background-color: #fbf1ff;
}
.product04-bg{
	background-color: #fffaf3;
}
.farm-product-box .product-items ul li{
	width: 258px;
	height: 380px;
	display: box;              /* OLD - Android 4.4- */
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	  /* 09版 */
	-webkit-box-orient: horizontal;
	  /* 12版 */
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	 /* 09版 */
  	-webkit-box-pack: space-around;
  /* 12版 */
  	-webkit-justify-content: space-around;
  	-moz-justify-content: space-around;
  	-ms-justify-content: space-around;
  	-o-justify-content: space-around;
  	justify-content: space-around;

	-webkit-box-align: center; /* 09版 */
  	-webkit-align-items: center; /* 12版 */
  	-moz-align-items: center;
  	-ms-align-items: center;
  	-o-align-items: center;
  	align-items: center;

	text-align: center;
	float: left;
}
.farm-product-box .product-items ul li + li{
	margin-left: 22px;
}
.farm-product-box .product-items ul li .product-box{
	display: inline-block;
	width: 100%;
}
.farm-product-box .product-items ul li .product-box img{
	width: 140px;
	height: 140px;
	margin-top: 30px\9;
}
.farm-product-box .product-items .product-box h4{
	padding-left: 20px;
	padding-right: 20px;
	margin-top: 50px;
	color: #333333;
	line-height: 1.8;
}

/*关于我们*/
.abour-tit{
	font-size: 36px;
	color: #19AE7A;
}
.abour-tit small{
	font-size: 20px;
	color: #19AE7A;
}
.honor-box{
	padding-top: 40px;
    padding-bottom: 60px;
}
.honor-images{
	width: 100%;
}
.honor-images .honor-img{
	float: left;
	width: 25%;
	height: 180px;
	overflow: hidden;
	margin-top: 30px;
	text-align: center;
}
.honor-images .honor-img img{
	width: 252px;
}
.history-wap{
	padding-top: 60px;
	padding-bottom: 70px;
}
.history-box{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-align-content: space-between;
	margin-top: 50px;
}
.history-box .history-pro{
	width: 1200px;
	margin: 0 auto;
	text-align: center;
	/* height: 430px; */
	overflow: hidden;
	/* display: flex; */
	/* justify-content: center; */
	flex-wrap: wrap;
}
.history-pro-item{
	display: flex;
	display: -webkit-flex;
	margin: 0 auto;
	text-align: center;

}
.history-pro-item>span{
	display: inline-block;
	padding-bottom: 21px;
}
.history-pro-item .pro-date{
	font-size: 14px;
	color: #2CA139;
	text-align: left;
	/* width: 95px; */
	padding: 0 20px;
	white-space: nowrap;
}
.history-pro-item .pro-info{
	width: 570px;
	font-size: 14px;
	color: #666666;
	border-right: 1px dashed #45aa6a;
	position: relative;
	margin-left: 20px;
	padding-left: 20px;
}
.history-pro-item .pro-info:before{
	position: absolute;
	top: 8px;
	left: 566.5px;
	display: inline-block;
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	background-color: #45aa6a;
	box-shadow: 0px 0px 4px 4px #bae2c8;
	-webkit-box-shadow: 0px 0px 4px 4px #bae2c8;
}
.history-pro-item .pro-info1{
	width: 570px;
	font-size: 14px;
	color: #666666;
	border-left: 1px dashed #45aa6a;
	position: relative;
	margin-left: 20px;
	padding-left: 20px;
}
.history-pro-item .pro-info1:before{
	position: absolute;
	top: 8px;
	left: -4px;
	display: inline-block;
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	background-color: #45aa6a;
	box-shadow: 0px 0px 4px 4px #bae2c8;
	-webkit-box-shadow: 0px 0px 4px 4px #bae2c8;
}
.team-people-box{
	padding-top: 40px;
}
.team-tot{
	width: 500px;
	height: 70px;
	line-height: 70px;
	border-radius: 35px;
	-webkit-border-radius: 35px;
	border: 1px solid #2CA139;
	color: #666666;
	font-size: 19px;
	text-align: center;
	margin: 40px auto 0px;
}
.team-tot .team-num{
	font-size: 40px;
	color: #2CA139;
}
.team-items{
	margin-top: 40px;
}
.team-items .team-people{
	margin-bottom: 50px;
}
.team-items .team-people .people-img{
	width: 230px;
	height: 170px;
	overflow: hidden;
	float: left;
	margin-top: 40px;
}
.team-items .team-people .people-img img{
	width: 100%;
}
.team-items .team-people .people-info{
	width: 832px;
	float: right;
}
.team-items .team-people .people-info h3{
	font-size: 22px;
	margin-top: 10px;
}
.team-items .team-people .people-info h3 small{
	font-size: 16px;
	color: #333333;
	margin-left: 10px;
}
.team-items .team-people .people-info .people-title{
	margin-top: 26px;
	font-size: 14px;
	color: #333333;
	line-height: 1.8;
}
.team-items .team-people .people-info .people-about{
	margin-top: 30px;
	line-height: 1.8;
	font-size: 14px;
	color: #333333;
}
.about-his-box .his-info{
	font-size: 20px;
	color: #333333;
	text-align: center;
	margin-top: 42px;
	margin-bottom: 42px;
}
.about-his-box .part-info-items .part-info-box{
	width: 274px;
	height: 400px;
	-webkit-flex: 1 0 274px;
	flex: 1 0 274px;
	border: 1px solid #EEEEEE;
	margin-right: -1px;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	-webkit-align-items: center;
}
.about-his-box .part-info-items .about-his{
	width: 100%;
	display: inline-block;
}
.about-his-box .part-info-items .about-his p{
	padding: 0px 20px;
}

.about-his-box .part-info-items .about-his .text1{
	font-size: 22px;
	color: #333333;
	margin-top: 60px;
	margin-bottom: 44px;
}
.about-his-box .part-info-items .about-his .text2{
	color: #666666;
	font-size: 20px;
	line-height: 1.4;
}
.about-his-box .part-info-box .info-img{
	width: 120px;
	height: 120px;
}
.baseHisicon{
	position: relative;
    display: inline-block;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    background-repeat: no-repeat;
    vertical-align: middle;
    top: 30px\9;
}
.baseicon-his01{
	background-image: url(../../page/about/images/01shimin.png);
}
.baseicon-his02{
	background-image: url(../../page/about/images/02yuanjin.png);
}
.baseicon-his03{
	background-image: url(../../page/about/images/03jiazhi.png);
}
.baseicon-his04{
	background-image: url(../../page/about/images/02z.png);
}
.about-responsibility-box{
	padding-top: 80px;
	padding-bottom: 80px;
}
.about-responsibility{
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	margin-top: 60px;
}
.about-responsibility .reap-img{
	width: 400px;
	height: 210px;
	overflow: hidden;
	flex: 0 0 400px;
	float: left;
}
.about-responsibility .reap-info{
	width: 655px;
	font-size: 14px;
	color: #666666;
	line-height: 2.2;
	margin-left: 45px;
	float: right;
}
.part-content-text{
	width: 1155px;


}
.parttt-one{
	color: #000000;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 14px;
line-height: normal;
letter-spacing: 0px;
text-align: left;
line-height: 2;
}
.text-part5{
	margin: 40px auto;
	color: #333333;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 18px;
line-height: normal;
letter-spacing: 0px;

}
.part5{
	width: 1200px;
	display: flex;
	justify-content: space-between;

}
.part5-children{
	background: #f5f5f5;
	/* box-shadow: 0px 0px 8px 0px #000000; */
	width: 285px;
	height: 400px;
	padding-top:40px ;
}
.children-title{
	color: #19AE7A;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 24px;
line-height: normal;
letter-spacing: 0px;
text-align: center;
margin-top: 60px;
margin-bottom: 40px;

}
.children-text{
	color: #666666;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 16px;
line-height: normal;
letter-spacing: 0px;
text-align: center;

}
/*协议页面*/
.agree-box .abour-tit{
	margin-top: 50px;
}
.agree-content{
	width: 100%;
	color: #666666;
	font-size: 16px;
	line-height: 2;
	padding: 50px 0px;
}

/*品牌服务*/
.strategy01-content{
	float: left;
	width: 420px;
	color: #666666;
	font-size: 16px;
	line-height: 2;
	margin-top: 30px;
}
.strategy01-img{
	float: right;
	width: 600px;
	height: 240px;
	overflow: hidden;
}
.strategy02-item{
	padding: 60px 40px;
}
.hannels03 .strategy02-item img{
	margin-top: 0px;
}

.strategy02-img01{
	width: 490px;
	height: 326px;
	float: left;
}
.strategy02-img02{
	width: 486px;
	height: 238px;
	float: right;
	margin-top: 18px;
}
.strategy04-txt{
	margin-top: 100px;
}
.strategy04-img{
	float: right;
	width: 361px;
	height: 361px;
	overflow: hidden;
}

/*商家入驻*/
.recr-tit{
	color: #4dc35a;
	font-size: 26px;
}
.label-recr{
	background-color: rgb(77,195,90);
	color: #FFFFFF;
	font-size: 24px;
	font-weight: 100;
	padding: 4px;
	margin-right: 8px;
}
.recr-box {
	padding-left: 54px;
}
.recr-box .part-items{
	display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    padding-bottom: 30px;
}
.recr-sub{
	font-size: 42px;
	color: #333333;
}
.step-01-img{
	width: 318px;
	height: 318px;
	float: left;
	margin-top: 30px;
}
.step1-recr-con{
	width: 524px;
	float: right;
	margin-left: 78px;
}
.step1-recr-con .recr-type ul li{
	text-align: center;
	width: 120px;
	height: 120px;
	float: left;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
.step1-recr-con .recr-type ul li .atim-info{
	display: inline-block;
}
.baseicon-txt{
	display: inline-block;
	width: 80%;
	color: #FFFFFF;
	font-size: 18px;
	margin: 0 auto;
	margin-top: 20px\9;
}
.baseRecricon{
	width: 110px;
	height: 110px;
	position: relative;
    display: inline-block;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    background: url(../../page/cooperation/images/recr/4yuan.png);
    background-repeat: no-repeat;
    vertical-align: middle;
    display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	text-align: center;
}
.baseicon-recr01{
	top: -1px;
	background-position: 0px 0px;
}
.baseicon-recr02{
	top: -1px;
	background-position: -138px 0px;
}
.baseicon-recr03{
	top: -1px;
	background-position: -276px 0px;
}
.baseicon-recr04{
	top: -1px;
	background-position: -414px 0px;
}
.step1-recr-con .join-txt{
	width: 524px;
	font-size: 30px;
	margin-top: 30px;
	text-align: center;
}
.step2-recr-con{
	margin-top: 24px;
}
.step2-recr-con ul{
	margin-top: 30px;
	font-size: 18px;
	color: #666666;
}
.step2-recr-con ul li{
	margin-bottom: 20px;
}
.step2-recr-con ul li>div{
	float: left;
	width: 50%;
}
.step2-recr-con ul li .step2-tip{
	font-size: 14px;
}
.step-02-img{
	width: 318px;
	height: 318px;
	margin-left: 50px;
}
.step-03-img{
	width: 318px;
	height: 318px;
	float: left;
}
.step3-recr-con{
	margin-left: 113px;
	margin-bottom: 30px;
}
.step3-recr-txt,.step4-recr-txt{
	font-size: 18px;
	color: #666666;
}
.step3-recr-txt ul li,.step4-recr-txt ul li{
	margin-top: 20px;
}
.step4-recr-con{
	margin-top: 30px;
	margin-bottom: 20px;
}
.step-04-img{
	width: 380px;
	height: 240px;
}
.step5-recr-con{
	margin-top: 30px;
	margin-bottom: 30px;
}
.step5-txt-r{
	margin-left: 72px;
}
.step-05-img{
	margin-top: 30px;
}
.step-06-img{
	width: 380px;
	height: 240px;
	margin-left: 118px;
}
.step-07-img{
	width: 415px;
	height: 260px;
	float: left;
	margin-top: 30px;
}
.step7-recr-con{
	margin-left: 120px;
}
.step7-recr-txt{
	text-align: center;
	margin-top: 40px;
}
.recr-type-imgs{
	width: 100%;
    margin: 20px auto 70px;
    height: 345px;
    position: relative;
}
.recr-type-imgs .scroll-imgs{
	width: 100%;
    height: 345px;
    position: absolute;
}
.recr-type-imgs .scroll-imgs .scroll-imgs_sel {
    width: 100%;
    height: 1px;
    position: relative;
}
.recr-type-imgs .scroll-imgs .scroll-imgs_sel .scroll-imgs_left {
    left: 0px;
}
.recr-type-imgs .scroll-imgs .scroll-imgs_sel div {
    position: absolute;
    z-index: 1111;
    top: 77px;
    cursor: pointer;
}
.recr-type-imgs .scroll-imgs .scroll-imgs_sel .scroll-imgs_right {
    right: 0px;
}
.recr-type-imgs .scroll-imgs .scroll-imgs_sel div {
    position: absolute;
    z-index: 1111;
    top: 142px;
    cursor: pointer;
}
.recr-type-imgs .scroll-imgs .scroll-imgs_sel .scroll-imgs_left .img1 {
    display: none;
}
.recr-type-imgs .scroll-imgs .scroll-imgs_sel .scroll-imgs_right .img2 {
    display: none;
}
.recr-type-imgs .scroll-imgs .scroll-imgs_box{
	width: 100%;
    height: 345px;
    overflow: hidden;
}
.recr-type-imgs .scroll-imgs .pxb_xun ul {
    width: 1120px;
    float: left;
    font-size: 0px;
}
.recr-type-imgs .scroll-imgs .pxb_xun ul li{
	margin-right: 20px;
    display: inline-block;
    float: left;
    width: 260px;
    height: 170px;
    margin-bottom: 20px;
}
.recr-type-imgs .scroll-imgs .pxb_xun ul li a{
    display: inline-block;
}
.recr-type-imgs .scroll-imgs .pxb_xun  ul li:nth-child(4n){
	/*margin-right: 0px;*/
}
.recr-type-imgs .scroll-imgs .pxb_xun ul li:last-child{
	margin-bottom: 0px;
}
.recr-type-imgs .scroll-imgs .pxb_xun a .pxb_xun_img {
    background: #FFFFFF;
    -webkit-align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: center;
    position: relative;
    width: 100%;
    height: 170px;
    overflow: hidden;
}

/*text align*/
.center-tit{
	text-align: center;
}

/*border*/
.border-top{
	border-top: 1px solid #d8d8d8;
}


/* font color */
.n-color-green{
	color: #2CA139;
}
.n-color-price{
	color: #ff4800;
}

/*本地小图标*/
.baseicon{
	position: relative;
    display: inline-block;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    background: url(../images/icon/icon.png);
    background-repeat: no-repeat;
    vertical-align: middle;
}
.baseicon-upload{
	width: 28px;
	height: 28px;
	top: -1px;
	left: 5px;
	background-position: -100px 0px;
}
.baseicon-attention{
	width: 30px;
	height: 28px;
	top: -1px;
	left: 5px;
	background-position: -100px -30px;
}
.baseicon-action01{
	top: -1px;
	background-position: 0px 0px;
}
.baseicon-action02{
	top: -1px;
	background-position: 0px -50px;
}
.baseicon-action03{
	top: -1px;
	background-position: 0px -100px;
}
.baseicon-action04{
	top: -1px;
	background-position: 0px -150px;
}
.baseicon-action05{
	top: -1px;
	background-position: 0px -200px;
}
.baseicon-action06{
	top: -1px;
	background-position: 0px -250px;
}
.baseicon-action07{
	top: -1px;
	background-position: 0px -300px;
}
.baseicon-action08{
	top: -1px;
	background-position: 0px -350px;
}
.baseShareicon{
	position: relative;
    display: inline-block;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.baseicon-share{
	width: 24px;
	height: 24px;
	background-image: url(../images/icon/fenxiang.png);
	top: 10px;
}



/*noresponse*/

/* Account for fixed navbar */
body,
.nav-static-top1,
.navbar-fixed-bottom {
	min-width: 1240px;
}

/* Don't let the lead text change font-size. */

.lead {
	font-size: 16px;
}

/* Finesse the page header spacing */

.page-header {
	margin-bottom: 30px;
}

.page-header .lead {
	margin-bottom: 10px;
}


/* Non-responsive overrides
 *
 * Utilize the following CSS to disable the responsive-ness of the container,
 * grid system, and navbar.
 */

/* Demonstrate the grids */

.col-xs-4 {
	padding-top: 15px;
	padding-bottom: 15px;
	background-color: #eee;
	background-color: rgba(86, 61, 124, .15);
	border: 1px solid #ddd;
	border: 1px solid rgba(86, 61, 124, .2);
}

.container .navbar-header,
.container .navbar-collapse {
	margin-right: 0;
	margin-left: 0;
}

/* Undo inline form compaction on small screens */

.form-inline .form-group {
	display: inline-block;
	margin-bottom: 0;
	vertical-align: middle;
}

.form-inline .form-control {
	display: inline-block;
	width: auto;
	vertical-align: middle;
}

.form-inline .form-control-static {
	display: inline-block;
}

.form-inline .input-group {
	display: inline-table;
	vertical-align: middle;
}

.form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
	width: auto;
}

.form-inline .input-group> .form-control {
	width: 100%;
}

.form-inline .control-label {
	margin-bottom: 0;
	vertical-align: middle;
}

.form-inline .radio,
.form-inline .checkbox {
	display: inline-block;
	margin-top: 0;
	margin-bottom: 0;
	vertical-align: middle;
}

.form-inline .radio label,
.form-inline .checkbox label {
	padding-left: 0;
}

.form-inline .radio inp	ut[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
	position: relative;
	margin-left: 0;
}

.form-inline .has-feedback .form-control-feedback {
	top: 0;
}
/* 农牧人掌柜 */
.keeper01-box{
	width: 1200px;
	margin: 0 auto;
	margin-top: 87px;
	display: flex;
	justify-content: center;
}
.keeper01-left{
	width: 364px;
	height: 458px;
}
.keeper01-left img{
	width: 100%;
	height: 100%;
}
.keeper01-right{
	margin-left: 60px;
}
.keeper01-right-top{
	display: flex;
	align-items: center;
}
.keeper01-logo{
	width: 110px;
	height: 110px;
}
.keeper01-right-center{
	width: 528px;
	height:125px ;
	color: #333333;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 16px;
line-height: normal;
letter-spacing: 0px;
text-align: left;
margin-top: 30px;
}
.keeper01-right-center p{
	color: #333333;
	font-family: Microsoft YaHei;
	font-weight: regular;
	font-size: 16px;
	line-height: normal;
	letter-spacing: 0px;
	text-align: left;
	
}
.keeper01-right-bottom{
	display: flex;
	align-items:flex-end;
	margin-top: 50px;
}
.keeper01-right-title{
	color: #19AE7A;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 24px;
line-height: normal;
letter-spacing: 0px;
text-align: left;

}
.keeper01-right-jieshao{
	color: #666666;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 18px;
line-height: normal;
letter-spacing: 0px;
text-align: left;
margin-top: 10px;
}
.keeper01-right-bottom .btn{
	width: 180px;
	height: 50px;
	border-radius: 25px;
	background: #19AE7A;
	margin-left: 70px;
	color: #FFFFFF;
	font-family: Microsoft YaHei;
	font-weight: regular;
	font-size: 16px;
	line-height: normal;
	letter-spacing: 0px;
	text-align: center;
	
}
.keeper02-title{
	color: #333333;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 24px;
line-height: normal;
letter-spacing: 0px;
text-align: left;
margin-top: 80px;

}
.keeper02-text{
	margin-top: 20px;
	color: #666666;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 18px;
line-height: normal;
letter-spacing: 0px;
text-align: left;

}
.keeper03-box{
	width: 1200px;
	margin: 80px auto;
}
.keeper03-img{
	display: flex;
	align-items: center;
	margin-top: 40px;
}
.ware01-box{
	width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	margin-top: 75px;
}
/* 农牧人货栈 */
.ware01-right{
	margin-left: 26px;
}
.ware01-content{
	width: 806px;
	height: 130px;
	color: #000000;
	font-family: Microsoft YaHei;
	font-weight: regular;
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0px;
	text-align: left;
	
}
.ware01-content1{
	color: #000000;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 14px;
line-height: normal;
letter-spacing: 0px;
text-align: left;
margin-top: 20px;
}
.ware01-right-bottom{
	display: flex;
	align-items: center;
	margin-top: 80px;
}
.ware01-gc{
	border-radius: 10px;
	background: #19AE7A;
	width: 156px;
	height: 40px;
	color: #FFFFFF;
	font-family: Microsoft YaHei;
	font-weight: regular;
	font-size: 14px;
	line-height: 40px;
	letter-spacing: 0px;
	text-align: center;
	margin-top: 15px;
	margin-right: 20px;
	
}
.ware02-box{
	width: 1200px;
	margin: 0 auto;
	padding-top: 82px;

}
.ware02-shop{
	margin-top: 40px;
	text-align: center;
}
.ware02-shop-title{
	color: #333333;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 24px;
line-height: normal;
letter-spacing: 0px;
text-align: center;

}
.ware02-shop-address{
	color: #666666;
	font-family: Microsoft YaHei;
	font-weight: regular;
	font-size: 18px;
	line-height: normal;
	letter-spacing: 0px;
	text-align: center;
	margin-top: 15px;	
}
.ware02-img{
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
/* 农牧人 */
.farm01-box{
	width: 1200px;
	margin: 0 auto;
	margin-top: 103px;
	display: flex;
	align-items: end;
}
.farm01-right{
	margin-left: 60px;

}
.farm01-title{
	color: #000000;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 60px;
line-height: normal;
letter-spacing: 0px;
text-align: left;

}
.farm-flex{
	width: 856px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
}
.farm-text{
	color: #000000;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 20px;
line-height: normal;
letter-spacing: 0px;
text-align: left;

}
.farm-btn{
	width: 184px;
	height: 60px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	/* opacity: 0.20000000298023224; */
	background: rgb(209,239,228);
	text-align: center;

}
.farm-btn span{
	color: #19AE7A;
	font-family: Microsoft YaHei;
	font-size: 20px;
	line-height: 60px;
	letter-spacing: 0px;
}
.farm01-bottom{
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
}
.farm01-bottom-title{
	color: #333333;
	font-family: Microsoft YaHei;
	font-weight: bold;
	font-size: 20px;
	line-height: normal;
	letter-spacing: 0px;
	text-align: left;
	
}
.farm01-bottom-text{
	width: 369px;
	height: 73px;
	margin-top: 16px;
	color: #666666;
	font-family: Microsoft YaHei;
	font-weight: regular;
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: 0px;
	text-align: left;
	
}
.farm02-box{
	width: 100%;
	margin: 0 auto;
	background-color: rgb(248,252,251);
	padding-top: 80px;
}
.farm02-auto{
	width: 1200px;
	margin: 0 auto;
}
.farm02-flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.farm02-alone{
	background: #FFFFFF;
	border: 1px solid #E5E5E5;
	width: 285px;
	height: 230px;	
	text-align: center;
	padding: 32px 0;
}
.farm02-alone-title{
	color: #000000;
	font-family: Microsoft YaHei;
	font-weight: regular;
	font-size: 20px;
	line-height: normal;
	letter-spacing: 0px;
	text-align: center;
	margin: 0px auto;
	margin-top: 30px;
}
.farm02-alone-text{
	color: #000000;
	font-family: Microsoft YaHei;
	font-weight: regular;
	font-size: 14px;
	line-height: normal;
	letter-spacing: 0px;
	text-align: center;
	margin:10px auto;
}
.farm03-box{
	width: 1200px;
	margin: 0 auto;
	padding-top: 80px;
}
.farm03-flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 60px;
}
.farm03-text{
	width: 550px;
	height: 300px;
	/* display: flex; */
	/* justify-content: right; */
	text-align: right;
	line-height: 30px;
}
.farm03-img{
	width: 550px;
	height: 300px;
	background: rgb(186,231,216);
	text-align: center;
	line-height: 300px;
}
.farm03-text-title{
	color: #333333;
font-family: Microsoft YaHei;
font-weight: regular;
font-size: 24px;
line-height: 2;
letter-spacing: 0px;
/* text-align: right; */
margin-top: 70px;

}
.farm03-tt{
	color: #666666;
	font-family: Microsoft YaHei;
	font-weight: regular;
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0px;
	/* text-align: right; */
	
}