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

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*/
::-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: #0b2336;
	border: none;
	-webkit-border-radius: 0
}

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

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

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

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

	.page_con_zhuti {
		padding: 0 30px;
	}
}

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

	.page_con_zhuti {
		padding: 0 20px;
	}

	body {
		padding-top: 61px;
	}
}

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

	.page_con_zhuti {
		padding: 0 15px;
	}
}

/*头部*/
#pc_header {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 999;
	padding: 0 2.8vw;
	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.on{
	background: #fff;
	box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
}

.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: 14%;
	max-width: 170px;
	position: relative;
	font-size: 0;
}

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

.pc_logo .img2{
	position: absolute;
	left: 50%;
	top: 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;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	opacity: 0;
}

#pc_header.on .pc_logo .img2{
	opacity: 1;
}

#pc_header.on .pc_logo .img1{
	opacity: 1;
}

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

.pc_nav_li_www {
	float: left;
	font-size: 0;
	padding: 0 2vw;
	text-align: center;
	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;
}

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

.pc_nav>ul>.pc_nav_li_www:last-child {
	margin-right: 0;
}

.pc_nav>ul>.pc_nav_li_www>li>a {
	font-size: 16px;
	line-height: 80px;
	color: #fff;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
}

#pc_header.on .pc_nav>ul>.pc_nav_li_www>li>a{
	color: #000;
}

.pc_nav>ul>.pc_nav_li_www>li>a::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	max-width: 120px;
	height: 2px;
	background: rgba(255,255,255,.5);
	-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;
	left: 50%;
	top: 100%;
	min-width: 150px;
	background: #000;
	opacity: 0;
	padding: 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{
	position: relative;
}

