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

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

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

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

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

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

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

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

	.page_con_zhuti {
		padding: 0 30px;
	}
}

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

	.page_con_zhuti {
		padding: 0 20px;
	}

	body {
		padding-top: 61px;
	}
}

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

	.page_con_zhuti {
		padding: 0 15px;
	}
}

/*头部*/
#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: 90px;
	line-height: 90px;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_logo {
	width: 21%;
	max-width: 260px;
}

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

.pc_header_fr{
	max-width: 76%;
	position: relative;
}

.pc_nav {
	width: 100%;
	padding-right: 3rem;
}

.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{
	padding-left: 1.5rem;
}

.pc_nav>ul>.pc_nav_li_www:nth-child(1){
	padding-left: 0;
}

.pc_nav>ul>.pc_nav_li_www>li {
	float: left;
	position: relative;
	text-align: center;
}

.pc_nav>ul>.pc_nav_li_www>li>a {
	font-size: 16px;
	line-height: 90px;
	color: #222;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	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;
}

.pc_nav_yiji_jiantou_padding{
	padding-right: 14px;
}

.pc_nav_yiji_jiantou{
	position: absolute;
	right: 0;
	top: 50%;
	width: 10px;
	height: 20px;
	background-image: url(../images/img/pc_header_nav_jiantou.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 10px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.pc_nav_erji_w {
	position: absolute;
	z-index: 999;
	width: 180px;
	left: 0;
	top: 90px;
	background: #fcfcfc;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 0 2px rgba(0,0,0,.2);
	-webkit-transform: translate(-2rem,0);
	-moz-transform: translate(-2rem,0);
	-ms-transform: translate(-2rem,0);
	-o-transform: translate(-2rem,0);
	transform: translate(-2rem,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>ul>.pc_nav_li_www>li:hover .pc_nav_erji_w {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(-0.75rem,0);
	-moz-transform: translate(-0.75rem,0);
	-ms-transform: translate(-0.75rem,0);
	-o-transform: translate(-0.75rem,0);
	transform: translate(-0.75rem,0);
}

.pc_nav>ul>.pc_nav_li_www>li:hover>a,.pc_nav>ul>.pc_nav_li_www>li.active>a{
	color: #008586;
}

.pc_nav>ul>.pc_nav_li_www>li:hover>a .pc_nav_yiji_jiantou,.pc_nav>ul>.pc_nav_li_www>li.active>a .pc_nav_yiji_jiantou{
	background-image: url(../images/img/pc_header_nav_jiantou1.png);
}

.pc_nav_erji_li a {
	font-size: 15px;
	line-height: 2;
	padding: 5px;
	color: #333;
	display: block;
	text-align: left;
	padding-left: 0.75rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	border-top: 1px solid rgba(0,0,0,.06);
	-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_li:nth-child(1) a {
	border-top-color: rgba(0,0,0,0);
}

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

.pc_sousuo {
	position: absolute;
	right: 0;
	top: 50%;
	width: 30px;
	z-index: 999;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

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

.pc_sousuo2 {
	position: absolute;
	right: 0;
	top: 100%;
	width: 220px;
	z-index: 999;
	background: #008586;
	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/pc_nav_sousuo_bai.png) no-repeat center;
	background-size: 18px;
	cursor: pointer;
}

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

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

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

.pc_nav_dianhua {
	width: 180px;
	text-align: center;
	background: #008586;
	border-radius: 25px;
	font-size: 0;
	padding: 5px 0;
	line-height: 0;
}

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

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

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

	.pc_nav>ul>.pc_nav_li_www{
		padding-left: 18px;
	}

	.pc_nav_erji_li a{
		padding-left: 9px;
	}
}

@media(max-width:1100px){
	.pc_nav{
		padding-right: 35px;
	}

	.pc_nav>ul>.pc_nav_li_www{
		padding-left: 14px;
	}

	.pc_nav_erji_li a{
		padding-left: 7px;
	}
}

@media(max-width:1024px){
	.pc_nav{
		padding-right: 35px;
	}

	.pc_nav>ul>.pc_nav_li_www{
		padding-left: 12px;
	}

	.pc_nav_erji_li a{
		padding-left: 6px;
	}
}

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

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

.index_banner_li{
	position: relative;
	overflow: hidden;
}

.index_banner_li .wz{
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_banner_li .wz_ft{
	font-size: 2.5rem;
	line-height: 1.2;
	color: #fff;
	font-weight: bold;
}

.index_banner_li .wz_fb{
	font-size: 16px;
	line-height: 1.5;
	color: rgba(255,255,255,.9);
	margin-top: 1.5%;
}

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

.index_banner_yuandian span {
	width: 15px;
	height: 15px;
	background: none;
	border: 2px solid #fff;
	border-radius: 50%;
	opacity: 1;
	margin: 0 6px!important;
}

.index_banner_yuandian span.swiper-pagination-bullet-active {
	background: #008586;
	border-color: #008586;
}

.index_banner_li.swiper-slide-active .wz_con{
	-webkit-animation: banner_wz_left_right 1.1s linear;
	-moz-animation: banner_wz_left_right 1.1s linear;
	-ms-animation: banner_wz_left_right 1.1s linear;
	-o-animation: banner_wz_left_right 1.1s linear;
	animation: banner_wz_left_right 1.1s linear;
}

@keyframes banner_wz_left_right {
	0% {
		-webkit-transform: translateX(-200px);
		-moz-transform: translateX(-200px);
		-ms-transform: translateX(-200px);
		-o-transform: translateX(-200px);
		transform: translateX(-200px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}
}

@-webkit-keyframes banner_wz_left_right {
	0% {
		margin-top: 0;
	}

	25% {
		margin-top: -10px;
	}

	50% {
		margin-top: 0;
	}

	75% {
		margin-top: 10px;
	}

	100% {
		margin-top: 0;
	}
}

@-moz-keyframes banner_wz_left_right {
	0% {
		margin-top: 0;
	}

	25% {
		margin-top: -10px;
	}

	50% {
		margin-top: 0;
	}

	75% {
		margin-top: 10px;
	}

	100% {
		margin-top: 0;
	}
}

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

	.index_banner_yuandian{
		bottom: 15px!important;
	}

	.index_banner_yuandian span{
		width: 13px;
		height: 13px;
		margin: 0 5px!important;
	}
}

@media(max-width:768px) {
	.index_banner_li .wz_ft{
		font-size: 24px;
	}

	.index_banner_li .wz_fb{
		margin-top: 6px;
		font-size: 16px;
	}

	.index_banner_yuandian{
		bottom: 12px!important;
	}

	.index_banner_yuandian span{
		width: 11px;
		height: 11px;
		margin: 0 4px!important;
	}
}

@media(max-width:468px) {
	.index_banner_li .wz_ft{
		font-size: 22px;
		font-weight: normal;
	}

	.index_banner_li .wz_fb{
		margin-top: 4px;
		font-size: 15px;
	}

	.index_banner_yuandian{
		bottom: 10px!important;
	}

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

	.index_banner_li img{
		min-height: 180px;
	}
}

/*塑木地板*/
.index_songyuan_wood_plastic_floor{
	padding: 4% 0;
}

.index_songyuan_wood_plastic_floor_ft{
	text-align: center;
}

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

.index_songyuan_wood_plastic_floor_ft h4{
	font-size: 16px;
	line-height: 1.5;
	color: #999;
	margin-top: 4px;
}

.index_songyuan_wood_plastic_floor_fb{
	margin-top: 3.5%;
}

.index_songyuan_wood_plastic_floor_fb_con{
	overflow: hidden;
}

.index_songyuan_wood_plastic_floor_fb_li{
	position: relative;
	border-bottom: 3px solid #008586;
	height: auto!important;
}

.index_songyuan_wood_plastic_floor_fb_li a{
	display: block;
	height: 100%;
}

.index_songyuan_wood_plastic_floor_fb_li .img{
	overflow: hidden;
}

.index_songyuan_wood_plastic_floor_fb_li .img img{
	width: 100%;
	-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_songyuan_wood_plastic_floor_fb_li .wz{
	width: 90%;
	padding: 9% 6.4% 15%;
	margin: 0 auto;
	margin-top: -10%;
	background: #fff;
	position: relative;
	z-index: 20;
}

.index_songyuan_wood_plastic_floor_fb_li .wz_ft{
	font-size: 18px;
	line-height: 1.5;
	color: #333;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_songyuan_wood_plastic_floor_fb_li .wz_fb{
	font-size: 15px;
	line-height: 1.5;
	color: #999;
	text-align: left;
	margin-top: 4px;
	max-height: 6em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

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

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

	.index_songyuan_wood_plastic_floor_ft h4{
		margin-top: 2px;
	}
}

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

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

	.index_songyuan_wood_plastic_floor_ft h4{
		margin-top: 0;
		font-size: 15px;
	}

	.index_songyuan_wood_plastic_floor_fb{
		margin-top: 20px;
	}

	.index_songyuan_wood_plastic_floor_fb_li .wz{
		padding: 15px;
	}

	.index_songyuan_wood_plastic_floor_fb_li .wz_ft{
		font-size: 17px;
	}

	.index_songyuan_wood_plastic_floor_fb_li .wz_fb{
		font-size: 14px;
	}
}

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

	.index_songyuan_wood_plastic_floor_fb{
		margin-top: 15px;
	}

	.index_songyuan_wood_plastic_floor_fb_li .wz{
		padding: 15px 10px;
	}

	.index_songyuan_wood_plastic_floor_fb_li .wz_ft{
		font-size: 16px;
	}

	.index_songyuan_wood_plastic_floor_fb_li .wz_fb{
		font-size: 13px;
	}
}

/*塑木产品*/
.index_songyuan_product{
	padding: 4% 0;
	background: #525252;
}

.index_songyuan_product_fb{
	overflow: hidden;
}

.index_songyuan_product_fb_fl{
	width: 23%;
	background: #fff;
}

.index_songyuan_product_fb_fl_ft{
	font-size: 1.4rem;
	line-height: 1.5;
	color: #fff;
	background: #008586;
	padding: 8% 7%;
}

.index_songyuan_product_fb_fl_fb_li a{
	display: block;
	font-size: 18px;
	line-height: 3rem;
	color: #333;
	padding: 0 7%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	border-bottom: 1px solid #dfdfdf;
	-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_songyuan_product_fb_fl_fb_li a:hover{
	color: #008586;
}

.index_songyuan_product_fb_fr{
	width: 74.5%;
}

.index_songyuan_product_fb_fr_li{
	width: 32%;
	margin-right: 2%;
	background: #fff;
	position: relative;
}

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

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

.index_songyuan_product_fb_fr_li .img{
	overflow: hidden;
}

.index_songyuan_product_fb_fr_li .img img{
	width: 100%;
	-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_songyuan_product_fb_fr_li .wz{
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
	width: 100%;
	font-size: 15px;
	line-height: 1.5;
	color: #fff;
	padding: 9px 5px;
	text-align: center;
	background: rgba(0,0,0,.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;
}

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

.index_songyuan_product_fb_fr_li:hover .wz{
	background: rgba(0,133,134,.9);
}

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

.index_songyuan_product_fb_fl2_ft h3{
	color: #fff;
}

.index_songyuan_product_fb_fl2_ft h4{
	color: #ccc;
}

.index_songyuan_product_fb_fl2_fb{
	margin-top: 3%;
}

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

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

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

.index_songyuan_product_fb_fl2_fb_li a{
	display: block;
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	padding: 5%;
	background: #868686;
	/*border-radius: 30px;*/
	text-align: center;
	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;
}

.index_songyuan_product_fb_fl2_fb_li a:hover{
	background: #008586;
	color: #fff;
}

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

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

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

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

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

	.index_songyuan_product_fb_fl2{
		display: block;
	}
}

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

	.index_songyuan_product_fb_fl2_fb{
		margin-top: 20px;
	}

	.index_songyuan_product_fb_fl2_fb_li{
		width: 49%;
	}

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

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

	.index_songyuan_product_fb_fl2_fb_li a{
		font-size: 15px;
		padding: 8px 5px;
	}

	.index_songyuan_product_fb_fr{
		margin-top: 20px;
	}

	.index_songyuan_product_fb_fr_li{
		width: 49%;
	}

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

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

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

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

	.index_songyuan_product_fb_fl2_fb{
		margin-top: 15px;
	}

	.index_songyuan_product_fb_fr{
		margin-top: 15px;
	}

	.index_songyuan_product_fb_fr_li .wz{
		font-size: 14px;
		padding: 6px 5px;
	}
}

/*产品中心 2025-05-12 修改*/
.index_songyuan_product_1{
	background: #f7f7f7;
	padding: 4% 0;
}

.index_songyuan_product_1_fc{
	margin: 3% 0;
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_songyuan_product_1_fc_fl{
	width: 98%;
	padding-right: 250px;
	margin-right: -250px;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_songyuan_product_1_fc_fl_fl{
	width: 140px;
	position: relative;
	z-index: 10;
}

.index_songyuan_product_1_fc_fl_fl a{
	display: block;
	font-size: 16px;
	line-height: 1.5;
	color: #333;
	text-align: center;
	font-weight: bold;
	border: 2px solid #008586;
	border-radius: 15px;
	padding: 0.5rem 0;
}

.index_songyuan_product_1_fc_fl_fr{
	width: 98%;
	padding-left: 140px;
	margin-left: -140px;
}

.index_songyuan_product_1_fc_fl_fr_li_www{
	width: 20%;
	text-align: center;
	padding: 0 5px;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.index_songyuan_product_1_fc_fl_fr_li{
	max-width: 100%;
}

.index_songyuan_product_1_fc_fl_fr_li a{
	display: block;
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	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;
}

.index_songyuan_product_1_fc_fl_fr_li a:hover{
	color: #008586;
}

.index_songyuan_product_1_fc_fr{
	width: 250px;
	overflow: hidden;
	position: relative;
	z-index: 10;
	background: #fff;
}

.index_shengyufeng_search_hot_fr_shuru_li{
	float: left;
	width: 100%;
	padding-right: 60px;
	margin-right: -60px;
}

.index_shengyufeng_search_hot_fr_shuru{
	padding: 0 12px;
	line-height: 40px;
	width: 100%;
	background: none;
	border: 0;
	outline: none;
	font-size: 15px;
	color: #666;
	border: 1px solid #dfdfdf;
}

.index_shengyufeng_search_hot_fr_shuru:-webkit-autofill{
	-webkit-text-fill-color: #999 !important;
	transition: background-color 5000s ease-in-out 0s;
}

.index_shengyufeng_search_hot_fr_shuru::placeholder{
	color: #999;
}

.index_shengyufeng_search_hot_fr_tijiao{
	width: 60px;
	height: 42px;
	background: #008586 url(../images/img/index_hot_search_ico.png) no-repeat center;
	background-size: 18px;
	border: 0;
	outline: none;
	position: relative;
}

.index_songyuan_product_1_fb_li{
	width: 32%;
	margin-right: 2%;
	background: #fff;
	text-align: center;
	border: 1px solid #efefef;
	-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;
	box-shadow: 0 3px 10px rgba(204,204,204,0);
}

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

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

.index_songyuan_product_1_fb_li .img{
	overflow: hidden;
}

.index_songyuan_product_1_fb_li .img img{
	width: 100%;
	-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_songyuan_product_1_fb_li .wz{
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	background: #666666;
	padding: 1rem 5px;
	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;
}

.index_songyuan_product_1_fb_li:hover{
	box-shadow: 0 3px 10px rgba(204,204,204,1);
}

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

.index_songyuan_product_1_fb_li:hover .wz{
	background: #008586;
}

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

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

	.index_songyuan_product_1_fc_fl_fl{
		width: 120px;
	}

	.index_songyuan_product_1_fc_fl_fr{
		padding-left: 120px;
		margin-left: -120px;
	}
}

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

	.index_songyuan_product_1_fc_fl_fl{
		width: 100px;
	}

	.index_songyuan_product_1_fc_fl_fl a{
		padding: 7px 0;
		font-size: 15px;
	}

	.index_songyuan_product_1_fc_fl_fr{
		padding-left: 100px;
		margin-left: -100px;
	}

	.index_songyuan_product_1_fc_fr{
		display: none;
	}

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

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

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

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

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

	.index_songyuan_product_1_fc{
		margin: 20px 0;
	}

	.index_songyuan_product_1_fc_fl_fl{
		display: none;
	}

	.index_songyuan_product_1_fc_fl_fr{
		width: 100%;
		padding-left: 0;
		margin-left: 0;
	}

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

	.index_songyuan_product_1_fb_li .wz{
		padding: 10px 5px;
		font-size: 15px;
	}
}

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

	.index_songyuan_product_1_fc{
		margin: 15px 0;
	}

	.index_songyuan_product_1_fc_fl_fr_li_www{
		width: 50%;
	}

	.index_songyuan_product_1_fc_fl_fr_li_www:nth-child(5){
		display: none;
	}

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

	.index_songyuan_product_1_fc_fl_fr_li{
		width: 100%;
		border: 1px solid #008586;
		border-radius: 20px;
		overflow: hidden;
	}

	.index_songyuan_product_1_fc_fl_fr_li a{
		padding: 6px 5px;
	}

	.index_songyuan_product_1_fc_fl_fr_li a:hover{
		background: #008586;
		color: #fff;
	}

	.index_songyuan_product_1_fb_li .wz{
		padding: 8px 5px;
		font-size: 14px;
	}
}

/*为什么选择*/
.index_songyuan_why_choose{
	padding: 4% 0;
}

.index_songyuan_why_choose_fb{
	margin-top: 3.5%;
}

.index_songyuan_why_choose_fb_li{
	overflow: hidden;
	position: relative;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_songyuan_why_choose_fb_li::before{
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	z-index: 5;
	width: 1px;
	height: 100%;
	background: #008586;
	margin-left: -1px;
}

.index_songyuan_why_choose_fb_li:nth-child(2n){
	overflow: hidden;
}

.index_songyuan_why_choose_fb_li_fl{
	width: 45%;
}

.index_songyuan_why_choose_fb_li_fl img{
	width: 100%;
}

.index_songyuan_why_choose_fb_li_fc{
	width: 3.5rem;
	padding-top: 3.5rem;
	border-radius: 50%;
	background: #008586;
	position: absolute;
	top: 0;
	left: -11.111111111111%;
	margin-left: -1.75rem;
}

.index_songyuan_why_choose_fb_li:nth-child(2n) .index_songyuan_why_choose_fb_li_fc{
	left: auto;
	right: -11.111111111111%;
	margin-left: 0;
	margin-right: -1.75rem;
}

.index_songyuan_why_choose_fb_li_fc::before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 100%;
	z-index: 5;
	width: 100%;
	height: 300px;
	background: #fff;
	display: none;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.index_songyuan_why_choose_fb_li:nth-child(1) .index_songyuan_why_choose_fb_li_fc::before{
	display: block;
}

.index_songyuan_why_choose_fb_li:last-child .index_songyuan_why_choose_fb_li_fc::before{
	display: block;
	top: 100%;
	bottom: auto;
}

.index_songyuan_why_choose_fb_li_fc span{
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 10;
	font-size: 1.7rem;
	line-height: 1.5;
	color: #fff;
	font-weight: bold;
	-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_songyuan_why_choose_fb_li_fr{
	width: 45%;
	padding: 0 3.5%;
	position: relative;
	z-index: 10;
}

.index_songyuan_why_choose_fb_li_fr_ft{
	font-size: 1.4rem;
	line-height: 1.5;
	color: #008586;
}

.index_songyuan_why_choose_fb_li_fr_fb{
	font-size: 16px;
	line-height: 1.6;
	color: #666;
	margin-top: 3.5%;
	text-align: justify;
}

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

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

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

	.index_songyuan_why_choose_fb_li:nth-child(2n){
		-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_songyuan_why_choose_fb_li:nth-child(2n){*/
	/*	margin-top: 3%;*/
	/*}*/

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

	.index_songyuan_why_choose_fb_li::before{
		display: none;
	}

	.index_songyuan_why_choose_fb_li_fl{
		width: 100%;
	}

	.index_songyuan_why_choose_fb_li_fr{
		width: 100%;
		padding: 0;
		margin-top: 2.5%;
	}

	.index_songyuan_why_choose_fb_li_fc{
		display: none;
	}

	.index_songyuan_why_choose_fb_li_fr_fb{
		margin-top: 2%;
	}
}

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

	.index_songyuan_why_choose_fb{
		margin-top: 20px;
	}

	.index_songyuan_why_choose_fb_li_fr{
		margin-top: 15px;
	}

	.index_songyuan_why_choose_fb_li_fr_fb{
		margin-top: 10px;
		font-size: 15px;
	}

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

	.index_songyuan_why_choose_fb_li_fr_ft{
		font-size: 20px;
	}
}

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

	.index_songyuan_why_choose_fb{
		margin-top: 15px;
	}

	.index_songyuan_why_choose_fb_li_fr{
		margin-top: 12px;
	}

	.index_songyuan_why_choose_fb_li_fr_ft{
		font-size: 18px;
	}

	.index_songyuan_why_choose_fb_li_fr_fb{
		margin-top: 8px;
	}

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

/*process control*/
.index_songyuan_process_control{
	padding: 4% 0;
	background: #525252;
}

.index_songyuan_process_control_ft h3{
	color: #fff;
}

.index_songyuan_process_control_ft h4{
	color: #ccc;
}

.index_songyuan_process_control_fc{
	margin-top: 3%;
}

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

.index_songyuan_process_control_fc_li{
	margin: 0 .7rem;
}

.index_songyuan_process_control_fc_li a{
	display: block;
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	background: #868686;
	padding: .7rem 2rem;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_songyuan_process_control_fc_li.on a{
	background: #008586;
}

.index_songyuan_process_control_fb{
	margin-top: 3%;
}

.index_songyuan_process_control_fb_ul_fl,.index_songyuan_process_control_fb_ul_fr{
	width: 24.2%;
}

.index_songyuan_process_control_fb_ul_fl{
	margin-right: 1%;
}

.index_songyuan_process_control_fb_ul_fc{
	width: 49.6%;
	margin-right: 1%;
}

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

.index_songyuan_process_control_fb_ul_fl_li .img{
	overflow: hidden;
}

.index_songyuan_process_control_fb_ul_fl_li .img img{
	width: 100%;
	-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_songyuan_process_control_fb_ul_fl_li .wz{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
	padding: .5rem 5px;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	background: rgba(0,0,0,.7);
}

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

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

@media(max-width:991px){
	.index_songyuan_process_control_fb_ul_fr{
		width: 100%;
		margin-top: 2%;
	}

	.index_songyuan_process_control_fb_ul_fc,.index_songyuan_process_control_fb_ul_fl{
		width: 100%;
		margin-right: 0;
	}

	.index_songyuan_process_control_fb_ul_fc{
		margin-top: 2%;
	}

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

	.index_songyuan_process_control_fb_ul_fl_li .wz{
		padding: 7px;
	}
}

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

	.index_songyuan_process_control_fc{
		margin-top: 20px;
	}

	.index_songyuan_process_control_fc_li{
		margin: 0 6px;
	}

	.index_songyuan_process_control_fc_li a{
		padding: 8px 20px;
		font-size: 15px;
	}

	.index_songyuan_process_control_fb{
		margin-top: 20px;
	}

	.index_songyuan_process_control_fb_ul_fl_li:nth-child(n+2),.index_songyuan_process_control_fb_ul_fc,.index_songyuan_process_control_fb_ul_fr{
		margin-top: 15px;
	}
}

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

	.index_songyuan_process_control_fc{
		margin-top: 15px;
	}

	.index_songyuan_process_control_fc_li{
		margin: 0 5px;
	}

	.index_songyuan_process_control_fc_li a{
		padding: 6px 15px;
	}

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

/*应用场景*/
.index_songyuan_application_scenarios{
	padding: 4% 0;
}

.index_songyuan_application_scenarios_fb{
	margin-top: 3%;
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-o-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.index_songyuan_application_scenarios_fb_fl{
	width: 69%;
}

.index_songyuan_application_scenarios_fb_fl_ul{
	height: 100%;
}

.index_songyuan_application_scenarios_fb_fl_li{
	height: 100%;
	position: relative;
}

.index_songyuan_application_scenarios_fb_fl_li .img{
	height: 100%;
}

.index_songyuan_application_scenarios_fb_fl_li .wz{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: #eaeaea;
	padding: 15px 20px;
}

.index_songyuan_application_scenarios_fb_fl_li .wz_ft{
	font-size: 20px;
	line-height: 1.5;
	color: #212529;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_songyuan_application_scenarios_fb_fl_li .wz_fb{
	font-size: 15px;
	line-height: 1.5;
	color: #999;
	margin-top: 5px;
}

.index_songyuan_application_scenarios_fb_fr{
	width: 29%;
}

.index_songyuan_application_scenarios_fb_fr_li{
	width: 49%;
	margin-right: 2%;
	background: #787878;
	text-align: center;
	cursor: pointer;
}

.index_songyuan_application_scenarios_fb_fr_li_con{
	padding: 32% 10px;
	display: block;
}

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

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

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

.index_songyuan_application_scenarios_fb_fr_li .wz{
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	margin-top: 10px;
}

.index_songyuan_application_scenarios_fb_fr_li.on{
	background: #008586;
}

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

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

	.index_songyuan_application_scenarios_fb_fl_ul{
		height: auto;
	}

	.index_songyuan_application_scenarios_fb_fl_li{
		height: auto;
	}

	.index_songyuan_application_scenarios_fb_fl_li .img{
		padding: 32.5% 0;
		height: auto;
	}

	.index_songyuan_application_scenarios_fb_fl_li .wz{
		position: relative;
	}

	.index_songyuan_application_scenarios_fb_fr{
		width: 100%;
	}

	.index_songyuan_application_scenarios_fb_fr_li_con{
		padding: 15px 10px;
	}

	.index_songyuan_application_scenarios_fb_fr_li .img img{
		width: 35px;
		max-height: 35px;
		line-height: 35px;
	}
}

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

	.index_songyuan_application_scenarios_fb{
		margin-top: 20px;
	}

	.index_songyuan_application_scenarios_fb_fl_li .wz{
		padding: 15px;
	}

	.index_songyuan_application_scenarios_fb_fl_li .wz_ft{
		font-size: 17px;
	}

	.index_songyuan_application_scenarios_fb_fl_li .wz_fb{
		font-size: 14px;
	}

	.index_songyuan_application_scenarios_fb_fr_li .wz{
		font-size: 15px;
	}

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

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

	.index_songyuan_application_scenarios_fb{
		margin-top: 15px;
	}

	.index_songyuan_application_scenarios_fb_fl_li .wz_ft{
		font-size: 16px;
	}

	.index_songyuan_application_scenarios_fb_fl_li .wz_fb{
		font-size: 13px;
	}

	.index_songyuan_application_scenarios_fb_fl{
		margin-top: 15px;
	}

	.index_songyuan_application_scenarios_fb_fr_li_con{
		padding: 12px 10px;
	}

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

/*新闻动态*/
.index_songyuan_news{
	padding: 4% 0;
	background: #525252;
}

.index_songyuan_news_fb{
	margin-top: 3%;
}

.index_songyuan_news_fb_fl,.index_songyuan_news_fb_fr{
	width: 48%;
}

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

.index_songyuan_news_fb_fl_ft_fl{
	font-size: 1.5rem;
	line-height: 1.5;
	color: #fff;
	position: relative;
	z-index: 5;
}

.index_songyuan_news_fb_fl_ft_fl::before{
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	width: 1000px;
	height: 1px;
	background: #fff;
	margin-top: -1px;
}

.index_songyuan_news_fb_fl_ft_fr{
	background: #525252;
	padding-left: 10px;
	position: relative;
	z-index: 10;
}

.index_songyuan_news_fb_fl_ft_fr a{
	font-size: 15px;
	line-height: 1.5;
	color: #fff;
	display: block;
}

.index_songyuan_news_fb_fl_ft_fr a:hover{
	color: rgba(255,255,255,.7);
}

.index_songyuan_news_fb_fl_fb{
	margin-top: 3%;
	background: #404040;
	padding: 4.5%;
}

.index_songyuan_news_fb_fl_fb_li{
	position: relative;
	line-height: 1;
	font-size: 0;
}

.index_songyuan_news_fb_fl_fb_li::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	z-index: 5;
	width: 8px;
	height: 8px;
	background: #008586;
	border-radius: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}


.index_songyuan_news_fb_fl_fb_li a{
	font-size: 16px;
	line-height: 2;
	color: #fff;
	padding-left: 20px;
	max-width: 100%;
	position: relative;
	z-index: 10;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: inline-block;
}

.index_songyuan_news_fb_fl_fb_li a:hover{
	color: rgba(255,255,255,.7);
}

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

	.index_songyuan_news_fb_fr{
		margin-top: 3%;
	}

	.index_songyuan_news_fb_fl_ft_fl{
		font-size: 20px;
	}

	.index_songyuan_news_fb_fl_fb{
		padding: 3%;
	}
}

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

	.index_songyuan_news_fb,.index_songyuan_news_fb_fl_fb,.index_songyuan_news_fb_fr{
		margin-top: 20px;
	}

	.index_songyuan_news_fb_fl_fb{
		padding: 20px;
	}

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

	.index_songyuan_news_fb_fl_ft_fr a{
		font-size: 14px;
	}

	.index_songyuan_news_fb_fl_ft_fl{
		font-size: 18px;
	}
}

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

	.index_songyuan_news_fb,.index_songyuan_news_fb_fl_fb,.index_songyuan_news_fb_fr{
		margin-top: 15px;
	}

	.index_songyuan_news_fb_fl_fb{
		padding: 15px;
	}
}

/*联系我们*/
.index_songyuan_contact{
	padding: 4% 0;
}

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

.index_songyuan_contact_fb{
	margin-top: 3%;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.index_songyuan_contact_fb a{
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	background: #008586;
	text-align: center;
	border-radius: 40px;
	padding: 0.6rem 1.4rem;
	-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_songyuan_contact_fb a:hover{
	background: #007ca8;
}

@media(max-width:991px){
	.index_songyuan_contact_fb a{
		padding: 9px 22px;
	}
}

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

	.index_songyuan_contact_fc,.index_songyuan_contact_fb{
		margin-top: 20px;
	}

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

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

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

	.index_songyuan_contact_fc,.index_songyuan_contact_fb{
		margin-top: 15px;
	}

	.index_songyuan_contact_fb a{
		padding: 8px 20px;
	}
}

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

.pc_footer_ft{
	padding-top: 3.5%;
}

.pc_footer_ft_fl{
	width: 60%;
}

.pc_footer_ft_fl_li{
	max-width: 24%;
}

.pc_footer_ft_fl_li_ft a,.pc_footer_ft_fr_ft a{
	font-size: 19px;
	line-height: 1.5;
	color: #fff;
}

.pc_footer_ft_fl_li_fb{
	margin-top: 1rem;
}

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

.pc_footer_ft_fl_li_fb_li a,.pc_footer_ft_fr_fb_li{
	font-size: 15px;
	line-height: 26px;
	color: #848484;
}

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

.pc_footer_ft_fr_fb{
	margin-top: 1rem;
}

.pc_footer_ft_fr_fb_li{
	padding-left: 25px;
}

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

.pc_footer_ft_fr{
	width: 30%;
}

.pc_footer_fb{
	font-size: 15px;
	line-height: 26px;
	color: #848484;
	padding: 15px 0;
	border-top: 1px solid #494949;
	margin-top: 2.5%;
}

.pc_footer_fb a{
	color: #848484;
}

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

@media(max-width:1280px){
	.pc_footer_ft_fl_li_ft a,.pc_footer_ft_fr_ft a{
		font-size: 18px;
	}

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

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

	.pc_footer_ft_fl{
		display: none;
	}

	.pc_footer_ft_fr{
		width: 100%;
	}

	.pc_footer_ft_fr_fb{
		margin-top: 12px;
	}

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

	.pc_footer_fb{
		margin-top: 20px;
	}

	.pc_footer_fb{
		padding: 12px 0;
	}
}

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

	.pc_footer_fb{
		margin-top: 15px;
	}

	.pc_footer_ft_fl_li_ft a, .pc_footer_ft_fr_ft a{
		font-size: 17px;
	}
}

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

	.pc_footer_ft_fl_li_fb_li a, .pc_footer_ft_fr_fb_li,.pc_footer_fb{
		font-size: 14px;
	}
}

/*公司简介*/
.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;
}

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

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

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

.ny_about_1_fb_fr {
	width: 48%;
}

.ny_about_1_fb_fr_ft {
	position: relative;
}

.ny_about_1_fb_fr_ft h3 {
	font-size: 1.6rem;
	line-height: 1.2;
	color: #333;
	position: absolute;
	left: 0;
	top: 50%;
	padding-bottom: 2%;
	border-bottom: 2px solid #008586;
	-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: 4.8rem;
	line-height: 1;
	font-family: 'Arial';
	font-weight: bold;
	color: transparent;
	text-align: left;
	text-indent: .65em;
	-webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.ny_about_2_fb {
	margin-top: 3%;
	overflow: hidden;
	position: relative;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	-o-justify-content: flex-end;
	justify-content: flex-end;
}

.ny_about_2_fb_fl {
	width: 48%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.ny_about_2_fb_fl img {
	width: 100%;
	height: 100%;
	opacity: 0;
}

.ny_about_2_fb_fr {
	width: 48%;
}

.ny_about_2_fb_fr ul {
	overflow: hidden;
}

.ny_about_2_fb_fr li {
	width: 48%;
	margin-right: 4%;
}

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

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

.ny_about_2_fb_fr li .img {
	width: 60px;
}

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

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

.ny_about_2_fb_fr li .wz h3 {
	font-size: 18px;
	line-height: 2;
	color: #333;
	font-weight: bold;
}

.ny_about_2_fb_fr li .wz h4 {
	font-size: 16px;
	line-height: 2;
	color: #666;
}

.ny_about_3 {
	padding: 3% 0;
	margin-top: 3%;
	background: #ececec;
}

.ny_about_3_fb {
	position: relative;
	margin-top: 3%;
	overflow: hidden;
}

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

.ny_about_3_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_3_fb li:hover .img img {
	-webkit-transform: scale(1.03);
	-moz-transform: scale(1.03);
	-ms-transform: scale(1.03);
	-o-transform: scale(1.03);
	transform: scale(1.03);
}

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

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

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

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

@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: 22px;
		padding-bottom: 10px;
	}

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

	.ny_about_1_fb_fr_fc {
		margin-top: 5px;
	}

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

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

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

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

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

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

	.ny_about_3_fb {
		margin-top: 15px;
	}

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

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

	.ny_about_2_fb {
		margin-top: 15px;
	}

	.ny_about_2_fb_fl {
		width: 100%;
		position: static;
		height: auto;
	}

	.ny_about_2_fb_fr {
		width: 100%;
		margin-top: 20px;
	}
}

@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: 0;
		text-align: left;
	}

	.ny_about_2_fb_fr li .img {
		width: 50px;
	}

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

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

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

.page_philosophy_li {
	background: #f7f7f7;
}

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

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

.page_philosophy_li_fl img {
	width: 100%;
}

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

.page_philosophy_li_fr {
	padding: 3%;
}

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

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

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

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

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

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

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

	.page_philosophy_li_fr h3 {
		font-size: 22px;
		padding-bottom: 15px;
	}

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

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

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

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

	.page_philosophy_li_fl {
		width: 100%;
	}

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

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

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

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

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

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

	.page_philosophy_li_fr {
		padding: 15px;
	}
}

/*集团发展*/
.dsj {
	position: relative;
}

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

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

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

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

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

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

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

.dsj .dsj_fcw {
	overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dashijiantishi{
	font-size: 16px;
	line-height: 2;
	color: #008586;
	text-align: center;
	margin-top: 15px;
}

/*底部导航*/
.mc_footer_nav_www{
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 999;
	width: 100%;
	background-color: #222;
	display: none;
}

.mc_footer_nav_www_li{
	width: 33.33333333333333%;
}

.mc_footer_nav_www_li a{
	font-size: 15px;
	line-height: 50px;
	color: #fff;
	text-align: center;
	position: relative;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.mc_footer_nav_www_li a::before{
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	margin-right: 8px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.mc_footer_nav_www_li:nth-child(1) a::before{
	background-image: url(../images/img/mc_footer_home_ico.png);
}

.mc_footer_nav_www_li:nth-child(2) a::before{
	background-image: url(../images/img/mc_footer_phone_ico.png);
}

.mc_footer_nav_www_li:nth-child(3) a::before{
	background-image: url(../images/img/mc_footer_contact_ico.png);
}

@media(max-width:991px){
	.mc_footer_nav_www{
		display: block;
	}

	body{
		padding-bottom: 50px!important;
	}
}