/*初始化样式*/
* {
	-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: #01579b;
}

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;
}

/**/
.max1760 {
	max-width: 1860px;
	margin: 0 auto;
	padding: 0 50px;
}

.max1460 {
	max-width: 1560px;
	margin: 0 auto;
	padding: 0 50px;
}

.page_con_zhuti {
	max-width: 1560px;
	margin: 0 auto;
	padding: 0 50px;
}

@media(max-width:1280px) {
	.max1760 {
		padding: 0 30px;
	}

	.max1460 {
		padding: 0 30px;
	}

	.page_con_zhuti {
		padding: 0 30px;
	}
}

@media(max-width:991px) {
	.max1760 {
		padding: 0 20px;
	}

	.max1460 {
		padding: 0 20px;
	}

	.page_con_zhuti {
		padding: 0 20px;
	}

	body {
		padding-top: 61px;
	}
}

@media(max-width:768px) {
	.max1760 {
		padding: 0 15px;
	}

	.max1460 {
		padding: 0 15px;
	}

	.page_con_zhuti {
		padding: 0 15px;
	}
}

/*scrollbar*/
body::-webkit-scrollbar {
	width: 4px;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

body::-webkit-scrollbar-track {
	background: #9f9f9f;
	-webkit-border-radius: 0;
}

body::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb:vertical {
	background: #01579b;
	border: none;
	-webkit-border-radius: 0;
}

body::-webkit-scrollbar-thumb:vertical:active {
	background: #01579b;
	border: none;
	-webkit-border-radius: 0;
}

.section .fp-tableCell {
	padding-top: 80px;
}

.section0 .fp-tableCell,.section2 .fp-tableCell{
	padding-top: 0!important;
}

.fp-auto-height .fp-tableCell {
	padding-top: 0!important;
}

@media (max-width: 991px) {
	.section .fp-tableCell {
		padding-top: 61px;
	}
}

/*翻屏导航*/
#full_menu {
	position: fixed;
	right: 30px;
	top: 50%;
	list-style-type: none;
	z-index: 999;
	display: none;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

#full_menu li {
	display: block;
	margin: 3px 0;
	position: relative;
}

#full_menu li a {
	display: block;
	position: relative;
	font-size: 0;
}

#full_menu li span {
	padding-right: 25px;
	font-size: 13px;
	color: rgba(0, 0, 0, 0.6);
	display: block;
	width: 85px;
	height: 22px;
	line-height: 22px;
	text-align: right;
	opacity: 0;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

#full_menu li .nav_xiantiao {
	width: 12px;
	height: 2px;
	background: #ffd181;
	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%);
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

#full_menu li.active span {
	opacity: 1;
	color: #ffd181;
}

#full_menu li:hover span {
	opacity: 1;
	color: #ffd181;
}

#full_menu li.active .nav_xiantiao {
	width: 20px;
	background: #ffd181;
}

@media(max-width:1630px) {
	#full_menu {
		right: 10px;
	}

	#full_menu li span {
		width: 0;
		font-size: 0;
		padding-right: 20px;
	}
}

@media(max-width:1280px) {
	#full_menu {
		right: 5px;
	}
}

@media(max-width:991px) {
	#full_menu li span {
		height: 15px;
	}

	#full_menu li .nav_xiantiao {
		width: 6px;
	}

	#full_menu li.active .nav_xiantiao {
		width: 10px;
	}

	#full_menu li span {
		padding-right: 10px;
	}
}
/*头部*/
#pc_header {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 999;
	background: #fff;
	box-shadow: 0 1px 1px rgba(0,0,0,.08);
	-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: 15%;
	max-width: 210px;
}

.pc_logo img {
	max-width: 100%;
}

.pc_nav {
	width: 80%;
	/*max-width: 1200px;*/
	max-width: 1000px;
	padding-right: 240px;
	margin-right: -240px;
}

.pc_nav>ul {
	width: 100%;
}

.pc_nav>ul {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	-o-flex-wrap: nowrap;
	flex-wrap: nowrap;

	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	-o-align-content: center;
	align-content: center;
}

.pc_nav>ul>.pc_nav_li_www {
	width: 20%;
	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;
	padding: 0 5px;
	max-width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
}

.pc_nav>ul>.pc_nav_li_www>li>a .pc_nav_yiji_con{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	position: relative;
}

