/*初始化样式*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
	border: 0;
	overflow-x: hidden;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
p,
blockquote,
pre,
a,
address,
code,
b,
em,
img,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
footer,
header,
hgroup,
navs,
section {
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	background: #fff;
	color: #333;
	position: relative;
	font: 14px/1.5 Microsoft YaHei, arial, 宋体, sans-serif;
	vertical-align: baseline;
	width: 100%;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	outline: none;
	color: #333;
}

a:hover,
a:active,
a:focus {
	text-decoration: none;
	outline: none;
	color: #b17954;
}

input {
	padding: 0;
	margin: 0;
	font-family: 'Microsoft YaHei';
}

img {
	border: none;
	background: none;
	vertical-align: middle;
}

ul,
ol,
li {
	list-style-type: none;
}

select,
input,
img,
select {
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

table,
th,
td {
	vertical-align: middle;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}

.clearfix {
	zoom: 1
}

.clearboth {
	height: 0px;
	line-height: 0px;
	overflow: hidden;
	clear: both;
	font-size: 0px;
}

h1,
h2 {
	font-weight: bold;
}

hr {
	border: 0;
	border-top: 1px solid #ccc;
	height: 0;
}

h3,
h4,
h5,
h6 {
	font-weight: normal;
}

p {
	margin: 0;
}

/*----- Common css ------*/
.fl {
	float: left;
}

.fr {
	float: right;
}

