/*初始化样式*/
* {
	-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: #045ba8;
}

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;
}

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

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

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

	.page_con_zhuti {
		padding: 0 30px;
	}
}

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

	.page_con_zhuti {
		padding: 0 20px;
	}

	body {
		padding-top: 61px;
	}
}

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

	.page_con_zhuti {
		padding: 0 15px;
	}
}

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

::-webkit-scrollbar-track {
	background: #9f9f9f;
	-webkit-border-radius: 0;
}

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

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

/*头部*/
#pc_header {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 999;
	background: #fff;
	box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
	-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: 80px;
	line-height: 80px;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_logo {
	width: 16%;
	max-width: 180px;
}

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

.pc_nav {
	width: 78%;
}

.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;
	padding-right: 40px;
	margin-right: -40px;
}

.pc_nav>ul>.pc_nav_li_www {
	width: 12.5%;
	float: left;
	height: 80px;
	position: relative;
	text-align: center;
	font-size: 0;
	line-height: 1;
	-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{
	max-width: 100%;
}

.pc_nav>ul>.pc_nav_li_www>li>a {
	font-size: 17px;
	line-height: 80px;
	color: #666;
	padding: 0 5px;
	max-width: 100%;
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
}

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

.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_w {
	position: absolute;
	z-index: 999;
	width: 160px;
	left: 50%;
	top: 90px;
	background: #fff;
	padding: 6px 0;
	border-radius: 5px;
	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 .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s 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,
.pc_nav>ul>.pc_nav_li_www>li.active>a {
	color: #085aa6;
}

.pc_nav_erji_w:after {
	content: '';
	width: 0;
	height: 0;
	line-height: 0;
	font-size: 0;
	overflow: hidden;
	border-width: 10px;
	cursor: pointer;
	border-style: dashed dashed solid dashed;
	border-color: transparent transparent #fff transparent;
	border-top: none;
	position: absolute;
	top: -10px;
	left: 50%;
	margin-left: -10px;
	z-index: 99;
}

.pc_nav_erji_li a {
	font-size: 15px;
	line-height: 1.8;
	padding: 5px;
	color: #333;
	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 {
	background: #085aa6;
	color: #fff;
}

.pc_nav>ul>.pc_nav_li_www>li:after {
	content: '';
	position: absolute;
	z-index: 100;
	width: 100%;
	left: 0;
	height: 10px;
	opacity: 0;
	top: 100%;
}

.pc_sousuo {
	position: relative;
	z-index: 5;
	width: 30px;
	height: 80px;
	z-index: 999;
}

.pc_sousuo1 {
	width: 30px;
	height: 30px;
	background: url(../images/top_sousuo_hui.png) no-repeat center;
	background-size: 30px;
	cursor: pointer;
	margin-top: 25px;
}

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

.pc_sousuo2 input {
	outline: none;
	line-height: 45px;
	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/nav_sousuo.png) no-repeat center;
	background-size: 20px;
	cursor: pointer;
}

.pc_sousuo2 .pc_sousuo_con_shuru {
	padding-left: 13px;
	line-height: 45px;
	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_nav_dianhua {
	width: 180px;
	text-align: center;
	background: #085aa6;
	border-radius: 25px;
	font-size: 0;
	padding: 5px 0;
	line-height: 0;
}

.pc_nav_dianhua i {
	display: inline-block;
	vertical-align: middle;
	width: 16px;
	height: 26px;
	background: #085aa6 url(../images/img/top_dianhua.png) no-repeat center;
	background-size: 15px;
	margin-right: 5px;
}

.pc_nav_dianhua span {
	display: inline-block;
	vertical-align: middle;
	font-size: 17px;
	line-height: 26px;
	color: #fff;
}

/*首页banner*/
.index_banner {
	position: relative;
	overflow: hidden;
	margin-top: 80px;
}

.index_banner img {
	width: 100%;
}

.index_banner_yuandian {
	font-size: 0;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 6% !important;
	z-index: 99;
}

.index_banner_yuandian span {
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
	opacity: 1;
	margin: 0 5px !important;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_banner_yuandian span.swiper-pagination-bullet-active {
	background: #fff;
	width: 35px;
	border-radius: 25px;
}

@media(max-width:991px){
	.index_banner {
		margin-top: 0;
	}
}

@media(max-width:768px){
	.index_banner_yuandian {
		bottom: 10px !important;
	}

	.index_banner_yuandian span {
		width: 8px;
		height: 8px;
		margin: 0 3px !important;
	}

	.index_banner_yuandian span.swiper-pagination-bullet-active {
		width: 25px;
	}
}

@media(max-width:468px){
	.index_banner_yuandian span {
		width: 6px;
		height: 6px;
	}

	.index_banner_yuandian span.swiper-pagination-bullet-active {
		width: 20px;
	}
}

/*横留言*/
.index_message_hengtu {
	overflow: hidden;
	position: relative;
	padding: 25px 0;
}

.index_message_hengtu::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
}

.index_message_hengtu_con {
	overflow: hidden;
	position: relative;
	z-index: 10;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_message_hengtu_fl {
	font-size: 1.6rem;
	line-height: 1.5;
	color: #fff;
}

.index_message_hengtu_fl span {
	color: #f18005;
}

.index_message_hengtu_fc {
	width: 45%;
}

.index_message_hengtu_fc ul {
	overflow: hidden;
}

.index_message_hengtu_fc li {
	width: 34.5%;
	float: left;
	overflow: hidden;
	background: #fff;
	margin-right: 3%;
	padding: 0 10px;
}

.index_message_hengtu_fc li h3 {
	font-size: 15px;
	line-height: 45px;
	color: #666;
	float: left;
	width: 45px;
	text-align: center;
}

.index_message_hengtu_fc li .index_message_hengtu_fc_input {
	width: 100%;
	float: left;
	padding-left: 45px;
	margin-left: -45px;
}

.index_message_hengtu_fc li .index_message_hengtu_fc_input input {
	width: 100%;
	height: 45px;
	padding: 0;
	padding-left: 5px;
	font-size: 15px;
	line-height: 45px;
	color: #666;
	background-color: #fff;
	background-image: none;
	border: 0;
	border-radius: 0;
	outline: none;
}

.index_message_hengtu_fc li .index_message_hengtu_fc_input input::-webkit-autofill {
	-webkit-text-fill-color: #666 !important;
	transition: background-color 5000s ease-in-out 0s;
}

.index_message_hengtu_fc li .index_message_hengtu_fc_input input::placeholder {
	color: #666;
}

.index_message_hengtu_fc_submit {
	float: left;
	width: 25%;
	background: #f18005;
	font-size: 16px;
	line-height: 45px;
	color: #fff;
	border: 0;
	display: block;
}

.index_message_hengtu_fr {
	text-align: left;
}

.index_message_hengtu_fr h3 {
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	text-align: right;
	font-weight: 300;
}

.index_message_hengtu_fr h3 span {
	color: #f18005;
}

.index_message_hengtu_fr h4 {
	font-size: 1.6rem;
	line-height: 1.5;
	color: #f18005;
	padding-left: 2rem;
	background: url(../images/img/index_message_dianhua.png) no-repeat left center;
	background-size: 1.7rem;
	margin-top: 5px;
}

@media(max-width:991px) {
	.index_message_hengtu {
		display: none;
	}

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

	.index_message_hengtu {
		padding: 25px 0;
	}

	.index_message_hengtu_fl {
		width: 100%;
		font-size: 24px;
		text-align: center;
	}

	.index_message_hengtu_fc {
		width: 100%;
		margin: 20px 0;
	}

	.index_message_hengtu_fr {
		max-width: 100%;
	}

	.index_message_hengtu_fr h3 {
		font-size: 20px;
		text-align: center;
	}

	.index_message_hengtu_fr h4 {
		font-size: 26px;
	}
}

/*优势*/
.index_fanyuchugui_youshi {
	padding: 35px 0;
	background: #efefef;
}

.index_fanyuchugui_youshi li {
	width: 23.875%;
	float: left;
	margin-right: 1.5%;
	overflow: hidden;
	position: relative;
	top: 0;
	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;
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	-o-align-items: flex-start;
	align-items: flex-start;
}

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

.index_fanyuchugui_youshi li .img {
	width: 25%;
	max-width: 74px;
	border: 1px solid #c6c6c6;
	border-radius: 5px;
	overflow: hidden;
}

.index_fanyuchugui_youshi li .img img {
	width: 100%;
}

.index_fanyuchugui_youshi li .wz {
	width: 71%;
}

.index_fanyuchugui_youshi li .wz h3 {
	font-size: 1.3rem;
	line-height: 1;
	color: #333;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.index_fanyuchugui_youshi li .wz h4 {
	font-size: 16px;
	line-height: 1.3;
	margin-top: 2.5%;
	color: #646464;
	font-weight: 300;
}

.index_fanyuchugui_youshi li:hover {
	top: -5px;
}

.index_fanyuchugui_youshi li:hover .wz h3 {
	color: #f18005;
}

@media(max-width:1366px) {
	.index_fanyuchugui_youshi li .wz h4 {
		font-size: 15px;
	}
}

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

	.index_fanyuchugui_youshi li {
		width: 49%;
		margin-right: 2%;
	}

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

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

	.index_fanyuchugui_youshi li .wz h3 {
		font-size: 20px;
	}
}

@media(max-width:768px) {
	.index_fanyuchugui_youshi li {
		width: 100%;
		margin-right: 0 !important;
		-webkit-align-items: center;
		-moz-align-items: center;
		-ms-align-items: center;
		-o-align-items: center;
		align-items: center;
	}

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

	.index_fanyuchugui_youshi li .img {
		width: 65px;
		line-height: 65px;
	}

	.index_fanyuchugui_youshi li .wz {
		width: 100%;
		padding-left: 80px;
		margin-left: -80px;
	}

	.index_fanyuchugui_youshi li .wz h4 {
		margin-top: 5px;
	}
}

/*案例*/
.index_fanyuchugui_case {
	padding: 4% 0;
}

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

.index_fanyuchugui_case_ft_fl {
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	-o-align-items: flex-end;
	align-items: flex-end;
}

.index_fanyuchugui_case_ft_fl h3 {
	font-size: 2rem;
	line-height: 1.3;
	color: #333;
}

.index_fanyuchugui_case_ft_fl h3 span {
	color: #045ba8;
}

.index_fanyuchugui_case_ft_fl h4 {
	font-size: 18px;
	line-height: 1.5;
	color: #646464;
	margin-left: 10px;
	font-weight: 300;
}

/*上下标题(开始)*/
.index_fanyuchugui_general_title .index_fanyuchugui_case_ft_fl{
	width: 100%;
}

.index_fanyuchugui_general_title .index_fanyuchugui_case_ft_fl h3{
	text-align: center;
	width: 100%;
}

.index_fanyuchugui_general_title .index_fanyuchugui_case_ft_fl h4{
	text-align: center;
	width: 100%;
	margin-top: 5px;
}

.index_fanyuchugui_general_title .index_fanyuchugui_case_ft_fr{
	width: 100%;
	margin-top: 2.5%;
}

.index_fanyuchugui_general_title .index_fanyuchugui_case_ft_fr ul{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}
/*上下标题(结束)*/

.index_fanyuchugui_case_ft_fr li {
	width: 128px;
	float: left;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right: 1rem;
}

.index_fanyuchugui_case_ft_fr li:last-child {
	margin-right: 0;
}

.index_fanyuchugui_case_ft_fr li a {
	display: block;
	font-size: 16px;
	line-height: 38px;
	color: #fff;
	background: #333;
	text-align: center;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_fanyuchugui_case_ft_fr li a:after {
	content: '';
	width: 0;
	height: 0;
	line-height: 0;
	font-size: 0;
	overflow: hidden;
	border-width: 8px;
	cursor: pointer;
	border-style: dashed dashed solid dashed;
	border-color: transparent transparent #333 transparent;
	border-top: none;
	position: absolute;
	bottom: -8px;
	left: 50%;
	margin-left: -8px;
	z-index: 99;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.index_fanyuchugui_case_ft_fr li.on a {
	background: #045ba8;
}

.index_fanyuchugui_case_ft_fr li.on a:after {
	border-color: transparent transparent #045ba8 transparent;
}

.index_fanyuchugui_case_fb {
	margin-top: 3%;
}

.index_fanyuchugui_case_fb li {
	width: 32%;
	margin-right: 2%;
	position: relative;
}

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

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

.index_fanyuchugui_case_fb li .img img {
	width: 100%;
}

.index_fanyuchugui_case_fb li .wz1 {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 15;
	width: 100%;
	height: 100%;
	padding: 5%;
	text-align: center;
	background: rgba(0, 0, 0, .6);
	opacity: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_fanyuchugui_case_fb li .wz1 .wz1_nnn {
	position: relative;
	width: 100%;
	height: 100%;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_fanyuchugui_case_fb li .wz1 .wz1_nnn .wz1_nnn_n1 {
	width: 100%;
}

.index_fanyuchugui_case_fb li .wz1 .wz1_nnn .xiantiao1::before,
.index_fanyuchugui_case_fb li .wz1 .wz1_nnn .xiantiao1::after {
	content: '';
	width: 0;
	height: 1px;
	background: rgba(255, 255, 255, .5);
	position: absolute;
	left: 0;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.index_fanyuchugui_case_fb li .wz1 .wz1_nnn .xiantiao1::before {
	top: 0;
}

.index_fanyuchugui_case_fb li .wz1 .wz1_nnn .xiantiao1::after {
	bottom: 0;
}

.index_fanyuchugui_case_fb li .wz1 .wz1_nnn .xiantiao2::before,
.index_fanyuchugui_case_fb li .wz1 .wz1_nnn .xiantiao2::after {
	content: '';
	width: 1px;
	height: 0;
	background: rgba(255, 255, 255, .5);
	position: absolute;
	top: 0;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.index_fanyuchugui_case_fb li .wz1 .wz1_nnn .xiantiao2::before {
	left: 0;
}

.index_fanyuchugui_case_fb li .wz1 .wz1_nnn .xiantiao2::after {
	right: 0;
}

.index_fanyuchugui_case_fb li .wz1 h3 {
	font-size: 18px;
	line-height: 2;
	color: #fff;
	padding: 0 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_fanyuchugui_case_fb li .wz1 h4 {
	font-size: 16px;
	line-height: 2;
	color: #fff;
	padding: 0 10px;
}

.index_fanyuchugui_case_fb li:hover .wz {
	opacity: 0;
}

.index_fanyuchugui_case_fb li:hover .wz1 {
	opacity: 1;
}

.index_fanyuchugui_case_fb li:hover .wz1 .wz1_nnn .xiantiao1::before,
.index_fanyuchugui_case_fb li:hover .wz1 .wz1_nnn .xiantiao1::after {
	width: 100%;
}

.index_fanyuchugui_case_fb li:hover .wz1 .wz1_nnn .xiantiao2::before,
.index_fanyuchugui_case_fb li:hover .wz1 .wz1_nnn .xiantiao2::after {
	height: 100%;
}

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

@media(max-width:991px) {
	.index_fanyuchugui_case_ft_fl {
		width: 100%;
		text-align: center;
	}

	.index_fanyuchugui_case_ft_fl h3 {
		width: 100%;
		font-size: 26px;
	}

	.index_fanyuchugui_case_ft_fl h4 {
		width: 100%;
		margin-left: 0;
		margin-top: 10px;
	}

	.index_fanyuchugui_case_ft_fr {
		width: 100%;
		margin-top: 3%;
	}

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

	.index_fanyuchugui_case_ft_fr li {
		margin: 5px 5px !important;
	}

	.index_fanyuchugui_case_fb {
		margin-top: 3%;
	}

	.index_fanyuchugui_case_fb li {
		width: 49%;
	}

	.index_fanyuchugui_case_fb li:nth-child(3n) {
		margin-right: 2%;
	}

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

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

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

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

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

	.index_fanyuchugui_case_ft_fr {
		margin-top: 10px;
	}

	.index_fanyuchugui_case_fb {
		margin-top: 15px;
	}

	.index_fanyuchugui_case_ft_fr li {
		width: 100px;
	}

	.index_fanyuchugui_case_ft_fr li a {
		font-size: 15px;
	}

	/*上下标题(开始)*/
	.index_fanyuchugui_general_title .index_fanyuchugui_case_ft_fr{
		margin-top: 12px;
	}
	/*上下标题(结束)*/
}

@media(max-width:468px) {
	.index_fanyuchugui_case_fb li {
		width: 100%;
		margin-right: 0 !important;
	}

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

	.index_fanyuchugui_case_fb li .wz1 h3 {
		font-size: 17px;
	}

	.index_fanyuchugui_case_fb li .wz {
		opacity: 0;
	}

	.index_fanyuchugui_case_fb li .wz1 {
		opacity: 1;
	}

	.index_fanyuchugui_case_fb li .wz1 .wz1_nnn .xiantiao1::before,
	.index_fanyuchugui_case_fb li .wz1 .wz1_nnn .xiantiao1::after {
		width: 100%;
	}

	.index_fanyuchugui_case_fb li .wz1 .wz1_nnn .xiantiao2::before,
	.index_fanyuchugui_case_fb li .wz1 .wz1_nnn .xiantiao2::after {
		height: 100%;
	}
}

/*设计师*/
.index_fanyuchugui_shejishi {
	position: relative;
	overflow: hidden;
}

.index_fanyuchugui_shejishi::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
	z-index: 5;
}

.index_fanyuchugui_shejishi_con {
	position: relative;
	z-index: 10;
}

.index_fanyuchugui_shejishi_ft_fl {
	width: 35%;
	padding: 4% 0 3% calc(50vw - 753px);
}

.index_fanyuchugui_shejishi_ft_fl_ft h3{
	font-size: 2rem;
	line-height: 1.3;
	color: #fff;
	position: relative;
}

.index_fanyuchugui_shejishi_ft_fl_ft h3 span{
	color: #f18005;
}

.index_fanyuchugui_shejishi_ft_fl_ft h4{
	font-size: 19px;
	line-height: 1.5;
	color: #fff;
	margin-top: 10px;
	font-weight: 300;
}

.index_fanyuchugui_shejishi_ft_fl_fc{
	margin: 8% 0 10%;
}

.index_fanyuchugui_shejishi_ft_fl_fc li{
	position: relative;
	padding-right: 15px;
	margin-right: 15px;
}

.index_fanyuchugui_shejishi_ft_fl_fc li::before{
	content: '';
	width: 2px;
	height: 17px;
	background: #fff;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_fanyuchugui_shejishi_ft_fl_fc li:last-child{
	padding-right: 0;
	margin-right: 0;
}

.index_fanyuchugui_shejishi_ft_fl_fc li:last-child::before{
	display: none;
}

.index_fanyuchugui_shejishi_ft_fl_fc li a{
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	display: block;
	font-weight: 300;
}

.index_fanyuchugui_shejishi_ft_fl_fc li.on a{
	color: #f18005;
}

.index_fanyuchugui_shejishi_ft_fl_fb {
	position: relative;
}

.index_fanyuchugui_shejishi_ft_fl_fb li{
	width: 31%;
	margin-right: 3.5%;
	font-size: 0;
	cursor: pointer;
}

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

.index_fanyuchugui_shejishi_ft_fl_fb li:nth-child(n+4){
	margin-top: 3.5%;
}

.index_fanyuchugui_shejishi_ft_fl_fb li h3 {
	font-size: 1.5rem;
	color: #fff;
	line-height: 1.5;
	font-weight: 300;
}

.index_fanyuchugui_shejishi_ft_fl_fb li h4 {
	font-size: 18px;
	color: #fff;
	line-height: 1.5;
	margin: 3% 0 5%;
}

.index_fanyuchugui_shejishi_ft_fl_fb li h5 {
	font-size: 18px;
	color: #fff;
	line-height: 2;
	margin: 0;
	font-weight: 300;
	margin-top: 3%;
}

.index_fanyuchugui_shejishi_ft_fl_fb li .img{
	position: relative;
	border: 2px solid rgba(241,128,5,0);
}

.index_fanyuchugui_shejishi_ft_fl_fb li.on .img{
	border: 2px solid #f18005;
}

.index_fanyuchugui_shejishi_ft_fl_fb li .img img{
	width: 100%;
	display: block;
}

.index_fanyuchugui_shejishi_ft_fr {
	width: 63%;
	padding-right: calc(50vw - 757px);
	overflow: hidden;
	position: relative;
}

.index_fanyuchugui_shejishi_ft_fr_nn {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	/*-webkit-transform: translateX(30px);*/
	/*-moz-transform: translateX(30px);*/
	/*-ms-transform: translateX(30px);*/
	/*-o-transform: translateX(30px);*/
	/*transform: translateX(30px);*/
	opacity: 0;
}
.index_fanyuchugui_shejishi_ft_fr_nn a{
	display: block;
}
.index_fanyuchugui_shejishi_ft_fr_nn.on {
	position: relative;
	/*-webkit-transform: translateX(0);*/
	/*-moz-transform: translateX(0);*/
	/*-ms-transform: translateX(0);*/
	/*-o-transform: translateX(0);*/
	/*transform: translateX(0);*/
	opacity: 1;
	z-index: 10;
}

.index_fanyuchugui_shejishi_ft_fr .img{
	font-size: 0;
}

.index_fanyuchugui_shejishi_ft_fr .img img {
	width: 100%;
	display: block;
}

.index_fanyuchugui_shejishi_ft_fr .wz{
	font-size: 1.3rem;
	line-height: 1.5;
	color: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 2% 4%;
	padding-right: 170px;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	opacity: 0;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.index_fanyuchugui_shejishi_ft_fr_nn li.swiper-slide-active .wz{
	opacity: 1;
}

.index_fanyuchugui_shejishi_ft_fr_nn_bntr,
.index_fanyuchugui_shejishi_ft_fr_nn_bntl {
	width: 85px;
	height: 55px;
	background: #f18005 url(../images/img/index_sheji_btnl.png) no-repeat center;
	background-size: 10px;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 15;
	cursor: pointer;
	opacity: .8;
}

.index_fanyuchugui_shejishi_ft_fr_nn_bntl {
	margin-right: 85px;
}

.index_fanyuchugui_shejishi_ft_fr_nn_bntr {
	background: #045ba8 url(../images/img/index_sheji_btnr.png) no-repeat center;
	background-size: 10px;
}

.index_fanyuchugui_shejishi_ft_fr_nn_bntr:hover,
.index_fanyuchugui_shejishi_ft_fr_nn_bntl:hover {
	opacity: .9;
}

.index_fanyuchugui_shejishi_fb {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	padding: 20px 0;
	position: relative;
}

.index_fanyuchugui_shejishi_fb_fl {
	padding-left: calc(50vw - 757px);
	width: 50%;
	padding-right: 5%;
}

.index_fanyuchugui_shejishi_fb::before,
.index_fanyuchugui_shejishi_fb::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
	background: rgba(0, 0, 0, .7);
}

.index_fanyuchugui_shejishi_fb_fr::before {
	left: auto;
	right: 0;
	background: rgba(0, 0, 0, .01);
}

.index_fanyuchugui_shejishi_fb_fl_ww {
	padding: 0 55px;
	position: relative;
}

.index_fanyuchugui_shejishi_fb_fl_nn {
	overflow: hidden;
	z-index: 10;
}

.index_fanyuchugui_shejishi_fb_fl li.active .img {
	border-color: #045ba8;
}

.index_fanyuchugui_shejishi_fb_fl li .img {
	border: 3px solid #fff;
	border-radius: 50%;
	overflow: hidden;
}

.index_fanyuchugui_shejishi_fb_fl li .img img {
	width: 100%;
}

.index_fanyuchugui_shejishi_fb_fr {
	width: 50%;
	padding-right: calc(50vw - 757px);
	position: relative;
}

.index_fanyuchugui_shejishi_fb_fl_nn_btnl,
.index_fanyuchugui_shejishi_fb_fl_nn_btnr {
	position: absolute;
	width: 36px;
	height: 36px;
	background: #fff url(../images/img/index_jiantou_btnr.png) no-repeat center;
	background-size: 10px;
	border-radius: 50%;
	cursor: pointer;
	left: 0;
	top: 50%;
	-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;
}

.index_fanyuchugui_shejishi_fb_fl_nn_btnr {
	background: #fff url(../images/img/index_jiantou_btnl.png) no-repeat center;
	background-size: 10px;
	left: auto;
	right: 0;
}

.index_fanyuchugui_shejishi_fb_fl_nn_btnl:hover {
	background: #045ba8 url(../images/img/index_sheji_btnl_bai.png) no-repeat center;
	background-size: 10px;
}

.index_fanyuchugui_shejishi_fb_fl_nn_btnr:hover {
	background: #045ba8 url(../images/img/index_sheji_btnr_bai.png) no-repeat center;
	background-size: 10px;
}

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

	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	-o-align-items: flex-end;
	align-items: flex-end;
}

.index_fanyuchugui_shejishi_fb_fr_fl h3 {
	font-size: 1.4rem;
	line-height: 1.5;
	color: #fff;
}

.index_fanyuchugui_shejishi_fb_fr_fl h3 span {
	color: #045ba8;
}

.index_fanyuchugui_shejishi_fb_fr_fl h4 {
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
}

.index_fanyuchugui_shejishi_fb_fr_fr {
	margin-left: 2rem;
}

.index_fanyuchugui_shejishi_fb_fr_fr a {
	width: 130px;
	background: #045ba8;
	font-size: 16px;
	line-height: 40px;
	color: #fff;
	display: block;
	text-align: center;
	border-radius: 30px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.index_fanyuchugui_shejishi_fb_fr_fr a:hover{
	background: #fff;
	color: #045ba8;
}
@media(max-width:1600px) {
	.index_fanyuchugui_shejishi_ft_fl {
		padding-left: 50px;
	}

	.index_fanyuchugui_shejishi_ft_fr {
		padding-right: 50px;
	}

	.index_fanyuchugui_shejishi_fb_fl {
		padding-left: 50px;
	}

	.index_fanyuchugui_shejishi_fb_fr {
		padding-right: 50px;
	}
}

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

	.index_fanyuchugui_shejishi_ft_fr {
		padding-right: 30px;
	}

	.index_fanyuchugui_shejishi_fb_fl {
		padding-left: 30px;
	}

	.index_fanyuchugui_shejishi_fb_fr {
		padding-right: 30px;
	}

	.index_fanyuchugui_shejishi_ft_fr .wz{
		font-size: 22px;
	}
}

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

	.index_fanyuchugui_shejishi_ft_fl_fb li h3 {
		font-size: 22px;
	}

	.index_fanyuchugui_shejishi_ft_fl_fb li h4 {
		margin: 10px 0 15px;
	}

	.index_fanyuchugui_shejishi_ft_fl_fb li h5 {
		margin-top: 10px;
	}

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

	.index_fanyuchugui_shejishi_ft_fr_nn_bntr,
	.index_fanyuchugui_shejishi_ft_fr_nn_bntl {
		width: 60px;
		height: 45px;
		background-size: 8px;
	}

	.index_fanyuchugui_shejishi_ft_fr_nn_bntl {
		margin-right: 60px;
	}

	.index_fanyuchugui_shejishi_fb_fr_fr a {
		width: 120px;
	}

	.index_fanyuchugui_shejishi_ft_fr .wz{
		padding-right: 120px;
	}
}

@media(max-width:991px) {
	.index_fanyuchugui_shejishi_ft_fl {
		padding-left: 20px;
		padding-right: 20px;
		width: 100%;
		padding-top: 4%;
		padding-bottom: 0;
	}

	.index_fanyuchugui_shejishi_ft_fl_fc{
		margin: 3% 0;
	}

	.index_fanyuchugui_shejishi_ft_fr {
		padding: 0;
		margin: 0 20px;
		width: 100%;
		margin-top: 3%!important;
	}

	.index_fanyuchugui_shejishi_fb_fl {
		padding-left: 20px;
		width: 100%;
		padding-right: 20px;
	}

	.index_fanyuchugui_shejishi_fb_fr {
		padding-right: 20px;
		width: 100%;
		padding-left: 20px;
		margin-top: 10px;
	}
}

@media(max-width:768px) {
	.index_fanyuchugui_shejishi_ft_fl {
		padding-left: 15px;
		padding-right: 15px;
		padding-top: 25px;
	}

	.index_fanyuchugui_shejishi_ft_fl_fc{
		margin: 10px 0 15px;
	}

	.index_fanyuchugui_shejishi_ft_fr {
		margin: 0 15px;
		margin-top: 15px!important;
	}

	.index_fanyuchugui_shejishi_fb_fl {
		padding-left: 15px;
		padding-right: 15px;
	}

	.index_fanyuchugui_shejishi_fb_fr {
		padding-left: 15px;
		padding-right: 15px;
	}

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

	.index_fanyuchugui_shejishi_ft_fl_fb li h3 {
		font-size: 18px;
	}

	.index_fanyuchugui_shejishi_ft_fl_fb li h4 {
		margin: 5px 0;
	}

	.index_fanyuchugui_shejishi_ft_fl_fb li h5 {
		margin-top: 5px;
		font-size: 16px;
	}

	.index_fanyuchugui_shejishi_fb_fr_fr {
		margin-left: 10px;
		margin-top: 10px;
	}

	.index_fanyuchugui_shejishi_ft_fr .wz{
		font-size: 20px;
	}
}

@media(max-width:468px) {
	.index_fanyuchugui_shejishi_fb_fr_fl {
		width: 100%;
		text-align: center;
	}

	.index_fanyuchugui_shejishi_fb_fr_fr {
		margin-left: 0;
	}

	.index_fanyuchugui_shejishi_ft_fr .wz{
		font-size: 18px;
	}
}

/*选择我们*/
.index_fanyuchugui_baozhang {
	padding: 4% 0;
	background: #efefef;
}

.index_fanyuchugui_baozhang_ft_fr h3 {
	color: #333;
}

.index_fanyuchugui_baozhang_ft_fr h4 {
	color: #045ba8;
	background: url(../images/img/index_xuanze_dianhua.png) no-repeat left center;
	background-size: 1.6rem;
}

.index_fanyuchugui_baozhang_fc {
	margin: 3% 0;
	margin-bottom: 0!important;
}

.index_fanyuchugui_baozhang_fc {
	overflow: hidden;
}

.index_fanyuchugui_baozhang_fc ul {
	position: relative;
	font-size: 0;
	overflow: hidden;
}

.index_fanyuchugui_baozhang_fc li {
	width: 40%;
	cursor: pointer;
	border-left: 10px solid #fff;
	display: inline-block;
	overflow: hidden;
	position: absolute;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.index_fanyuchugui_baozhang_fc li::before,
.index_fanyuchugui_baozhang_fc li::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 10px;
	width: 0;
	height: 1px;
	background: rgba(255, 255, 255, .5);
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-ms-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.index_fanyuchugui_baozhang_fc li::after {
	top: auto;
	bottom: 10px;
}

.index_fanyuchugui_baozhang_fc_xian1,
.index_fanyuchugui_baozhang_fc_xian2 {
	position: absolute;
	left: 10px;
	top: 50%;
	width: 1px;
	height: 0;
	background: rgba(255, 255, 255, .5);
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-ms-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_fanyuchugui_baozhang_fc_xian2 {
	right: 10px;
	left: auto;
}

.index_fanyuchugui_baozhang_fc li.active .index_fanyuchugui_baozhang_fc_xian1,
.index_fanyuchugui_baozhang_fc li.active .index_fanyuchugui_baozhang_fc_xian2 {
	height: calc(100% - 20px);
}

.index_fanyuchugui_baozhang_fc li.active::before,
.index_fanyuchugui_baozhang_fc li.active::after {
	width: calc(100% - 20px);
}

.index_fanyuchugui_baozhang_fc li:nth-child(1) {
	border-left: 0;
	left: 0;
	position: relative;
}

.index_fanyuchugui_baozhang_fc li:nth-child(2) {
	left: 40%;
}

.index_fanyuchugui_baozhang_fc li:nth-child(3) {
	left: 52%;
}

.index_fanyuchugui_baozhang_fc li:nth-child(4) {
	left: 64%;
}

.index_fanyuchugui_baozhang_fc li:nth-child(5) {
	left: 76%;
}

.index_fanyuchugui_baozhang_fc li:nth-child(6) {
	left: 88%;
}

.index_fanyuchugui_baozhang_fc li .wz {
	position: absolute;
	left: 0;
	top: 0;
	padding-top: 25px;
	padding-left: 25px;
}

.index_fanyuchugui_baozhang_fc li .wz .wz_img {
	width: 50px;
	margin: 0 auto;
	line-height: 50px;
}

.index_fanyuchugui_baozhang_fc li .wz .wz_img img {
	width: 100%;
}

.index_fanyuchugui_baozhang_fc li .wz .wz_z {
	justify-content: center;
	font-size: 20px;
	line-height: 1.2;
	color: #fff;
	margin-top: 15px;
	text-align: center;
	opacity: 1;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.index_fanyuchugui_baozhang_fc li .wz .wz_z h3 {
	width: 30px;
	font-size: 22px;
}

.index_fanyuchugui_baozhang_fc li .wz .wz_z h4 {
	width: 30px;
	font-size: 22px;
}

.index_fanyuchugui_baozhang_fc li.active .wz .wz_z {
	opacity: 0;
}

.index_fanyuchugui_baozhang_fc li .wz2 {
	position: absolute;
	width: 100%;
	padding: 0 25px;
	margin: 0 -25px;
	left: 25px;
	bottom: 25px;
	opacity: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	-o-align-items: flex-end;
	align-items: flex-end;
}

.index_fanyuchugui_baozhang_fc li .wz2 .wz2_fl {
	width: 100%;
	padding-right: 130px;
	margin-right: -130px;
}

.index_fanyuchugui_baozhang_fc li .wz2 .wz2_fl h3 {
	font-size: 22px;
	line-height: 1.5;
	color: #fff;
}

.index_fanyuchugui_baozhang_fc li .wz2 .wz2_fl h4 {
	font-size: 15px;
	line-height: 1.5;
	color: #fff;
	font-weight: 300;
}

.index_fanyuchugui_baozhang_fc li .wz2 .wz2_fr a {
	font-size: 16px;
	line-height: 36px;
	color: #045ba8;
	display: block;
	width: 110px;
	background: #fff;
	border-radius: 30px;
	text-align: center;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.index_fanyuchugui_baozhang_fc li .wz2 .wz2_fr a:hover{
	background: #045ba8;
	color: #fff;
}
.index_fanyuchugui_baozhang_fc li.active .wz2 {
	opacity: 1;
}

.index_fanyuchugui_baozhang_fb li {
	width: 25%;
	background: url(../images/img/index_shuju_bj.png) no-repeat center;
	background-size: 280px auto;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_fanyuchugui_baozhang_fb li .index_fanyuchugui_baozhang_fb_fl {
	font-size: 65px;
	line-height: 1.1;
	color: #333;
	margin-right: 10px;
	font-family: Arial;
}

.index_fanyuchugui_baozhang_fb li .index_fanyuchugui_baozhang_fb_fr h3,
.index_fanyuchugui_baozhang_fb li .index_fanyuchugui_baozhang_fb_fr h4 {
	font-size: 17px;
	line-height: 2;
	color: #666;
}

@media(max-width:1280px) {
	.index_fanyuchugui_baozhang_fc li .wz .wz_img {
		width: 40px;
	}

	.index_fanyuchugui_baozhang_fc li .wz .wz_z h4,
	.index_fanyuchugui_baozhang_fc li .wz .wz_z h3 {
		font-size: 20px;
		width: 25px;
	}

	.index_fanyuchugui_baozhang_fc li .wz2 .wz2_fl h3 {
		font-size: 20px;
	}

	.index_fanyuchugui_baozhang_fb li .index_fanyuchugui_baozhang_fb_fl {
		font-size: 60px;
	}

	.index_fanyuchugui_baozhang_fb li .index_fanyuchugui_baozhang_fb_fr h3,
	.index_fanyuchugui_baozhang_fb li .index_fanyuchugui_baozhang_fb_fr h4 {
		font-size: 15px;
	}

	.index_fanyuchugui_baozhang_fb li {
		background-size: 90% auto;
	}
}

@media(max-width:991px) {
	.index_fanyuchugui_baozhang_ft_fr {
		display: none;
	}

	.index_fanyuchugui_baozhang_fc li {
		width: 49% !important;
		margin-right: 2% !important;
		position: relative !important;
		border: 0 !important;
		left: 0 !important;
		top: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
	}

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

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

	.index_fanyuchugui_baozhang_fc li .img img {
		width: 100%;
	}

	.index_fanyuchugui_baozhang_fc li .wz {
		display: none !important;
	}

	.index_fanyuchugui_baozhang_fc li::before,
	.index_fanyuchugui_baozhang_fc li::after {
		width: calc(100% - 20px);
	}

	.index_fanyuchugui_baozhang_fc li .index_fanyuchugui_baozhang_fc_xian1,
	.index_fanyuchugui_baozhang_fc li .index_fanyuchugui_baozhang_fc_xian2 {
		height: calc(100% - 20px);
	}

	.index_fanyuchugui_baozhang_fc li .wz2 {
		opacity: 1;
	}

	.index_fanyuchugui_baozhang_fb li {
		width: 50%;
		background-size: 280px auto;
	}

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

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

	.index_fanyuchugui_baozhang_fc {
		margin: 15px 0;
	}

	.index_fanyuchugui_baozhang_fc li {
		width: 100% !important;
		margin-right: 0 !important;
	}

	.index_fanyuchugui_baozhang_fc li:nth-child(n+2) {
		margin-top: 15px !important;
	}
}

@media(max-width:468px) {
	.index_fanyuchugui_baozhang_fb li .index_fanyuchugui_baozhang_fb_fl {
		font-size: 32px;
		margin-right: 5px;
	}

	.index_fanyuchugui_baozhang_fb li .index_fanyuchugui_baozhang_fb_fr h3,
	.index_fanyuchugui_baozhang_fb li .index_fanyuchugui_baozhang_fb_fr h4 {
		line-height: 1.2;
	}

	.index_fanyuchugui_baozhang_fc li .wz2 .wz2_fl {
		padding-right: 0;
		margin-right: 0;
	}

	.index_fanyuchugui_baozhang_fc li .wz2 .wz2_fr a {
		margin-top: 10px;
		font-size: 15px;
	}
}


/*授权商*/
.index_fanyuchugui_shouquanshang {
	padding: 4% 0;
}

.index_fanyuchugui_shouquanshang_ft {
	text-align: center;
}

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

.index_fanyuchugui_shouquanshang_ft h3 span {
	color: #045ba8;
}

.index_fanyuchugui_shouquanshang_ft h4 {
	font-size: 18px;
	line-height: 1.2;
	color: #646464;
	margin-top: 10px;
	font-weight: 300;
}

.index_fanyuchugui_shouquanshang_fb {
	margin-top: 3%;
	padding: 0 25px;
	position: relative;
}

.index_fanyuchugui_shouquanshang_fb_nnn {
	overflow: hidden;
	padding: 5px;
}

.index_fanyuchugui_shouquanshang_fb ul li {
	text-align: center;
	cursor: pointer;
}

.index_fanyuchugui_shouquanshang_fb ul li .img {
	border: 1px solid #dddddd;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.index_fanyuchugui_shouquanshang_fb ul li .img img {
	width: 100%;
}

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

.index_fanyuchugui_shouquanshang_fb li:hover .img {
	border: 1px solid #045ba8;
	box-shadow: 0 0 5px #045ba8;
}

.index_fanyuchugui_shouquanshang_fb li:hover .wz {
	color: #045ba8;
}

.index_fanyuchugui_shouquanshang_fb_btnl,
.index_fanyuchugui_shouquanshang_fb_btnr {
	position: absolute;
	width: 15px;
	height: 30px;
	top: 50%;
	margin-top: -16px;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_fanyuchugui_shouquanshang_fb_btnl {
	left: 0;
	background: url(../images/img/index_hezuo_btnr.png) no-repeat center;
	background-size: 15px;
}

.index_fanyuchugui_shouquanshang_fb_btnr {
	right: 0;
	background: url(../images/img/index_hezuo_btnl.png) no-repeat center;
	background-size: 15px;
}

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

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

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

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

/*公司简介*/
.index_fanyuchugui_gongsijianjie_ft_fl {
	width: 50%;
}

.index_fanyuchugui_gongsijianjie_ft_fl img {
	width: 100%;
	opacity: 0;
}

.index_fanyuchugui_gongsijianjie_ft_fr {
	width: 50%;
	background: url(../images/img/index_about_bj.jpg) no-repeat center;
	background-size: cover;
	padding: 3%;
	padding-right: calc(50vw - 757px);
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.index_fanyuchugui_gongsijianjie_ft_fr_nn {
	width: 100%;
	height: 100%;
	max-width: 550px;
	-webkit-align-content: space-between;
	-moz-align-content: space-between;
	-ms-align-content: space-between;
	-o-align-content: space-between;
	align-content: space-between;
}

.index_fanyuchugui_gongsijianjie_ft_fr_ft {
	width: 100%;
}

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

.index_fanyuchugui_gongsijianjie_ft_fr_ft h3 span {
	color: #f18005;
}

.index_fanyuchugui_gongsijianjie_ft_fr_ft h4 {
	font-size: 1.3rem;
	line-height: 1.5;
	color: #fff;
}

.index_fanyuchugui_gongsijianjie_ft_fr_fc {
	width: 100%;
	font-size: 16px;
	line-height: 1.8;
	color: #fff;
	margin: 3% 0;
}

.index_fanyuchugui_gongsijianjie_ft_fr_fr {
	width: 100%;
}

.index_fanyuchugui_gongsijianjie_ft_fr_fb a {
	width: 130px;
	background: #045ba8;
	font-size: 16px;
	line-height: 40px;
	color: #fff;
	display: block;
	text-align: center;
	border-radius: 30px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.index_fanyuchugui_gongsijianjie_ft_fr_fb a:hover{
	background: #fff;
	color: #045ba8;
}

@media(max-width:1600px) {
	.index_fanyuchugui_gongsijianjie_ft_fr {
		padding-right: 50px;
		padding-left: 50px;
	}
}

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

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

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

	.index_fanyuchugui_gongsijianjie_ft_fr_fb a {
		width: 120px;
		font-size: 15px;
		line-height: 36px;
	}
}

@media(max-width:991px) {
	.index_fanyuchugui_gongsijianjie_ft_fl {
		width: 100%;
	}

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

	.index_fanyuchugui_gongsijianjie_ft_fr_nn {
		max-width: 100%;
	}

	.index_fanyuchugui_gongsijianjie_ft_fr_fc {
		margin: 10px 0 15px;
	}
}

@media(max-width:768px) {
	.index_fanyuchugui_gongsijianjie_ft_fr_fc {
		font-size: 15px;
	}

	.index_fanyuchugui_gongsijianjie_ft_fr {
		padding: 20px 15px;
	}
}

/*招商加盟*/
.index_fanyuchugui_franchise{
	padding-top: 4%;
}

.index_fanyuchugui_franchise_fb{
	margin-top: 4%;
	padding: 5% 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

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

.index_fanyuchugui_franchise_fb_fl{
	width: 46%;
}

.index_fanyuchugui_franchise_fb_fl_ft h3{
	font-size: 1.6rem;
	line-height: 1.5;
	color: #f18005;
	font-weight: 300;
}

.index_fanyuchugui_franchise_fb_fl_ft h4{
	font-size: 2.2rem;
	line-height: 1.5;
	color: #fff;
}

.index_fanyuchugui_franchise_fb_fl_fc{
	margin: 6% 0 8%;
}

.index_fanyuchugui_franchise_fb_fl_fc h3{
	font-size: 1.6rem;
	line-height: 1.5;
	color: #fff;
}

.index_fanyuchugui_franchise_fb_fl_fc h3 span{
	color: #f18005;
}

.index_fanyuchugui_franchise_fb_fl_fc h4{
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
	font-weight: 300;
	margin-top: 2%;
}

.index_fanyuchugui_franchise_fb_fl_fb{
	overflow: hidden;
}

.index_fanyuchugui_franchise_fb_fl_fb a{
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	background: #f18005;
	padding: .9rem 2.6rem;
	float: left;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_fanyuchugui_franchise_fb_fl_fb a span{
	display: block;
	width: 18px;
	height: 7px;
	background-image: url(../images/img/index_product_btn.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 18px;
	margin-left: 10px;
}

.index_fanyuchugui_franchise_fb_fl_fb a:hover{
	background: #085aa6;
}

.index_fanyuchugui_franchise_fb_fr{
	width: 50%;
}

.index_fanyuchugui_franchise_fb_fr_ul{
	overflow: hidden;
}

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

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

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

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

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

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

.index_fanyuchugui_franchise_fb_fr_li .wz{
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	text-align: center;
	margin-top: 15px;
	font-weight: 300;
}

.index_fanyuchugui_franchise_fb_fr_messages{
	margin-top: 10%;
}

.index_fanyuchugui_franchise_fb_fr_messages li{
	width: 35.5%;
	margin-right: 2%;
	float: left;
	overflow: hidden;
	background: #fff;
	padding: 0 10px;
}

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

.index_fanyuchugui_franchise_fb_fr_messages li h3 {
	font-size: 15px;
	line-height: 45px;
	color: #646464;
	float: left;
	width: 45px;
	text-align: center;
}

.index_fanyuchugui_franchise_fb_fr_messages li .index_fanyuchugui_franchise_fb_fr_messages_input {
	width: 100%;
	float: left;
	padding-left: 45px;
	margin-left: -45px;
}

.index_fanyuchugui_franchise_fb_fr_messages li .index_fanyuchugui_franchise_fb_fr_messages_input input {
	width: 100%;
	height: 45px;
	padding: 0;
	padding-left: 5px;
	font-size: 15px;
	line-height: 45px;
	color: #666;
	background-color: #fff;
	background-image: none;
	border: 0;
	border-radius: 0;
	outline: none;
}

.index_fanyuchugui_franchise_fb_fr_messages li .index_fanyuchugui_franchise_fb_fr_messages_input input::-webkit-autofill {
	-webkit-text-fill-color: #666 !important;
	transition: background-color 5000s ease-in-out 0s;
}

.index_fanyuchugui_franchise_fb_fr_messages li .index_fanyuchugui_franchise_fb_fr_messages_input input::placeholder {
	color: #666;
}

.index_fanyuchugui_franchise_fb_fr_messages_submit{
	float: left;
	width: 25%;
	background: #f18005;
	font-size: 16px;
	line-height: 45px;
	color: #fff;
	border: 0;
	display: block;
	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;
}

.index_fanyuchugui_franchise_fb_fr_messages_submit:hover{
	background: #085aa6;
}

@media(max-width:1280px){
	.index_fanyuchugui_franchise_fb_fl_fc h4{
		font-size: 18px;
	}

	.index_fanyuchugui_franchise_fb_fr_li .wz{
		font-size: 17px;
	}
}

@media(max-width:991px){
	.index_fanyuchugui_franchise_fb_fl{
		width: 100%;
	}

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

	.index_fanyuchugui_franchise_fb_fl_ft h4{
		font-size: 24px;
	}

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

	.index_fanyuchugui_franchise_fb_fl_fc{
		margin: 3% 0 4%;
	}

	.index_fanyuchugui_franchise_fb_fl_fb a{
		padding: 10px 25px;
	}

	.index_fanyuchugui_franchise_fb_fr{
		width: 100%;
		margin-top: 4%;
	}

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

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

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

	.index_fanyuchugui_franchise_fb_fr_messages{
		margin-top: 4%;
	}
}

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

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

	.index_fanyuchugui_franchise_fb_fl_ft h4{
		font-size: 22px;
	}

	.index_fanyuchugui_franchise_fb_fl_fc{
		margin: 15px 0 20px;
	}

	.index_fanyuchugui_franchise_fb_fl_fc h4{
		margin-top: 10px;
	}

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

	.index_fanyuchugui_franchise_fb_fr{
		margin-top: 20px;
	}

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

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

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

	.index_fanyuchugui_franchise_fb_fr_messages{
		margin-top: 20px;
	}
}

@media(max-width:468px){
	.index_fanyuchugui_franchise_fb_fr_li{
		width: 50%;
	}

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

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

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

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

	.index_fanyuchugui_franchise_fb_fr_messages li h3{
		line-height: 42px;
	}

	.index_fanyuchugui_franchise_fb_fr_messages li .index_fanyuchugui_franchise_fb_fr_messages_input input{
		line-height: 42px;
		height: 42px;
	}

	.index_fanyuchugui_franchise_fb_fr_messages_submit{
		margin-top: 20px;
		line-height: 40px;
		width: 120px;
	}
}

/*新闻*/
.index_fanyuchugui_xinwen {
	padding: 4% 0;
	background: #efefef;
}

.index_fanyuchugui_xinwen_fb {
	margin-top: 3%;
}

.index_fanyuchugui_xinwen_fb_nn {
	overflow: hidden;
	padding: 10px;
	margin: -10px;
}

.index_fanyuchugui_xinwen_fb li a{
	display: block;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	/*border: 1px solid #d3d3d3;*/
	box-shadow: 0 0 2px rgba(0,0,0,.1);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_fanyuchugui_xinwen_fb li:hover a{
	box-shadow: 0 0 8px rgba(0,0,0,.3);
}

.index_fanyuchugui_xinwen_fb li .img {
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}

.index_fanyuchugui_xinwen_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;
}

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

.index_fanyuchugui_xinwen_fb li .wz {
	border: 1px solid #d3d3d3;
	border-top: 0;
	padding: 5% 6%;
	border-radius: 0 0 10px 10px;
}

.index_fanyuchugui_xinwen_fb li .wz h3 {
	font-size: 20px;
	line-height: 1.5;
	font-weight: bold;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-bottom: 15px;
	border-bottom: 1px solid #d7e1f3;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_fanyuchugui_xinwen_fb li:hover .wz h3 {
	color: #045ba8;
}

.index_fanyuchugui_xinwen_fb li .wz h4 {
	font-size: 15px;
	line-height: 2;
	color: #666;
	max-height: 4em;
	margin: 15px 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.index_fanyuchugui_xinwen_fb li .wz .wz_data{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_fanyuchugui_xinwen_fb li .wz .wz_data span{
	font-size: 15px;
	line-height: 2;
	color: #666;
}

.index_fanyuchugui_xinwen_fb li .wz h5 {
	display: inline-block;
	margin: 0;
	font-size: 15px;
	line-height: 2;
	color: #333;
	padding-right: 30px;
	background-image: url(../images/img/index_jiantou_xinwen.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 25px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_fanyuchugui_xinwen_fb li:hover .wz h5 {
	color: #045ba8;
	background-image: url(../images/img/index_jiantou_xinwen1.png);
}

@media(max-width:1200px) {
	.index_fanyuchugui_xinwen_fb li .wz h3 {
		font-size: 18px;
	}
}

@media(max-width:991px) {
	.index_fanyuchugui_xinwen_fb li .wz {
		padding: 20px;
	}
}

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

	.index_fanyuchugui_xinwen_fb {
		margin-top: 20px;
	}
}

/*底部*/
.pc_footer {
	position: relative;
}

.pc_footer::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.65);
}

.pc_footer_con {
	position: relative;
	z-index: 10;
}

.pc_footer_ft {
	overflow: hidden;
	padding: 35px 0;
}

.pc_footer_ft_fl {
	width: 27%;
}

.pc_footer_ft_fl_ft {
	font-size: 2.5rem;
	line-height: 1.2;
	color: #fff;
	font-weight: 300;
	font-family: Arial;
}

.pc_footer_ft_fl_fb {
	margin-top: 10px;
}

.pc_footer_ft_fl_fb h3 {
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
}

.pc_footer_ft_fl_fb h4 {
	font-size: 1.8rem;
	line-height: 1.5;
	color: #fff;
	margin-top: 5px;
}

.pc_footer_ft_fc {
	width: 40%;
}

.pc_footer_ft_fc li {
	width: 33.333%;
	float: left;
	margin-top: 4%;
}

.pc_footer_ft_fc li a {
	font-size: 18px;
	line-height: 2;
	color: #ccc;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
	display: inline-block;
}

.pc_footer_ft_fc li a:hover {
	color: #fff;
}

.pc_footer_ft_fr {
	width: 27%;
	/*max-width: 260px;*/
	max-width: 120px;
}

.pc_footer_ft_fr ul {
	overflow: hidden;
}

.pc_footer_ft_fr li {
	/*width: 47.5%;*/
	width: 100%;
	/*margin-right: 5%;*/
	float: left;
	text-align: center;
	/*max-width: 120px;*/
}

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

.pc_footer_ft_fr li .img img {
	width: 100%;
}

.pc_footer_ft_fr li .wz {
	font-size: 16px;
	line-height: 2;
	color: #ccc;
	margin-top: 10px;
}

.pc_footer_b {
	position: relative;
	z-index: 10;
	font-size: 16px;
	line-height: 1.8;
	color: #ccc;
	border-top: 1px solid rgba(255, 255, 255, .6);
	padding: 20px 0;
}

.pc_footer_b a {
	color: #ccc;
}

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

@media(max-width:991px) {
	.pc_footer_ft_fc {
		display: none;
	}

	.pc_footer_ft_fl {
		width: 50%;
	}

	.pc_footer_ft_fl_ft {
		font-size: 32px;
	}

	.pc_footer_ft_fl_fb h4 {
		font-size: 26px;
	}

	.pc_footer_ft_fr {
		width: 45%;
	}
}

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

@media(max-width:468px) {
	.pc_footer_ft_fl {
		width: 100%;
	}

	.pc_footer_ft_fr {
		width: 100%;
		/*max-width: 100%;*/
		margin-top: 15px;
	}
}




/*公司简介*/
.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: 2.2rem;
	line-height: 1.2;
	color: #333;
	position: absolute;
	left: 0;
	top: 50%;
	padding-bottom: 2%;
	border-bottom: 2px solid #045ba8;
	-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: 6rem;
	line-height: 1;
	font-family: 'Arial';
	font-weight: bold;
	color: transparent;
	/*text-align: right;*/
	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.8;
	color: #4c4c4c;
	margin-top: 4%;
	font-weight: 300;
}

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

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

.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:1280px){
	.ny_about_1_fb_fr_fc{
		font-size: 17px;
	}

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

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

	.ny_about_1_fb_fr {
		width: 100%;
	}

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

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

	.ny_about_1_fb_fr_fc {
		margin-top: 5px;
		font-size: 17px;
	}

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

	.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: 18px;
	}
}

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

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

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

	.ny_about_1_fb_fr_fc{
		font-size: 16px;
	}
}

@media(max-width:468px) {
	.ny_about_1_fb_fr_ft h3 {
		padding-bottom: 5px;
	}

	.ny_about_1_fb_fr_ft h4 {
		font-size: 6rem;
		text-indent: 10px;
		/*text-align: right;*/
	}
}

/*优势*/
.ny_page_qiyewenhua li {
	background: #f6f6f6;
}

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

.ny_page_qiyewenhua 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;
}

.ny_page_qiyewenhua li .img {
	width: 50%;
}

.ny_page_qiyewenhua li .img img {
	width: 100% !important;
}

.ny_page_qiyewenhua li .wz {
	width: 50%;
	padding: 3%;
}

.ny_page_qiyewenhua li .wz h3 {
	font-size: 1.4rem;
	line-height: 1.5;
	color: #333;
	font-weight: bold;
	position: relative;
	padding-bottom: 10px;
}

.ny_page_qiyewenhua li .wz h3::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 3rem;
	height: 3px;
	background: #045ba8;
}

.ny_page_qiyewenhua li .wz h4 {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin-top: 3%;
}

@media(max-width:991px) {
	.ny_page_qiyewenhua li .wz {
		padding: 2%;
	}

	.ny_page_qiyewenhua li .wz h3 {
		font-size: 20px;
	}

	.ny_page_qiyewenhua li .wz h3::before {
		width: 40px;
	}
}

@media(max-width:768px) {
	.ny_page_qiyewenhua li .img {
		width: 100%;
	}

	.ny_page_qiyewenhua li .wz {
		width: 100%;
		padding: 15px;
	}

	.ny_page_qiyewenhua li .wz h4 {
		margin-top: 10px;
	}
}

/*vr 全景*/
.ny_page_vrquanjing li {
	width: 32%;
	margin-right: 2%;
	background: #efefef;
}

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

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

.ny_page_vrquanjing li .img {
	overflow: hidden;
}

.ny_page_vrquanjing li .img img {
	width: 100% !important;
	-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_vrquanjing li:hover .img img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
}

.ny_page_vrquanjing li .wz {
	padding: 20px;
}

.ny_page_vrquanjing li .wz h3 {
	font-size: 18px;
	line-height: 1.55;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ny_page_vrquanjing li .wz h4 {
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	margin-top: 10px;
}

.ny_page_vrquanjing li:hover .wz h3 {
	color: #045ba8;
}

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

	.ny_page_vrquanjing li:nth-child(3n) {
		margin-right: 2%;
	}

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

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

@media(max-width:468px) {
	.ny_page_vrquanjing li {
		width: 100%;
		margin-right: 0 !important;
	}

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

	.ny_page_vrquanjing li .wz {
		padding: 15px;
	}

	.ny_page_vrquanjing li .wz h4 {
		margin-top: 5px;
	}
}

/*资质证书*/
.ny_zizhizhengshu ul {
	font-size: 0;
}

.ny_zizhizhengshu li {
	width: 23.875%;
	margin-right: 1.5%;
	display: inline-block;
	vertical-align: bottom;
	overflow: hidden;
}

.ny_zizhizhengshu li a {
	height: 100%;
	width: 100%;
}

.ny_zizhizhengshu li .img {
	width: 100%;
	height: 100%;
	position: relative;
}

.ny_zizhizhengshu li .img .img_nn {
	border: 1px solid #eee;
	height: 100%;
	width: 100%;
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-o-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

.ny_zizhizhengshu li .img img {
	width: 100%;
	height: auto !important;
	-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_zizhizhengshu li:hover .img .img_nn {
	border-color: #045ba8;
}

.ny_zizhizhengshu 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);
}


.ny_zizhizhengshu li .wz {
	font-size: 16px;
	line-height: 20px;
	color: #333;
	text-align: center;
	margin-top: 10px;
	width: 100%;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

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

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

@media(max-width:991px) {
	.ny_zizhizhengshu li .wz {
		font-size: 15px;
	}
}

@media(max-width:768px) {
	.ny_zizhizhengshu li {
		width: 49%;
		margin-right: 2%;
	}

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

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

/*团队成员*/
.ny_page_tuanduichengyuan li {
	border: 1px solid #eee;
	width: 49%;
	margin-right: 2%;
	background: #efefef;
}

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

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

.ny_page_tuanduichengyuan li .img {
	width: 40%;
}

.ny_page_tuanduichengyuan li .img img {
	width: 100% !important;
}

.ny_page_tuanduichengyuan li .wz {
	width: 60%;
	padding: 3% 4%;
}

.ny_page_tuanduichengyuan li .wz h3 {
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.5;
	color: #333;
}

.ny_page_tuanduichengyuan li .wz h3 span {
	font-size: 17px;
	color: #666;
	font-weight: normal;
	margin-left: 5px;
}

.ny_page_tuanduichengyuan li .wz h4 {
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	margin-top: 10px;
	overflow: hidden;
	max-height: 7.5em;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
}

.hidden-content-tuandui {
	width: 90%;
	max-width: 400px;
	padding: 20px;
}

.list_tuandui_img {
	text-align: center;
}

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

.list_tuandui_wz {
	margin-top: 10px;
}

.list_tuandui_wz h3 {
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.5;
	color: #333;
	text-align: center;
}

.list_tuandui_wz h3 span {
	font-size: 17px;
	color: #666;
	font-weight: normal;
	margin-left: 5px;
}

.list_tuandui_wz h4 {
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	margin-top: 10px;
}

@media(max-width:991px) {
	.ny_page_tuanduichengyuan li {
		width: 100%;
		margin-right: 0 !important;
	}

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

	.ny_page_tuanduichengyuan li .wz h3 {
		font-size: 20px;
	}

	.list_tuandui_wz h3 {
		font-size: 20px;
	}
}

@media(max-width:468px) {
	.ny_page_tuanduichengyuan li .img {
		width: 100%;
	}

	.ny_page_tuanduichengyuan li .wz {
		padding: 15px;
		width: 100%;
	}
}

/*合作加盟*/
.page_join_advantage_1_ft h3{
	font-size: 2rem;
	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: #045ba8;
}

.page_join_advantage_1_fb_fr_ft_li.on::before{
	background: #045ba8;
}

.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:1600px){
	.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: 28px;
	}

	.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: 26px;
	}

	.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%;
	}

	.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: 24px;
	}

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

	.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;
	}
}