.pc_nav>ul>.pc_nav_li_www>li>a .pc_nav_yiji_wenzi{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #646464;
	-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>ul>.pc_nav_li_www>li>a .pc_nav_yiji_title{
	padding-right: 15px;
}

.pc_nav>ul>.pc_nav_li_www>li>a .pc_nav_yiji_jiantou{
	width: 9px;
	height: 80px;
	background-image: url(../images/img/top_header_nav_downbtn.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 9px;
	position: absolute;
	right: 0;
	top: 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>ul>.pc_nav_li_www>li:hover>a .pc_nav_yiji_jiantou{
	background-image: url(../images/img/top_header_nav_downbtn1.png);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.pc_nav>ul>.pc_nav_li_www>li>a::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background-image: linear-gradient(to right,#01579b,#267ec3);
	background-color: #01579b;
	-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-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: 170px;
	left: 50%;
	top: 80px;
	background: #fff;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate(-50%, 20px);
	-moz-transform: translate(-50%, 20px);
	-ms-transform: translate(-50%, 20px);
	-o-transform: translate(-50%, 20px);
	transform: translate(-50%, 20px);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.pc_nav>ul>.pc_nav_li_www>li:hover .pc_nav_erji_w {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.pc_nav>ul>.pc_nav_li_www>li:hover>a .pc_nav_yiji_wenzi,
.pc_nav>ul>.pc_nav_li_www>li.active>a .pc_nav_yiji_wenzi{
	color: #01579b;
}

.pc_nav_erji_li a {
	font-size: 15px;
	line-height: 1.8;
	padding: 5px;
	color: #646464;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.pc_nav_erji_li a:hover {
	color: #01579b;
}

.pc_nav_right{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	position: relative;
	z-index: 10;
}

.pc_nav_right_fl{
	position: relative;
}

.pc_nav_right_fl_sou{
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #666;
	background: url(../images/img/top_header_nav_search.png) no-repeat center;
	background-size: 16px;
	cursor: pointer;
}

.pc_nav_right_fc{
	margin: 0 15px;
}

.pc_nav_right_fc_li a{
	display: block;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #666;
	font-size: 14px;
	line-height: 34px;
	color: #646464;
	text-align: center;
}

.pc_nav_right_fr_li a{
	display: block;
	width: 138px;
	border: 1px solid #666;
	font-size: 15px;
	line-height: 34px;
	color: #646464;
	border-radius: 25px;
	background-image: url(../images/img/top_header_nav_inquiry.png);
	background-repeat: no-repeat;
	background-position: left 15px center;
	background-size: 24px;
	padding-left: 50px;
}

.pc_sousuo2 {
	position: absolute;
	right: 0;
	top: 58px;
	width: 200px;
	z-index: 999;
	background: #01579b;
	display: none;
}

.pc_sousuo2 input {
	outline: none;
	line-height: 40px;
	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: 40px;
	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_xiala_product{
	position: fixed;
	z-index: -1;
	left: 50%;
	width: 100%;
	max-width: 1460px;
	top: 80px;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate(-50%, 20px);
	-moz-transform: translate(-50%, 20px);
	-ms-transform: translate(-50%, 20px);
	-o-transform: translate(-50%, 20px);
	transform: translate(-50%, 20px);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.pc_nav_xiala_product_fl{
	width: 64%;
	padding: 3.5% 4%;
}

.pc_nav_xiala_product_fl_li{
	width: 48%;
	margin-right: 4%;
	text-align: left;
}

.pc_nav_xiala_product_fl_li:nth-child(2n){
	margin-right: 0;
}

.pc_nav_xiala_product_fl_li:nth-child(n+3){
	margin-top: 15px;
}

.pc_nav_xiala_product_fl_ul_con{
	width: 100%;
	height: 100%;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_nav_xiala_product_fl_ul_con_nnn{
	width: 100%;
}

.pc_nav_xiala_product_fl_li_ft{
	font-size: 0;
	line-height: 1;
	padding-bottom: 12px;
	margin-bottom: 14px;
	border-bottom: 1px solid #e0e1e1;
}

.pc_nav_xiala_product_fl_li_ft a{
	font-size: 18px;
	line-height: 1.5;
	color: #01579b;
	font-weight: bold;
	max-width: 100%;
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pc_nav_xiala_product_fl_li_fb_li0{
	padding-left: 15px;
	position: relative;
}

.pc_nav_xiala_product_fl_ul{
	height: 100%;
	width: 100%;
}

.pc_nav_xiala_product_fl_li2_fb_li{
	width: 23.5%;
	margin-right: 2%;
}

.pc_nav_xiala_product_fl_li2{
	width: 100%;
	height: 100%;
	text-align: left;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_nav_xiala_product_fl_li2_fb{
	width: 100%;
}

.pc_nav_xiala_product_fl_li2_fb_li:nth-child(4n){
	margin-right: 0;
}

.pc_nav_xiala_product_fl_li2_fb_li:nth-child(n+5){
	margin-top: 12px;
}

.pc_nav_xiala_product_fl_li_fb_li0::before{
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	top: 10px;
	left: 0;
	background: #01579b;
	position: absolute;
}

.pc_nav_xiala_product_fl_li_fb_li0 a{
	font-size: 16px;
	line-height: 25px;
	color: #666;
	-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_xiala_product_fl_li_fb_li0 a:hover{
	color: #01579b;
}

.pc_nav_xiala_product_fl_li_fb_li{
	width: 48%;
	margin-right: 4%;
}

.pc_nav_xiala_product_fl_li_fb_li:nth-child(2n){
	width: 48%;
	margin-right: 0;
}

.pc_nav_xiala_product_fl_li_fb_li:nth-child(n+3){
	margin-top: 10px;
}

.pc_nav_xiala_product_fr{
	width: 36%;
	background: #f9f9f9;
	padding: 3.5% 3.5% 2%;
}

.pc_nav_xiala_product_fr_con{
	overflow: hidden;
}

.pc_nav_xiala_product_fr_li{
	width: 100%;
}

.pc_nav_xiala_product_fr .img{
	overflow: hidden;
	border-radius: 8px;
}


.pc_nav_xiala_product_fr .img .img_con{
	padding: 31.25% 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;
}

.pc_nav_xiala_product_fr .wz{
	font-size: 15px;
	line-height: 1.8;
	color: #666;
	margin-top: 5%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pc_nav>ul>.pc_nav_li_www>li:hover .pc_nav_xiala_product {
	opacity: 1;
	z-index: 999;
	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_xiala_product_fr_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);
}

.pc_nav_xiala_product_fr_li:hover .wz{
	color: #01579b;
}

.pc_nav_xiala_product_fr_yuandian{
	margin-top: 10px;
}

.pc_nav_xiala_product_fr_yuandian span{
	width: 8px;
	height: 8px;
	background: rgba(0,0,0,.2);
	opacity: 1;
	margin: 0 3px!important;
}

.pc_nav_xiala_product_fr_yuandian span.swiper-pagination-bullet-active{
	background: #01579b;
}

@media(max-width:1280px){
	.pc_nav{
		padding-right: 210px;
		margin-right: -210px;
	}

	.pc_nav_right_fc{
		margin: 0 10px;
	}

	.pc_nav>ul>.pc_nav_li_www>li>a{
		font-size: 16px;
	}

	.pc_nav_right_fl_sou{
		width: 32px;
		height: 32px;
		background-size: 15px;
	}

	.pc_nav_right_fc_li a{
		width: 32px;
		height: 32px;
		font-size: 13px;
		line-height: 30px;
	}

	.pc_nav_right_fr_li a{
		font-size: 14px;
		width: 125px;
		line-height: 30px;
		padding-left: 45px;
		background-size: 22px;
	}

	.pc_nav_xiala_product_fl_li_fb_li0 a{
		font-size: 15px;
	}

	.pc_nav_xiala_product_fl_li_ft a{
		font-size: 17px;
	}
}

/*首页banner*/
.index_banner {
	position: relative;
	overflow: hidden;
}

.index_banner img {
	width: 100%;
	height: 100vh;
	opacity: 0;
	display: block;
}

/*视频*/
.zheshishipinya {
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
	z-index: 5;
	left: 0;
	top: 0;
}
.canvas_banner{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-object-fit: cover;
	-moz-object-fit: cover;
	-ms-object-fit: cover;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: 5;
}

.banneryd1 {
	font-size: 0;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 3% !important;
	z-index: 99;
}

.banneryd1 span {
	width: 14px;
	height: 14px;
	background: #fff;
	opacity: 1;
	border-radius: 50% !important;
	margin: 0 8px !important;
	position: relative;
	overflow: hidden;
}

.banneryd1 span.swiper-pagination-bullet-active{
	background: #01579b;
}

@media(max-width:768px) {
	.banneryd1 {
		bottom: 15px!important;
	}

	.banneryd1 span {
		width: 10px;
		height: 10px;
		margin: 0 4px !important;
	}
}

/*关于我们*/
.index_cangshi_about{
	padding: 3% 0;
}

.index_cangshi_about_ft{
	/*padding-right: 8%;*/
	padding-right: 0;
	text-align: center;
}

.index_cangshi_about_ft h3{
	font-size: 2.1rem;
	line-height: 1.5;
	color: #fff;
	text-align: center;
}

.index_cangshi_about_ft h4{
	font-size: 1.8rem;
	line-height: 1.5;
	color: #fff;
}

.index_cangshi_about_fb{
	margin-top: 3%;
}

.index_cangshi_about_fb a{
	display: block;
	width: 3.4rem;
	height: 3.4rem;
	border-radius: 50%;
	background-image: linear-gradient(to right,#01579b,#267ec3);
	background-color: #01579b;
	position: relative;
}

.index_cangshi_about_fb a::before{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 9px;
	height: 16px;
	background-image: url(../images/img/index_about_btnr.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

/*修改2025-03-17*/
.index_cangshi_about_fb_xiugai{
	margin-top: 3%;
}

.index_cangshi_about_fb_xiugai_li{
	width: 23.5%;
	margin-right: 2%;
}

.index_cangshi_about_fb_xiugai_li:nth-child(4n){
	margin-right: 0;
}

.index_cangshi_about_fb_xiugai_li .img{
	width: 4.25rem;
	margin: 0 auto;
}

.index_cangshi_about_fb_xiugai_li .img img{
	width: 100%;
}

.index_cangshi_about_fb_xiugai_li .wz{
	text-align: center;
	margin-top: 5%;
}

.index_cangshi_about_fb_xiugai_li .wz_ft{
	font-size: 1.5rem;
	line-height: 1.5;
	color: #fff;
	position: relative;
}

.index_cangshi_about_fb_xiugai_li .wz_ft::after{
	content: '';
	display: block;
	width: 25px;
	height: 2px;
	margin: 5% auto;
	background: rgba(255,255,255,0.8);
}

.index_cangshi_about_fb_xiugai_li .wz_fb{
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
}

@media(max-width:1080px){
	.index_cangshi_about_fb_xiugai_li .wz_ft{
		font-size: 20px;
	}

	.index_cangshi_about_fb_xiugai_li .img{
		width: 65px;
	}
}

@media(max-width:991px){
	.index_cangshi_about_fb_xiugai_li .wz_ft{
		font-size: 18px;
	}
}

@media(max-width:768px){
	.index_cangshi_about_fb_xiugai{
		margin-top: 15px;
	}

	.index_cangshi_about_fb_xiugai_li{
		width: 49%;
	}

	.index_cangshi_about_fb_xiugai_li:nth-child(2n){
		margin-right: 0;
	}

	.index_cangshi_about_fb_xiugai_li:nth-child(n+3){
		margin-top: 2%;
	}

	.index_cangshi_about_fb_xiugai_li .img{
		width: 50px;
	}

	.index_cangshi_about_fb_xiugai_li .wz_ft::after{
		margin: 7px auto;
	}

	.index_cangshi_about_fb_xiugai_li .wz_ft{
		font-size: 17px;
	}

	.index_cangshi_about_fb_xiugai_li .wz_fb{
		font-size: 15px;
	}
}





















@media(max-width:1280px){
	.index_cangshi_about_fb a{
		width: 55px;
		height: 55px;
	}

	.index_cangshi_about_fb a::before{
		width: 8px;
		height: 14px;
	}
}

@media(max-width:991px){
	.index_cangshi_about_ft{
		/*padding-right: 5px;*/
		padding-right: 0;
	}

	.index_cangshi_about_ft h3{
		font-size: 24px;
	}

	.index_cangshi_about_ft h4{
		font-size: 22px;
		margin-top: 5px;
	}

	.index_cangshi_about_fb a{
		width: 45px;
		height: 45px;
	}

	.index_cangshi_about_fb a::before{
		width: 7px;
		height: 13px;
	}
}

@media(max-width:768px){
	.index_cangshi_about{
		padding: 25px 0;
	}

	.index_cangshi_about_ft h3{
		font-size: 22px;
	}

	.index_cangshi_about_ft h4{
		font-size: 20px;
		margin-top: 2px;
	}

	.index_cangshi_about_fb{
		margin-top: 20px;
	}
}

@media(max-width:468px){
	.index_cangshi_about{
		padding: 20px 0;
	}

	.index_cangshi_about_ft{
		padding-right: 0;
	}

	.index_cangshi_about_ft h3{
		font-size: 20px;
	}

	.index_cangshi_about_ft h4{
		font-size: 18px;
	}

	.index_cangshi_about_fb{
		margin-top: 15px;
	}
}

/*新闻中心*/
.index_cangshi_news{
	padding: 3% 0;
}

.index_cangshi_news_ft{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_cangshi_news_ft_fl{
	width: 80%;
}

.index_cangshi_news_ft_fl h3{
	font-size: 2.1rem;
	line-height: 1.25;
	color: #333;
}

.index_cangshi_news_ft_fl h4{
	font-size: 18px;
	line-height: 1.5;
	color: #666;
	margin-top: 5px;
}

.index_cangshi_news_ft_fr{
	overflow: hidden;
}

.index_cangshi_news_ft_fr a{
	display: block;
	float: left;
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	background-image: linear-gradient(to right,#01579b,#267ec3);
	background-color: #01579b;
	padding: 0.7rem 2.2rem;
	border-radius: 5px;
}

.index_cangshi_news_ft_fr_2{
	margin-top: 3%;
	display: none;
}

.index_cangshi_news_ft_fr_2 .index_cangshi_news_ft_fr{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.index_cangshi_news_fb{
	margin-top: 3%;
}

.index_cangshi_news_fb_con{
	overflow: hidden;
	padding: 8px;
	margin: -8px;
}

.index_cangshi_news_fb_li{
	background: #fff;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 0 5px rgba(140,140,140,.2);
}

.index_cangshi_news_fb_li .img_www{
	position: relative;
}

.index_cangshi_news_fb_li_more{
	position: absolute;
	right: 10%;
	bottom: -1.5rem;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background-image: linear-gradient(to right,#01579b,#267ec3);
	background-color: #01579b;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_cangshi_news_fb_li_more::before{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 9px;
	height: 16px;
	background-image: url(../images/img/index_about_btnr.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-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_cangshi_news_fb_li:hover .index_cangshi_news_fb_li_more{
	opacity: 1;
}

.index_cangshi_news_fb_li .img{
	overflow: hidden;
	padding: 5% 0;
	background-color: #f8f8f8!important;
}

.index_cangshi_news_fb_li .img .img_con{
	padding: 29.3% 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_cangshi_news_fb_li:hover .img .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_cangshi_news_fb_li .wz{
	padding: 8%;
}

.index_cangshi_news_fb_li .wz .wz_riqi{
	font-size: 15px;
	line-height: 1.5;
	color: #01579b;
	font-family: Arial;
	font-weight: bold;
}

.index_cangshi_news_fb_li .wz h3{
	font-size: 18px;
	line-height: 1.5;
	color: #333;
	font-weight: bold;
	margin-top: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_cangshi_news_fb_yuandaohang{
	font-size: 0;
	margin-top: 3%;
	text-align: center;
	display: none;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 15px;
	z-index: 999;
}

.index_cangshi_news_fb_yuandaohang span{
	width: 7px;
	height: 7px;
	margin: 0 3px!important;
	background: rgba(255,255,255,.5);
	opacity: 1;
}

.index_cangshi_news_fb_yuandaohang span.swiper-pagination-bullet-active{
	background: #fff;
}

@media(max-width:1280px){
	.index_cangshi_news_ft_fr a{
		padding: 10px 34px;
	}

	.index_cangshi_news_fb_li_more{
		width: 55px;
		height: 55px;
		bottom: -27.5px;
	}

	.index_cangshi_news_fb_li_more::before{
		width: 8px;
		height: 14px;
	}
}

@media(max-width:991px){
	.index_cangshi_news_ft_fl h3{
		font-size: 26px;
	}

	.index_cangshi_news_ft_fl h4{
		font-size: 17px;
	}

	.index_cangshi_news_ft_fr a{
		padding: 9px 28px;
	}

	.index_cangshi_news_fb_li .wz h3{
		font-size: 17px;
	}

	.index_cangshi_news_fb_li_more{
		width: 45px;
		height: 45px;
		bottom: -22.5px;
	}

	.index_cangshi_news_fb_li_more::before{
		width: 7px;
		height: 13px;
	}
}

@media(max-width:768px){
	.index_cangshi_news{
		padding: 25px 0;
	}

	.index_cangshi_news_ft_fl{
		width: 100%;
		text-align: center;
	}

	.index_cangshi_news_ft_fl h3{
		font-size: 24px;
	}

	.index_cangshi_news_ft_fl h4{
		margin-top: 2px;
		font-size: 16px;
	}

	.index_cangshi_news_ft_fr_1{
		display: none;
	}

	.index_cangshi_news_fb{
		margin-top: 20px;
	}

	.index_cangshi_news_fb_li .wz{
		padding: 20px;
	}

	.index_cangshi_news_fb_li .wz h3{
		font-size: 16px;
	}

	.index_cangshi_news_fb_yuandaohang{
		display: block;
		margin-top: 20px;
	}

	.index_cangshi_news_ft_fr_2{
		display: block;
		margin-top: 20px;
	}

	.index_cangshi_news_ft_fr a{
		font-size: 15px;
		padding: 8px 25px;
	}
}

@media(max-width:468px){
	.index_cangshi_news{
		padding: 20px 0;
	}

	.index_cangshi_news_fb{
		margin-top: 15px;
	}

	.index_cangshi_news_fb_li .wz{
		padding: 15px;
	}

	.index_cangshi_news_fb_yuandaohang{
		margin-top: 15px;
	}

	.index_cangshi_news_ft_fr_2{
		margin-top: 15px;
	}
}

/*核心优势*/
.index_cangshi_advantage{
	padding: 3% 0;
}

.index_cangshi_advantage_ft{
	text-align: center;
}

.index_cangshi_advantage_ft h3{
	font-size: 2.1rem;
	line-height: 1.5;
	color: #fff;
}

.index_cangshi_advantage_ft h4{
	font-size: 2.1rem;
	line-height: 1.5;
	color: #fff;
}

.index_cangshi_advantage_fb{
	margin: 3% 0;
}

.index_cangshi_advantage_fb_li{
	width: 25%;
	padding: 0 5px;
	text-align: center;
}

.index_cangshi_advantage_fb_li .img{
	line-height: 3rem;
	height: 3rem;
}

.index_cangshi_advantage_fb_li .img img{
	max-width: 3rem;
	max-height: 3rem;
}

.index_cangshi_advantage_fb_li .wz{
	margin-top: 15px;
}

.index_cangshi_advantage_fb_li .index_cangshi_advantage_fb_li_title{
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	margin: 6% 0;
}

.index_cangshi_advantage_fb_li .index_cangshi_advantage_fb_li_wenzi{
	line-height: 1;
}

.index_cangshi_advantage_fb_li .index_cangshi_advantage_fb_li_wenzi_con{
	-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_cangshi_advantage_fb_li .index_cangshi_advantage_fb_li_wenzi .wenzi1{
	font-size: 2.6rem;
	line-height:1.1;
	color: #fff;
}

.index_cangshi_advantage_fb_li .index_cangshi_advantage_fb_li_wenzi .counter{
	font-size: 3.4rem;
	line-height: .8;
	color: #fff;
	font-family: Arial;
	font-weight: bold;
}

.index_cangshi_advantage_fb_2 .index_cangshi_news_ft_fr{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

@media(max-width:991px){
	.index_cangshi_advantage_ft h3{
		font-size: 24px;
	}

	.index_cangshi_advantage_ft h4{
		font-size: 24px;
	}

	.index_cangshi_advantage_fb_li .img{
		line-height: 45px;
		height: 45px;
	}

	.index_cangshi_advantage_fb_li .img img{
		max-width: 45px;
		max-height: 45px;
	}
}

@media(max-width:768px){
	.index_cangshi_advantage{
		padding: 25px 0;
	}

	.index_cangshi_advantage_ft h3{
		font-size: 22px;
	}

	.index_cangshi_advantage_ft h4{
		font-size: 22px;
	}

	.index_cangshi_advantage_fb{
		margin: 20px 0 25px;
	}

	.index_cangshi_advantage_fb_li{
		width:50%;
	}

	.index_cangshi_advantage_fb_li:nth-child(n+3){
		margin-top: 15px;
	}

	.index_cangshi_advantage_fb_li .img{
		line-height: 40px;
		height: 40px;
	}

	.index_cangshi_advantage_fb_li .img img{
		max-width: 40px;
		max-height: 40px;
	}

	.index_cangshi_advantage_fb_li .index_cangshi_advantage_fb_li_title{
		font-size: 16px;
		margin: 10px 0;
	}

	.index_cangshi_advantage_fb_li .index_cangshi_advantage_fb_li_wenzi .counter{
		font-size: 32px;
	}

	.index_cangshi_advantage_fb_li .index_cangshi_advantage_fb_li_wenzi .wenzi1{
		font-size: 24px;
	}
}

@media(max-width:468px){
	.index_cangshi_advantage{
		padding: 20px 0;
	}

	.index_cangshi_advantage_ft h3{
		font-size: 20px;
	}

	.index_cangshi_advantage_ft h4{
		font-size: 20px;
	}

	.index_cangshi_advantage_fb{
		margin: 15px 0 20px;
	}

	.index_cangshi_advantage_fb_li .index_cangshi_advantage_fb_li_wenzi .counter{
		font-size: 26px;
	}

	.index_cangshi_advantage_fb_li .index_cangshi_advantage_fb_li_wenzi .wenzi1{
		font-size: 20px;
	}
}


/*footer*/
.pc_footer1 {
	padding: 4% 0 30px;
	background: #323232;
}

.pc_footer1_con {
	position: relative;
}

.pc_footer1_fl{
	width: 33%;
}

.pc_footer1_fl_ft img{
	max-height: 38px;
}

.pc_footer1_fl_fc{
	margin: 30px 0;
}

.pc_footer1_fl_fc_li{
	padding-left: 30px;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 18px;
}

.pc_footer1_fl_fc_li,.pc_footer1_fl_fc_li a{
	font-size: 16px;
	line-height: 1.8;
	color: #9a9797;
}

.pc_footer1_fl_fc_li:nth-child(n+2){
	margin-top: 12px;
}

.pc_footer1_fl_fb_li{
	position: relative;
	float: left;
	cursor: pointer;
}

.pc_footer1_fl_fb_li:nth-child(n+2){
	margin-left: 20px;
}

.pc_footer1_fl_fb_li_ft{
	width: 24px;
	height: 24px;
	background-image: url(../images/img/footer_wechat.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 24px;
}

.pc_footer1_fl_fb_li_weixin_fb{
	width: 110px;
	position: absolute;
	z-index: -10;
	bottom: 30px;
	left: 0;
	padding: 6px;
	background: #fff;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.pc_footer1_fl_fb_li_weixin_fb:after {
	content: '';
	position: absolute;
	left: 7px;
	top: 100%;
	width: 0;
	height: 0;
	line-height: 0;
	font-size: 0;
	overflow: hidden;
	border-width: 5px;
	cursor: pointer;
	border-style: dashed dashed solid dashed;
	border-color: transparent transparent #fff transparent;
	border-top: none;
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-o-transform:rotate(180deg);
	transform:rotate(180deg);
}

.pc_footer1_fl_fb_li_weixin_fb img{
	width: 100%;
}

.pc_footer1_fl_fb_li:hover .pc_footer1_fl_fb_li_weixin_fb{
	opacity: 1;
	z-index: 10;
}

.pc_footer1_fr{
	width: 60%;
}

.pc_footer1_fr_li{
	max-width: 25%;
	padding: 0 5px;
}

.pc_footer1_fr_li_ft a{
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
}

.pc_footer1_fr_li_fb{
	margin-top: 25px;
}

.pc_footer1_fr_li_fb_li{
	font-size: 0;
	line-height: 1;
}

.pc_footer1_fr_li_fb_li:nth-child(n+2){
	margin-top: 17px;
}

.pc_footer1_fr_li_fb_li a{
	font-size: 16px;
	line-height: 1.5;
	color: #9a9797;
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pc_footer1_fr_li_fb_li a:hover{
	color: #fff;
}

.pc_footer2 {
	font-size: 15px;
	line-height: 1.8;
	color: #9a9797;
	background: #323232;
	border-top: 1px solid #3e3d3d;

}

.pc_footer2 a {
	color: #9a9797;
	-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_footer2_con {
	padding: 15px 0;
}

.pc_footer2 a:hover{
	color: #fff;
}

.pc_footer2_fl,.pc_footer2_fr{
	max-width: 49%;
}

@media(max-width:1280px){
	.pc_footer1_fr_li_ft a{
		font-size: 18px;
	}

	.pc_footer1_fl{
		width: 36%;
	}
}

@media(max-width:991px){
	.pc_footer1{
		padding: 30px 0;
	}

	.pc_footer1_fl_ft img{
		max-height: 30px;
	}

	.pc_footer1_fl_fc{
		margin: 25px 0;
	}

	.pc_footer1_fl{
		width: 100%;
	}

	.pc_footer1_fr{
		display: none;
	}

	.pc_footer2_fl,.pc_footer2_fr{
		max-width: 100%;
		width: 100%;
	}
}

@media(max-width:768px){
	.pc_footer1{
		padding: 25px 0;
	}

	.pc_footer1_fl_ft img{
		max-height: 25px;
	}

	.pc_footer1_fl_fc{
		margin: 20px 0;
	}

	.pc_footer1_fl_fc_li:nth-child(n+2){
		margin-top: 10px;
	}
}

@media(max-width:468px){
	.pc_footer1_fl_fc{
		margin: 15px 0;
	}

	.pc_footer1_fl_fc_li:nth-child(n+2){
		margin-top: 8px;
	}

	.pc_footer2_con{
		padding: 10px 0;
	}
}

/*公司简介*/
.ny_about_1_fb {
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.ny_about_1_fb_fl {
	width: 48%;
	overflow: hidden;
	border-radius: 10px;
}

.ny_about_1_fb_fl .img {
	overflow: hidden;
	cursor: pointer;
}

.ny_about_1_fb_fl img {
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ny_about_1_fb_fl .img:hover img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}

.ny_about_1_fb_fr {
	width: 48%;
}

.ny_about_1_fb_fr_ft {
	position: relative;
}

.ny_about_1_fb_fr_ft h3 {
	font-size: 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: 18px;
	line-height: 1.8;
	color: #646464;
	margin-top: 4%;
	font-weight: 300;
}

.ny_about_1_fb_fr_fc p:nth-child(n+2){
	margin-top: 2%;
}

.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;
	border: 1px solid rgba(0,0,0,0.1);
}

.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;
	}

	.ny_about_2_ft h3{
		font-size: 22px;
	}
}

@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;
	}
}

/*产品中心*/
.nybanner_wenzi{
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.nybanner_wenzi_ft{
	text-align: center;
}

.nybanner_wenzi_ft h3{
	font-size: 2.1rem;
	line-height: 1.2;
	color: #333;
}

.nybanner_wenzi_ft h4{
	font-size: 20px;
	line-height: 1.5;
	color: #333;
	font-weight: 300;
	margin: 2% 0 3%;
}

.nybanner_wenzi_fb_ul{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.nybanner_wenzi_fb_li a{
	display: block;
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	font-weight: 300;
	background-color: rgba(0,0,0,.7);
	padding: 12px 45px;
}

.nybanner_wenzi_fb_li a.active{
	background-color: #01579b;
	background-image: linear-gradient(to right,#01579b,#267ec3);
}

.page_product_nav_ul{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.page_product_nav_li{
	margin: 0 3px;
	position: relative;
	cursor: pointer;
}

.page_product_nav_li::before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #01579b;
	background-image: linear-gradient(to right,#01579b,#267ec3);
	-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;
}

.page_product_nav_li a{
	display: block;
	font-size: 22px;
	line-height: 1.5;
	color: #999;
	padding: 23px 25px;
	position: relative;
	-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;
}

.page_product_nav_li a::before {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 10px;
	background: #999;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_product_nav_li.active::before,.page_product_nav_li:hover::before{
	width: 100%;
}

.page_product_nav_li.active a,.page_product_nav_li:hover a{
	color: #333;
}

.page_product_nav_li.active a::before,.page_product_nav_li:hover a::before{
	background: #333;
}

.page_product_center_ft{
	background: #f8f8f8;
	padding: 4% 0;
}

.page_product_center_ft_con{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	position: relative;
}

.page_product_center_ft_not_images .page_product_center_ft_con{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.page_product_center_ft_con::before,.page_product_center_ft_con::after{
	content: '';
	width: 5%;
	height: 1px;
	background: #333;
	position: absolute;
	top: 50%;
	margin-top: -1px;
}

.page_product_center_ft_con::before{
	left: 26%;
}

.page_product_center_ft_con::after{
	right: 26%;
}

.page_product_center_ft_not_images .page_product_center_ft_con::before,.page_product_center_ft_not_images .page_product_center_ft_con::after{
	display: none;
}

.page_product_center_ft_ft{
	text-align: center;
	width: 25%;
}


.page_product_center_ft_not_images .page_product_center_ft_ft{
	width: 100%;
}

.page_product_center_ft_ft::before{
	content: '';
	display: none;
	width: 1px;
	height: 44px;
	background: #333;
	margin: 0 auto;
}

.page_product_center_ft_ft h3{
	font-size: 1.8rem;
	line-height: 1.2;
	color: #333;
	padding: 2.5% 8px;
	/* overflow: hidden; */
	/* text-overflow: ellipsis; */
	/* white-space: nowrap; */
}

.page_product_center_ft_ft_messages{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	width: 25%;
}

.page_product_center_ft_ft_messages a{
	display: block;
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	font-weight: 300;
	background-image: linear-gradient(to right,#01579b,#267ec3);
	background-color: #01579b;
	padding: 0.6rem 2rem;
	border-radius: 5px;
}

.page_product_center_ft_fb{
	width: 36%;
}

.page_product_center_ft_fb_li{
	margin-top: 3%;
	margin-top: 0!important;
}

.page_product_center_ft_fb .img img{
	width: 100%;
	max-width: 600px;
	display: block;
	margin: 0 auto;
}

.page_product_center_fc_ft{
	border-bottom: 1px solid #cfcfcf;
}

.page_product_center_fc_ft_nnn{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.page_product_center_fc_ft_ul{
	text-align: center;
	font-size: 0;
	width: auto;
	max-width: 100%;
	display: inline-block;
	overflow: hidden;
}

.page_product_center_fc_ft_li{
	margin: 0 10px;
	width: auto!important;
	padding: 22px 25px;
	position: relative;
	cursor: pointer;
	display: inline-block;
}

.page_product_center_fc_ft_li a{
	font-size: 18px;
	line-height: 1.5;
	color: #999;
	font-weight: bold;
	display: block;
}

.page_product_center_fc_ft_li::before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #01579b;
	background-image: linear-gradient(to right,#01579b,#267ec3);
	-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;
}

.page_product_center_fc_ft_li.active::before,.page_product_center_fc_ft_li:hover::before{
	width: 100%;
}

.page_product_center_fc_ft_li.active a,.page_product_center_fc_ft_li:hover a{
	color: #333;
}

.page_product_center_fc_fb{
	padding: 4% 0;
}

.page_product_center_fc_fb_li_li{
	width: 32%;
	margin-right: 2%;
	padding: 3.5% 2%;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_product_center_fc_fb_li_li:nth-child(3n){
	margin-right: 0;
}

.page_product_center_fc_fb_li_li:nth-child(n+4){
	margin-top: 2%;
}

.page_product_center_fc_fb_li_li_img{
	width: 72px;
}

.page_product_center_fc_fb_li_li_img img{
	width: 100%;
}

.page_product_center_fc_fb_li_li_wz{
	width: 95%;
	padding-left: 72px;
	margin-left: -72px;
}

.page_product_center_fc_fb_li_li_wz_ft{
	font-size: 20px;
	line-height: 1.5;
	color: #333;
	font-weight: bold;
}

.page_product_center_fc_fb_li_li_wz_fb{
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	margin-top: 8px;
}

.page_product_center_fc_fb_li_li::before{
	content: '';
	position: absolute;
	left: 0;
	height: 100%;
	width: 8px;
	background: linear-gradient(to right,#01579b,#267ec3);
	opacity: 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 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;
}

.page_product_center_fc_fb_li_li:hover::before{
	opacity: 1;
}

.page_product_center_fc_fb_li_li:hover{
	box-shadow: 0px 5px 20px 6px rgba(127,127,127,.15);
}

.page_product_center_fb{
	padding: 4% 0;
	background: #fbfbfd;
}

.page_product_center_fb_fl{
	font-size: 1.8rem;
	line-height: 1.3;
	color: #333;
	text-align: center;
	width: 20%;
}

.page_product_center_fb_fr{
	width: 75%;
}

.page_product_center_fb_fr_li{
	text-align: center;
	width: 20%;
}

.page_product_center_fb_fr_li:nth-child(n+6){
	margin-top: 10px;
}

.page_product_center_fb_fr_li_con{
	width: 100%;
	max-width: 130px;
	margin: 0 auto;
	cursor: pointer;
}

.page_product_center_fb_fr_li .img{
	width: 130px;
	height: 130px;
	position: relative;
	margin: 0 auto;
	border: 3px solid rgba(0,0,0,0);
	border-radius: 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;
}

.page_product_center_fb_fr_li .img img{
	max-width: 56px;
	max-height: 56px;
	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%);
}

.page_product_center_fb_fr_li .wz{
	font-size: 18px;
	line-height: 1.5;
	color: #666;
	font-weight: bold;
	margin-top: 10px;
}

.page_product_center_fb_fr_li_con:hover .img{
	border-color: #267ec3;
}

@media(max-width:1366px){
	.page_product_center_fc_fb_li_li_wz_ft{
		font-size: 18px;
	}

	.page_product_center_fc_fb_li_li_img{
		width: 66px;
	}

	.page_product_center_fc_fb_li_li_wz{
		padding-left: 66px;
		margin-left: -66px;
	}
}

@media(max-width:1280px){
	.nybanner_wenzi_ft h4{
		font-size: 18px;
	}

	.nybanner_wenzi_fb_li a{
		font-size: 17px;
		padding: 10px 40px;
	}

	.page_product_nav_li a{
		font-size: 20px;
		padding: 18px 25px;
	}

	.page_product_center_ft_ft::before{
		height: 35px;
	}

	.page_product_center_ft_ft h3{
		font-size: 26px;
	}

	.page_product_center_ft_ft_messages a{
		padding: 10px 30px;
	}

	.page_product_center_fc_ft_li{
		padding: 18px 20px;
	}

	.page_product_center_fc_ft_li a{
		font-size: 17px;
	}

	.page_product_center_fc_fb_li_li_wz_ft{
		font-size: 17px;
	}

	.page_product_center_fc_fb_li_li_img{
		width: 55px;
	}

	.page_product_center_fc_fb_li_li_wz{
		padding-left: 55px;
		margin-left: -55px;
	}

	.page_product_center_fc_fb_li_li_wz_fb{
		margin-top: 5px;
	}

	.page_product_center_fb_fl{
		font-size: 26px;
	}

	.page_product_center_fb_fr_li .wz{
		font-size: 17px;
	}

	.page_product_center_fb_fr_li .img{
		width: 120px;
		height: 120px;
	}

	.page_product_center_fc_fb_li_li::before{
		width: 6px;
	}
}

@media(max-width:991px){
	.nybanner_wenzi_ft h3{
		font-size: 26px;
	}

	.nybanner_wenzi_ft h4{
		font-size: 17px;
	}

	.nybanner_wenzi_fb_li a{
		font-size: 16px;
		padding: 10px 35px;
	}

	.page_product_nav{
		display: none;
	}

	.page_product_center_ft_ft h3{
		font-size: 23px;
	}

	.page_product_center_ft_ft::before{
		height: 30px;
	}

	.page_product_center_ft_ft_messages a{
		padding: 9px 28px;
	}

	.page_product_center_fc_ft_li{
		padding: 15px 20px;
	}

	.page_product_center_fc_fb_li_li{
		padding: 30px 20px;
	}

	.page_product_center_fc_fb_li_li{
		width: 49%;
	}

	.page_product_center_fc_fb_li_li:nth-child(3n){
		margin-right: 2%;
	}

	.page_product_center_fc_fb_li_li:nth-child(2n){
		margin-right: 0;
	}

	.page_product_center_fc_fb_li_li:nth-child(n+3){
		margin-top: 2%;
	}

	.page_product_center_fc_fb_li_li::before{
		width: 5px;
	}

	.page_product_center_fb_fl{
		font-size: 24px;
	}

	.page_product_center_fb_fr_li .img{
		width: 100px;
		height: 100px;
	}
	
	.page_product_center_fb_fr_li .img img{
		max-width: 45px;
		max-height: 45px;
	}
}

@media(max-width:768px){
	.nybanner_wenzi_ft h3{
		font-size: 24px;
	}

	.nybanner_wenzi_ft h4{
		margin: 10px 0 15px;
		font-size: 16px;
	}

	.nybanner_wenzi_fb_li a{
		padding: 9px 25px;
	}

	.page_product_center_ft{
		padding: 30px 0;
	}

	.page_product_center_ft_ft,.page_product_center_ft_fb,.page_product_center_ft_ft_messages{
		width: 100%;
	}

	.page_product_center_ft_ft_messages{
		margin-top: 10px;
	}

	.page_product_center_ft_con::before,.page_product_center_ft_con::after{
		display: none;
	}

	.page_product_center_ft_ft::before{
		height: 25px;
	}

	.page_product_center_ft_ft h3{
		padding: 10px 5px;
		font-size: 22px;
	}

	.page_product_center_ft_ft_messages a{
		padding: 8px 25px;
		font-size: 15px;
	}

	.page_product_center_ft_fb_li{
		margin-top: 20px;
	}

	.page_product_center_fc_ft_li{
		padding: 12px 15px;
	}

	.page_product_center_fc_ft_li a{
		font-size: 16px;
	}

	.page_product_center_fc_fb{
		padding: 30px 0;
	}

	.page_product_center_fc_fb_li_li_img{
		width: 50px;
	}

	.page_product_center_fc_fb_li_li_wz{
		padding-left: 50px;
		margin-left: -50px;
	}

	.page_product_center_fc_fb_li_li_wz_ft{
		font-size: 16px;
	}

	.page_product_center_fc_fb_li_li_wz_fb{
		font-size: 15px;
	}

	.page_product_center_fb_fl{
		font-size: 22px;
	}

	.page_product_center_fb{
		padding: 30px 0;
	}

	.page_product_center_fb_fl{
		width: 100%;
		text-align: center;
	}

	.page_product_center_fb_fr{
		width: 100%;
		margin-top: 20px;
	}

	.page_product_center_fb_fr_li{
		width: 50%;
	}

	.page_product_center_fb_fr_li:nth-child(n+3){
		margin-top: 10px;
	}

	.page_product_center_fb_fr_li .wz{
		font-size: 16px;
	}

	.page_product_center_fb_fr_li .img{
		width: 80px;
		height: 80px;
	}

	.page_product_center_fb_fr_li .img img{
		max-width: 40px;
		max-height: 40px;
	}
}

@media(max-width:468px){
	.nybanner_wenzi_fb_li a{
		font-size: 15px;
		padding: 8px 15px;
	}

	.page_product_center_ft{
		padding: 25px 0;
	}

	.page_product_center_fc_ft_li{
		padding: 13px 6px;
		margin: 0 3px;
	}

	.page_product_center_ft_fb_li{
		margin-top: 17px;
	}

	.page_product_center_fc_ft_li a{
		font-size: 15px;
	}

	.page_product_center_fc_fb{
		padding: 25px 0;
	}

	.page_product_center_fc_fb_li_li{
		width: 100%;
		margin-right: 0!important;
		padding: 25px 15px;
		box-shadow: 0px 5px 20px 6px rgba(127,127,127,.15);
		-webkit-justify-content: center;
		-moz-justify-content: center;
		-ms-justify-content: center;
		-o-justify-content: center;
		justify-content: center;
	}

	.page_product_center_fc_fb_li_li:nth-child(n+2){
		margin-top: 15px;
	}

	.page_product_center_fc_fb_li_li::before{
		opacity: 1;
		width: 4px;
	}

	.page_product_center_fc_fb_li_li_wz{
		width: 100%;
		padding-left: 0;
		margin-left: 0;
		margin-top: 10px;
		text-align: center;
	}

	.page_product_center_fb{
		padding: 25px 0;
	}

	.page_product_center_fb_fr{
		margin-top: 15px;
	}

	.page_product_center_fb_fr_li .img{
		border-width: 2px;
		border-color: #267ec3;
	}

	.page_product_center_fb_fr_li .wz{
		font-size: 15px;
	}
}

/*公司简介*/
.page_about_company_profile{
	padding: 4.5% 0;
	background: url(../images/img/page_about_company_profile_bj.jpg) no-repeat center;
	background-size: cover;
	background: none;
}

.page_about_company_profile_ft{
	font-size: 17px;
	line-height: 1.7;
	color: #666;
	margin: 0 auto;
}

.page_about_company_profile_ft p:nth-child(n+2){
	margin-top: 10px;
}

.page_about_company_profile_fb{
	margin-top: 5%;
}

.page_about_company_profile_fb_nnn{
	padding: 0 25px;
	position: relative;
}

.page_about_company_profile_fb_ul{
	overflow: hidden;
}

.page_about_company_profile_fb_li{
	text-align: center;
}

.page_about_company_profile_fb_li_ft{
	font-size: 2.2rem;
	line-height: 1.5;
	color: #01579b;
	background-image: -webkit-linear-gradient(left,#01579b,#267ec3);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.page_about_company_profile_fb_li_fb{
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	margin-top: 10px;
}

.page_about_company_profile_fb_navigation_prevel,.page_about_company_profile_fb_navigation_nextel{
	position: absolute;
	top: 50%;
	width: 15px;
	height: 27px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	cursor: pointer;
}

.page_about_company_profile_fb_navigation_prevel{
	background-image: url(../images/img/page_about_company_profile_arrow_left.png);
	left: 0;
}

.page_about_company_profile_fb_navigation_nextel{
	background-image: url(../images/img/page_about_company_profile_arrow_right.png);
	right: 0;
}

.page_about_company_profile_fb_progress{
	margin-top: 5%;
}

.page_about_company_profile_fb_progress_bar{
	background: #dedede;
	position: relative;
	left: 0;
	top: auto;
	bottom: 0;
	height: 3px;
	border-radius: 3px;
	overflow: hidden;
	max-width: 190px;
	margin: 0 auto;
	display: none;
}

.page_about_company_profile_fb_progress_bar .swiper-scrollbar-drag{
	background: #01579b !important;
	border-radius: 3px !important;
}

.page_about_business_structure_ul{
	overflow: hidden;
	font-size: 0;
	position: relative;
}

.page_about_business_structure_li{
	width: 50%;
	cursor: pointer;
	display: inline-block;
	overflow: hidden;
	position: absolute;
	-webkit-transition: all 0.36s;
	-moz-transition: all 0.36s;
	-ms-transition: all 0.36s;
	-o-transition: all 0.36s;
	transition: all 0.36s;
}

.page_about_business_structure_li:nth-child(1){
	left: 0;
	position: relative;
}

.page_about_business_structure_li:nth-child(2) {
	left: 50%;
}

.page_about_business_structure_li:nth-child(3) {
	left: 75%;
}

.page_about_business_structure_li .img .img_con{
	padding: 42% 0;
}

.page_about_business_structure_li .wz{
	position: absolute;
	left: 0;
	top: 68%;
	padding: 3% 9%;
	width: 100%;
	-webkit-transition: all 0.36s;
	-moz-transition: all 0.36s;
	-ms-transition: all 0.36s;
	-o-transition: all 0.36s;
	transition: all 0.36s;
}

.page_about_business_structure_li .wz .wz_ft{
	font-size: 24px;
	line-height: 1.5;
	color: #fff;
	opacity: 0;
	-webkit-transition: all 0.36s;
	-moz-transition: all 0.36s;
	-ms-transition: all 0.36s;
	-o-transition: all 0.36s;
	transition: all 0.36s;
}

.page_about_business_structure_li .wz .wz_fc{
	font-size: 1.6rem;
	line-height: 1.3;
	color: #fff;
	margin: 7% 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.page_about_business_structure_li .wz .wz_fb{
	opacity: 0;
	-webkit-transition: all 0.36s;
	-moz-transition: all 0.36s;
	-ms-transition: all 0.36s;
	-o-transition: all 0.36s;
	transition: all 0.36s;
}

.page_about_business_structure_li .wz .wz_fb .wz_fb_li{
	width: 32%;
	margin-right: 2%;
}

.page_about_business_structure_li .wz .wz_fb .wz_fb_li:nth-child(3n){
	margin-right: 0;
}

.page_about_business_structure_li .wz .wz_fb .wz_fb_li:nth-child(n+4){
	margin-top: 2%;
}

.page_about_business_structure_li .wz .wz_fb .wz_fb_li a{
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	text-align: center;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	background: rgba(242,242,242,.2);
	border-radius: 2px;
	padding: .925rem 5px;
	-webkit-transition: all 0.36s;
	-moz-transition: all 0.36s;
	-ms-transition: all 0.36s;
	-o-transition: all 0.36s;
	transition: all 0.36s;
}

.page_about_business_structure_li .wz .wz_fb .wz_fb_li a:hover{
	background: #fff;
	color: #666;
}

.page_about_business_structure_li.active .wz{
	top: 22%;
}

.page_about_business_structure_li.active .wz .wz_ft{
	opacity: 1;
}

.page_about_business_structure_li.active .wz .wz_fb{
	opacity: 1;
}

.page_about_corporate_culture_nnn1{
	padding-top: 5.5%;
	background: url(../images/img/page_about_corporate_culture_bj.png) no-repeat top center;
	background: none;
}

.page_about_corporate_culture_ft{
	text-align: center;
}

.page_about_corporate_culture_ft h3{
	font-size: 2rem;
	line-height: 1.2;
	color: #333;
}

.page_about_corporate_culture_ft h4{
	font-size: 24px;
	line-height: 1.5;
	color: #666;
	margin-top: 4%;
}

.page_about_corporate_culture_fc{
	margin-top: 5%;
	position: relative;
	z-index: 10;
}

.page_about_corporate_culture_fc_ul{
	width: 100%;
	/*max-width: 1200px;*/
	margin: 0 auto;
	border-radius: 5px;
	background-color: #01579b;
	background-image: linear-gradient(to right,#01579b,#267ec3);
	padding: 4% 0;
}

.page_about_corporate_culture_fc_ul_mc{
	display: none;
}

.page_about_corporate_culture_fc_li{
	width: 25%;
	text-align: center;
	padding: 2% 2%;
	border-right: 1px solid rgba(255,255,255,.4);
}

.page_about_corporate_culture_fc_li:nth-child(4n){
	border-color: rgba(255,255,255,0);
}

.page_about_corporate_culture_fc_li_ft{
	font-size: 24px;
	line-height: 1.3;
	color: #fff;
	font-weight: bold;
}

.page_about_corporate_culture_fc_li_fb{
	font-size: 18px;
	line-height: 1.8;
	color: #fff;
	margin-top: 9%;
}

.page_about_corporate_culture_fc_ul_mc_pagination{
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 15px;
	font-size: 0;
	text-align: center;
}

.page_about_corporate_culture_fc_ul_mc_pagination span{
	width: 6px;
	height: 6px;
	background: rgba(255,255,255,.5);
	opacity: 1;
	margin: 0 3px;
}

.page_about_corporate_culture_fc_ul_mc_pagination span.swiper-pagination-bullet-active{
	background-color: #fff;
}

.page_about_corporate_culture_fb{
	margin-top: -5%;
}

.page_about_corporate_culture_fb img{
	width: 100%;
}

.page_about_development_history{
	background: #424e51;
	padding: 4.5% 0;
}

.page_about_development_history_ft{
	font-size: 1.8rem;
	line-height: 1.3;
	color: #fff;
}

.page_about_development_history_fc{
	margin: 3.5% 0;
}

.page_about_development_history_fc_ul{
	position: relative;
}

.page_about_development_history_fc_li{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
}

.page_about_development_history_fc_li.active{
	position: relative;
	opacity: 1;
	-webkit-transition: all 0.36s;
	-moz-transition: all 0.36s;
	-ms-transition: all 0.36s;
	-o-transition: all 0.36s;
	transition: all 0.36s;
}

.page_about_development_history_fc_li_con{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.page_about_development_history_fc_li_fl{
	font-size: 5rem;
	font-family: Arial;
	line-height: 1.2;
	color: #01579b;
	width: 22%;
	background-image: -webkit-linear-gradient(left,#267ec3,#41a5f3);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.page_about_development_history_fc_li_fr{
	font-size: 18px;
	font-family: Arial;
	line-height: 26px;
	color: #fff;
	width: 78%;
	font-weight: 300;
}

.page_about_development_history_fc_li_fr p{
	padding-left: 20px;
	position: relative;
}

.page_about_development_history_fc_li_fr p::before{
	content: '';
	position: absolute;
	top: 9px;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #01579b;
	background-image: linear-gradient(to right,#01579b,#267ec3);
}

.page_about_development_history_fc_li_fr p:nth-child(n+2){
	margin-top: 15px;
}

.page_about_development_history_fb{
	padding: 0 48px;
	margin-bottom: 6px;
	position: relative;
}

.page_about_development_history_fb::before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 20px;
	opacity: .5;
	width: calc(100% + 100px);
	height: 1px;
	background-color: rgba(255,255,255,.5);
	background-image: linear-gradient(to right,transparent,rgba(255,255,255,.5),transparent);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.page_about_development_history_fb_con{
	overflow: hidden;
}

.page_about_development_history_fb_year_www{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.page_about_development_history_fb_year{
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	font-weight: bold;
	font-family: Arial;
	text-align: center;
	cursor: pointer;
}

.page_about_development_history_fb_year_round{
	width: 40px;
	height: 40px;
	margin: 0 auto;
	margin-top: 10px;
	position: relative;
}
.page_about_development_history_fb_year_round::before,.page_about_development_history_fb_year_round::after,.page_about_development_history_fb_year_round_1{
	content: '';
	border-radius: 50%;
	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%);
	-webkit-transition: all 0.36s;
	-moz-transition: all 0.36s;
	-ms-transition: all 0.36s;
	-o-transition: all 0.36s;
	transition: all 0.36s;
}

.page_about_development_history_fb_year_round::before{
	width: 16px;
	height: 16px;
	background: #fff;
}

.page_about_development_history_fb_year_round::after{
	width: 30px;
	height: 30px;
	background: rgba(255,255,255,.17);
	opacity: 0;
}

.page_about_development_history_fb_year_round_1{
	width: 8px;
	height: 8px;
	background: #01579b;
}

.page_about_development_history_fb_year_text{
	-webkit-transition: all 0.36s;
	-moz-transition: all 0.36s;
	-ms-transition: all 0.36s;
	-o-transition: all 0.36s;
	transition: all 0.36s;
	opacity: 1;
}

.page_about_development_history_fb_year.active .page_about_development_history_fb_year_text{
	opacity: 0;
}

.page_about_development_history_fb_year.active .page_about_development_history_fb_year_round::before{
	width: 24px;
	height: 24px;
}

.page_about_development_history_fb_year.active .page_about_development_history_fb_year_round::after{
	width: 40px;
	height: 40px;
	opacity: 1;
}

.page_about_development_history1_navigation_prevel,.page_about_development_history1_navigation_nextel{
	width: 48px;
	height: 48px;
	border-radius: 50%;
	position: absolute;
	bottom: -4px;
	cursor: pointer;
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 18px;
}

.page_about_development_history1_navigation_prevel{
	left: 0;
	background-image: url(../images/img/page_about_development_history1_navigation_nextel.png);
}

.page_about_development_history1_navigation_nextel{
	right: 0;
	background-image: url(../images/img/page_about_development_history1_navigation_prevel.png);
}

.page_about_business_layout{
	padding: 4.5% 0;
}

.page_about_business_layout_ft h3{
	font-size: 2rem;
	line-height: 1.2;
	color: #333;
}

.page_about_business_layout_ft h4{
	font-size: 18px;
	line-height: 1.5;
	color: #666;
	margin-top: 2%;
}

.page_about_business_layout_fc{
	margin: 3.5% 0;
}

.page_about_business_layout_fc_ft{
	text-align: center;
}

.page_about_business_layout_fc_ft img{
	max-width: 100%;
}

.page_about_business_layout_fb_con{
	overflow: hidden;
	padding: 0 20%;
}

.page_about_business_layout_fb_li{
	position: relative;
}

.page_about_business_layout_fb_li::before,.page_about_business_layout_fb_li::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	opacity: 0;
}

.page_about_business_layout_fb_li::before{
	background: #d7d7d7;
	width: 100%;
	z-index: 15;
}

.page_about_business_layout_fb_li::after{
	background: #01579b;
	z-index: 20;
	width: 0;
}

.page_about_business_layout_fb_li.swiper-slide-active::after{
	width: 100%;
	-webkit-animation: width1 5s linear;
	-moz-animation: width1 5s linear;
	-ms-animation: width1 5s linear;
	-o-animation: width1 5s linear;
	animation: width1 5s linear;
}

@-webkit-keyframes width1 {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}

@keyframes width1 {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}

.page_about_business_layout_fb_li .img .img_con{
	width: 100%;
	padding: 40.625% 0;
}

.page_about_business_layout_fb_li .wz{
	position: absolute;
	left: 0;
	bottom: 10%;
	z-index: 10;
	width: 100%;
	padding: 0 3%;
	font-size: 1.5rem;
	line-height: 1.3;
	color: #fff;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	opacity: 0;
}

.page_about_business_layout_fb_li.swiper-slide-active::before,.page_about_business_layout_fb_li.swiper-slide-active::after{
	opacity: 1;
}

.page_about_business_layout_fb_li.swiper-slide-active .wz{
	opacity: 1;
}

@media(max-width:1366px){
	.page_about_business_structure_li .wz .wz_ft{
		font-size: 22px;
	}

	.page_about_business_structure_li .wz .wz_fb .wz_fb_li a{
		font-size: 17px;
	}

	.page_about_business_structure_li .wz .wz_fc{
		font-size: 26px;
	}

	.page_about_corporate_culture_ft h4{
		font-size: 22px;
	}

	.page_about_corporate_culture_fc_li_ft{
		font-size: 22px;
	}

	.page_about_corporate_culture_fc_li_fb{
		font-size: 17px;
	}

	.page_about_development_history_fc_li_fr{
		font-size: 17px;
	}

	.page_about_business_layout_ft h4{
		font-size: 17px;
	}
}

@media(max-width:1280px){
	.page_about_company_profile_ft{
		font-size: 16px;
	}

	.page_about_company_profile_fb_navigation_prevel,.page_about_company_profile_fb_navigation_nextel{
		width: 13px;
		height: 23px;
	}

	.page_about_business_structure_li .wz .wz_ft{
		font-size: 20px;
	}

	.page_about_business_structure_li .wz .wz_fc{
		font-size: 24px;
	}

	.page_about_corporate_culture_ft h4{
		font-size: 20px;
	}

	.page_about_corporate_culture_fc_li_ft{
		font-size: 20px;
	}

	.page_about_corporate_culture_fc_li_fb{
		font-size: 16px;
	}

	.page_about_development_history_ft{
		font-size: 26px;
	}

	.page_about_development_history_fc_li_fr{
		font-size: 16px;
	}

	.page_about_development_history_fb{
		padding: 0 40px;
	}

	.page_about_development_history1_navigation_prevel, .page_about_development_history1_navigation_nextel{
		width: 40px;
		height: 40px;
		bottom: -1px;
		background-size: 15px;
	}
}

@media(max-width:991px){
	.page_about_company_profile_fb_li_ft{
		font-size: 28px;
	}

	.page_about_business_structure_li .wz{
		padding: 3% 5%;
		top: 63%;
	}

	.page_about_business_structure_li .wz .wz_ft{
		font-size: 19px;
	}

	.page_about_business_structure_li .wz .wz_fc{
		margin: 5% 0;
		font-size: 22px;
	}

	.page_about_business_structure_li .wz .wz_fb .wz_fb_li a{
		padding: 10px 5px;
		font-size: 16px;
	}

	.page_about_corporate_culture_ft h3{
		font-size: 26px;
	}

	.page_about_corporate_culture_ft h4{
		font-size: 18px;
	}

	.page_about_corporate_culture_fc_li_ft{
		font-size: 18px;
	}

	.page_about_development_history_ft{
		font-size: 24px;
	}

	.page_about_development_history_fb_year{
		font-size: 17px;
	}

	.page_about_business_layout_ft h3{
		font-size: 26px;
	}

	.page_about_business_layout_fb_li .wz{
		font-size: 18px;
	}

	.page_about_corporate_culture_nnn1{
		background: none;
	}
}

@media(max-width:768px){
	.page_about_company_profile{
		padding: 30px 0;
	}

	.page_about_company_profile_fb{
		margin-top: 15px;
	}

	.page_about_company_profile_fb_li_ft{
		font-size: 24px;
	}

	.page_about_company_profile_fb_li_fb{
		font-size: 15px;
	}

	.page_about_company_profile_fb_progress{
		margin-top: 20px;
	}

	.page_about_business_structure_li{
		width: 100%!important;
		position: relative!important;
		left: 0!important;
	}

	.page_about_business_structure_li .wz{
		top: 50%!important;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.page_about_business_structure_li .wz .wz_ft{
		font-size:18px;
		opacity: 1!important;
	}

	.page_about_business_structure_li .wz .wz_fc{
		margin: 10px 0 15px;
		font-size: 20px;
	}

	.page_about_business_structure_li .wz .wz_fb{
		opacity: 1!important;
	}

	.page_about_business_structure_li .wz .wz_fb .wz_fb_li a{
		padding: 9px 5px;
	}

	.page_about_corporate_culture_nnn1{
		padding-top: 30px;
	}

	.page_about_corporate_culture_ft h3{
		font-size: 24px;
	}

	.page_about_corporate_culture_ft h4{
		font-size: 17px;
		margin-top: 15px;
	}

	.page_about_corporate_culture_fc{
		margin-top: 20px;
	}

	.page_about_corporate_culture_fc_ul{
		padding: 30px 0 50px;
	}

	.page_about_corporate_culture_fc_ul_pc{
		display: none;
	}

	.page_about_corporate_culture_fc_ul_mc{
		display: block;
	}

	.page_about_corporate_culture_fc_li{
		width: 100%;
		padding: 0 20px;
		border-right: 0;
	}

	.page_about_corporate_culture_fc_li_ft{
		font-size: 17px;
	}

	.page_about_corporate_culture_fc_li_fb{
		margin-top: 10px;
	}
	
	.page_about_corporate_culture_fb{
		margin-top: -35px;
	}

	.page_about_development_history{
		padding: 30px 0;
	}

	.page_about_development_history_ft{
		font-size: 22px;
	}

	.page_about_development_history_fc{
		margin: 13px 0 15px;
	}

	.page_about_development_history_fc_li_con{
		-webkit-align-content: flex-start;
		-moz-align-content: flex-start;
		-ms-align-content: flex-start;
		-o-align-content: flex-start;
		align-content: flex-start;
	}

	.page_about_development_history_fc_li_fl{
		font-size: 36px;
		width: 100%;
	}

	.page_about_development_history_fc_li_fr{
		width: 100%;
		margin-top: 10px;
	}

	.page_about_development_history_fc_li_fr p:nth-child(n+2){
		margin-top: 8px;
	}

	.page_about_development_history_fb_year{
		font-size: 16px;
	}

	.page_about_business_layout_ft h3{
		font-size: 24px;
	}

	.page_about_business_layout_ft h4{
		margin-top: 10px;
	}

	.page_about_business_layout{
		padding: 30px 0;
	}

	.page_about_business_layout_fc{
		margin: 20px 0 25px;
	}

	.page_about_business_layout_fb_li .wz{
		font-size: 17px;
	}
}

@media(max-width:468px){
	.page_about_company_profile{
		padding: 25px 0;
	}

	.page_about_company_profile_fb_nnn{
		padding:0 15px;
	}

	.page_about_company_profile_fb_li_ft{
		font-size: 22px;
	}

	.page_about_company_profile_fb_li_fb{
		margin-top: 5px;
	}

	.page_about_company_profile_fb_navigation_prevel,.page_about_company_profile_fb_navigation_nextel{
		width: 10px;
		height: 18px;
	}

	.page_about_company_profile_fb_progress_bar{
		max-width: 130px;
	}

	.page_about_business_structure_li .wz{
		padding: 0 15px;
	}

	.page_about_business_structure_li .wz .wz_fb .wz_fb_li{
		width: 49%;
	}

	.page_about_business_structure_li .wz .wz_fb .wz_fb_li:nth-child(3n){
		margin-right: 2%;
	}

	.page_about_business_structure_li .wz .wz_fb .wz_fb_li:nth-child(2n){
		margin-right: 0;
	}

	.page_about_business_structure_li .wz .wz_fb .wz_fb_li:nth-child(n+3){
		margin-top: 2%;
	}

	.page_about_business_structure_li .wz .wz_fb .wz_fb_li a{
		font-size: 15px;
	}

	.page_about_corporate_culture_nnn1{
		padding-top: 25px;
	}

	.page_about_corporate_culture_ft h3{
		font-size: 22px;
	}

	.page_about_corporate_culture_ft h4{
		font-size: 16px;
		margin-top: 10px;
	}

	.page_about_corporate_culture_fc{
		margin-top: 15px;
	}

	.page_about_corporate_culture_fc_ul{
		padding: 25px 0 35px;
	}

	.page_about_corporate_culture_fc_li{
		padding: 0 17px;
	}

	.page_about_corporate_culture_fc_li_fb{
		font-size: 15px;
	}

	.page_about_corporate_culture_fb{
		margin-top: -30px;
	}

	.page_about_development_history{
		padding: 25px 0;
	}

	.page_about_development_history_fc_li_fl{
		font-size: 30px;
		font-weight: bold;
	}

	.page_about_development_history_fb{
		padding: 0 36px;
	}

	.page_about_development_history1_navigation_prevel, .page_about_development_history1_navigation_nextel{
		width: 36px;
		height: 36px;
		bottom: 2px;
		background-size: 12px;
	}

	.page_about_business_layout{
		padding: 25px 0;
	}

	.page_about_business_layout_ft h3{
		font-size: 22px;
	}

	.page_about_business_layout_ft h4{
		font-size: 16px;
	}

	.page_about_business_layout_fc{
		margin: 15px 0 20px;
	}

	.page_about_business_layout_fb_li .wz{
		font-size: 16px;
	}

	.page_about_business_layout_fb_con{
		padding: 0 13%;
	}
}



/*首页改*/
.section2 .page_about_business_structure_li .img .img_con{
	min-height: 100vh;
}

.section2 .page_about_business_structure_index_mc{
	display: none;
}

@media(max-width:768px){
	.section2 .page_about_business_structure_index_mc{
		display: block;
	}

	.section2 .page_about_business_structure_index_pc{
		display: none;
	}
}


/*2025-03-17 未来展望*/

.page_about_development_history_xiugai{
	background: #424e51;
	padding: 4.5% 0;
	border-top: 1px solid rgba(255,255,255,.1);
}

.page_about_development_history_xiugai_ft{
	font-size: 1.8rem;
	line-height: 1.3;
	color: #fff;
}

.page_about_development_history_xiugai_fc{
	margin: 3.5% 0;
}

.page_about_development_history_xiugai_fc_ul{
	position: relative;
}

.page_about_development_history_xiugai_fc_li{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
}

.page_about_development_history_xiugai_fc_li.active{
	position: relative;
	opacity: 1;
	-webkit-transition: all 0.36s;
	-moz-transition: all 0.36s;
	-ms-transition: all 0.36s;
	-o-transition: all 0.36s;
	transition: all 0.36s;
}

.page_about_development_history_xiugai_fc_li_con{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.page_about_development_history_xiugai_fc_li_fl{
	font-size: 3.5rem;
	font-family: Arial;
	line-height: 1.2;
	color: #01579b;
	width: 36%;
	background-image: -webkit-linear-gradient(left,#267ec3,#41a5f3);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.page_about_development_history_xiugai_fc_li_fr{
	font-size: 18px;
	font-family: Arial;
	line-height: 26px;
	color: #fff;
	width: 64%;
	font-weight: 300;
}

.page_about_development_history_xiugai_fc_li_fr p{
	padding-left: 20px;
	position: relative;
}

.page_about_development_history_xiugai_fc_li_fr p::before{
	content: '';
	position: absolute;
	top: 9px;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #01579b;
	background-image: linear-gradient(to right,#01579b,#267ec3);
}

.page_about_development_history_xiugai_fc_li_fr p:nth-child(n+2){
	margin-top: 15px;
}

.page_about_development_history_xiugai_fb{
	padding: 0 48px;
	margin-bottom: 6px;
	position: relative;
}

.page_about_development_history_xiugai_fb::before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 20px;
	opacity: .5;
	width: calc(100% + 100px);
	height: 1px;
	background-color: rgba(255,255,255,.5);
	background-image: linear-gradient(to right,transparent,rgba(255,255,255,.5),transparent);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.page_about_development_history_xiugai_fb_con{
	overflow: hidden;
}

.page_about_development_history_xiugai_fb_year_www{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.page_about_development_history_xiugai_fb_year{
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	font-weight: bold;
	font-family: Arial;
	text-align: center;
	cursor: pointer;
}

.page_about_development_history_xiugai_fb_year_round{
	width: 40px;
	height: 40px;
	margin: 0 auto;
	margin-top: 10px;
	position: relative;
}
.page_about_development_history_xiugai_fb_year_round::before,.page_about_development_history_xiugai_fb_year_round::after,.page_about_development_history_xiugai_fb_year_round_1{
	content: '';
	border-radius: 50%;
	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%);
	-webkit-transition: all 0.36s;
	-moz-transition: all 0.36s;
	-ms-transition: all 0.36s;
	-o-transition: all 0.36s;
	transition: all 0.36s;
}

.page_about_development_history_xiugai_fb_year_round::before{
	width: 16px;
	height: 16px;
	background: #fff;
}

.page_about_development_history_xiugai_fb_year_round::after{
	width: 30px;
	height: 30px;
	background: rgba(255,255,255,.17);
	opacity: 0;
}

.page_about_development_history_xiugai_fb_year_round_1{
	width: 8px;
	height: 8px;
	background: #01579b;
}

.page_about_development_history_xiugai_fb_year_text{
	-webkit-transition: all 0.36s;
	-moz-transition: all 0.36s;
	-ms-transition: all 0.36s;
	-o-transition: all 0.36s;
	transition: all 0.36s;
	opacity: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.page_about_development_history_xiugai_fb_year.active .page_about_development_history_xiugai_fb_year_text{
	opacity: 0;
}

.page_about_development_history_xiugai_fb_year.active .page_about_development_history_xiugai_fb_year_round::before{
	width: 24px;
	height: 24px;
}

.page_about_development_history_xiugai_fb_year.active .page_about_development_history_xiugai_fb_year_round::after{
	width: 40px;
	height: 40px;
	opacity: 1;
}

.page_about_development_history_xiugai1_navigation_prevel,.page_about_development_history_xiugai1_navigation_nextel{
	width: 48px;
	height: 48px;
	border-radius: 50%;
	position: absolute;
	bottom: -4px;
	cursor: pointer;
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 18px;
}

.page_about_development_history_xiugai1_navigation_prevel{
	left: 0;
	background-image: url(../images/img/page_about_development_history1_navigation_nextel.png);
}

.page_about_development_history_xiugai1_navigation_nextel{
	right: 0;
	background-image: url(../images/img/page_about_development_history1_navigation_prevel.png);
}

@media(max-width:1366px){
	.page_about_development_history_xiugai_fc_li_fr{
		font-size: 17px;
	}
}

@media(max-width:1280px){
	.page_about_development_history_xiugai_ft{
		font-size: 26px;
	}

	.page_about_development_history_xiugai_fc_li_fr{
		font-size: 16px;
	}

	.page_about_development_history_xiugai_fb{
		padding: 0 40px;
	}

	.page_about_development_history_xiugai1_navigation_prevel, .page_about_development_history_xiugai1_navigation_nextel{
		width: 40px;
		height: 40px;
		bottom: -1px;
		background-size: 15px;
	}
}

@media(max-width:991px){
	.page_about_development_history_xiugai_ft{
		font-size: 24px;
	}

	.page_about_development_history_xiugai_fb_year{
		font-size: 17px;
	}
}

@media(max-width:768px){
	.page_about_development_history_xiugai{
		padding: 30px 0;
	}

	.page_about_development_history_xiugai_ft{
		font-size: 22px;
	}

	.page_about_development_history_xiugai_fc{
		margin: 13px 0 15px;
	}

	.page_about_development_history_xiugai_fc_li_con{
		-webkit-align-content: flex-start;
		-moz-align-content: flex-start;
		-ms-align-content: flex-start;
		-o-align-content: flex-start;
		align-content: flex-start;
	}

	.page_about_development_history_xiugai_fc_li_fl{
		font-size: 28px;
		width: 100%;
	}

	.page_about_development_history_xiugai_fc_li_fr{
		width: 100%;
		margin-top: 10px;
	}

	.page_about_development_history_xiugai_fc_li_fr p:nth-child(n+2){
		margin-top: 8px;
	}

	.page_about_development_history_xiugai_fb_year{
		font-size: 16px;
	}
}

@media(max-width:468px){
	.page_about_development_history_xiugai{
		padding: 25px 0;
	}

	.page_about_development_history_xiugai_fc_li_fl{
		font-size: 24px;
		font-weight: bold;
	}

	.page_about_development_history_xiugai_fb{
		padding: 0 36px;
	}

	.page_about_development_history_xiugai1_navigation_prevel, .page_about_development_history_xiugai1_navigation_nextel{
		width: 36px;
		height: 36px;
		bottom: 2px;
		background-size: 12px;
	}

	.page_about_development_history_xiugai_fb_year{
		font-size: 15px;
	}
}



