/*flex布局*/
.flex_wrap {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

/*flex布局上下对齐*/
.flex_alise {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-content: space-between;
	-moz-align-content: space-between;
	-ms-align-content: space-between;
	-o-align-content: space-between;
	align-content: space-between;
}

/*flex布局上下居中*/
.flex_alice {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	-o-align-content: center;
	align-content: center;
}

/*flex布局左右对齐*/
.flex_con {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

/*flex布局左右居中*/
.flex_con_cen {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

/*scrollbar*/
body::-webkit-scrollbar {
	width: 4px;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

body::-webkit-scrollbar-track {
	background: #dfdfdf;
	-webkit-border-radius: 0;
}

body::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb:vertical {
	background: #b17954;
	border: none;
	-webkit-border-radius: 0;
}

body::-webkit-scrollbar-thumb:vertical:active {
	background: #b17954;
	border: none;
	-webkit-border-radius: 0;
}

/**/
.max1530 {
	max-width: 1630px;
	margin: 0 auto;
	padding: 0 50px;
}

.page_con_zhuti {
	max-width: 1630px;
	margin: 0 auto;
	padding: 0 50px;
}

@media(max-width:1280px) {
	.max1530 {
		padding: 0 30px;
	}

	.page_con_zhuti {
		padding: 0 30px;
	}
}

@media(max-width:991px) {
	.max1530 {
		padding: 0 20px;
	}

	.page_con_zhuti {
		padding: 0 20px;
	}

	body {
		padding-top: 61px;
	}
}

@media(max-width:768px) {
	.max1530 {
		padding: 0 15px;
	}

	.page_con_zhuti {
		padding: 0 15px;
	}
}

/*头部*/
#pc_header {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 999;
	background: rgba(0,0,0,.9);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pc_header_con {
	height: 100px;
	line-height: 100px;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_logo {
	width: 18%;
	max-width: 220px;
}

.pc_logo img {
	max-width: 100%;
}

.pc_header_fr{
	width: 77%;
	max-width: 1000px;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	-o-justify-content: flex-end;
	justify-content: flex-end;
}

.pc_nav {
	width: 87.5%;
}

.pc_nav>ul {
	width: 100%;
}

.pc_nav>ul {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	-o-flex-wrap: nowrap;
	flex-wrap: nowrap;

	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	-o-align-content: center;
	align-content: center;
}

.pc_nav>ul>.pc_nav_li_www{
	width: 14.285714285714%;
	float: left;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.pc_nav>ul>.pc_nav_li_www>li{
	position: relative;
	text-align: center;
	max-width: 100%;
}

.pc_nav>ul>.pc_nav_li_www>li>a {
	font-size: 17px;
	line-height: 100px;
	color: #fff;
	font-weight: 300;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pc_nav>ul>.pc_nav_li_www>li>a::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #b17954;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pc_nav_erji_w {
	position: absolute;
	z-index: 999;
	width: 150px;
	left: 50%;
	top: 100%;
	background: #000;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate(-50%, 20px);
	-moz-transform: translate(-50%, 20px);
	-ms-transform: translate(-50%, 20px);
	-o-transform: translate(-50%, 20px);
	transform: translate(-50%, 20px);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.pc_nav>ul>.pc_nav_li_www>li:hover .pc_nav_erji_w {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.pc_nav>ul>.pc_nav_li_www>li:hover>a::before,.pc_nav>ul>.pc_nav_li_www>li.active>a::before{
	width: 100%;
}

.pc_nav_erji_li a {
	font-size: 15px;
	line-height: 2;
	padding: 6px 5px;
	color: rgba(255,255,255,.6);
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.pc_nav_erji_li a:hover{
	color: #fff;
}

.pc_header_fr_dianhua{
	position: relative;
}

.pc_header_fr_dianhua_sousuo{
	margin-left: 2.5%;
	width: 10%;
}

.pc_header_fr_dianhua,.pc_sousuo{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_header_fr_dianhua a{
	display: block;
	width: 24px;
	height: 24px;
	background: url(../images/img/pc_header_phone_ico.png) no-repeat center;
	background-size: 24px;
}

.pc_sousuo {
	position: relative;
	z-index: 999;
}

.pc_sousuo1 {
	width: 24px;
	height: 24px;
	background: url(../images/img/pc_header_search_ico.png) no-repeat center;
	background-size: 24px;
	cursor: pointer;
}

.pc_sousuo2 {
	position: absolute;
	right: 0;
	top: 100%;
	width: 220px;
	z-index: 999;
	background: #b17954;
	display: none;
}

.pc_sousuo2 input {
	outline: none;
	line-height: 42px;
	width: 36px;
	background: none;
	border: 0;
	background: #0662af;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.28);
	float: left;
}

.pc_sousuo2 .pc_sousuo_con_tijiao {
	background: url(../images/img/pc_header_search_ico.png) no-repeat center;
	background-size: 22px;
	cursor: pointer;
}

.pc_sousuo2 .pc_sousuo_con_shuru {
	padding-left: 13px;
	line-height: 42px;
	width: calc(100% - 36px);
	background: none;
	border: 0;
	outline: none;
	font-size: 13px;
	color: rgba(255, 255, 255, 1);
	float: left;
}

.pc_sousuo2 .pc_sousuo_con_shuru::-webkit-autofill {
	-webkit-text-fill-color: rgba(255, 255, 255, 1) !important;
	-webkit-transition: background-color 5000s ease-in-out 0s;
	-moz-transition: background-color 5000s ease-in-out 0s;
	-ms-transition: background-color 5000s ease-in-out 0s;
	-o-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
}

.pc_sousuo2 .pc_sousuo_con_shuru::placeholder {
	color: rgba(255, 255, 255, 1);
}

.pc_header_fr_dianhua_con{
	position: relative;
	cursor: pointer;
}

.pc_nav_dianhua_fl_fr_phone{
	position: absolute;
	right: 0;
	top: 50%;
	padding: 6px 0;
	border-radius: 30px;
	width: 0;
	overflow: hidden;
	text-align: center;
	background-color: #b17954;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.pc_header_fr_dianhua_con:hover .pc_nav_dianhua_fl_fr_phone{
	width: 160px;
}

.pc_nav_dianhua_fl_fr_phone i{
	height: 24px;
	display: block;
}

.pc_nav_dianhua_fl_fr_phone span{
	position: absolute;
	right: 0;
	top: 50%;
	width: 160px;
	font-size: 17px;
	line-height: 24px;
	color: #fff;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media(max-width:1280px){
	.pc_nav>ul>.pc_nav_li_www>li>a{
		font-size: 16px;
	}

	.pc_header_fr_dianhua a{
		background-size: 22px;
	}

	.pc_sousuo1{
		background-size: 22px;
	}
}

/*首页banner*/
.index_banner {
	position: relative;
	overflow: hidden;
}

.index_banner_li img {
	width: 100%;
	-webkit-transition: 1s 2.5s;
	-moz-transition: 1s 2.5s;
	-ms-transition: 1s 2.5s;
	-o-transition: 1s 2.5s;
	transition: 1s 2.5s;
	-webkit-transform: perspective(1000px) translate3d(0,0,100px);
	-moz-transform: perspective(1000px) translate3d(0,0,100px);
	-ms-transform: perspective(1000px) translate3d(0,0,100px);
	-o-transform: perspective(1000px) translate3d(0,0,100px);
	transform: perspective(1000px) translate3d(0,0,100px);
}

.index_banner_li.swiper-slide-active img{
	-webkit-transition: 5s 0s;
	-moz-transition: 5s 0s;
	-ms-transition: 5s 0s;
	-o-transition: 5s 0s;
	transition: 5s 0s;
	-webkit-transform: perspective(1000px) translate3d(0,0,0);
	-moz-transform: perspective(1000px) translate3d(0,0,0);
	-ms-transform: perspective(1000px) translate3d(0,0,0);
	-o-transform: perspective(1000px) translate3d(0,0,0);
	transform: perspective(1000px) translate3d(0,0,0);
}

.index_banner_btn{
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	z-index: 990;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_banner_btn_con{
	position: relative;
}

.index_banner_btnl,.index_banner_btnr{
	width: 3.8rem;
	height: 3.8rem;
	border: 2px solid #fff;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_banner_btnl span,.index_banner_btnr span{
	width: 1.5rem;
	height: 1.5rem;
	background: url(../images/img/index_banner_btnl.png) no-repeat center;
	background-size: 100% 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.index_banner_btnl span{
	-webkit-transform: translate(-50%,-50%) rotate(180deg);
	-moz-transform: translate(-50%,-50%) rotate(180deg);
	-ms-transform: translate(-50%,-50%) rotate(180deg);
	-o-transform: translate(-50%,-50%) rotate(180deg);
	transform: translate(-50%,-50%) rotate(180deg);
}

.index_banner_btnl{
	left: 0;
}

.index_banner_btnr{
	right: 0;
}

.index_banner_btnl:hover,.index_banner_btnr:hover{
	background: #b17954;
	border-color: #b17954;
}

@media(max-width:768px) {
	.index_banner_btn{
		display: none;
	}

	.index_banner_btnl,.index_banner_btnr{
		width: 38px;
		height: 38px;
	}

	.index_banner_btnl span, .index_banner_btnr span{
		width: 14px;
		height: 14px;
	}
}

@media(max-width:468px) {
	.index_banner_btnl,.index_banner_btnr{
		width: 32px;
		height: 32px;
	}

	.index_banner_btnl span, .index_banner_btnr span{
		width: 10px;
		height: 10px;
	}
}

/*推荐产品*/
.index_aoso_popular{
	padding: 3% 0;
	background: #f7f7f7;
}

.index_aoso_popular_li{
	width: 49%;
	margin-right: 2%;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background-color: #fff;
}

.index_aoso_popular_li a{
	display: block;
}

.index_aoso_popular_li:nth-child(2n){
	margin-right: 0;
}

.index_aoso_popular_li:nth-child(n+3){
	margin-top: 2%;
}

.index_aoso_popular_li .img{
	overflow: hidden;
	border-radius: 22px 20px 20px 22px;
	position: relative;
	z-index: 3;
}

.index_aoso_popular_li .img_con{
	padding: 27.5% 0;
}

.index_aoso_popular_li .wz1{
	width: 50%;
	height: 100%;
	padding: 2% 4.5%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	border-radius: 0 20px 20px 0;
	background: #fff url(../images/img/index_popular_1_bj.png) no-repeat center;
	background-size: 100% 100%;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_aoso_popular_li .wz1 .wz1_con{
	width: 100%;
}

.index_aoso_popular_li .wz1 .wz1_ft{
	font-size: 1.5rem;
	line-height: 1.5;
	color: #222;
	font-weight: 300;
}

.index_aoso_popular_li .wz1 .wz1_fb{
	font-size: 20px;
	line-height: 1.5;
	color: #222;
	font-weight: 300;
	margin-top: 10%;
}

.index_aoso_popular_li .wz2{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	padding: 5% 7%;
	background: #fff url(../images/img/index_popular_2_bj.png) no-repeat center;
	background-size: 100% 100%;
	opacity: 0;
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	-o-align-items: flex-end;
	align-items: flex-end;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_aoso_popular_li .wz2 .wz2_ft{
	font-size: 1.2rem;
	line-height: 1.5;
	color: #fff;
	font-weight: 300;
	width: 100%;
	text-align: right;
}

.index_aoso_popular_li:hover .wz2{
	opacity: 1;
}

@media(max-width:1366px){
	.index_aoso_popular_li .wz1 .wz1_fb{
		font-size: 18px;
	}

	.index_aoso_popular_li .wz1 .wz1_ft{
		font-size: 24px;
	}

	.index_aoso_popular_li .wz2 .wz2_ft{
		font-size: 20px;
	}
}

@media(max-width:1280px){
	.index_aoso_popular_li .wz1 .wz1_fb{
		font-size: 17px;
	}

	.index_aoso_popular_li .wz1 .wz1_ft{
		font-size: 22px;
	}

	.index_aoso_popular_li .wz2 .wz2_ft{
		font-size: 18px;
	}
}

@media(max-width:991px){
	.index_aoso_popular{
		padding: 30px 0;
	}

	.index_aoso_popular_li{
		width: 100%;
		margin-right: 0;
	}

	.index_aoso_popular_li:nth-child(n+2){
		margin-top: 20px;
	}

	.index_aoso_popular_li .wz1 .wz1_fb{
		margin-top: 5%;
	}
}

@media(max-width:768px){
	.index_aoso_popular_li .wz1 .wz1_ft{
		font-size: 20px;
	}

	.index_aoso_popular_li .wz1 .wz1_fb{
		font-size: 16px;
	}

	.index_aoso_popular_li .wz2 .wz2_ft{
		font-size: 16px;
	}
}

@media(max-width:468px){
	.index_aoso_popular{
		padding: 25px 0;
	}

	.index_aoso_popular_li{
		border-radius: 10px;
	}

	.index_aoso_popular_li .img{
		border-radius: 10px 10px 10px 10px;
	}

	.index_aoso_popular_li .wz1{
		width: 53%;
		border-radius: 0 10px 10px 0;
	}

	.index_aoso_popular_li .wz1 .wz1_ft{
		font-size: 18px;
	}

	.index_aoso_popular_li .wz1 .wz1_fb{
		font-size: 14px;
		margin-top: 2%;
	}

	.index_aoso_popular_li .wz2 .wz2_ft{
		font-size: 15px;
	}

	.index_aoso_popular_li:nth-child(n+2){
		margin-top: 15px;
	}
}

/*我们的项目*/
.index_aoso_case{
	padding: 4% 0;
	position: relative;
}

.index_aoso_case_ft{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_aoso_case_ft_fl{
	font-size: 1.8rem;
	line-height: 1.5;
	color: #000;
}

.index_aoso_case_ft_fr a{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_aoso_case_ft_fr a::before,.index_aoso_case_ft_fr a::after{
	content: '';
	display: block;
	width: 2.5rem;
	height: 1px;
	background: #333;
}

.index_aoso_case_ft_fr a span{
	font-size: 1.2rem;
	line-height: 1.5;
	color: #333;
	padding: 0 5px;
}

.index_aoso_case_fb{
	margin-top: 3%;
}

.index_aoso_case_fb_fl{
	width: 32%;
}

.index_aoso_case_fb_fr{
	width: 65.5%;
}

.index_aoso_case_fb_fl_li{
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.index_aoso_case_fb_fr .index_aoso_case_fb_fl_li{
	width: 48%;
	margin-right: 4%;
}

.index_aoso_case_fb_fr .index_aoso_case_fb_fl_li:nth-child(2n){
	margin-right: 0;
}

.index_aoso_case_fb_fr .index_aoso_case_fb_fl_li:nth-child(n+3){
	margin-top: 4%;
}

.index_aoso_case_fb_fl_li .img{
	overflow: hidden;
	position: relative;
	z-index: 5;
}

.index_aoso_case_fb_fl_li .img img{
	width: 100%;
}

.index_aoso_case_fb_fl_li .wz{
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
	width: 100%;
	padding: 5%;
	padding-right: 20%;
}

.index_aoso_case_fb_fl_li .wz::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -100%;
	width: 100%;
	height: 100%;
	background: #b17954;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_aoso_case_fb_fl_li .wz::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 5%;
	width: 22px;
	height: 22px;
	opacity: 0;
	margin-top: 50px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background: url(../images/img/index_banner_btnl.png) no-repeat center;
	background-size: 100% 100%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_aoso_case_fb_fl_li .wz .wz_ft{
	font-size: 1.2rem;
	line-height: 1.5;
	color: #fff;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
	z-index: 10;
}

.index_aoso_case_fb_fl_li .wz .wz_fb{
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	font-weight: 300;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
	z-index: 10;
	margin-top: 3%;
}

.index_aoso_case_fb_fl_li:hover .wz::before{
	bottom: 0;
}

.index_aoso_case_fb_fl_li:hover .wz::after{
	margin-top: 0;
	opacity: 1;
}

/*案例展示*/
.index_aoso_case_con{
	opacity: 1;
	position: relative;
	z-index: 5;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_aoso_case_con.on{
	opacity: 0;
	z-index: -1;
}

.index_aoso_case_a1{
	position: absolute;
	left: 0;
	top: 50%;
	z-index: -1;
	width: 100%;
	padding: 4% 0;
	opacity: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_aoso_case_a1.on{
	opacity: 1;
	z-index: 10;
}

.index_aoso_case_a1_ft{
	font-size: 1.5rem;
	line-height: 1.5;
	color: #b17954;
	font-weight: 300;
}

.index_aoso_case_a1_fb{
	margin-top: 3%;
}

.index_aoso_case_a1_fb_ul{
	position: relative;
}

.index_aoso_case_a1_fb_li{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	width: 100%;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_aoso_case_a1_fb_li.on{
	position: relative;
	z-index: 10;
	opacity: 1;
}

.index_aoso_case_a1_fb_li .img_con{
	padding: 21.56862745098039% 0;
}

.index_aoso_case_a1_fb_li .wz{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url(../images/img/index_case_bj_logo.png) no-repeat center;
	background-size: cover;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	-o-justify-content: flex-end;
	justify-content: flex-end;
}


.index_aoso_case_a1_fb_li .wz .wz_con{
	width: 48%;
	padding: 5%;
}

.index_aoso_case_a1_fb_li .wz .wz_ft{
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
	font-weight: 300;
	max-height: 4.5em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.index_aoso_case_a1_fb_li .wz .wz_fb{
	overflow: hidden;
	margin-top: 14%;
}

.index_aoso_case_a1_fb_li .wz .wz_fb .wz_fb_fr,.index_aoso_case_a1_fb_li .wz .wz_fb .wz_fb_fl{
	font-size: 1.1rem;
	line-height: 1.5;
	font-weight: 300;
}

.index_aoso_case_a1_fb_li .wz .wz_fb .wz_fb_fl a{
	color: #fff;
	display: block;
	background: #000000;
	padding: 6px 20px;
	border-radius: 6px;
}

.index_aoso_case_a1_fb_li .wz .wz_fb .wz_fb_fr{
	color: #222;
	background: #fff;
	padding: 6px 20px;
	border-radius: 6px;
	margin-left: 5%;
	cursor: pointer;
}

@media(max-width:1366px){
	.index_aoso_case_ft_fr a span{
		font-size: 20px;
	}

	.index_aoso_case_fb_fl_li .wz .wz_ft{
		font-size: 20px;
	}

	.index_aoso_case_fb_fl_li .wz::after{
		width: 20px;
		height: 20px;
	}

	.index_aoso_case_a1_ft{
		font-size: 24px;
	}

	.index_aoso_case_a1_fb_li .wz .wz_ft{
		font-size: 18px;
	}

	.index_aoso_case_a1_fb_li .wz .wz_fb .wz_fb_fl a,.index_aoso_case_a1_fb_li .wz .wz_fb .wz_fb_fr{
		font-size: 19px;
	}
}

@media(max-width:1280px){
	.index_aoso_case_ft_fr a span{
		font-size: 18px;
	}

	.index_aoso_case_fb_fl_li .wz .wz_ft{
		font-size: 18px;
	}

	.index_aoso_case_fb_fl_li .wz .wz_fb{
		font-size: 15px;
	}

	.index_aoso_case_fb_fl_li .wz::after{
		width: 18px;
		height: 18px;
	}

	.index_aoso_case_a1_ft{
		font-size: 22px;
	}

	.index_aoso_case_a1_fb_li .wz .wz_ft{
		font-size: 17px;
	}

	.index_aoso_case_a1_fb_li .wz .wz_fb .wz_fb_fl a,.index_aoso_case_a1_fb_li .wz .wz_fb .wz_fb_fr{
		font-size: 18px;
	}
}

@media(max-width:1200px){
	.index_aoso_case_ft_fl{
		font-size: 26px;
	}

	.index_aoso_case_fb_fl_li .wz::after{
		width: 16px;
		height: 16px;
	}
}

@media(max-width:991px){
	.index_aoso_case_ft_fl{
		font-size: 24px;
	}

	.index_aoso_case_ft_fr a span{
		font-size: 17px;
	}

	.index_aoso_case_fb_fl{
		width: 48.5%;
	}

	.index_aoso_case_fb_fr{
		width: 48.5%;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}

	.index_aoso_case_fb_fr .index_aoso_case_fb_fl_li{
		width: 100%;
		margin-right: 0;
	}

	.index_aoso_case_fb_fr .index_aoso_case_fb_fl_li:nth-child(n+2){
		margin-top: 6%;
	}

	.index_aoso_case_fb_fr .index_aoso_case_fb_fl_li:nth-child(n+3){
		display: none;
	}

	.index_aoso_case_a1_fb_li .wz{
		width: 100%;
		position: static;
		background: #b17954;
	}

	.index_aoso_case_a1_fb_li .wz .wz_con{
		width: 100%;
		padding: 3%;
	}

	.index_aoso_case_a1_fb_li .wz .wz_fb{
		margin-top: 3%;
	}

	.index_aoso_case_a1_fb_li .wz .wz_fb .wz_fb_fr{
		margin-left: 15px;
	}
}

@media(max-width:768px){
	.index_aoso_case{
		padding: 30px 0;
	}

	.index_aoso_case_ft_fl{
		font-size: 22px;
	}

	.index_aoso_case_ft_fr a span{
		font-size: 16px;
	}

	.index_aoso_case_ft_fr a::before,.index_aoso_case_ft_fr a::after{
		width: 20px;
	}

	.index_aoso_case_fb{
		margin-top: 20px;
	}

	.index_aoso_case_a1{
		padding: 30px 0;
	}

	.index_aoso_case_a1_ft{
		font-size: 20px;
	}

	.index_aoso_case_a1_fb{
		margin-top: 15px;
	}

	.index_aoso_case_a1_fb_li .img_con{
		padding: 20% 0;
	}

	.index_aoso_case_a1_fb_li .wz .wz_fb .wz_fb_fl a,.index_aoso_case_a1_fb_li .wz .wz_fb .wz_fb_fr{
		font-size: 17px;
		padding: 4px 15px;
		border-radius: 3px;
	}

	.index_aoso_case_a1_fb_li .wz .wz_ft{
		font-size: 16px;
	}

	.index_aoso_case_a1_fb_li .wz .wz_fb{
		margin-top: 2.5%;
	}
}

@media(max-width:468px){
	.index_aoso_case{
		padding: 25px 0;
	}

	/*.index_aoso_case_ft_fl{*/
	/*	font-size: 20px;*/
	/*}*/

	.index_aoso_case_ft_fr a span{
		font-size: 15px;
	}

	.index_aoso_case_ft_fr a::before,.index_aoso_case_ft_fr a::after{
		width: 15px;
	}

	.index_aoso_case_fb{
		margin-top: 15px;
	}

	.index_aoso_case_fb_fl{
		width: 100%;
		display: none;
	}

	.index_aoso_case_fb_fr{
		width: 100%;
		margin-top: 0;
	}

	.index_aoso_case_fb_fr .index_aoso_case_fb_fl_li:nth-child(n+2){
		margin-top: 15px;
	}

	.index_aoso_case_fb_fr .index_aoso_case_fb_fl_li:nth-child(n+3){
		display: none;
	}

	.index_aoso_case_a1{
		padding: 25px 0;
	}

	.index_aoso_case_a1_ft{
		font-size: 18px;
	}

	.index_aoso_case_a1_fb_li .wz .wz_con{
		padding: 20px;
	}

	.index_aoso_case_a1_fb_li .wz .wz_ft{
		max-height: 7.5em;
		-webkit-line-clamp: 5;
	}

	.index_aoso_case_a1_fb_li .wz .wz_fb{
		margin-top: 15px;
	}

	.index_aoso_case_a1_fb_li .img_con{
		padding: 23% 0;
	}

	.index_aoso_case_a1_fb_li .wz .wz_fb .wz_fb_fl a, .index_aoso_case_a1_fb_li .wz .wz_fb .wz_fb_fr{
		font-size: 16px;
		padding: 6px 15px;
	}
}

/*我们的产品*/
.index_aoso_product{
	background: #f7f7f7;
	padding: 4% 0;
}

.index_aoso_product_ft{
	text-align: center;
}

.index_aoso_product_fc{
	margin: 3% 0;
}

.index_aoso_product_fc_ul{
	overflow: hidden;
}

.index_aoso_product_fc_li{
	width: 33.333333333333%;
	text-align: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.index_aoso_product_fc_li_wz{
	font-size: 1.3rem;
	line-height: 1.5;
	font-weight: 300;
	cursor: pointer;
	max-width: 100%;
}

.index_aoso_product_fc_li_wz a{
	display: block;
	color: #000;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_aoso_product_fc_li_wz.on a{
	color: #b17954;
}

.index_aoso_product_fb{
	border-radius: 15px;
	background: #fff;
	overflow: hidden;
	/*padding: 2.6145% 5.229%;*/
	padding: 3% 5.229%;
}

.index_aoso_product_fb_con{
	display: none;
	/*padding: 2.92% 5.84%;*/
	padding:  0 5.84%;
	position: relative;
}

.index_aoso_product_fb_nnn{
	overflow: hidden;
	padding: 1px;
}

.index_aoso_product_fb_li_con{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_aoso_product_fb_li_fl{
	width: 61%;
}

.index_aoso_product_fb_li_fl_ft{
	font-size: 1.5rem;
	line-height: 1.5;
	color: #000;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_aoso_product_fb_li_fl_fc{
	font-size: 16px;
	line-height: 1.7;
	color: #000;
	font-weight: 300;
	margin: 7% 0 7.5%;
	height: 6.8em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.index_aoso_product_fb_li_fl_fb a{
	font-size: 18px;
	line-height: 1.5;
	color: #b17954;
	font-weight: 300;
	display: block;
	padding: 6px;
	width: 13.5rem;
	text-align: center;
	border-radius: 30px;
	border: 1px solid #b17954;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_aoso_product_fb_li_fl_fb a:hover{
	background: #b17954;
	color: #fff;
}

.index_aoso_product_fb_li_fr{
	width: 34%;
}

.index_aoso_product_fb_li_fr img{
	width: 100%;
}

.index_aoso_product_fb_btnl,.index_aoso_product_fb_btnr{
	width: 5.84%;
	padding-top: 5.84%;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	z-index: 990;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30%;
	background-color: rgba(0,0,0,0.1);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_aoso_product_fb_btnl{
	left: -2.92%;
	background-image: url(../images/img/index_product_btnl.png);
}

.index_aoso_product_fb_btnr{
	right: -2.92%;
	background-image: url(../images/img/index_product_btnr.png);
}

.index_aoso_product_fb_btnl:hover{
	background-color: #b17954;
	background-image: url(../images/img/index_product_btnl_h.png);
}

.index_aoso_product_fb_btnr:hover{
	background-color: #b17954;
	background-image: url(../images/img/index_product_btnr_h.png);
}

.index_aoso_product_fb1{
	margin-top: 2.5%;
}

.index_aoso_product_fb1_li{
	display: none;
}

.index_aoso_product_fb1_li_con{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.index_aoso_product_fb1_li a{
	display: block;
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
	font-weight: 300;
	text-align: center;
	padding: 8px;
	width: 25rem;
	border-radius: 30px;
	border: 1px solid #b17954;
	background: #b17954;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_aoso_product_fb1_li a:hover{
	background: rgba(0,0,0,0);
	color: #b17954;
}

@media(max-width:1366px){
	.index_aoso_product_fc_li_wz{
		font-size: 22px;
	}

	.index_aoso_product_fb_li_fl_ft{
		font-size: 24px;
	}

	.index_aoso_product_fb1_li a{
		font-size: 18px;
	}
}

@media(max-width:1280px){
	.index_aoso_product_fc_li_wz{
		font-size: 20px;
	}

	.index_aoso_product_fb_li_fl_ft{
		font-size: 22px;
	}

	.index_aoso_product_fb_li_fl_fb a{
		font-size: 17px;
	}

	.index_aoso_product_fb1_li a{
		font-size: 17px;
	}
}

@media(max-width:991px){
	.index_aoso_product_fc_li_wz{
		font-size: 18px;
	}

	.index_aoso_product_fb_li_fl_fc{
		font-size: 15px;
		margin: 3% 0 3.5%;
	}

	.index_aoso_product_fb_li_fl{
		width: 58%;
	}

	.index_aoso_product_fb_li_fl_fb a{
		font-size: 16px;
	}

	.index_aoso_product_fb_li_fr{
		width: 38%;
	}

	.index_aoso_product_fb_btnl,.index_aoso_product_fb_btnr{
		width: 42px;
		padding-top: 42px;
	}

	.index_aoso_product_fb_btnl{
		left: -21px;
	}

	.index_aoso_product_fb_btnr{
		right: -21px;
	}
}

@media(max-width:768px){
	.index_aoso_product{
		padding: 30px 0;
	}

	.index_aoso_product_fb{
		padding: 20px;
		border-radius: 15px;
	}

	.index_aoso_product_fb_con{
		padding: 0;
		/*padding-bottom: 60px;*/
	}

	.index_aoso_product_fb_li_fl_ft{
		font-size: 20px;
	}

	.index_aoso_product_fc{
		margin-top: 20px;
	}

	.index_aoso_product_fc_li_wz{
		font-size: 17px;
	}

	.index_aoso_product_fb_li_con{
		-webkit-flex-direction: column-reverse;
		-moz-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		-o-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.index_aoso_product_fb_li_fl{
		width: 100%;
		margin-top: 15px;
	}

	.index_aoso_product_fb_li_fl_fc{
		margin: 10px 0 12px;
	}

	.index_aoso_product_fb_li_fl_fb a{
		width: 130px;
		padding: 5px;
	}

	.index_aoso_product_fb_li_fr{
		width: 100%;
		max-width: 260px;
	}

	.index_aoso_product_fb_btnl,.index_aoso_product_fb_btnr{
		top: auto;
		bottom: 0;
		display: none;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}

	.index_aoso_product_fb_btnr{
		right: 0;
	}

	.index_aoso_product_fb_btnl{
		left: 0;
	}

	.index_aoso_product_fb1{
		margin-top: 20px;
	}

	.index_aoso_product_fb1_li a{
		font-size: 16px;
		width: 150px;
		padding: 6px;
	}

}

@media(max-width:468px){
	.index_aoso_product{
		padding: 25px 0;
	}

	.index_aoso_product_fc{
		margin-top: 15px;
	}

	.index_aoso_product_fb_li_fl_ft{
		font-size: 18px;
	}

	.index_aoso_product_fb1{
		margin-top: 15px;
	}

	.index_aoso_product_fb{
		padding: 15px;
	}
}

/*关于我们*/
.index_aoso_about_con{
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_aoso_about_fl{
	width: 28%;
	min-height: 39rem;
	background: rgba(255,255,255,0.2);
}

.index_aoso_about_fl_ft{
	/*padding: 13% 0;*/
	padding: 11% 0;
	/*padding-left: calc(50vw - 770px);*/
	padding-right: 16.6%;
}

.index_aoso_about_fl_ft .index_aoso_case_ft_fl{
	color: #fff;
	text-align: right;
}

.index_aoso_about_fl_fb_li{
	width: 100%;
}

.index_aoso_about_fl_fb_li a{
	display: block;
	font-size: 1.2rem;
	line-height: 1.5;
	color: #fff;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: 300;
	text-align: right;
	/*padding: 10% 0;*/
	padding: 9% 0;
	/*padding-left: calc(50vw - 770px);*/
	padding-right: 20%;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_aoso_about_fl_fb_li.on a,.index_aoso_about_fl_fb_li:hover a{
	background: rgba(0,0,0,0.3);
}

.index_aoso_about_fr{
	width: 72%;
	padding: 3% 7.3%;
}

.index_aoso_about_fr_li{
	display: none;
}

.index_aoso_about_fr_li_ft{
	font-size: 1.9rem;
	line-height: 1.5;
	color: #fff;
	text-align: center;
}

.index_aoso_about_fr_li_fc{
	font-size: 18px;
	line-height: 1.7;
	color: #fff;
	font-weight: 300;
	max-height: 10.2em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	margin: 7% 0 7.5%;
	text-align: center;
}

.index_aoso_about_fr_li_fb .index_aoso_product_fb_li_fl_fb{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.index_aoso_about_fr_li_fb .index_aoso_product_fb_li_fl_fb a{
	border-color: #fff;
	background: #fff;
	line-height: 1.7;
	width: 19.5rem;
}

.index_aoso_about_fr_li_fb .index_aoso_product_fb_li_fl_fb a:hover{
	border-color: #b17954;
	background: #b17954;
}

@media(max-width:1366px){
	.index_aoso_about_fl_fb_li a{
		font-size: 20px;
	}
}

@media(max-width:1280px){
	.index_aoso_about_fl_fb_li a{
		font-size: 19px;
	}

	.index_aoso_about_fr_li_ft{
		font-size: 28px;
	}

	.index_aoso_about_fr_li_fc{
		font-size: 17px;
	}
}

@media(max-width:1200px){
	.index_aoso_about_fr_li_ft{
		font-size: 26px;
	}

}

@media(max-width:991px){
	.index_aoso_about_fr_li_ft{
		font-size: 24px;
	}

	.index_aoso_about_fl_fb_li a{
		font-size: 18px;
	}

	.index_aoso_about_fr_li_fc{
		font-size: 16px;
		margin: 3% 0 3.5%;
	}
}

@media(max-width:768px){
	.index_aoso_about_fl{
		width: 100%;
		min-height: auto;
	}

	.index_aoso_about_fl_ft{
		padding: 25px 0 20px;
	}

	.index_aoso_about_fl_ft .index_aoso_case_ft_fl{
		text-align: center;
	}

	.index_aoso_about_fl_fb_li{
		width: 50%;
	}

	.index_aoso_about_fl_fb_li:nth-child(n+5){
		display: none;
	}

	.index_aoso_about_fl_fb_li a{
		padding: 13px 10px;
		text-align: center;
		background: rgba(0,0,0,0.4);
	}

	.index_aoso_about_fl_fb_li.on a,.index_aoso_about_fl_fb_li:hover a{
		background: #b17954;
	}

	.index_aoso_about_fr{
		width: 100%;
		padding: 20px 15px 25px;
	}

	.index_aoso_about_fr_li_ft{
		font-size: 22px;
	}

	.index_aoso_about_fr_li_fc{
		margin: 15px 0;
	}

	.index_aoso_about_fr_li_fb .index_aoso_product_fb_li_fl_fb a{
		width: 160px;
	}
}

@media(max-width:468px){
	.index_aoso_about_fl_fb_li a{
		font-size: 17px;
	}
}

/*新闻动态*/
.index_aoso_news{
	padding: 4% 0;
}

.index_aoso_news_ft{
	text-align: center;
}

.index_aoso_news_fb{
	margin-top: 3%;
}

.index_aoso_news_fb_li{
	width: 31.5%;
	margin-right: 2.75%;
	background: #f7f7f7;
	padding: 3% 20px 4%;
	border-radius: 15px;
	box-shadow: 0 0 15px 5px rgba(0,0,0,0);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.index_aoso_news_fb_li:nth-child(3n){
	margin-right: 0;
}

.index_aoso_news_fb_li:nth-child(n+4){
	margin-top: 2%;
}

.index_aoso_news_fb_li_ft{
	font-size: 1.3rem;
	line-height: 1.5;
	color: #000;
	text-align: center;
}

.index_aoso_news_fb_li_fc{
	margin: 5% 0 4.5%;
}

.index_aoso_news_fb_li_fc_li{
	border-bottom: 1px solid rgba(0,0,0,0.1);
	position: relative;
}

.index_aoso_news_fb_li_fc_li::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #000;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.index_aoso_news_fb_li_fc_li:last-child{
	border-bottom: 1px solid rgba(0,0,0,0);
}

.index_aoso_news_fb_li_fc_li:last-child::before{
	display: none;
}

.index_aoso_news_fb_li_fc_li a{
	padding: 6% 0;
	display: block;
}

.index_aoso_news_fb_li_fc_li_ft{
	font-size: 16px;
	line-height: 1.5;
	color: rgba(0,0,0,0.6);
	font-weight: 300;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.index_aoso_news_fb_li_fc_li_fc{
	font-size: 18px;
	line-height: 1.5;
	color: #000;
	font-weight: 300;
	margin: 8px 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.index_aoso_news_fb_li_fc_li_fb{
	font-size: 16px;
	line-height: 1.5;
	color: rgba(0,0,0,0.6);
	font-weight: 300;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.index_aoso_news_fb_li:hover{
	box-shadow: 0 0 15px 5px rgba(0,0,0,0.3);
}

.index_aoso_news_fb_li_fc_li:hover::before{
	width: 100%;
}

.index_aoso_news_fb_li_fc_li:hover .index_aoso_news_fb_li_fc_li_ft{
	color: #b17954;
}

.index_aoso_news_fb_li_fc_li:hover .index_aoso_news_fb_li_fc_li_fc{
	color: #b17954;
}

.index_aoso_news_fb_li_fc_li:hover .index_aoso_news_fb_li_fc_li_fb{
	color: #b17954;
}


.index_aoso_news_fb_li_fb .index_aoso_product_fb_li_fl_fb a{
	width: 100%;
	background: #b17954;
	color: #fff;
}

.index_aoso_news_fb_li_fb .index_aoso_product_fb_li_fl_fb a:hover{
	background: #fff;
	color: #b17954;
}

@media(max-width:1366px){
	.index_aoso_news_fb_li_ft{
		font-size: 22px;
	}
}

@media(max-width:1280px){
	/*.index_aoso_news_fb_li_ft{*/
	/*	font-size: 20px;*/
	/*}*/

	.index_aoso_news_fb_li_fc_li_fc{
		font-size: 17px;
	}
}

@media(max-width:991px){
	.index_aoso_news_fb_li{
		width: 32%;
		margin-right: 2%;
	}

	.index_aoso_news_fb_li_ft{
		/*font-size: 18px;*/
		font-size: 20px;
	}

	.index_aoso_news_fb_li_fc_li_ft{
		font-size: 15px;
	}

	.index_aoso_news_fb_li_fc_li_fc{
		font-size: 16px;
	}

	.index_aoso_news_fb_li_fc_li_fb{
		font-size: 15px;
	}
}

@media(max-width:768px){
	.index_aoso_news{
		padding: 30px 0;
	}

	.index_aoso_news_fb{
		margin-top: 20px;
	}

	.index_aoso_news_fb_li{
		width: 100%;
		margin-right: 0;
		padding: 20px;
	}

	.index_aoso_news_fb_li:nth-child(n+2){
		margin-top: 20px;
	}

	.index_aoso_news_fb_li_ft{
		/*font-size: 17px;*/
		font-size: 18px;
	}

	.index_aoso_news_fb_li_fc{
		margin: 10px 0;
	}

	.index_aoso_news_fb_li_fc_li a{
		padding: 15px 0;
	}
}

@media(max-width:468px){
	.index_aoso_news{
		padding: 25px 0;
	}

	.index_aoso_news_fb{
		margin-top: 15px;
	}

	.index_aoso_news_fb_li{
		padding: 15px;
	}

	.index_aoso_news_fb_li_fc_li a{
		padding: 10px 0;
	}
}

/*footer*/
.pc_footer{
	background: #000;
}

.pc_footer_ft_con{
	padding: 3.5% 0;
}

.pc_footer_ft_fl{
	width: 15%;
}

.pc_footer_ft_fl_fb{
	margin-top: 10%;
}

.pc_footer_ft_fl_ft img{
	max-width: 100%;
}

.pc_footer_ft_fl_fb_li{
	width: 80%;
}

.pc_footer_ft_fl_fb_li .wz{
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
	font-weight: 300;
	margin-bottom: 9%;
}

.pc_footer_ft_fl_fb_li .img{
	max-width: 130px;
}

.pc_footer_ft_fl_fb_li .img img{
	width: 100%;
}

.pc_footer_ft_fr{
	width: 76%;
}

.pc_footer_ft_fr_li{
	max-width: 16.6666666666666%;
}

.pc_footer_ft_fr_li_ft a{
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
	font-weight: 300;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pc_footer_ft_fr_li_ft a:hover{
	color: #b17954;
}

.pc_footer_ft_fr_li_fb{
	margin-top: 1.5rem;
}

.pc_footer_ft_fr_li_fb_li:nth-child(n+2){
	margin-top: 1rem;
}

.pc_footer_ft_fr_li_fb_li a{
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	font-weight: 300;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pc_footer_ft_fr_li_fb_li a:hover{
	color: #b17954;
}

.pc_footer_fb_con{
	padding: 2.8%  0;
	border-top: 1px solid rgba(255,255,255,0.3);
	font-size: 15px;
	line-height: 1.5;
	color: #fff;
	font-weight: 300;
	text-align: center;
}

.pc_footer_fb_con p:nth-child(n+2){
	margin-top: 0.7%;
}

.pc_footer_fb_con a{
	color: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pc_footer_fb_con a:hover{
	color: #b17954;
}

@media(max-width:1366px){
	.pc_footer_ft_fl_fb_li .wz,.pc_footer_ft_fr_li_ft a{
		font-size: 18px;
	}
}

@media(max-width:1280px){
	.pc_footer_ft_fl_fb_li .wz,.pc_footer_ft_fr_li_ft a{
		font-size: 17px;
	}
}

@media(max-width:991px){
	.pc_footer_ft_con{
		-webkit-justify-content: center;
		-moz-justify-content: center;
		-ms-justify-content: center;
		-o-justify-content: center;
		justify-content: center;
	}

	.pc_footer_ft_fl{
		width: 100%;
		max-width: 130px;
	}

	.pc_footer_ft_fl_fb_li{
		width: 100%;
	}

	.pc_footer_ft_fl_fb_li .wz{
		text-align: center;
	}

	.pc_footer_ft_fl_fb_li .img{
		margin: 0 auto;
	}

	.pc_footer_ft_fr{
		display: none;
	}

	.pc_footer_ft_fr_li_fb_li a{
		font-size: 15px;
	}
}

@media(max-width:768px){
	.pc_footer_ft_con{
		padding: 30px 0;
	}

	.pc_footer_ft_fl_fb_li .wz,.pc_footer_ft_fr_li_ft a{
		font-size: 16px;
	}

	.pc_footer_ft_fl_fb{
		margin-top: 10px;
	}

	.pc_footer_ft_fl_fb_li .wz{
		margin-bottom: 10px;
	}

	.pc_footer_ft_fr_li_fb{
		margin-top: 15px;
	}

	.pc_footer_ft_fr_li_fb_li:nth-child(n+2){
		margin-top: 10px;
	}

	.pc_footer_fb_con{
		padding: 25px 0;
	}
}

@media(max-width:468px){
	.pc_footer_ft_con{
		padding: 25px 0;
	}

	.pc_footer_fb_con{
		padding: 20px 0;
	}
}

/*公司简介*/
.ny_about_1_fb {
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.ny_about_1_fb_fl {
	width: 48%;
	overflow: hidden;
	border-radius: 10px;
}

.ny_about_1_fb_fl .img {
	overflow: hidden;
	cursor: pointer;
}

.ny_about_1_fb_fl img {
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ny_about_1_fb_fl .img:hover img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}

.ny_about_1_fb_fr {
	width: 48%;
}

.ny_about_1_fb_fr_ft {
	position: relative;
}

.ny_about_1_fb_fr_ft h3 {
	font-size: 1.8rem;
	line-height: 1.2;
	color: #000;
	position: absolute;
	left: 0;
	top: 50%;
	padding-bottom: 2%;
	border-bottom: 2px solid #b17954;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.ny_about_1_fb_fr_ft h4 {
	font-size: 6.5rem;
	line-height: .8;
	font-family: 'Arial';
	font-weight: bold;
	color: transparent;
	text-align: left;
	text-indent: 1.5rem;
	-webkit-text-stroke: 1px rgba(0, 0, 0, 0.25);
}

.ny_about_1_fb_fr_fc {
	font-size: 17px;
	line-height: 1.7;
	color: #555;
	margin-top: 3%;
	font-weight: 300;
}

.ny_about_1_fb_fr_fc p:nth-child(n+2){
	margin-top: 3%;
}

.ny_about_2 {
	padding: 4% 0;
	background: #f7f8fa;
	margin-top: 4%;
}

.ny_about_2_ft h3 {
	font-size: 1.8rem;
	line-height: 1.5;
	color: #333;
}

.ny_about_2_ft h4 {
	font-size: 1.2rem;
	line-height: 1.5;
	color: #666;
	font-weight: 300;
	margin-top: 1%;
}

.ny_about_2_fb {
	margin-top: 3%;
}

.ny_about_2_fb ul {
	overflow: hidden;
}

.ny_about_2_fb li {
	width: 23.5%;
	margin-right: 2%;
	float: left;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
}

.ny_about_2_fb li:nth-child(4n) {
	margin-right: 0;
}

.ny_about_2_fb li:nth-child(n+5) {
	margin-top: 2%;
}

.ny_about_2_fb li .img {
	overflow: hidden;
}

.ny_about_2_fb li .img img {
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ny_about_2_fb li:hover .img img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}

@media(max-width:1366px){
	.ny_about_1_fb_fr_ft h4{
		font-size: 5.5rem;
	}

	.ny_about_1_fb_fr_fc{
		font-size: 16px;
		line-height: 1.6;
		margin-top: 2%;
	}

	.ny_about_1_fb_fr_fc p:nth-child(n+2){
		margin-top: 2%;
	}
}

@media(max-width:1200px){
	.ny_about_1_fb_fr_ft h3{
		font-size: 26px;
	}

	.ny_about_2_ft h3{
		font-size: 26px;
	}

	.ny_about_2_ft h4{
		font-size: 18px;
	}
}

@media(max-width:991px) {
	.ny_about_1 {
		margin-top: 4%;
	}

	.ny_about_1_fb_fr {
		width: 100%;
	}

	.ny_about_1_fb_fr_ft h3 {
		font-size: 24px;
		padding-bottom: 6px;
	}

	.ny_about_1_fb_fr_ft h4 {
		font-size: 65px;
		text-align: left;
		text-indent: .5em;
	}

	.ny_about_1_fb_fr_fc {
		margin-top: 10px;
		line-height: 1.7;
	}

	.ny_about_1_fb_fr_fc p:nth-child(n+2){
		margin-top: 6px;
	}

	.ny_about_1_fb_fl {
		width: 100%;
		margin-top: 13px;
	}

	.ny_about_2_ft h3 {
		font-size: 24px;
	}

	.ny_about_2_fb li {
		width: 49%;
	}

	.ny_about_2_fb li:nth-child(2n) {
		margin-right: 0;
	}

	.ny_about_2_fb li:nth-child(n+3) {
		margin-top: 2%;
	}

	.ny_about_2_ft h4{
		font-size: 17px;
		margin-top: 6px;
	}
}

@media(max-width:768px) {
	.ny_about_1 {
		margin-top: 30px;
	}

	.ny_about_1_fb_fr_ft h3{
		font-size: 22px;
	}

	.ny_about_2 {
		margin-top: 30px;
		padding: 30px 0;
	}

	.ny_about_2_ft h3 {
		font-size: 22px;
	}

	.ny_about_2_ft h4 {
		font-size: 16px;
	}

	.ny_about_1_fb_fr_fc{
		line-height: 1.6;
	}

	.ny_about_2_fb{
		margin-top: 15px;
	}
}

@media(max-width:468px) {
	.ny_about_1{
		margin-top: 25px;
	}

	.ny_about_1_fb_fr_ft h4 {
		font-size: 7rem;
		text-indent: 10px;
	}

	.ny_about_2{
		margin-top: 25px;
		padding: 25px 0;
	}
}

/*品牌历史*/
.dsj {
	position: relative;
}

.dsj .max1420 {
	position: relative;
	z-index: 100;
	max-width: 95%;
	width: 100%;
}

.dsj .dsj_ft {
	text-align: center;
}

.dsj .dsj_ft h3 {
	font-size: 36px;
	font-weight: bold;
	line-height: 1;
	color: #333333;
	position: relative;
}

.dsj .dsj_ft h3::before {
	content: '';
	display: block;
	width: 5px;
	height: 16px;
	background: #fd0101;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -100px;
	transform: translateX(-50%);
}

.dsj .dsj_ft h3::after {
	content: '';
	display: block;
	width: 5px;
	height: 16px;
	background: #0808fc;
	position: absolute;
	top: 16px;
	left: 50%;
	margin-left: -100px;
	transform: translateX(-50%);
}

.dsj .dsj_ft h4 {
	font-size: 14px;
	font-weight: normal;
	color: #666666;
	margin-top: 17px;
}

.dsj .dsj_fc {
	padding: 0 50px;
	position: relative;
	margin-top: 2.929%;
}

.dsj .dsj_fcw {
	overflow: hidden;
}

.dsj .dsj_fc li a {
	display: block;
	text-align: center;
	background-color: #e1e1e1;
	line-height: 2;
	font-size: 16px;
	color: #333333;
}

.dsj .dsj_fc .dsj_fcbtnl {
	width: 27px;
	height: 32px;
	position: absolute;
	top: 0;
	left: 0;
}

.dsj .dsj_fc .dsj_fcbtnr {
	width: 27px;
	height: 32px;
	position: absolute;
	top: 0;
	right: 0;
}

.dsj .dsj_fc .swiper-button-disabled {
	opacity: 0.5;
}

.dsj .dsj_fc li.on a {
	background-color: #dc9e2e;
	color: #fff;
}

.dsj .dsj_fc li.cur a {
	background-color: #ff0000;
	color: #fff;
}

.dsj .dsj_fb {
	overflow: hidden;
	position: relative;
	margin-top: 5.715%;
}

.dsj .dsj_fb .dsj_fcbtnl2 {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
}

.dsj .dsj_fb .dsj_fcbtnr2 {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
}

.dsj .dsj_fb .dsj_fbw {
	overflow: hidden;
}

.dsj .dsj_fb .dsj_fbw .dsj_fbn1 li {
	width: 14.285% !important;
	float: left;
	height: 100%;
}

.dsj .dsj_fb .dsj_fbw li h3 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	color: #000;
}

.dsj .dsj_fb .dsj_fbw li h4 {
	font-size: 15px;
	font-weight: normal;
	line-height: 26px;
	color: #666666;
	margin-top: 15px;
}

.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1) h3 {
	line-height: 1;
}

.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1) h4 {
	line-height: 1;
}

.dsj .dsj_fb .bhjtc {
	position: relative;
}

.dsj .dsj_fb .bhjtc::before {
	content: '';
	width: 100%;
	height: 4px;
	background: #b17954;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-size: 100% auto;
}

.dsj .dsj_fb .dsj_fbw .btls li {
	height: 150px;
	max-height: 150px;
	width: 300px !important;
	position: relative;
	float: left;
	margin-left: -100px;
	margin-top: 150px;
}

.dsj .dsj_fb .dsj_fbw .btls li .wznr {
	position: absolute;
	width: 100%;
}

.dsj .dsj_fb .dsj_fbw .btls li:nth-child(2n) .wznr {
	bottom: 35px;
}

.dsj .dsj_fb .dsj_fbw .btls li::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background-color: #b17954;
	border: solid 2px #b17954;
	border-radius: 50%;
	position: absolute;
	top: -7px;
	left: 10% !important;
	transform: translateX(-50%);
}

.dsj .dsj_fb .dsj_fbw .btls li h3 {
	margin-top: 35px;
}

.dsj .dsj_fb .dsj_fbw .btls li h4 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.dsj .dsj_fb .dsj_fbw .btls li:after {
	content: '';
	display: block;
	width: 2px;
	height: 20px;
	background-color: #b17954;
	position: absolute;
	left: 10%;
	transform: translateX(-50%);
	bottom: calc(100% - 24px);
}

.dsj .dsj_fb .dsj_fbw .btls li:nth-child(2n):after {
	bottom: 6px;
	left: 10%;
	transform: translateX(-50%);
}

.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1):after {
	display: none;
}

.dsj .dsj_fb .dsj_fbw .btls li:nth-child(2n) {
	margin-top: 0;
}

.dsj .dsj_fb .dsj_fbw .btls li:nth-child(2n) h3 {
	margin-top: 0;
}

.dsj .dsj_fb .dsj_fbw .btls li:nth-child(2n)::before {
	top: calc(100% - 6px);
	left: 10px;
}

.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1) {
	margin-top: 150px;
	margin-left: 0;
}

.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1)::before {
	content: '';
	display: block;
	width: 22px;
	height: 28px;
	position: absolute;
	border: 0;
	top: -67px;
	left: -10px;
	display: none;
}

.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1):after {
	content: '';
	display: block;
	width: 2px;
	height: 20px;
	background-color: #b17954;
	position: absolute;
	left: 10%;
	transform: translateX(-50%);
	bottom: calc(100% - 24px);
}

.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1) h3 {
	margin-top: 35px;
	position: relative;
}

.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1) h3::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #b17954;
	border: solid 2px #b17954;
	position: absolute;
	top: -41px;
	left: -7px;
	z-index: 9;
	left: 10% !important;
	transform: translateX(-50%);
}

.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1) h3::after {
	content: '';
	display: block;
	width: 120px;
	height: 2px;
	margin-top: 7px;
	display: none;
}

.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1) h4::before {
	display: block;
	width: 2px;
	height: 120px;
	background-color: #dc9e2e;
	position: absolute;
	top: -30px;
	left: 0;
	z-index: 8;
}

.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1) h4 {
	line-height: 26px;
}

@media(max-width: 768px) {
	.dsj .dsj_fb {
		padding: 0;
		margin-top: 20px;
	}

	.dsj .dsj_fb .dsj_fcbtnl2 {
		top: calc(100% - 30px);
	}

	.dsj .dsj_fb .dsj_fcbtnr2 {
		top: calc(100% - 30px);
	}

	.dsj .dsj_fb .dsj_fbw .btls li {
		height: 130px;
	}

	.dsj .dsj_fb .dsj_fbw .btls li h3 {
		margin-top: 25px;
	}

	.dsj .dsj_fb .dsj_fbw li h3 {
		font-size: 18px;
	}

	.dsj .dsj_fb .dsj_fbw li h4 {
		font-size: 14px;
		margin-top: 10px;
	}

	.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1) h3 {
		font-size: 18px;
		margin-top: 25px;
	}

	.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1) h4 {
		font-size: 14px;
	}

	.dsj .dsj_fb .dsj_fbw .btls li:nth-child(2n) .wznr {
		bottom: 15px;
	}

	.dsj .dsj_fb .dsj_fbw .btls li:nth-child(2n):after {
		bottom: -6px;
	}

	.dsj .dsj_fb .dsj_fbw .btls li:after {
		bottom: calc(100% - 14px);
	}

	.dsj .dsj_fb .dsj_fbw .btls li::before {
		top: -16px;
	}

	.dsj .dsj_fb .dsj_fbw .btls li:nth-child(2n)::before {
		top: calc(100% - -4px);
	}

	.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1) h3::before {
		top: -41px;
	}

	.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1):after {
		bottom: calc(100% - 14px);
	}
}

@media(max-width: 468px) {
	.dsj .dsj_ft h3 {
		font-size: 26px;
	}

	.dsj .dsj_ft h3::before {
		height: 12px;
		margin-left: -75px;
	}

	.dsj .dsj_ft h3::after {
		height: 12px;
		top: 12px;
		margin-left: -75px;
	}

	.dsj .dsj_fc {
		padding: 0 35px;
		margin-top: 15px;
	}

	.dsj .dsj_fb {
		margin-top: 20px;
	}

	.dsj .dsj_fb .dsj_fbw .btls li {
		width: 100% !important;
		margin-left: 0 !important;
	}

	.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1) {
		top: calc(100% - 15px);
		margin-left: 0 !important;
	}

	.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1) h3::before {
		left: 15px !important;
	}

	.dsj .dsj_fb .dsj_fbw .btls li:nth-child(1):after {
		left: 15px !important;
	}
}

.dashijiantishi{
	font-size: 16px;
	line-height: 2;
	color: #b17954;
	text-align: center;
	margin-top: 15px;
}

/*企业文化*/
.page_philosophy {
	padding-bottom: 4%;
}

.page_philosophy_li {
	background: #f7f7f7;
}

.page_philosophy_li:nth-child(2n) {
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-o-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.page_philosophy_li_fl,
.page_philosophy_li_fr {
	width: 50%;
}

.page_philosophy_li_fl img {
	width: 100%;
}

.page_philosophy_li_fl .img_con {
	padding: 25% 0;
}

.page_philosophy_li_fr {
	padding: 3%;
}

.page_philosophy_li_fr h3 {
	font-size: 1.4rem;
	line-height: 1.2;
	color: #333;
	position: relative;
	padding-bottom: 1.2rem;
}

.page_philosophy_li_fr h3::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 2px;
	background: #b17954;
}

.page_philosophy_li_fr h4 {
	font-size: 17px;
	line-height: 1.8;
	color: #666;
	margin-top: 3%;
	font-weight: 300;
}

@media(max-width:1366px) {
	.page_philosophy_li_fr h4 {
		font-size: 17px;
	}
}

@media(max-width:1280px) {
	.page_philosophy_li_fr h3 {
		font-size: 22px;
		padding-bottom: 15px;
	}

	.page_philosophy_li_fr h4 {
		margin-top: 12px;
	}
}

@media(max-width:991px) {
	.page_philosophy {
		padding: 4% 0;
	}

	.page_philosophy_li_fr h3 {
		font-size: 20px;
		padding-bottom: 13px;
	}

	.page_philosophy_li_fr h4 {
		font-size: 16px;
		line-height: 1.6;
	}

	.page_philosophy_li_fr h3::before{
		width: 50px;
	}
}

@media(max-width:768px) {
	.page_philosophy {
		padding: 30px 0;
	}

	.page_philosophy_li:nth-child(n+2) {
		margin-top: 15px;
	}

	.page_philosophy_li_fl {
		width: 100%;
	}

	.page_philosophy_li_fl .img_con {
		min-height: auto !important;
	}

	.page_philosophy_li_fr {
		width: 100%;
		padding: 20px;
	}

	.page_philosophy_li_fr h3 {
		font-size: 18px;
	}

	.page_philosophy_li_fr h3::before {
		width: 40px;
	}
}

@media(max-width:468px) {
	.page_philosophy {
		padding: 25px 0;
	}

	.page_philosophy_li_fr h3 {
		font-size: 18px;
		padding-bottom: 10px;
	}

	.page_philosophy_li_fr {
		padding: 15px;
	}
}

/*合作客户*/
.ny_page_hezuokehu ul {
	overflow: hidden;
}

.ny_page_hezuokehu li {
	width: 23.5%;
	margin-right: 2%;
	float: left;
	text-align: center;
	cursor: pointer;
}

.ny_page_hezuokehu li:nth-child(4n) {
	margin-right: 0;
}

.ny_page_hezuokehu li:nth-child(n+5) {
	margin-top: 10px;
}

.ny_page_hezuokehu li .img {
	overflow: hidden;
	border: 1px solid #ddd;
}

.ny_page_hezuokehu li .img img {
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ny_page_hezuokehu li .wz {
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-top: 10px;
}

.ny_page_hezuokehu li:hover .img {
	border-color: #b17954;
}

.ny_page_hezuokehu li:hover .img img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
}

.ny_page_hezuokehu li:hover .wz {
	color: #b17954;
}

@media(max-width:768px) {
	.ny_page_hezuokehu li {
		width: 49%;
	}

	.ny_page_hezuokehu li:nth-child(2n) {
		margin-right: 0;
	}

	.ny_page_hezuokehu li:nth-child(n+3) {
		margin-top: 10px;
	}
}

/*合作加盟*/
.page_join_advantage_1_ft h3{
	font-size: 1.8rem;
	line-height: 1.5;
	color: #333;
}

.page_join_advantage_1_ft h4{
	font-size: 18px;
	line-height: 1.5;
	color: #646464;
	font-weight: 300;
	margin-top: 5px;
}

.page_join_advantage_1_fb{
	margin-top: 2.5%;
	overflow: hidden;
	position: relative;
}

.page_join_advantage_1_fb_fl{
	width: 66%;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
}

.page_join_advantage_1_fb_fl_li .img img{
	width: 100%;
}

.page_join_advantage_1_fb_fr{
	width: 50%;
	padding-right: calc(50vw - 753px);
	overflow: hidden;
}

.page_join_advantage_1_fb_fr_ft_li{
	font-size: 19px;
	line-height: 1.5;
	color: #333;
	font-weight: 300;
	position: relative;
	padding-left: 20px;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.page_join_advantage_1_fb_fr_ft_li:nth-child(n+2){
	margin-top: 1.3rem;
}

.page_join_advantage_1_fb_fr_ft_li::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 2px;
	height: 18px;
	background: rgba(0,0,0,0.1);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.page_join_advantage_1_fb_fr_ft_li.on{
	color: #b17954;
}

.page_join_advantage_1_fb_fr_ft_li.on::before{
	background: #b17954;
}

.page_join_advantage_1_fb_fr_fb{
	width: 100%;
	overflow: hidden;
	margin-top: 10%;
	position: relative;
	z-index: 20;
}

.page_join_advantage_1_fb_fr_fb_li{
	padding: 14% 12% 18%;
	height: auto;
	background-color: #222;
	background-image: linear-gradient(135deg, #646464 0%, #222 100%);
}

.page_join_advantage_1_fb_fr_fb_li_ft{
	font-size: 1.8rem;
	line-height: 1.3;
	color: #fff;
}

.page_join_advantage_1_fb_fr_fb_li_fb{
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	font-weight: 300;
	margin-top: 5%;
}

.page_join_advantage_1_fb_fr_fb_navigation{
	position: absolute;
	width: 100%;
	left: 0;
	font-size: 0;
	bottom: 10%!important;
	z-index: 9999;
	text-align: center;
}

.page_join_advantage_1_fb_fr_fb_navigation span{
	width: 13px;
	height: 13px;
	background: none;
	opacity: 1;
	border: 2px solid rgba(255,255,255,.6);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.page_join_advantage_1_fb_fr_fb_navigation span.swiper-pagination-bullet-active{
	background: #fff;
	border-color: #fff;
}

.page_terminal_support_1{
	position: relative;
	margin-top: 4%;
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	-o-align-items: flex-end;
	align-items: flex-end;
}

.page_terminal_support_1::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	width: 44%;
	height: 100%;
	background-color: #222;
	background-image: linear-gradient(135deg, #222 0%, #646464 100%);
}

.page_terminal_support_1_fl{
	padding: 6% 0;
	padding-left: calc(50vw - 753px);
	position: relative;
	z-index: 10;
	width: 34%;
}

.page_terminal_support_1_fl_ft h3{
	color: #fff;
}

.page_terminal_support_1_fl_ft h4{
	color: #fff;
}

.page_terminal_support_1_fl_fb{
	margin-top: 30%;
}

.page_terminal_support_1_fl_fb_li{
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	font-weight: 300;
}

.page_terminal_support_1_fl_fb_li:nth-child(n+2){
	margin-top: 5%;
}

.page_terminal_support_1_fr{
	width: 64%;
	position: relative;
	z-index: 10;
	overflow: hidden;
}

.page_terminal_support_1_fr_li .img img{
	width: 100%;
}

.page_terminal_support_1_fr_navigation{
	position: absolute;
	width: 100%;
	left: 0;
	font-size: 0;
	bottom: 5%!important;
	z-index: 9999;
	text-align: center;
}

.page_terminal_support_1_fr_navigation span{
	width: 13px;
	height: 13px;
	background: none;
	opacity: 1;
	border: 2px solid rgba(255,255,255,.6);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.page_terminal_support_1_fr_navigation span.swiper-pagination-bullet-active{
	background: #fff;
	border-color: #fff;
}

.page_franchise_process{
	padding: 4% 0;
}

.page_franchise_process_ft{
	text-align: center;
}

.page_franchise_process_fb{
	margin-top: 4%;
}

.page_franchise_process_fb_ul{
	overflow: hidden;
}

.page_franchise_process_fb_li{
	width: 25%;
	text-align: center;
}

.page_franchise_process_fb_li:nth-child(n+5){
	margin-top: 4%;
}

.page_franchise_process_fb_li .img{
	position: relative;
	height: 3rem;
	line-height: 3rem;
}

.page_franchise_process_fb_li .img::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 2%;
	width: 18px;
	height: 7px;
	background-image: url(../images/img/index_product_btn1.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 18px;
}

.page_franchise_process_fb_li:nth-child(4n) .img::before{
	display: none;
}

.page_franchise_process_fb_li .img img{
	max-width: 3rem;
	max-height: 3rem;
}

.page_franchise_process_fb_li .wz{
	margin-top: 15px;
}

.page_franchise_process_fb_li .wz_ft{
	font-size: 1.2rem;
	line-height: 1.5;
	color: #333;
	text-align: center;
}

.page_franchise_process_fb_li .wz_fc{
	font-size: 16px;
	line-height: 1.5;
	color: #646464;
	text-align: center;
	margin-top: 5px;
	font-weight: 300;
}

.page_apply_to_join{
	padding: 4% 0;
	background: #f0f2f5;
}

.page_apply_to_join_ft{
	text-align: center;
}

.page_apply_to_join_fb{
	margin-top: 3%;
}

.page_apply_to_join_fb ul{
	overflow: hidden;
}

.page_apply_to_join_fb_li{
	width: 32%;
	margin-right: 2%;
	float: left;
	overflow: hidden;
	background: #fff;
	padding: 0 5px;
}

.page_apply_to_join_fb_li:nth-child(3n){
	margin-right: 0;
}

.page_apply_to_join_fb_li h3 {
	font-size: 15px;
	line-height: 55px;
	color: #646464;
	font-weight: 300;
	float: left;
	width: 65px;
	text-align: center;
}

.page_apply_to_join_fb_li h3 span{
	color: red;
	margin-right: 2px;
}

.page_apply_to_join_fb_li .page_apply_to_join_fb_li_liuyanshurukuang {
	width: 100%;
	float: left;
	padding-left: 65px;
	margin-left: -65px;
}

.page_apply_to_join_fb_li .page_apply_to_join_fb_li_liuyanshurukuang input {
	width: 100%;
	height: 55px;
	padding: 0;
	font-size: 15px;
	line-height: 55px;
	font-weight: 300;
	color: #646464;
	background-color: #fff;
	background-image: none;
	border: 0;
	border-radius: 0;
	outline: none;
}

.page_apply_to_join_fb_li .page_apply_to_join_fb_li_liuyanshurukuang input::-webkit-autofill {
	-webkit-text-fill-color: #646464 !important;
	transition: background-color 5000s ease-in-out 0s;
}

.page_apply_to_join_fb_li .page_apply_to_join_fb_li_liuyanshurukuang input::placeholder {
	color: #646464;
}

.page_apply_to_join_fb_li_liuyan{
	width: 100%;
	float: left;
	overflow: hidden;
	background: #fff;
	padding: 10px;
	margin-top: 2%;
}

.page_apply_to_join_fb_li_liuyan h3 {
	font-size: 15px;
	line-height: 50px;
	color: #646464;
	font-weight: 300;
	float: left;
	width: 65px;
	text-align: center;
}

.page_apply_to_join_fb_li_liuyan h3 span{
	color: red;
	margin-right: 2px;
}

.page_apply_to_join_fb_li_liuyan .page_apply_to_join_fb_li_liuyan_liuyanshurukuang {
	width: 100%;
	float: left;
	padding-left: 65px;
	margin-left: -65px;
}

.page_apply_to_join_fb_li_liuyan .page_apply_to_join_fb_li_liuyan_liuyanshurukuang textarea {
	width: 100%;
	padding: 0;
	font-family: Microsoft YaHei, arial, 宋体, sans-serif;
	font-size: 15px;
	line-height: 50px;
	font-weight: 300;
	color: #646464;
	background-color: #fff;
	background-image: none;
	border: 0;
	border-radius: 0;
	outline: none;
	resize: none;
}

.page_apply_to_join_fb_li_liuyan .page_apply_to_join_fb_li_liuyan_liuyanshurukuang textarea::-webkit-autofill {
	-webkit-text-fill-color: #646464 !important;
	transition: background-color 5000s ease-in-out 0s;
}

.page_apply_to_join_fb_li_liuyan .page_apply_to_join_fb_li_liuyan_liuyanshurukuang textarea::placeholder {
	color: #646464;
}

.page_apply_to_join_fb_li_tijiao{
	float: left;
	overflow: hidden;
	margin-top: 2%;
	width: 100%;
}

.page_apply_to_join_fb_li_tijiao input{
	width: 200px;
	height: 55px;
	padding: 0;
	font-size: 16px;
	line-height: 55px;
	font-weight: 300;
	color: #fff;
	background-image: linear-gradient(90deg, #222 0%, #646464 100%);
	background-color: #222;
	border: 0;
	border-radius: 0;
	outline: none;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.page_apply_to_join_fb_li_tijiao input:hover{
	background: #085aa6;
}

.page_apply_to_join_fb_li_location{
	overflow: hidden;
}

.page_apply_to_join_fb_li_location_li{
	width: 50%;
	float: left;
}

.page_apply_to_join_fb_li_location .page_apply_to_join_fb_li_liuyanshurukuang select{
	width: 100%;
	height: 55px;
	padding: 0;
	font-size: 15px;
	line-height: 55px;
	font-weight: 300;
	color: #646464;
	background-color: #fff;
	background-image: none;
	border: 0;
	border-radius: 0;
	outline: none;
	display: block!important;
}

@media(max-width:1630px){
	.page_join_advantage_1_fb_fr{
		padding-right: 50px;
	}

	.page_terminal_support_1_fl{
		padding-left: 50px;
	}
}

@media(max-width:1366px){
	.page_terminal_support_1_fl_fb{
		margin-top: 15%;
	}
}

@media(max-width:1280px){
	.page_join_advantage_1_fb_fr{
		padding-right: 30px;
	}

	.page_join_advantage_1_fb_fr_ft_li{
		font-size: 18px;
	}

	.page_join_advantage_1_fb_fr_fb{
		margin-top: 6%;
	}

	.page_terminal_support_1_fl{
		padding-left: 30px;
	}

	.page_franchise_process_fb_li .wz_ft{
		font-size: 20px;
	}
}

@media(max-width:1200px){
	.page_join_advantage_1_ft h3{
		font-size: 26px;
	}

	.page_join_advantage_1_ft h4{
		font-size: 17px;
	}

	.page_join_advantage_1_fb_fr_fb_li{
		padding: 8% 8% 10%;
	}

	.page_join_advantage_1_fb_fr_fb_li_ft{
		font-size: 24px;
	}

	.page_join_advantage_1_fb_fr_fb_li_fb{
		font-size: 17px;
	}

	.page_terminal_support_1_fl_fb_li{
		font-size: 17px;
	}
}

@media(max-width:991px){
	.page_join_advantage_1{
		padding-top: 4%;
	}
	
	.page_join_advantage_1_ft h3{
		font-size: 24px;
	}

	.page_join_advantage_1_fb{
		margin-top: 3%;
	}

	.page_join_advantage_1_fb_fl{
		width: 100%;
		position: static;
	}

	.page_join_advantage_1_fb_fr{
		padding-right: 0;
		width:100%;
	}

	.page_join_advantage_1_fb_fr_ft{
		display: none;
	}

	.page_join_advantage_1_fb_fr_fb{
		margin-top: 0;
	}

	.page_join_advantage_1_fb_fr_fb_li{
		padding: 5% 5% 7%;
	}

	.page_join_advantage_1_fb_fr_fb_li_ft{
		font-size: 22px;
	}

	.page_join_advantage_1_fb_fr_fb_li_fb{
		margin-top: 3%;
		font-size: 16px;
	}

	.page_terminal_support_1::before{
		width: 100%;
	}

	.page_terminal_support_1_fl{
		width: 100%;
		padding: 4% 20px;
	}

	.page_terminal_support_1_fl_fb{
		margin-top: 3%;
	}

	.page_terminal_support_1_fl_fb_li:nth-child(n+2){
		margin-top: 2%;
	}

	.page_terminal_support_1_fr{
		width: 100%;
	}

	.page_franchise_process_fb_li .img{
		height: 4rem;
		line-height: 4rem;
	}

	.page_franchise_process_fb_li .img img{
		max-width: 4rem;
		max-height: 4rem;
	}

	.page_franchise_process_fb_li .wz_ft{
		font-size: 18px;
	}

	.page_apply_to_join_fb_li{
		width: 49%;
	}

	.page_apply_to_join_fb_li:nth-child(2n){
		margin-right: 0;
	}
	
	.page_apply_to_join_fb_li_location{
		width: 100%;
		margin-top: 2%;
	}
}

@media(max-width:768px){
	.page_join_advantage_1{
		padding-top: 30px;
	}

	.page_join_advantage_1_ft h3{
		font-size: 22px;
	}

	.page_join_advantage_1_ft h4{
		font-size: 16px;
	}

	.page_join_advantage_1_fb{
		margin-top: 20px;
	}

	.page_join_advantage_1_fb_fr_fb_li{
		padding: 20px 20px 40px;
	}

	.page_join_advantage_1_fb_fr_fb_li_ft{
		font-size: 20px;
	}

	.page_join_advantage_1_fb_fr_fb_li_fb{
		margin-top: 10px;
		font-size: 16px;
	}

	.page_join_advantage_1_fb_fr_fb_navigation{
		bottom: 15px!important;
	}

	.page_terminal_support_1{
		margin-top: 30px;
	}

	.page_terminal_support_1_fl{
		padding: 30px 15px;
	}

	.page_terminal_support_1_fl_fb{
		margin-top: 20px;
	}

	.page_terminal_support_1_fl_fb_li{
		font-size: 16px;
	}

	.page_terminal_support_1_fl_fb_li:nth-child(n+2){
		margin-top: 12px;
	}

	.page_terminal_support_1_fr_navigation{
		bottom: 15px!important;
	}

	.page_franchise_process{
		padding: 30px 0;
	}

	.page_franchise_process_fb{
		margin-top: 20px;
	}

	.page_franchise_process_fb_li{
		width:50%;
		padding: 0 5px;
	}

	.page_franchise_process_fb_li:nth-child(n+3){
		margin-top: 15px;
	}

	.page_franchise_process_fb_li:nth-child(2n) .img::before{
		display: none;
	}

	.page_franchise_process_fb_li .img{
		height: 40px;
		line-height: 40px;
	}

	.page_franchise_process_fb_li .img img{
		max-width: 40px;
		max-height: 40px;
	}

	.page_apply_to_join{
		padding: 30px 0;
	}

	.page_apply_to_join_fb{
		margin-top: 20px;
	}

	.page_apply_to_join_fb_li_location,.page_apply_to_join_fb_li_liuyan,.page_apply_to_join_fb_li_tijiao{
		margin-top: 15px;
	}
}

@media(max-width:468px){
	.page_join_advantage_1{
		padding-top: 25px;
	}

	.page_join_advantage_1_fb{
		margin-top: 15px;
	}

	.page_join_advantage_1_fb_fr_fb_li{
		padding: 20px 15px 40px;
	}

	.page_join_advantage_1_fb_fr_fb_navigation span{
		width: 10px;
		height: 10px;
	}

	.page_terminal_support_1{
		margin-top: 25px;
	}

	.page_terminal_support_1_fl{
		padding: 25px 15px;
	}

	.page_terminal_support_1_fl_fb{
		margin-top: 15px;
	}

	.page_terminal_support_1_fl_fb_li:nth-child(n+2){
		margin-top: 10px;
	}

	.page_terminal_support_1_fr_navigation span{
		width: 10px;
		height: 10px;
	}

	.page_franchise_process{
		padding: 25px 0;
	}

	.page_franchise_process_fb{
		margin-top: 15px;
	}

	.page_apply_to_join{
		padding: 25px 0;
	}

	.page_apply_to_join_fb{
		margin-top: 15px;
	}

	.page_apply_to_join_fb_li{
		width: 100%;
		margin-right: 0;
	}

	.page_apply_to_join_fb_li:nth-child(n+2){
		margin-top: 15px;
	}
	
	.page_apply_to_join_fb_li .page_apply_to_join_fb_li_liuyanshurukuang input,.page_apply_to_join_fb_li h3,.page_apply_to_join_fb_li_location .page_apply_to_join_fb_li_liuyanshurukuang select{
		line-height: 45px;
		height: 45px;
	}

	.page_apply_to_join_fb_li_liuyan .page_apply_to_join_fb_li_liuyan_liuyanshurukuang textarea,.page_apply_to_join_fb_li_liuyan h3{
		line-height: 45px;
	}

	.page_apply_to_join_fb_li_tijiao input{
		width: 160px;
		line-height: 45px;
		height: 45px;
	}
}