.pc_nav_erji_li_a{
	font-size: 15px;
	line-height: 40px;
	color: #999;
	padding: 0 10px;
	text-align: left;
	text-align: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.pc_nav_erji_li_text{
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
}

.pc_nav_erji_li_a_padding .pc_nav_erji_li_text{
	padding-right: 12px;
}

.pc_nav_erji_li a .pc_nav_erji_sanjiaojiantou{
	width: 0;
	height: 0;
	overflow: hidden;
	border-width: 5px;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 50%;
	border-style: dashed dashed solid dashed;
	border-color: transparent transparent #999 transparent;
	border-top: none;
	margin-top: 3px;
	-webkit-transform:rotate(90deg) translateX(-50%);
	-moz-transform:rotate(90deg) translateX(-50%);
	-ms-transform:rotate(90deg) translateX(-50%);
	-o-transform:rotate(90deg) translateX(-50%);
	transform:rotate(90deg) translateX(-50%);
}

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

.pc_nav_erji_li a:hover .pc_nav_erji_sanjiaojiantou{
	border-color: transparent transparent #fff transparent;
}

.pc_nav_sanji_w{
	position: absolute;
	z-index: 999;
	left: 100%;
	top: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	background: rgba(0,0,0,.8);
	-webkit-transform: translate(10px,0);
	-moz-transform: translate(10px,0);
	-ms-transform: translate(10px,0);
	-o-transform: translate(10px,0);
	transform: translate(10px,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;
}

.pc_nav_sanji_li a{
	color: #fff;
	font-size: 15px;
	line-height: 40px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
	-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:hover .pc_nav_sanji_w{
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(0,0);
	-moz-transform: translate(0,0);
	-ms-transform: translate(0,0);
	-o-transform: translate(0,0);
	transform: translate(0,0);
}

.pc_nav_sanji_li a:hover{
	background: rgba(255,255,255,.9);
	color: #333;
}

.pc_nav_sanji_li{
	position: relative;
}

.pc_nav_siji_w{
	position: absolute;
	z-index: 999;
	left: 100%;
	top: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	background: rgba(0,0,0,.6);
	-webkit-transform: translate(10px,0);
	-moz-transform: translate(10px,0);
	-ms-transform: translate(10px,0);
	-o-transform: translate(10px,0);
	transform: translate(10px,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;
}

.pc_nav_siji_w a{
	color: #fff;
	font-size: 15px;
	line-height: 40px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
	-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_sanji_li:hover .pc_nav_siji_w{
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(0,0);
	-moz-transform: translate(0,0);
	-ms-transform: translate(0,0);
	-o-transform: translate(0,0);
	transform: translate(0,0);
}

.pc_nav_siji_w a:hover{
	background: rgba(255,255,255,.8);
	color: #333;
}

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

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

.pc_sousuo2 {
	position: absolute;
	right: 0;
	top: 100%;
	width: 250px;
	z-index: 999;
	background: #046eb8;
	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 {
	overflow: hidden;
	font-size: 0;
}

.pc_nav_dianhua a {
	margin-right: 10px;
	display: inline-block;
	font-size: 16px;
	line-height: 42px;
	color: #ffffff;
	border-radius: 6px;
	text-align: center;
	padding: 0 1.8vw;
	border: solid 1px rgba(255, 255, 255, .8);
	float: left;
	-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_dianhua a:hover {
	background: #fff;
	color: #222222;
	border-color: #fff;
}

.pc_nav_dianhua a:last-child {
	margin-right: 0;
}

#pc_header.on .pc_nav_dianhua a{
	border-color: #000;
	color: #000;
}

#pc_header.on .pc_nav_dianhua a:hover{
	background: #000;
	color: #fff;
}

@media(max-width:1700px) {
	#pc_header{
		padding: 0 50px;
	}

	.pc_logo{
		width: 12%;
	}

	.pc_nav_li_www{
		padding: 0 1.8vw;
	}

	.pc_nav_dianhua a{
		font-size: 15px;
		line-height: 42px;
	}
}

@media(max-width:1600px) {
	.pc_nav>ul {
		-webkit-justify-content: space-between;
		-moz-justify-content: space-between;
		-ms-justify-content: space-between;
		-o-justify-content: space-between;
		justify-content: space-between;
	}

	.pc_nav_li_www{
		padding: 0 1.5vw;
	}

	.pc_nav_dianhua a {
		line-height: 40px;
	}
}

@media(max-width:1366px) {
	.pc_nav_li_www{
		padding: 0 1.2vw;
	}
}

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

	.pc_logo{
		width: 10%;
	}

	.pc_nav_li_www{
		padding: 0 1vw;
	}

	.pc_nav>ul>.pc_nav_li_www>li>a {
		font-size: 15px;
	}

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

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

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

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

.index_banner img {
	width: 100%;
	max-height: 100vh;
	-webkit-object-fit: cover;
	-moz-object-fit: cover;
	-ms-object-fit: cover;
	-o-object-fit: cover;
	object-fit: cover;
}

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

.index_banner .wz h3 {
	font-size: 2.4rem;
	line-height: 1.3;
	color: #ffffff;
}

.index_banner .wz h4 {
	font-size: 1.5rem;
	line-height: 1.5;
	color: #ffffff;
	max-width: 1160px;
	margin-top: 1%;
}

.index_banner .wz h5 {
	overflow: hidden;
	margin: 0;
	margin-top: 5%;
}

.index_banner .wz h5 a {
	float: left;
	font-size: 17px;
	line-height: 1.8;
	color: #000000;
	background-color: #ffffff;
	border-radius: 50px;
	padding: .5rem 1.6rem;
	min-width: 12rem;
	text-align: center;
	-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 .wz h5 a:hover {
	color: #fff;
	background: #000;
}

.index_banner_yuandian {
	font-size: 0;
	text-align: left;
	position: absolute;
	left: 0;
	top: 85%;
	z-index: 99;
	width: 100%;
}

.index_banner_yuandian span {
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
	opacity: 1;
	margin: 0 5px !important;
	-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_yuandian span.swiper-pagination-bullet-active {
	background: #fff;
	width: 40px;
	border-radius: 25px;
}

.index_banner_small_img{
	position: absolute;
	left: 0;
	top: 8%;
	z-index: 5;
	width: 100%;
	margin-top: 80px;
}

.index_banner_small_img_con{
	overflow: hidden;
}


.index_banner_small_img_images{
	background: url(../images/img/banner_logo.png) no-repeat center;
	background-size: 100% 100%;
	width: 8.35rem;
	height: 2rem;
	float: right;
}


@media(max-width:1200px) {
	.index_banner .wz h4 {
		font-size: 20px;
	}

	.index_banner .wz h5 a {
		font-size: 16px;
	}
}

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

	.index_banner .wz h5 a {
		padding: 5px 20px;
		min-width: 135px;
	}

	.index_banner_small_img{
		margin-top: 0;
	}
}

@media(max-width:768px) {
	.index_banner .wz h3 {
		font-size: 22px;
	}

	.index_banner .wz h4 {
		margin-top: 5px;
		font-size: 17px;
	}

	.index_banner .wz h5 {
		margin-top: 15px;
	}

	.index_banner .wz h5 a {
		font-size: 15px;
		padding: 4px 15px;
		min-width: 110px;
	}

	.index_banner_yuandian {
		top: auto;
		bottom: 15px !important;
		text-align: center;
	}

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

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

	.index_banner_small_img_images{
		width: 75px;
		height: 18px;
	}
}

@media(max-width:620px) {
	.index_banner img {
		height: 260px;
	}
}

@media(max-width:468px) {
	.index_banner .wz h3 {
		font-size: 20px;
	}

	.index_banner .wz h4 {
		font-size: 16px;
	}
}

/*服务范围*/
.index_chuheyuan_service {
	padding: 4.5% 0;
}

.index_chuheyuan_service_ft {
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_chuheyuan_service_ft_fl {
	width: 80%;
	max-width: 1200px;
}

.index_chuheyuan_service_ft h3 {
	font-size: 2.2rem;
	line-height: 1.3;
	color: #000000;
}

.index_chuheyuan_service_ft h4 {
	font-size: 20px;
	line-height: 1.5;
	color: #000000;
	max-width: 1070px;
	margin-top: 2.3%;
}

.index_chuheyuan_service_ft h5 {
	font-size: 16px;
	line-height: 1.5;
	color: #333333;
	margin: 0;
	margin-top: 6px;
}

.index_chuheyuan_service_ft_fr {
	font-size: 0;
}

.index_chuheyuan_service_ft_fr span {
	width: 10px;
	height: 10px;
	background-color: rgba(0, 0, 0, .3);
	opacity: 1;
	margin: 0 4px;
}

.index_chuheyuan_service_ft_fr span:nth-child(1) {
	margin-left: 0;
}

.index_chuheyuan_service_ft_fr span.swiper-pagination-bullet-active {
	background-color: rgba(0, 0, 0, 1);
}

.index_chuheyuan_service_fb {
	margin-top: 2.5%;
}

.index_chuheyuan_service_fb_nnn{
	overflow: hidden;
	margin-left: -2rem;
}

.index_chuheyuan_service_fb_li_con{
	padding-left: 2rem;
}


.index_chuheyuan_service_fb li .index_chuheyuan_service_fb_li_con .img{
	margin-top: 4%;
}

.index_chuheyuan_service_fb li .img {
	overflow: hidden;
}

.index_chuheyuan_service_fb li .img .img_con {
	padding: 40% 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_chuheyuan_service_fb li .wz {
	font-size: 20px;
	line-height: 1.5;
	color: #000000;
	text-align: center;
	padding-top: 4%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

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

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

	.index_chuheyuan_service_fb li .wz {
		font-size: 18px;
		padding-top: 10px;
	}

	.index_chuheyuan_service_fb li .index_chuheyuan_service_fb_li_con .img{
		margin-top: 10px;
	}
}

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

	.index_chuheyuan_service_fb li .wz {
		font-size: 17px;
	}
}

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

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

	.index_chuheyuan_service_ft h5 {
		font-size: 15px;
	}

	.index_chuheyuan_service_fb li .wz {
		font-size: 16px;
	}
}

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

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

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

	.index_chuheyuan_service_ft_fl {
		width: 100%;
	}

	.index_chuheyuan_service_ft_fr {
		display: none;
	}

	.index_chuheyuan_service_fb {
		margin-top: 10px;
	}

	.index_chuheyuan_service_fb_nnn{
		margin-left: -20px;
	}

	.index_chuheyuan_service_fb_li_con{
		padding-left: 20px;
	}

	.index_chuheyuan_service_fb li .wz {
		font-size: 16px;
		padding-top: 7px;
	}

	.index_chuheyuan_service_fb li .index_chuheyuan_service_fb_li_con .img{
		margin-top: 7px;
	}
}

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

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

	.index_chuheyuan_service_fb li .wz {
		font-size: 16px;
	}
}

/*跨境投资*/
.index_chuheyuan_investment {
	padding: 4.5% 0;
}

.index_chuheyuan_investment_ft h3 {
	color: #fff;
}

.index_chuheyuan_investment_ft h4 {
	color: #fff;
	margin-top: 1%;
}

.index_chuheyuan_investment_ft h5 {
	color: #fff;
}

.index_chuheyuan_investment_fb {
	margin-top: 3.5%;
	padding-right: 20%;
	padding-right: 0;
	overflow: hidden;
}

.index_chuheyuan_investment_fb li .img {
	overflow: hidden;
	cursor: pointer;
}

.index_chuheyuan_investment_fb li .img .img_con {
	padding: 66% 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_chuheyuan_investment_fb li:nth-child(2n) .img .img_con {
	padding: 66% 0;
}

.index_chuheyuan_investment_fb li .wz h3 {
	font-size: 1.3rem;
	line-height: 1.5;
	color: #fff;
	padding: 6% 0 5%;
	text-align: center;
}

.index_chuheyuan_investment_fb li .wz h4 {
	font-size: 0;
	overflow: hidden;
	text-align: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.index_chuheyuan_investment_fb li .wz h4 a {
	display: inline-block;
	float: left;
	font-size: 16px;
	line-height: 1.5;
	color: #000000;
	padding: .6rem 1.2rem;
	background-color: #ffffff;
	border-radius: 4px;
	-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_chuheyuan_investment_fb li .img:hover .img_con {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.index_chuheyuan_investment_fb li .wz h4 a:hover {
	background: #000;
	color: #fff;
}

@media(max-width:1280px) {
	.index_chuheyuan_investment_fb li .wz h3 {
		font-size: 20px;
	}
}

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

	.index_chuheyuan_investment_fb li .wz h4 a {
		font-size: 16px;
	}
}

@media(max-width:991px) {
	.index_chuheyuan_investment_fb li .wz h4 a {
		padding: 7px 15px;
	}
}

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

	.index_chuheyuan_investment_ft h4 {
		margin-top: 5px;
	}

	.index_chuheyuan_investment_fb {
		padding-right: 0;
		margin-top: 15px;
	}

	.index_chuheyuan_investment_fb li .wz h3 {
		padding: 10px 0;
	}

	.index_chuheyuan_investment_fb li .wz h4 a {
		padding: 7px 13px;
		font-size: 15px;
	}
}

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

	.index_chuheyuan_investment_fb li:nth-child(2n) .img .img_con {
		padding: 66% 0;
	}

	.index_chuheyuan_investment_fb li .wz h3 {
		font-size: 17px;
		padding: 15px 0;
	}
}

/*政策洞悉*/
.index_chuheyuan_insights {
	padding: 2.6vw;
}

.index_chuheyuan_insights_con {
	background: #f3f3f3;
	padding: 4.5% 0;
}

.index_chuheyuan_insights_ft h4 {
	margin-top: 1.5%;
	max-width: 1200px;
}

.index_chuheyuan_insights_ft h5 {
	max-width: 1220px;
}

.index_chuheyuan_insights_fc {
	margin: 4.5% 0;
}

.index_chuheyuan_insights_fc li {
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_chuheyuan_insights_fc_fl {
	width: 56%;
}

.index_chuheyuan_insights_fc_fl_ft h3,
.index_chuheyuan_insights_fc_fl_ft h4 {
	font-size: 20px;
	line-height: 1.5;
	color: #000000;
}

.index_chuheyuan_insights_fc_fl_fc {
	margin: 3% 0 7%;
}

.index_chuheyuan_insights_fc_fl_fc h3 {
	font-size: 1.8rem;
	line-height: 1.5;
	color: #000000;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_chuheyuan_insights_fc_fl_fc h4 {
	font-size: 1.6rem;
	line-height: 1.3;
	color: #000000;
	max-height: 2.6em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.index_chuheyuan_insights_fc_fl_fb {
	font-size: 0;
	overflow: hidden;
}

.index_chuheyuan_insights_fc_fl_fb a {
	display: inline-block;
	float: left;
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	padding: .6rem 1.2rem;
	background-color: #000000;
	border-radius: 4px;
	-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_chuheyuan_insights_fc_fl_fb a:hover {
	background: #fff;
	color: #000;
}

.index_chuheyuan_insights_fc_fr {
	width: 40%;
	max-width: 636px;
}

.index_chuheyuan_insights_fc li .index_chuheyuan_insights_fc_fr .img {
	overflow: hidden;
}

.index_chuheyuan_insights_fc li .index_chuheyuan_insights_fc_fr .img .img_con {
	padding: 30.6% 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_chuheyuan_insights_fc li .index_chuheyuan_insights_fc_fr:hover .img .img_con {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.index_chuheyuan_insights_fb_ft {
	overflow: hidden;
}

.index_chuheyuan_insights_fb_ft_fr {
	text-align: center;
}

.index_chuheyuan_insights_fb_ft_fr h3 {
	font-size: 20px;
	line-height: 1.5;
	color: #000000;
	letter-spacing: 1px;
	position: relative;
	padding-left: 20px;
}

.index_chuheyuan_insights_fb_ft_fr h3::before {
	content: '';
	width: 1400px;
	height: 1px;
	position: absolute;
	right: 100%;
	top: 50%;
	background-color: #000000;
	margin-top: -1px;
}

.index_chuheyuan_insights_fb_ft_fr h4 {
	font-size: 14px;
	line-height: 1.5;
	color: #000000;
	padding-left: 20px;
}

.index_chuheyuan_insights_fb_fc {
	margin: 2.5% 0;
	font-size: 1.8rem;
	line-height: 1.2;
	color: #000000;
}

.index_chuheyuan_insights_fb_fb ul {
	overflow: hidden;
}

.index_chuheyuan_insights_fb_fb li {
	width: 23.875%;
	margin-right: 1.5%;
	float: left;

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

/*.index_chuheyuan_insights_fb_fb li:nth-child(1) {*/
/*	width: 45%;*/
/*}*/

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

.index_chuheyuan_insights_fb_fb li .img {
	overflow: hidden;
	width: 100%;
}

/*.index_chuheyuan_insights_fb_fb li:nth-child(1) .img .img_con {*/
/*	padding: 20% 0;*/
/*}*/

.index_chuheyuan_insights_fb_fb li .img .img_con {
	padding: 35% 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_chuheyuan_insights_fb_fb li .img:hover .img_con {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.index_chuheyuan_insights_fb_fb li .wz {
	width: 100%;
}

.index_chuheyuan_insights_fb_fb li .wz .wz_ft {
	font-size: 17px;
	line-height: 1.5;
	color: #000000;
	position: relative;
	padding-left: 35px;
	margin: 1.8rem 0;
}

.index_chuheyuan_insights_fb_fb li .wz .wz_ft::before {
	content: '';
	width: 27px;
	height: 2px;
	background-color: #000000;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -2px;
}

.index_chuheyuan_insights_fb_fb li .wz .wz_fc {
	margin-bottom: 10%;
}

.index_chuheyuan_insights_fb_fb li .wz .wz_fc h3 {
	font-size: 1.3rem;
	line-height: 1.2;
	color: #000000;
	max-height: 1.2em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.index_chuheyuan_insights_fb_fb li .wz .wz_fc h4 {
	font-size: 18px;
	line-height: 1.5;
	color: #000000;
	max-height: 3em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-top: 8px;
}

/*.index_chuheyuan_insights_fb_fb li:nth-child(1) .wz .wz_fc a {*/
/*	overflow: hidden;*/
/*	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;*/
/*	-webkit-align-items: center;*/
/*	-moz-align-items: center;*/
/*	-ms-align-items: center;*/
/*	-o-align-items: center;*/
/*	align-items: center;*/
/*}*/

/*.index_chuheyuan_insights_fb_fb li:nth-child(1) .wz .wz_fc h3 {*/
/*	width: 43%;*/
/*	float: left;*/
/*	max-height: 2.4em;*/
/*	-webkit-line-clamp: 2;*/
/*}*/

/*.index_chuheyuan_insights_fb_fb li:nth-child(1) .wz .wz_fc h4 {*/
/*	width: 50%;*/
/*	float: right;*/
/*	margin-top: 0;*/
/*}*/

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

	.index_chuheyuan_insights_fc_fl_ft h3,
	.index_chuheyuan_insights_fc_fl_ft h4 {
		font-size: 18px;
	}

	.index_chuheyuan_insights_fb_ft_fr h3 {
		font-size: 18px;
		letter-spacing: 3px;
	}

	.index_chuheyuan_insights_fb_ft_fr h4 {
		font-size: 14px;
	}

	.index_chuheyuan_insights_fb_fb li .wz .wz_ft {
		font-size: 16px;
		padding-left: 20px;
	}

	.index_chuheyuan_insights_fb_fb li .wz .wz_ft::before {
		width: 15px;
	}

	.index_chuheyuan_insights_fb_fb li .wz .wz_fc h3 {
		font-size: 21px;
	}

	.index_chuheyuan_insights_fb_fb li .wz .wz_fc h4 {
		font-size: 16px;
	}
}

@media(max-width:1200px) {
	.index_chuheyuan_insights_fc_fl_fb a {
		font-size: 16px;
	}

	.index_chuheyuan_insights_fb_fb li .wz .wz_fc h3 {
		font-size: 18px;
	}
}

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

	.index_chuheyuan_insights_con {
		padding: 20px 0;
	}

	.index_chuheyuan_insights_fc {
		margin: 20px 0;
	}

	.index_chuheyuan_insights_fc li {
		-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_chuheyuan_insights_fc_fl_fb a {
		padding: 7px 15px;
	}

	.index_chuheyuan_insights_fc_fl_ft h3,
	.index_chuheyuan_insights_fc_fl_ft h4 {
		font-size: 17px;
	}

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

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

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

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

	.index_chuheyuan_insights_fc_fr {
		width: 100%;
		max-width: 100%;
	}

	.index_chuheyuan_insights_fb_fc {
		font-size: 22px;
		margin: 15px 0;
	}

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

	/*.index_chuheyuan_insights_fb_fb li:nth-child(1) {*/
	/*	width: 100%;*/
	/*	margin-right: 0;*/
	/*}*/

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

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

	.index_chuheyuan_insights_fb_fb li .wz .wz_ft {
		margin: 12px 0 8px;
	}

	.index_chuheyuan_insights_fb_fb li .wz .wz_fc {
		margin-bottom: 15px;
	}
}

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

	.index_chuheyuan_insights_ft h4 {
		margin-top: 5px;
	}

	.index_chuheyuan_insights_fc {
		margin: 15px 0;
	}

	.index_chuheyuan_insights_fc_fl_fb a {
		font-size: 15px;
		padding: 7px 13px;
	}

	.index_chuheyuan_insights_fc_fl {
		margin-top: 10px;
	}

	.index_chuheyuan_insights_fc_fl_ft h3,
	.index_chuheyuan_insights_fc_fl_ft h4 {
		font-size: 16px;
	}

	.index_chuheyuan_insights_fc_fl_fc {
		margin: 5px 0 15px;
	}

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

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

	.index_chuheyuan_insights_fb_fc {
		margin: 15px 0;
	}

	.index_chuheyuan_insights_fb_ft_fr {
		width: 100%;
	}

	.index_chuheyuan_insights_fb_ft_fr h3 {
		padding-left: 0;
	}

	.index_chuheyuan_insights_fb_ft_fr h4 {
		padding-left: 0;
	}

	.index_chuheyuan_insights_fb_ft_fr h3::before {
		position: static;
		display: block;
		width: 100%;
		margin: 0;
		margin-bottom: 8px;
	}

	.index_chuheyuan_insights_fb_ft_fr h4::after {
		content: '';
		display: block;
		margin-top: 5px;
		width: 100%;
		height: 1px;
		background-color: #000000;
	}

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

	/*.index_chuheyuan_insights_fb_fb li:nth-child(1) .wz .wz_fc h3 {*/
	/*	width: 100%;*/
	/*	max-height: 1.2em;*/
	/*	-webkit-line-clamp: 1;*/
	/*}*/

	/*.index_chuheyuan_insights_fb_fb li:nth-child(1) .wz .wz_fc h4 {*/
	/*	width: 100%;*/
	/*	margin-top: 5px;*/
	/*}*/
}

@media(max-width:468px) {

	.index_chuheyuan_insights_fc_fl_ft h3,
	.index_chuheyuan_insights_fc_fl_ft h4 {
		font-size: 16px;
	}

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

	/*.index_chuheyuan_insights_fb_fb li:nth-child(1) .img .img_con {*/
	/*	padding: 37.5% 0;*/
	/*}*/

	.index_chuheyuan_insights_fb_fb li .wz .wz_fc h3 {
		font-size: 17px;
	}

	.index_chuheyuan_insights_fb_ft_fr h3 {
		letter-spacing: 0;
	}

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

/*典型客户*/
.index_chuheyuan_collaboration {
	padding: 2% 0 4.5%;
}

.index_chuheyuan_collaboration_ft {
	text-align: center;
}

.index_chuheyuan_collaboration_ft h4 {
	max-width: 100%;
	margin-top: 1.3%;
}

.index_chuheyuan_collaboration_ft h5 {
	width: 100%;
	max-width: 985px;
	margin: 6px auto 0;
}

.index_chuheyuan_collaboration_fb {
	margin-top: 4%;
}

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

.index_chuheyuan_collaboration_fb li:nth-child(n+5) {
	width: 20%;
	margin-top: 4%;
}

.index_chuheyuan_collaboration_fb li .img {
	position: relative;
	cursor: pointer;
	font-size: 0;
	line-height: 3.35rem;
}

.index_chuheyuan_collaboration_fb li .img img {
	max-width: 90%;
	max-height: 3.35rem;
	opacity: 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;
}

.index_chuheyuan_collaboration_fb li .img .img2 {
	opacity: 0;
	position: absolute;
	left: 50%;
	top: 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_chuheyuan_collaboration_fb li .img:hover .img2 {
	opacity: 1;
}

.index_chuheyuan_collaboration_fb li .img:hover .img1 {
	opacity: 0;
}

@media(max-width:1280px) {
	.index_chuheyuan_collaboration_fb li .img{
		line-height: 50px;
	}
	.index_chuheyuan_collaboration_fb li .img img {
		max-height: 50px;
	}
}

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

	.index_chuheyuan_collaboration_ft h4 {
		margin-top: 5px;
	}

	.index_chuheyuan_collaboration_fb {
		margin-top: 15px;
	}

	.index_chuheyuan_collaboration_fb li {
		width: 33.33333%;
		text-align: center;
	}

	.index_chuheyuan_collaboration_fb li:nth-child(n+4) {
		width: 33.33333%;
		margin-top: 15px;
	}

	.index_chuheyuan_collaboration_fb li .img {
		line-height: 45px;
	}

	.index_chuheyuan_collaboration_fb li .img img {
		max-height: 45px;
	}
}

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

	.index_chuheyuan_collaboration_fb li {
		width: 50%;
		text-align: center;
	}

	.index_chuheyuan_collaboration_fb li:nth-child(n+3) {
		width: 50%;
		margin-top: 15px;
	}

	.index_chuheyuan_collaboration_fb li:nth-child(9) {
		display: none;
	}
}

/*企业客户*/
.index_chuheyuan_customers {
	padding: 8.7% 0;
}

.index_chuheyuan_customers_con {
	overflow: hidden;
}

.index_chuheyuan_customers_ft {
	width: 80%;
	max-width: 900px;
}

.index_chuheyuan_customers_ft h3 {
	color: #fff;
}

.index_chuheyuan_customers_ft h4 {
	color: #fff;
}

.index_chuheyuan_customers_ft h5 {
	color: #fff;
}

.index_chuheyuan_customers_fb {
	float: right;
	width: 80%;
	max-width: 900px;
	margin-top: 3.5%;
}

.index_chuheyuan_customers_fb ul {
	overflow: hidden;
}

.index_chuheyuan_customers_fb li {
	width: 49%;
	margin-right: 2%;
	float: left;
}

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

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

.index_chuheyuan_customers_fb li a {
	font-size: 20px;
	line-height: 1.5;
	color: #ffffff;
}

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

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

	.index_chuheyuan_customers_fb {
		width: 100%;
		max-width: 100%;
	}

	.index_chuheyuan_customers_fb li a {
		font-size: 17px;
	}
}

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

	.index_chuheyuan_customers_fb {
		margin-top: 15px;
	}

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

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

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

	.index_chuheyuan_customers_fb li:nth-child(n+2) {
		margin-top: 5px;
	}
}
/*全球市场*/
.index_global_market{
	padding: 5% 0;
}

.index_global_market_ft{
	font-size: 2.3rem;
	line-height: 1.3;
	color: #000000;
	text-align: center;
}

.index_global_market_fc{
	margin: 8% 0 3.5%;
	text-align: center;
}

.index_global_market_fc img{
	width: 90%;
	max-width: 1170px;
}

.index_global_market_fb li{
	width: 14%;
	max-width: 220px;
	text-align: center;
}

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

.index_global_market_fb_li_ft{
	font-size: 17px;
	line-height: 40px;
	color: #ffffff;
	background: #000000;
}

.index_global_market_fb_li_fb{
	font-size: 17px;
	line-height:1.7;
	color: #000000;
	margin-top: 9%;
}

.index_global_market_fb_li_fb a{
	color: #000000;
}

.index_global_market_fb_li_fb a:hover{
	color: #046eb8;
}

@media(max-width:1280px){
	.index_global_market_fc{
		margin: 4% 0;
	}

	.index_global_market_fb_li_ft{
		font-size: 16px;
	}

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

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

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

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

	.index_global_market_fb ul{
		-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		-ms-justify-content: flex-start;
		-o-justify-content: flex-start;
		justify-content: flex-start;
	}

	.index_global_market_fb li{
		width: 32%;
		max-width: 100%;
		margin-right: 2%;
	}

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

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

	.index_global_market_fb_li_fb{
		margin-top: 6.25%;
	}
}

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

	.index_global_market_ft{
		font-size: 24px;
	}

	.index_global_market_fc{
		margin: 20px 0;
	}

	.index_global_market_fc img{
		width: 100%;
	}

	.index_global_market_fb li{
		width: 49%;
	}

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

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

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

	.index_global_market_fb_li_fb{
		margin-top: 10px;
	}
}
@media(max-width:468px){
	.index_global_market{
		padding: 25px 0;
	}

	.index_global_market_ft{
		font-size: 22px;
	}

	.index_global_market_fc{
		margin: 15px 0;
	}

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

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

	.index_global_market_fb_li_ft{
		line-height: 35px;
		font-size: 15px;
	}

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

/*关于我们*/
.index_chuheyuan_about {
	position: relative;
	overflow: hidden;
	background: #1a1a1a;
}

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

.index_chuheyuan_about_fl {
	width: 48.5%;
}

.index_chuheyuan_about_fl .img {
	overflow: hidden;
	width: 100%;
	cursor: pointer;
}

.index_chuheyuan_about_fl .img .img_con {
	padding: 30% 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_chuheyuan_about_fl .img:hover .img_con {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}

.index_chuheyuan_about_fr {
	width: 48.5%;
	padding: 5% 0;
	position: relative;
	padding-right: calc(50vw - 800px);
}

.index_chuheyuan_about_fr::before {}

.index_chuheyuan_about_fr h3 {
	color: #fff;
}

.index_chuheyuan_about_fr h4 {
	color: #fff;
	margin-top: 4%;
}

.index_chuheyuan_about_fr h5 {
	color: #fff;
	margin-top: 15px;
}

.index_chuheyuan_about_fr_fb {
	margin-top: 10%;
}

.index_chuheyuan_about_fr_fb a {
	background: #fff;
	color: #000;
}

.index_chuheyuan_about_fr_fb a:hover {
	background: #000;
	color: #fff;
}

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

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

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

	.index_chuheyuan_about_fl {
		width: 100%;
		padding: 0 20px;
	}

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

	.index_chuheyuan_about_fr {
		width: 100%;
		margin-top: 25px;
		padding: 0 20px;
	}

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

	.index_chuheyuan_about_fr h5 {
		margin-top: 10px;
	}

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

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

	.index_chuheyuan_about_fl{
		padding: 0 15px;
	}

	.index_chuheyuan_about_fr{
		padding: 0 15px;
		margin-top: 20px;
	}
}

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

/*footer*/
.pc_footer {
	padding: 4.5% 0;
	background-color: #141414;
	position: relative;
}

.pc_footer::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 55%;
	height: 57%;
	background: url(../images/img/footer_xiantaiao.png) no-repeat center;
	background-size: cover;
}

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

.pc_footer_fl {
	width: 55%;
}

.pc_footer_fl_ft img {
	width: 100%;
	max-width: 15.5rem;
}

.pc_footer_fl_fc {
	margin: 6% 0 8.2%;
}

.pc_footer_fl_fc ul {
	overflow: hidden;
}

.pc_footer_fl_fc li {
	width: 32%;
	float: left;
	margin-right: 2%;
}

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

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

.pc_footer_fl_fc li a {
	font-size: 16px;
	line-height: 1.5;
	color: #ffffff;
}

.pc_footer_fl_fb li {
	float: left;
	margin-right: 20px;
}

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

.pc_footer_fl_fb li .img {
	width: 40px;
	height: 40px;
	background-color: #ffffff;
	background-size: 22px;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	position: relative;
	z-index: 15;
}

.pc_footer_fl_fb li .weixin {
	width: 130px;
	position: absolute;
	z-index: 5;
	left: 0;
	bottom: 100%;
	opacity: 0;
	display: none;
	margin-bottom: 10px;
	-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;
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	-o-transform: translateY(100%);
	transform: translateY(100%);
}

.pc_footer_fl_fb li .weixin::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 10px;
}

.pc_footer_fl_fb li .weixin img {
	width: 100%;
}

.pc_footer_fl_fb li:nth-child(1) {
	position: relative;
	cursor: pointer;
}

.pc_footer_fl_fb li:nth-child(1):hover .weixin {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	display: block;
}

.pc_footer_fl_fb li:nth-child(1) .img {
	background-image: url(../images/img/footer_weixin_ico.png);
}

.pc_footer_fr {
	width: 40%;
	max-width: 590px;
	margin-top: 1.7%;
}

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

.pc_footer_fr_ft_fl {
	width: 95%;
	padding-right: 2.85rem;
	margin-right: -2.85rem;
}

.pc_footer_fr_ft_fl h3 {
	font-size: 1.7rem;
	line-height: 1.5;
	color: #ffffff;
}

.pc_footer_fr_ft_fl h4 {
	font-size: 16px;
	line-height: 1.5;
	color: #ffffff;
	max-width: 440px;
	margin-top: 8px;
}

.pc_footer_fr_ft_fr {
	position: relative;
	z-index: 10;
	width: 2.85rem;
	height: 3.05rem;
	background: url(../images/img/footer_backtop.png) no-repeat center;
	background-size: cover;
	cursor: pointer;
}

.pc_footer_fr_fb {
	margin-top: 21%;
	font-size: 16px;
	line-height: 1.8;
	color: #ffffff;
}

.pc_footer_fr_fb a {
	color: #fff;
}

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

	.pc_footer_fl_ft img {
		max-width: 22rem;
	}

	.pc_footer_fl_fc {
		margin: 3.5% 0;
	}

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

	.pc_footer_fr_ft_fl {
		padding-right: 32px;
		margin-right: -32px;
	}

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

	.pc_footer_fr_ft_fr {
		width: 32px;
		height: 34px;
	}

	.pc_footer_fr_fb {
		margin-top: 3%;
	}
}

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

	.pc_footer_fl_ft img {
		max-width: 160px;
	}

	.pc_footer_fl_fc {
		margin: 15px 0;
	}

	.pc_footer_fl_fc li:nth-child(n+4) {
		margin-top: 6px;
	}

	.pc_footer_fr {
		margin-top: 15px;
	}

	.pc_footer_fr_ft_fl h4 {
		margin-top: 5px;
	}

	.pc_footer_fr_fb {
		margin-top: 10px;
		line-height: 1.5;
	}

	.pc_footer_fr_ft_fl h4 {
		font-size: 15px;
	}
}

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

	.pc_footer_fl_fc {
		display: none;
	}

	.pc_footer_fl_fb {
		margin-top: 20px;
	}

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

/*2025-03-26*/
/*行业资讯*/
.index_chuheyuan_insights_fc_xiugai{
	margin: 4% 0 3%;
}
.index_chuheyuan_insights_fc_xiugai_fl{
	width: 56%;
}

.index_chuheyuan_insights_fc_xiugai_fl_list{
	border-bottom: 1px solid rgba(0,0,0,.2);
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	padding: 4% 0;
}

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

.index_chuheyuan_insights_fc_xiugai_fl_list_fl{
	width: 100%;
	padding-right: 220px;
	margin-right: -220px;
}

.index_chuheyuan_insights_fc_xiugai_fl_list_fl_ft{
	margin-bottom: 3%;
	display: none;
}

.index_chuheyuan_insights_fc_xiugai_fl_list.active .index_chuheyuan_insights_fc_xiugai_fl_list_fl_ft{
	display: block;
}

.index_chuheyuan_insights_fc_xiugai_fl_list_fl_ft h4{
	font-size: 17px;
	line-height: 1.5;
	color: #000000;
}

.index_chuheyuan_insights_fc_xiugai_fl_list_fl_fb h3{
	font-size: 1.2rem;
	line-height: 1.5;
	color: #000000;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_chuheyuan_insights_fc_xiugai_fl_list.active .index_chuheyuan_insights_fc_xiugai_fl_list_fl_fb h3{
	font-size: 1.5rem;
}

.index_chuheyuan_insights_fc_xiugai_fl_list_fr{
	display: none;
}

.index_chuheyuan_insights_fc_xiugai_fl_list.active .index_chuheyuan_insights_fc_xiugai_fl_list_fr{
	display: block;
}

.index_chuheyuan_insights_fc_xiugai_fr{
	width: 40%;
}

.index_chuheyuan_insights_fc_xiugai_fr_list{
	display: none;
}

.index_chuheyuan_insights_fc_xiugai_fr_list.active{
	display: block;
}

.index_chuheyuan_insights_fc_xiugai_fr_list .img_con{
	padding: 35% 0;
}


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

	.index_chuheyuan_insights_fc_xiugai_fl_list.active .index_chuheyuan_insights_fc_xiugai_fl_list_fl_fb h3{
		font-size: 24px;
	}
}

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

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

	.index_chuheyuan_insights_fc_xiugai_fl_list.active .index_chuheyuan_insights_fc_xiugai_fl_list_fl_fb h3{
		font-size: 22px;
	}
}

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

	.index_chuheyuan_insights_fc_xiugai_fl_list.active .index_chuheyuan_insights_fc_xiugai_fl_list_fl_fb h3{
		font-size: 20px;
	}
}

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

	.index_chuheyuan_insights_fc_xiugai{
		margin: 0 0 0;
	}

	.index_chuheyuan_insights_fc_xiugai_fl_list{
		padding: 20px 0;
	}

	.index_chuheyuan_insights_fc_xiugai_fl_list .index_chuheyuan_insights_fc_xiugai_fl_list_fl_ft{
		margin-bottom: 5px;
	}

	.index_chuheyuan_insights_fc_xiugai_fl_list_fl_ft{
		display: block;
	}

	.index_chuheyuan_insights_fc_xiugai_fl_list_fr{
		display: block;
	}

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

@media(max-width:768px){
	.index_chuheyuan_insights_fc_xiugai_fl_list_fl{
		width: 100%;
		padding-right: 0;
		margin-right: 0;
	}

	.index_chuheyuan_insights_fc_xiugai_fl_list_fr{
		margin-top: 10px;
	}
}

/*成功案例*/
.index_chuheyuan_success_cases_fb{
	margin-top: 3.5%;
	position: relative;
	padding: 0 7%;
}

.index_chuheyuan_success_cases_fb_btnl,.index_chuheyuan_success_cases_fb_btnr{
	width: 44px;
	height: 44px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	border: 1px solid #000000;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 16px;
	border-radius: 50%;
	background-color: #000000;
	cursor: pointer;
}

.index_chuheyuan_success_cases_fb_btnl{
	left: 0;
	background-image: url(../images/img/index_chuheyuan_success_cases_fb_btnl.png);
}

.index_chuheyuan_success_cases_fb_btnr{
	right: 0;
	background-image: url(../images/img/index_chuheyuan_success_cases_fb_btnr.png);
}

.index_chuheyuan_success_cases_fb_con{
	overflow: hidden;
}

.index_chuheyuan_success_cases_fb_li{
	cursor: pointer;
}

.index_chuheyuan_success_cases_fb_li a{
	display: block;
	position: relative;
}

.index_chuheyuan_success_cases_fb_li .img{
	overflow: hidden;
	border: 1px solid #eee;
}

.index_chuheyuan_success_cases_fb_li .img_con{
	padding: 60% 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_chuheyuan_success_cases_fb_li .wz{
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 15px;
	line-height: 1.6;
	padding: 3.5% 5px;
	color: #fff;
	text-align: center;
	background: rgba(0,0,0,.7);
}

.index_chuheyuan_success_cases_fb_li:hover .img_con{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

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

	.index_chuheyuan_success_cases_fb_btnl,.index_chuheyuan_success_cases_fb_btnr{
		width: 40px;
		height: 40px;
		background-size: 16px;
	}
}

@media(max-width:768px){
	.index_chuheyuan_success_cases_fb{
		padding: 0 45px;
		margin-top: 15px;
	}

	.index_chuheyuan_success_cases_fb_btnl,.index_chuheyuan_success_cases_fb_btnr{
		width: 36px;
		height: 36px;
		background-size: 14px;
	}

	.index_chuheyuan_success_cases_fb_li .wz{
		padding: 8px 5px;
	}
}


@media(max-width:468px){
	.index_chuheyuan_success_cases_fb{
		padding: 0 40px;
		margin-top: 15px;
	}

	.index_chuheyuan_success_cases_fb_btnl,.index_chuheyuan_success_cases_fb_btnr{
		width: 34px;
		height: 34px;
		background-size: 14px;
	}
}

/*2025-03-27*/
/*公司优势*/
.index_chuheyuan_corporate_advantages{
	background: #f9f9f9;
	padding: 4% 0;
}

.index_chuheyuan_corporate_advantages_fb{
	margin-top: 4%;
}

.index_chuheyuan_corporate_advantages_fb_li{
	width: 23.5%;
	margin-right: 2%;
	background-color: #ffffff;
	padding: 3.5% 1.9%;
	box-shadow: 0 0 10px rgba(0,0,0,.05);
}

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

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

.index_chuheyuan_corporate_advantages_fb_li .img{
	width: 8rem;
	height: 8rem;
	margin: 0 auto;
	background-color: #141414;
	position: relative;
	border-radius: 50%;
}

.index_chuheyuan_corporate_advantages_fb_li .img img{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 52%;
	-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_chuheyuan_corporate_advantages_fb_li .wz{
	text-align: center;
	margin-top: 10%;
}

.index_chuheyuan_corporate_advantages_fb_li .wz .wz_ft{
	font-size: 1.4rem;
	line-height: 1.5;
	color: #333333;
}

.index_chuheyuan_corporate_advantages_fb_li .wz .wz_fb{
	font-size: 17px;
	line-height: 1.5;
	color: #999999;
	margin-top: 8px;
}

@media(max-width:1280px){
	.index_chuheyuan_corporate_advantages_fb_li .wz .wz_ft{
		font-size: 22px;
	}
}

@media(max-width:1200px){
	.index_chuheyuan_corporate_advantages_fb_li .wz .wz_ft{
		font-size: 20px;
	}

	.index_chuheyuan_corporate_advantages_fb_li .wz .wz_fb{
		font-size: 16px;
	}
}

@media(max-width:991px){
	.index_chuheyuan_corporate_advantages_fb_li{
		width: 49%;
	}

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

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

	.index_chuheyuan_corporate_advantages_fb_li .wz{
		margin-top: 13px;
	}
}

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

	.index_chuheyuan_corporate_advantages_fb{
		margin-top: 20px;
	}

	.index_chuheyuan_corporate_advantages_fb_li{
		padding: 20px 15px;
	}

	.index_chuheyuan_corporate_advantages_fb_li .img{
		width: 60px;
		height: 60px;
	}

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

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

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

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

/*服务流程*/
.index_chuheyuan_service_process{
	padding: 2% 0 4.5%;
	background: #f9f9f9;
}

.index_chuheyuan_service_process_fb{
	margin-top: 2.5%;
	padding: 6% 0;
	background-image: url(../images/img/index_chuheyuan_service_process_bj.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.index_chuheyuan_service_process_fb_ul{
	overflow: hidden;
}

.index_chuheyuan_service_process_fb_li{
	width: 23.5%;
	margin-right: 2%;
}

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

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

.index_chuheyuan_service_process_fb_li .img{
	width: 8rem;
	height: 5rem;
	margin: 0 auto;
	position: relative;
}

.index_chuheyuan_service_process_fb_li .img img{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 55%;
	-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_chuheyuan_service_process_fb_li .wz{
	margin-top: 5%;
}

.index_chuheyuan_service_process_fb_li .wz .wz_ft{
	font-size: 1.4rem;
	line-height: 1.5;
	color: #333333;
	text-align: center;
}

@media(max-width:1280px){
	.index_chuheyuan_service_process_fb_li .wz .wz_ft{
		font-size: 22px;
	}
}

@media(max-width:1200px){
	.index_chuheyuan_service_process_fb_li .wz .wz_ft{
		font-size: 20px;
	}
}

@media(max-width:991px){
	.index_chuheyuan_service_process_fb_li{
		width: 49%;
	}

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

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

	.index_chuheyuan_service_process_fb_li .wz{
		margin-top: 5px;
	}
}

@media(max-width:768px){
	.index_chuheyuan_service_process_fb_li .wz .wz_ft{
		font-size: 18px;
	}

	.index_chuheyuan_service_process{
		padding: 0 0 30px;
	}

	.index_chuheyuan_service_process_fb{
		margin-top: 20px;
		padding: 0;
		background: none;
	}

	.index_chuheyuan_service_process_fb_li .img{
		width: 80px;
		height: 80px;
	}
}

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

/*客户案例按钮*/
.page_chuheyuan_odi_customer_case_see_more_btn{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	margin-top: 3%;
}

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

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













