/*滚动条样式*/

::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: #f8f8f8;
}

::-webkit-scrollbar-thumb {
	background: #eb5902;
	height: 60px;
}

::-webkit-scrollbar-thumb:window-inactive {
	background: #eb5902;
}

::-webkit-scrollbar-thumb:vertical:hover {
	background: #eb5902;
}

body {
	font-family: "Helvetica Neue","Helvetica","Arial","sans-serif", "微软雅黑";
	word-break: break-all;
}

i,em {
	font-style: normal;
}

a:hover {
	text-decoration: none;
}

@media (min-width: 1440px) {
	.container {
		width: 1420px;
	}
}
@media (min-width: 1600px) {
	.container {
		width: 1530px;
	}
}

.Animation {
	-webkit-transition: all 1s;
	transition: all 1s;
	opacity: 0;
}

.fullpage {
	width: 100%;
	overflow: hidden;
}
.section {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 50px;
}
.img {
	width: 100%;
	overflow: hidden;
	margin: 0 auto;
	position: relative;
}
.img img {
	display: block;
	width: 100%;
	transition: all .5s;
}

.loading {
	position: relative;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	background-color: #000;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#background_video {
	display: block;
	width: 100%;
	height: 100%;
	/*object-fit: cover;*/
}
.videoMark {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 15vh;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.videoMark a {
	display: block;
	width: 210px;
	height: 54px;
	line-height: 54px;
	text-align: center;
	font-size: 20px;
	color: #fff;
	background: #eb5902;
	margin: 30px auto 0;
}
.videoMark a:hover {
	background: #df5300;
	text-shadow: 2px 2px 1px #000;
}

.download {
	margin-top: 30px;
}
.download a {
	display: inline-block;
	color: #333;
}
.download a img {
	width: 60px;
	margin-right: 10px;
}
.download a:hover {
	color: #eb5902;
}

.row {
	display:flex;
	flex-flow:row wrap;
}

@media (max-width: 767px) {
	.section .container {
		width: 100%;
	}
	.videoMark a {
		height: 40px;
		line-height: 40px;
		font-size: 16px;
		width: 160px;
	}
	.download a img {
		width: 40px;
	}
}
/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {
	.section {
		padding-top: 0;
	}
}
@media (min-width: 768px) {
	.section {
	    padding-top: 60px;
	}	
}
@media (min-width: 1440px) {
	.section {
	    padding-top: 80px;
	}	
}

/*侧边栏*/
.sidebar {
	position: fixed;
	left: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1031;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.sidebar.on {
	opacity: .6;
	left: -100px;
}
.sidebar>a {
	display: block;
	background-color: #fff;
	border: 1px #d9d9d9 solid;
	border-radius: 10px;
	text-align: center;
	word-break: break-all;
	color: #333;
	width: 120px;
	position: relative;
	outline: none;
}
.sidebar>a>h2 {
	font-size: 14px;
	line-height: 1;
	color: #fff;
	background-color: #ff7a2b;
	padding: 12px;
	border-radius: 10px 10px 0 0;
	margin: 0;
}
.sidebar>a>span {
	display: block;
	font-size: 14px;
	color: #fff;
	line-height: 24px;
	background-color: #ff7a2b;
	border-radius: 6px;
	margin: 0 12px 10px;
}
.sidebar>a:hover>span {
	background-color: #eb5902;
}
.sidebar>a>.icon {
	max-width: 74px;
	margin: 8px auto;
}
.sidebar>a>.icon img {
	display: block;
	width: 100%;
}

@media (max-width: 767px) {
	.sidebar {
		left: 5px;
	}
	.sidebar.on {
		left: -75px;
	}
	.sidebar>a {
		width: 90px;
	}
	.sidebar>a>.icon {
		max-width: 54px;
	}
	.sidebar>a>h2 {
		padding: 8px;
	}
	.sidebar>a>span {
		font-size: 12px;
		margin-left: 8px;
		margin-right: 8px;
	}
}

.sidebar .ewm{text-align: center;background:#fff;padding:10px;border-radius: 10px;border:1px #d9d9d9 solid;overflow: hidden;margin-top:5px;}
.sidebar .ewm>p{color:#333;margin:0;font-size:14px;color:#ff7a2b;font-weight: 700;}
.sidebar .ewm>span{display: block;color:#666;font-size:12px;}
.sidebar .ewm>img{display: block;width:98px;margin:8px 0;}
@media (max-width: 767px) {
	.sidebar .ewm>p{font-size:12px;}
	.sidebar .ewm>img{width:68px;margin:5px 0;}
}

/*foot*/
.gotop {
	width: 40px;
	height: 40px;
	background: url(../images/icon/gotop.png) no-repeat center;
	background-size: contain;
	position: fixed;
	right: 5px;
	bottom: 50px;
	cursor: pointer;
	display: none;
	transition: all .5s;
}
.gotop:hover {
	background: url(../images/icon/gotop1.png) no-repeat center;
	background-size: contain;
}

.footer {
	background-color: #333;
	line-height: 20px;
}
.footer a:hover {
	color: #fff;
}
.copyright {
	color: #666;
	border-top: 1px rgba(255,255,255,.2) solid;
	padding: 10px 0;
	text-transform: uppercase;
	text-align: center;
}
.copyright a {
	display: inline-block;
	color: #666;
}
.copyright a img {
	display: inline-block;
	max-width: 20px;
	margin: 0 5px;
}
.section .footer {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -100%;
	background-color: #262626;
}
.section.active .footer {
	opacity: 1;
	bottom: 0;
}
.index_foot_nav {
	text-align: center;
	padding: 16px 0;
	margin-left: -15px;
	margin-right: -15px;
}
.index_foot_nav a {
	display: inline-block;
	font-size: 16px;
	color: #ccc;
	padding: 0 15px;
}

.foot_top {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	padding: 40px 0 20px;
}
.foot_top_left {
	width: 36%;
	padding-right: 3%;
}
.foot_top_center {
	width: 34%;
	padding: 0 3%;
}
.foot_top_right {
	max-width: 40%;
}
.foot_logo img {
	display: block;
	max-width: 100%;
}
.foot_top .column>h2 {
	font-size: 18px;
	color: #fff;
	margin: 0 0 15px;
}
.foot_top_left .text {
	color: #999;
	line-height: 30px;
	margin-top: 25px;
	max-height: 150px;
	overflow: hidden;
}
.foot_nav {
	overflow: hidden;
}
.foot_nav a {
	float: left;
	width: 50%;
	color: #fff;
	line-height: 20px;
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.foot_nav a span {
	display: block;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.foot_nav a:before {
	content: "";
	width: 0;
	height: 2px;
	background-color: #eb5902;
	display: inline-block;
	-webkit-transition: all .5s;
	transition: all .5s;
	flex: 0 0 auto;
}
.foot_nav a:hover:before {
	width: 16px;
	margin-right: 3px;
}
.foot_nav a:hover {
	color: #eb5902;
}
.foot_top_right .wechat {
	display: flex;
	flex-direction: row;
	overflow: hidden;
}
.foot_top_right .wechat .img {
	float: left;
	max-width: 190px;
	margin: 0;
}
.foot_top_right .wechat .img+.img {
	margin-left: 6%;
}

@media (max-width: 767px) {
	.gotop {
		width: 30px;
		height: 30px;
	}
	.copyright {
		font-size: 12px;
	}
	.index_foot_nav {
		display: none;
	}
	.foot_top {
		flex-wrap: wrap;
	}
	.foot_top .column {
		width: 100%;
		padding: 0;
		margin-bottom: 30px;
		max-width:none;
	}
	.foot_top .column:last-child {
		margin-bottom: 0;
	}
}
@media (min-width: 1200px) {
	.foot_top .column>h2 {
		font-size: 24px;
	}
	.foot_top_left {
		padding-right: 6%;
	}
	.foot_top_center {
		padding: 0 6%;
	}
}

/*导航*/
.navbar-default {
	background-color: rgba(255,255,255,1);
	border: 0;
	border-radius: 0;
	-webkit-box-shadow: 0 0 12px rgba(0,0,0,.3);
	box-shadow: 0 0 12px rgba(0,0,0,.3);
	margin-bottom: 0;
}
.navbar-brand {
	height: auto;
	padding-top: 5px;
	padding-bottom: 5px;
}
.navbar-brand img {
	display: block;
	height: 40px;
}
.navbar-default .navbar-toggle {
	border: 0;
}
.navbar-default .navbar-toggle .icon-bar {
	background-color: #eb5902;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
	background-color: transparent;
}
.navbar-default .menu_close .icon-bar:nth-child(1) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: relative;
	top: 6px;
}
.navbar-default .menu_close .icon-bar:nth-child(2) {
	display: none;
}
.navbar-default .menu_close .icon-bar:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.navbar-default .navbar-nav>li>a {
	color: #333;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.navbar-default .nav>li>a:hover,
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
	color: #fff;
	background-color: #eb5902;
}
.navbar-default .nav>li>a:focus,
.navbar-default .navbar-nav>.open>a:focus, {
	color: #4e4e4e;
	background-color: transparent;
}
.navbar-collapse::-webkit-scrollbar {
	width: 2px;
	height: 2px;
}
.header .navbar-fixed-bottom .navbar-collapse,
.header .navbar-fixed-top .navbar-collapse {
	max-height: 300px;
}
.header .dropdown-menu {
	margin: 0;
	border: none;
	border-radius: 0;
	min-width: 140px;
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.header .dropdown-menu>li>a {
	padding: 6px;
	text-overflow: ellipsis;
	overflow: hidden;
}
.header .dropdown-menu>li>a:hover {
	color: #eb5902!important;
	background-color: transparent!important;
}

.top_sub {
	float: right;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-left: 15px;
}
.language {
	margin-left: 10px;
}
.language a {
	display: inline-block;
	width: 28px;
	height: 28px;
	/*border: 1px #ccc solid;*/
	border-radius: 100%;
	font-size: 12px;
	color: #333;
	text-align: center;
	line-height: 26px;
	margin-left: 8px;
}
.language a img {
	display: inline-block;
	width: 100%;
	height: 100%;
}
.language a:hover,
.language a.active {
	border-color: #eb5902;
	color: #eb5902;
}

.top_tel {
	margin-left: 10px;
}
.top_tel img {
	display: block;
	width: 28px;
	height: 28px;
	margin: 0 auto;
	cursor: pointer;
}
.top_tel a {
	color: #333;
}
.top_tel a p {
	background-color: #fff;
	border-radius: 10px;
	padding: 10px;
	margin: 0;
	-webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
	box-shadow: 0 6px 12px rgba(0,0,0,.175);
	text-align: left;
	max-width: 200px;
}
.top_tel a i {
	display: block;
	font-size: 14px;
}
.top_tel a span {
	display: block;
	font-size: 16px;
}
.top_tel .dropdown-menu {
	left: auto;
	right: -30px;
}

@media (max-width: 767px) {
	.header .navbar-fixed-top .navbar-collapse {
		max-height: none;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		top: 50px;
		background-color: #fff;
		margin: 0;
	}
	.navbar-brand .logo {
		display: none;
	}
	.top_sub {
		position: fixed;
		top: 11px;
		right: 60px;
		z-index: 1031;
	}
}
/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {
	.index_body .header {
		display: none;
	}
}
@media (min-width: 768px) {
	.navbar-brand {
		padding-top: 8px;
		padding-bottom: 8px;
		padding-right: 0;
	}
	.navbar-brand img {
		height: 44px;
	}
	.navbar-brand .logo {
		display: none;
	}
	.navbar-default .navbar-nav>li>a {
		padding: 20px 6px;
	}
	.header .dropdown-menu {
		padding: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		text-align: center;
	}
	.header .dropdown-menu li {
		background-color: #fff;
		-webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
		box-shadow: 0 6px 12px rgba(0,0,0,.175);
		overflow: hidden;
	}
	.header .dropdown-menu li:first-child {
		border-radius: 10px 10px 0 0;
	}
	.header .dropdown-menu li:first-child a {
		margin-top: 10px;
	}
	.header .dropdown-menu li:last-child {
		border-radius: 0 0 10px 10px;
	}
	.header .dropdown-menu li:last-child a {
		margin-bottom: 10px;
	}
	.header .dropdown-menu>li>a:hover {
		color: #fff!important;
		background-color: #eb5902!important;
	}
	.header .dropdown-menu:before {
		content: "";
		width: 0;
		height: 0;
		border-bottom: 6px #fff solid;
		border-left: 8px transparent solid;
		border-right: 8px transparent solid;
		border-radius: 5px;
		display: block;
		margin-left: auto;
		margin-right: 20px;
	}
	.top_tel .dropdown-menu {
		left: auto;
		-webkit-transform: translateX(0);
		transform: translateX(0);
		right: -15px;
	}
	.top_tel {
		padding: 16px 0;
	}
}
@media (min-width: 992px) {
	.navbar-default .navbar-nav>li>a {
		padding-left: 18px;
		padding-right: 18px;
	}
	.language,
	.top_tel {
		margin-left: 20px;
	}
}
@media (min-width: 1200px) {
	.navbar-brand .logo {
		display: block;
	}
	.navbar-brand .logo1 {
		display: none;
	}
	.navbar-default .navbar-nav>li>a {
		font-size: 15px;
		padding: 20px 10px;
	}
	.header .dropdown-menu li a {
		font-size: 16px;
	}
	.top_tel {
		padding: 13px 0;
	}
	.top_tel img {
		width: 34px;
		height: 34px;
	}
}
@media (min-width: 1440px) {
	.navbar-brand img {
		height: 64px;
	}
	.navbar-default .navbar-nav>li>a {
		font-size: 16px;
		padding: 30px 15px;
	}
	.top_tel {
		padding: 23px 0;
	}
	.top_tel a span {
		font-size: 18px;
	}
}
@media (min-width: 1600px) {
	.navbar-default .navbar-nav>li>a {
		padding: 30px 20px;
	}
}

/*第一屏*/
.section1 {
	padding-top: 0;
}
.section1 .swiper-container {
	width: 100%;
	height: 100%;
}
.banner_text .container {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 9;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.banner_text img {
	display: block;
	width: 100%;
	cursor: pointer;
}
.banner1 .banner_text img {
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}
.banner2 .banner_text img {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
.banner3 .banner_text img {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}
.banner4 .banner_text img {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}
.banner5 .banner_text img {
	-webkit-transform: scale(0);
	transform: scale(0);
}
.section1 .swiper-slide-active .banner_text img {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}

.section1 .swiper-pagination {
	bottom: 90px;
}
.section1 .swiper-pagination-bullet {
	width: 20px;
	height: 5px;
	background-color: #fff;
	border-radius: 4px;
	opacity: 1;
	margin: 0 6px!important;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.section1 .swiper-pagination-bullet-active {
	background-color: #eb5902;
	width: 40px;
}

.downTip {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 20px;
	z-index: 1;
	width: 18px;
	height: 50px;
	background: url(../images/icon/icon2.png) no-repeat center;
	background-size: contain;
	-webkit-animation: downTip 1s linear infinite alternate;
	animation: downTip 1s linear infinite alternate;
}
@-webkit-keyframes downTip {
    from {bottom: 30px;opacity:0.9;}
    to {bottom: 20px;opacity:1;}
}
@keyframes downTip {
    from {bottom: 30px;opacity:0.9;}
    to {bottom: 20px;opacity:1;}
}

@media (max-width: 767px) {
	.banner_text .PC_img {
		display: none;
	}
	.section1 .swiper-button-prev,
	.section1 .swiper-button-next {
		width: 18px;
		height: 29px;
		margin-top: -15px;
		background-size: contain;
	}
}
@media (min-width: 768px) {	
	.banner_text .min_img {
		display: none;
	}
	.section1 .swiper-pagination {
		bottom: 110px;
	}
	.section1 .swiper-pagination-bullet {
		width: 30px;
		height: 8px;
		margin: 0 15px!important;
	}
	.section1 .swiper-pagination-bullet-active {
		width: 68px;
	}
	.downTip {
		width: 24px;
		height: 66px;
	}
}

.index_title {
	text-align: center;
	margin-bottom: 20px;	
}
.section .index_title {
	-webkit-transform: scale(0);
	transform: scale(0);
}
.section.active .index_title {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}
.index_title a {
	display: block;
	color: #333;
}
.section .index_title a:after {
	content: "";
	width: 30px;
	height: 4px;
	background-color: #eb5902;
	display: block;
	margin: 8px auto 0;
}
.index_title h2 {
	font-size: 20px;
	margin: 0;
}
.index_title span {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	margin-top: 5px;
}
.index_title p {
	font-size: 12px;
	margin: 5px 0 0;
}

.index_more {
	transform: translate3d(0,100%,0);
	margin-top: 30px;
}
.active .index_more {
	opacity: 1;
	transform: none;
	transition-delay: .8s;
}
.index_more a {
	display: block;
	max-width: 120px;
	text-align: center;
	color: #fff;
	line-height: 20px;
	padding: 8px;
	background-color: #eb5902;
	border-radius: 25px;
}

/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {
	.index_title {
		margin-bottom: 15px;
	}
	.index_more {
		margin-top: 15px;
	}
}
@media (min-width: 768px) {
	.index_title h2 {
		font-size: 24px;
	}
	.index_title span {
		font-size: 14px;
	}
	.index_title p {
		font-size: 14px;
		margin-top: 10px;
	}
	.index_more a {
		max-width: 160px;
		font-size: 16px;
		padding: 12px;
	}
}
@media (min-width: 1200px) {
	.index_title {
		margin-bottom: 45px;
	}
	.index_more {
		margin-top: 60px;
	}
}

/*第二屏*/
.section2_list,
.section2_list .row {
	margin-left: -5px;
	margin-right: -5px;
}
.section2_list .column {
	padding: 0 5px;
}
.section2_list .row .column {
	margin: 5px 0;
}
.section2_list_left {
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
}
.section2_list_right {
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}
.active .section2_list_left,
.active .section2_list_right {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}
.section2_list a {
	display: block;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.section2_list a h2 {
	width: 100%;
	height: 100%;
	background-color: rgba(235,89,2,.8);
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 0;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	text-align: center;
	overflow: hidden;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.section2_list .row a h2 {
	bottom: -100%;
}
.section2_list .row a:hover h2 {
	bottom: 0;
}
.section2_list a h2 span {
	max-width: 100%;
	display: block;
	border: 1px #fff solid;
	padding: 10px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.section2_list_left a h2 {
	font-size: 20px;
}
.section2_list_left a h2 span {
	border-width: 2px;
	padding-left: 35px;
	padding-right: 35px;
}

@media (max-width: 767px) {
	.section2_list_left {
		display: none;
	}
}
/*竖屏*/
@media (max-width: 767px) and (orientation: portrait) {
	.section2_list .row .column:nth-child(n+5) {
		display: none;
	}
}
/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {
	.section2_list .row .column {
		width: 33.33333%;
	}
	.section2_list .row .column:nth-child(n+4) {
		display: none;
	}
}
@media (min-width: 768px) {
	.section2_list {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.section2_list:before,
	.section2_list:after {
		display: none;
	}
	.section2_list_left {
		padding-top: 5px!important;
		padding-bottom: 5px!important;
	}
	.section2_list_left a {
		height: 100%;
	}
	.section2_list_left a .img {
		height: 100%;
		background-position: center;
		background-size: cover;
	}
}
@media (min-width: 992px) {
	.section2_list,
	.section2_list .row {
		margin-left: -15px;
		margin-right: -15px;
	}
	.section2_list .column {
		padding: 0 15px;
	}
	.section2_list .row .column {
		margin: 15px 0;
	}
	.section2_list_left {
		padding-top: 15px!important;
		padding-bottom: 15px!important;
	}
}
@media (min-width: 1200px) {
	.section2_list {
		margin-left: -20px;
		margin-right: -20px;
	}
	.section2_list>.column {
		padding: 0 20px;
	}
	.section2_list a h2 {
		font-size: 18px;
	}
	.section2_list a h2 span {
		padding: 15px;
	}
	.section2_list_left a h2 {
		font-size: 24px;
	}
	.section2_list_left a h2 span {
		border-width: 2px;
		padding-left: 65px;
		padding-right: 65px;
	}
}

/*第三屏*/
.section3 .index_title a {
	color: #fff;
}
.section3 .news_list {
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}
.section3.active .news_list {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}
.news_list .column {
	margin: 15px 0;
}
.news_list a {
	background-color: #fff;
	color: #333;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.section3 .news_list a {
	padding: 10px;
	background-color: rgba(255,255,255,.9)!important;
}
.news_list a:hover {
	color: #eb5902;
	background-color: #f5f5f5;
	box-shadow: 0 0 12px rgba(0,0,0,.2);
}
.section3 .news_list a:hover {
	box-shadow: 0 6px 15px rgba(0,0,0,.3);
}
.news_list a .text {
	width: 73.33333%;
	padding: 25px 20px 25px 30px;
	overflow: hidden;
}
.section3 .news_list a .text {
	width: 62%;
	padding: 10px 10px 10px 20px;
}
.news_list a h2 {
	font-size: 16px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	margin: 0;
}
.news_list a p {
	font-size: 14px;
	color: #666;
	line-height: 30px;
	height: 90px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin: 5px 0 10px;
}
.section3 .news_list a p {
	line-height: 24px;
	height: 48px;
	-webkit-line-clamp: 2;
}
.news_list a span {
	display: block;
	font-size: 14px;
	color: #666;
	text-transform: uppercase;
	margin-top: 10px;
}
.section3 .news_list a span {
	color: #333;
}
.news_list a em {
	display: block;
	text-align: right;
	color: #666;
}
.news_list a:hover em {
	color: #eb5902;
}
.news_list a .img {
	width: 26.66667%;
	background-position: center;
	background-size: cover;
	position: relative;
}
.section3 .news_list a .img {
	width: 38%;
}
.section3 .news_list a .img:after {
	content: "";
	border: 1px rgba(255,255,255,.8) solid;
	position: absolute;
	top: 10px;
	right: 10px;
	bottom: 10px;
	left: 10px;
	opacity: 0;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.section3 .news_list a:hover .img:after {
	opacity: 1;
}

@media (max-width: 767px) {
	.section3 .news_list .column:nth-child(n+3) {
		display: none;
	}
	.news_list a .text {
		padding: 10px;
	}
	.section3 .news_list a .text {
		padding: 5px 5px 5px 10px;
	}	
	.news_list a h2 {
		font-size: 14px;
	}
	.news_list a p {
		font-size: 12px;
		line-height: 20px;
		height: 40px;
		-webkit-line-clamp: 2;
	}
	.news_list a span,
	.news_list a em {
		font-size: 12px;
	}
}
/*竖屏*/
@media (max-width: 767px) and (orientation: portrait) {
	.news_list a .img {
		width: 38%;
	}
	.news_list a .text {
		width: 62%;
	}
}
/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {
	.section3 .news_list {
		margin-left: -5px;
		margin-right: -5px;
	}
	.section3 .news_list .column {
		padding: 0 5px;
		float: left;
		width: 50%;
	}
	.section3 .news_list a span {
		display: none;
	}
}
@media (min-width: 1200px) {
	.news_list {
		margin-left: -20px;
		margin-right: -20px;
	}
	.news_list .column {
		padding: 0 20px;
	}
	.section3 .news_list .column {
		margin: 20px 0;
	}
	.news_list a h2 {
		font-size: 24px;
	}
	.section3 .news_list a h2 {
		font-size: 20px;
	}
	.section3 .news_list a .img:after {
		top: 15px;
		right: 15px;
		bottom: 15px;
		left: 15px;
	}
}
@media (min-width: 1600px) {
	.news_list {
		margin-left: -50px;
		margin-right: -50px;
	}
	.news_list .column {
		padding: 0 50px;
	}
	.section3 .news_list a .text {
		padding: 25px 20px 25px 30px;
	}
	.news_list a p {
		margin: 10px 0 15px;
	}
	.section3 .news_list a p {
		height: 96px;
		-webkit-line-clamp: 4;
	}
	.news_list a span {
		margin-top: 15px;
	}
}

/*第四屏*/
.case_list {
	position: relative;
}
.indexCaseMenu,
.section4 .tab-content {
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}
.active .indexCaseMenu,
.section4.active .tab-content {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}
.active .indexCaseMenu {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}
.section4.active .tab-content {
	-webkit-transition-delay: .8s;
	transition-delay: .8s;
}
.indexCaseMenu {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin-left: -2px;
	margin-right: -2px;
	margin-bottom: 15px;
}
.indexCaseMenu:before,
.indexCaseMenu:after {
	display: none;
}
.indexCaseMenu li {
	min-width: 90px;
	padding: 0 2px;
	margin: 2px 0;
}
.indexCaseMenu li a {
	display: block;
	color: #333;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	border: 1px rgba(0,0,0,.3) solid;
	line-height: 20px;
	padding: 5px 10px;
	text-align: center;
}
.indexCaseMenu li a:hover,
.indexCaseMenu li.active a {
	color: #fff;
	background-color: #eb5902;
	border-color: #eb5902;
}

.case_list .column {
	margin: 15px 0;
}
.case_list a {
	display: block;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.case_list a .text {
	width: 100%;
	height: 100%;
	background-color: rgba(235,89,2,.9);
	position: absolute;
	left: 0;
	bottom: -100%;
	padding: 10px 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.case_list a:hover .text {
	bottom: 0;
}
.case_list a .text:after {
	content: "";
	border: 1px rgba(255,255,255,.58) solid;
	position: absolute;
	top: 10px;
	right: 15px;
	bottom: 10px;
	left: 15px;
}
.case_list a h2 {
	font-size: 18px;
	margin: 0;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.case_list a p {
	line-height: 20px;
	color: #e5e5e5;
	margin: 10px 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.case_list a em {
	display: block;
	border: 1px #fff solid;
	opacity: .8;
	width: 100%;
	max-width: 120px;
	margin: 0 auto;
	text-align: center;
	line-height: 20px;
	padding: 6px;
}
@media (max-width: 374px) {
	.case_list .column {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.section4 .swiper-button-prev,
	.section4 .swiper-button-next {
		width: 18px;
		height: 29px;
		margin-top: -15px;
		background-size: contain;
	}
	.section4 .swiper-button-prev {
		left: 0;
	}
	.section4 .swiper-button-next {
		right: 0;
	}
	.case_list {
		margin-left: -5px;
		margin-right: -5px;
	}
	.case_list .column {
		padding: 0 5px;
	}
	.section4 .case_list {
		padding: 0 30px;
		margin: 0;
	}
	.case_list a .text {
		padding: 10px 20px;
	}
	.case_list a .text:after {
		top: 5px;
		right: 10px;
		bottom: 5px;
		left: 10px;
	}
	.case_list a h2 {
		font-size: 16px;
	}
	.case_list a p {
		font-size: 12px;
		margin: 15px 0;
	}
	.case_list a em {
		font-size: 12px;
	}
}
/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {
	.case_list .column {
		float: left;
		width: 50%;
	}
}
@media (min-width: 768px) {
	.section4 .swiper-button-prev,
	.section4 .swiper-button-next {
		display: none;
	}
	.indexCaseMenu {
		margin-left: -15px;
		margin-right: -15px;
	}
	.indexCaseMenu li {
		padding: 0 15px;
		min-width: 150px;
		margin: 5px 0;
	}
	.indexCaseMenu li a {
		font-size: 18px;
		padding-top: 14px;
		padding-bottom: 14px;
	}
	.case_list .swiper-slide {
		margin-top: 20px!important;
	}
}
@media (min-width: 992px) {	
	.case_list a p {
		margin: 20px 0;
	}
}
@media (min-width: 1200px) {
	.indexCaseMenu {
		margin-bottom: 30px;
	}
}
@media (min-width: 1440px) {
	
}

/*第五屏*/
.section5_list {
	margin-bottom: 70px;
}
.section5_list_left {
	display: none;
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
}
.section5_list_right {
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}
.active .section5_list_left,
.active .section5_list_right {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}
.section5_content {
	background-color: rgba(255,255,255,.9);
	-webkit-box-shadow: 0 6px 15px rgba(0,0,0,.15);
	box-shadow: 0 6px 15px rgba(0,0,0,.15);
	padding: 15px;
}
.section5_content>h2 {
	font-size: 16px;
	font-weight: bold;
	margin: 0;
}
.section5_content>h2:after {
	content: "";
	width: 30px;
	height: 2px;
	background-color: #eb5902;
	display: block;
	margin-top: 10px;
}
.section5_content .text {
	font-size: 14px;
	line-height: 24px;
	color: #666;
	height: 72px;
	overflow: hidden;
	margin-top: 10px;
}
.section5_content .text p {
	margin: 0;
}
.section5_content .more {
	text-align: right;
	margin-top: 10px;
}
.section5_content .more a {
	color: rgba(51,51,51,.5);
}
.index_contact_wrap {
	margin-top: 25px;
}
.index_contact_wrap p:last-child {
	margin-bottom: 0;
}
.index_contact_wrap p a {
	display: flex;
	flex-direction: row;
	line-height: 24px;
	color: #666;
}
.index_contact_wrap p a img {
	flex: 0 0 auto;
	display: block;
	width: 24px;
	height: 24px;
	margin-right: 15px;
}

@media (max-width: 767px) {
	
}
/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {
	.index_contact_wrap {
		display: none;
	}
}
@media (min-width: 768px) {	
	.section5_content {
		padding: 20px 30px;
	}
	.section5_content>h2 {
		font-size: 20px;
	}
	.section5_content>h2:after {
		height: 4px;
	}
	.section5_content .text {
		height: 144px;
	}
	.index_contact_wrap {
		padding-left: 13%;
	}
}
@media (min-width: 992px) {
	.section5_list {
		display: flex;
		flex-direction: row;
		align-items: flex-end;
		position: relative;
	}
	.section5_list:after {
		content: "";
		width: 0;
		height: 0;
		border-top: 12px #eb5902 solid;
		border-right: 12px #eb5902 solid;
		border-left: 12px transparent solid;
		border-bottom: 12px transparent solid;
		position: absolute;
		top: 0;
		right: 0;
	}
	.section5_list_left {
		width: 50%;
		display: block;
	}
	.section5_list_right {
		width: 50%;
		position: relative;
	}
	.section5_content {
		margin-left: -25%;
	}	
	.section5_content .text {
		height: 72px;
	}
}
@media (min-width: 1200px) {
	.section5_content>h2:after {
		margin-top: 15px;
	}
	.section5_content .text {
		height: 96px;
		margin-top: 20px;
	}
	.section5_content .more {
		margin-top: 20px;
	}
}
@media (min-width: 1440px) {
	.section5_content {
		padding: 35px 50px;
	}
	.section5_content .text {
		height: 144px;
	}
	.index_contact_wrap p {
		margin: 0 0 20px;
	}
	.index_contact_wrap p:last-child {
		margin-bottom: 10px;
	}
}

@media (min-width: 1440px) and (max-height: 849px) {
	.section2 .container,
	.section3 .container,
	.section4 .container,
	.section5 .container {
		width: 1270px;
	}
}
@media (min-width: 768px) and (max-height: 768px) {
	.section .index_title {
		margin-bottom: 20px;
	}
	.section3 .news_list .column {
		margin: 10px 0;
	}
}
@media (min-width: 1600px) and (max-height: 768px) {
	.section3 .news_list a .text {
		padding: 10px 10px 10px 20px;
	}
	.section3 .news_list a p {
		height: 48px;
		-webkit-line-clamp: 2;
	}
	.section3 .news_list a span {
		margin-top: 10px;
	}
	.section3 .news_list a p {
		margin: 5px 0 10px;
	}
}
@media (min-width: 1400px) and (max-height: 768px) {
	.section {
		padding-top: 60px;
	}
	.navbar-brand img {
		height: 44px;
	}
	.navbar-default .navbar-nav>li>a {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.top_tel {
		padding: 13px 0;
	}
	.section2 .container,
	.section3 .container,
	.section4 .container,
	.section5 .container {
		width: 1170px;
	}
	.section5_content {
		padding: 20px 30px;
	}
	.section5_content .text {
		height: 96px;
	}
	.index_contact_wrap p {
		margin-bottom: 10px;
	}
	.index_contact_wrap p:last-child {
		margin-bottom: 0;
	}
}
@media (min-width: 768px) and (max-height: 705px) {
	.indexCaseMenu {
		margin-bottom: 0;
	}
	.indexCaseMenu li a {
		font-size: 16px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.section5_content .text {
		height: 96px;
	}
}
@media (min-width: 992px) and (max-height: 705px) {
	.section5_content .text {
		height: 72px;
	}
}
@media (min-width: 1200px) and (max-height: 705px) {
	.section4 .container {
		width: 1070px;
	}
	.section4 .case_list a p {
		margin: 10px;
	}
	.section2 .container,
	.section5 .container {
		width: 970px;
	}
	.section2_list a h2 {
		font-size: 16px;
	}
	.section5_content .text {
		height: 72px;
		margin-top: 10px;
	}
	.section5_content .more {
		margin-top: 10px;
	}
}

/*内页*/
.inside_banner_main,
.inside_banner {
	position: relative;
	overflow: hidden;
}
.inside_banner img {
	display: block;
	width: 100%;
}
.inside_banner_text {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #fff;
	text-align: center;
	padding-top: 50px;
}
.inside_banner .swiper-button-prev,
.inside_banner .swiper-button-next {
	margin-top: 30px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.banner1 .inside_banner_text img {
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}
.banner2 .inside_banner_text img {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
.banner3 .inside_banner_text img {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}
.banner4 .inside_banner_text img {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}
.banner5 .inside_banner_text img {
	-webkit-transform: scale(0);
	transform: scale(0);
}
.inside_banner .swiper-slide-active .inside_banner_text img {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}

.submenu_main {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}
.submenu {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin-left: -5px;
	margin-right: -5px;
}
.submenu:before,
.submenu:after {
	display: none;
}
.submenu li {
	padding: 0 5px;
	margin-top: 5px;
}
.submenu li a {
	background-color: #fff;
	color: #333;
	text-align: center;
	line-height: 20px;
	padding: 10px 5px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.submenu li a:hover,
.submenu li.active a {
	background-color: #eb5902;
	color: #fff;
}

.submenu1 {
	display: flex;
	flex-flow: row wrap;
	margin-left: -2px;
	margin-right: -2px;
	margin-bottom: 30px;
}
.submenu1 li {
	padding: 0 2px;
	margin: 2px 0;
	min-width: 94px;
}
.submenu1 li a {
	display: block;
	line-height: 20px;
	color: #333;
	text-align: center;
	border: 1px rgba(153,153,153,.5) solid;
	border-radius: 5px;
	padding: 10px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.submenu1 li a:hover,
.submenu1 li.active a {
	color: #fff;
	background-color: #eb5902;
	border-color: #eb5902;
}

.location_main {
	border-bottom: 1px rgba(0,0,0,.2) solid;
	padding: 20px 0 8px;
	overflow: hidden;
}
.location b,
.location a {
	display: inline-block;
	font-weight: normal;
	color: #666;
	line-height: 20px;
}
.location a:hover {
 	color: #eb5902;
}

.wrapper {
	min-height: 80vh;
}
.inside_main {
	padding: 30px 0;
	overflow: hidden;
	position: relative;
}
.inside_main .container {
	position: relative;
}

.inside_title {
	margin-bottom: 15px;
	color: #000;
	text-align: center;
}
.inside_title h2 {
	font-size: 18px;
	margin: 0;
}

.InfoContent {
	line-height: 1.71428571;
	position: relative;
	overflow: hidden;
}
.InfoContent p {
	margin: 0;
}
.InfoContent img {
	max-width: 100%;
}
.ue-table-interlace-color-single {
	background: #eaeff5;
}
.ue-table-interlace-color-double {
	background: #fcfcfc;
}
.InfoTitle {
	margin-bottom: 15px;
	border-bottom: 1px #dad9d9 solid;
	padding-bottom: 15px;
    text-align: center;
}
.InfoTitle h4 {
    font-size: 18px;
    margin: 0;
    line-height: 1.4;
}
.InfoTitle .date {
	font-size: 12px;
	color: #666;
	margin-top: 10px;
}
.goBack {
	text-align: center;
	margin-top: 30px;
	margin-bottom: -15px;
}
.goBack a {
	display: inline-block;
	color: #fff;
	line-height: 20px;
	background-color: #666;
	padding: 10px 30px;
}
.goBack a:hover {
	background-color: #eb5902;
}
.pager {
	margin: 30px 0 0;
	border-top: 1px rgba(0,0,0,.2) solid;
	padding-top: 30px;
}
.pager li>a,
.pager li>span {
	border-color: rgba(102,102,102,.5);
	border-radius: 0;
	color: rgba(0,0,0,.5);
	margin: 0 5px;
	line-height: 20px;
	padding: 5px 10px;
	float: none!important;
}
.pager li>span {
	border-color: rgba(102,102,102,.2);
	color: rgba(51,51,51,.2);
}
.pager li.prev>a,
.pager li.next>a,
.pager li>a:hover,
.pager li.active>a {
	background-color: #eb5902;
	color: #fff;
	border-color: #eb5902;
}
.info_previous_next_wrap {
	border-top: 1px #dad9d9 solid;
	padding-top: 16px;
	margin-top: 40px;
	font-size: 14px;
	color: #666;
}
.info_previous_next_wrap b {
	font-weight: normal;
}
.info_previous_next_wrap a {
	color: #666;
	text-decoration: none;
}
.info_previous_next_wrap a:hover {
	color: #eb5902;
}
.info_Previous,
.info_Next {
	margin-bottom: 10px;
}
.info_previous_next_wrap1 {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
}
.info_previous_next_wrap1 li>span,
.info_previous_next_wrap1 li>a {
	display: block;
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	background-color: rgba(235,89,2,.8);
	padding: 12px 45px;
	margin: 0 50px;
}
.info_previous_next_wrap1 li>a {
	background-color: #eb5902;
}

@media (max-width: 767px) {
	.inside_banner .PC_img {
		display: none;
	}
	.inside_banner .swiper-button-prev,
	.inside_banner .swiper-button-next {
		width: 18px;
		height: 29px;
		margin-top: 25px;
		background-size: contain;
	}
	.submenu {
		flex-wrap: wrap-reverse;
	}
	.submenu li {
		width: 33.33333%;
		max-width: 110px;
	}
	.pager li {
		display: none;
	}
	.pager li.prev,
	.pager li.next {
		display: inline;
	}
	.info_previous_next_wrap {
		font-size: 12px;
		margin-top: 30px;
	}
	.info_previous_next_wrap1 {
		margin-top: 30px;
	}
	.info_previous_next_wrap1 li>span,
	.info_previous_next_wrap1 li>a {
		font-size: 12px;
		padding: 8px 30px;
		margin: 0 10px;
	}
}
@media (min-width: 768px) {
	.inside_banner .min_img {
		display: none;
	}
	.inside_banner_text {
		padding-top: 60px;
		margin-top: 20px;
	}
	.submenu li {
		width: 20%;
		max-width: 150px;
	}
	.submenu li a {
		font-size: 16px;
		padding-top: 12px;
		padding-bottom: 12px;
	}
	.submenu1 {
		margin-left: -10px;
		margin-right: -10px;
	}
	.submenu1 li {
		padding: 0 10px;
		margin: 10px 0;
		min-width: 120px;
	}
	.submenu1 li a {
		font-size: 16px;
	}
	.inside_main {
		padding: 50px 0;
	}
	.inside_title h2 {
		font-size: 24px;
	}
	.pager li>a,
	.pager li>span {
		font-size: 16px;
	}
}
@media (min-width: 1200px) {
	.submenu1 {
		margin-left: -25px;
		margin-right: -25px;
	}
	.submenu1 li {
		padding: 0 25px;
		min-width: 170px;
	}
	.inside_title h2 {
		font-size: 30px;
	}
}
@media (min-width: 1440px) {
	.inside_banner_text {
		padding-top: 80px;
		margin-top: 40px;
	}
	.inside_banner .swiper-button-prev,
	.inside_banner .swiper-button-next {
		margin-top: 40px;
	}
	.submenu li a {
		font-size: 18px;
		padding-top: 18px;
		padding-bottom: 18px;
	}
	.submenu1 li a {
		font-size: 18px;
	}
	.InfoTitle {
		margin-bottom: 30px;
	}
	.InfoTitle h4 {
		font-size: 24px;
	}
}

/*产品*/
.product_list .column {
	margin: 15px 0;
}
.product_list a {
	display: block;
	color: #fff;
	border-radius: 15px 15px 0 0;
	overflow: hidden;
	position: relative;
}
.product_list a .text {
	width: 100%;
	height: 50px;
	background-color: rgba(235,89,2,1);
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 10px 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.product_list a:hover .text {
	height: 100%;
	justify-content: center;
	background-color: rgba(235,89,2,.8);
}
.product_list a h2 {
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	margin: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	flex: 0 0 auto;
}
.product_list a p {
	line-height: 24px;
	color: #f0f0f0;
	margin: 5px 0 0;
	max-height: 72px;
	overflow: hidden;
}
.product_list a em {
	display: block;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	border: 1px rgba(255,255,255,.2) solid;
	padding: 6px;
	width: 100%;
	max-width: 90px;
	margin: 10px auto 0;
	flex: 0 0 auto;
}

.detailsBox {
	background-color: #f7f7f7;
	padding-bottom: 50px;
	overflow: hidden;
}
.detailsItem {
	padding: 30px 30px 0;
}
.detailsItem+.detailsItem {
	border-top: 1px rgba(0,0,0,.2) solid;
}
.details_title {
	font-size: 20px;
	margin-bottom: 15px;
}
.details_title:after {
	content: "";
	width: 36px;
	height: 2px;
	background-color: #eb5902;
	display: block;
	margin-top: 15px;
}
.details_top .column {
	margin-bottom: 30px;
}
.details_top_left .inner {
	position: relative;
}
.details_top_left .inner h2 {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(235,89,2,.9);
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	padding: 15px;
	text-align: center;
	letter-spacing: 5px;
	margin: 0;
}

@media (max-width: 767px) {
	.detailsBox {
		padding-bottom: 30px;
	}
	.detailsItem {
		padding: 15px 15px 0;
	}
	.details_title {
		font-size: 16px;
	}
	.details_title:after {
		margin-top: 10px;
	}
	.details_top_left .inner h2 {
		font-size: 16px;
		padding: 5px;
	}
	.details_top .column {
		margin-bottom: 15px;
	}
}
/*竖屏*/
@media (max-width: 767px) and (orientation: portrait) {
	.product_list {
		margin-left: -5px;
		margin-right: -5px;
	}
	.product_list .column {
		padding: 0 5px;
		margin: 5px 0;
	}
	.product_list a .text {
		height: 34px;
		padding: 5px 10px;
	}
	.product_list a h2 {
		font-size: 14px;
		line-height: 24px;
	}
	.product_list a p {
		font-size: 12px;
		line-height: 20px;
		max-height: 40px;
	}
	.product_list a em {
		font-size: 12px;
		padding: 3px;
	}
}
@media (min-width: 992px) {
	.details_top {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}
	.details_top:before,
	.details_top:after {
		display: none;
	}
}
@media (min-width: 1200px) {
	.product_list a p {
		margin-top: 15px;
		max-height: 120px;
	}
	.detailsItem {
		padding: 45px 60px 0;
	}
	.detailsItem .InfoContent {
		font-size: 16px;
	}
	.details_top {
		margin-left: -50px;
		margin-right: -50px;
	}
	.details_top .column {
		padding: 0 50px;
	}
}
@media (min-width: 1440px) {
	.product_list {
		margin-left: -20px;
		margin-right: -20px;
	}
	.product_list .column {
		padding: 0 20px;
		margin: 20px 0;
	}	
}

/*新闻*/
.news_recommend {	
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 10%;
	z-index: 1;
	width: 36%;
	max-width: 500px;
	margin-top: 30px;
	display: none;
}
.news_recommend_list {
	background-color: rgba(255,255,255,.7);
	padding: 30px 20px;
}
.news_recommend_list a {
	display: block;
	color: #333;
}
.news_recommend_list a:hover {
	color: #eb5902;
}
.news_recommend_list a h2 {
	font-size: 20px;
	margin: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.news_recommend_list a p {
	color: #333;
	line-height: 30px;
	height: 90px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	margin: 10px 0;
}
.news_recommend_list a em {
	display: block;
	color: #eb5902;
}
.news_recommend_list .swiper-pagination {
	width: 100%;
	bottom: 20px;
	left: 0;
	padding: 0 30px;
	text-align: right;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}
.news_recommend_list .swiper-pagination-bullet {
	width: 30px;
	height: 4px;
	border-radius: 0;
	background-color: #d6d6d6;
	opacity: 1;
	margin: 0 10px;
	outline: none;
}
.news_recommend_list .swiper-pagination-bullet-active {
	background-color: #eb5902;
}

@media (min-width: 992px) {
	.news_recommend {
		display: block;
	}
}
@media (min-width: 1440px) {
	.news_recommend {
		margin-top: 40px;
	}
	.news_recommend_list {
		padding: 45px 30px;
	}
	.news_recommend_list a h2 {
		font-size: 24px;
	}
	.news_recommend_list a p {
		margin: 20px 0;
	}
}

/*关于我们*/
.about_list .column {
	margin-bottom: 30px;
}
.about_list .InfoContent {
	color: #666;
}
.about_list .img {
	padding: 6px;
	width: 80%;
}
.about_list .img:before,
.about_list .img:after {
	content: "";
	width: 90%;
	height: 86.5%;
	position: absolute;
	z-index: 1;
}
.about_list .img:before {
	border-top: 6px #eb5902 solid;
	border-right: 6px #eb5902 solid;
	top: 0;
	right: 0;
}
.about_list .img:after {
	border-bottom: 6px #eb5902 solid;
	border-left: 6px #eb5902 solid;
	bottom: 0;
	left: 0;
}

@media (max-width: 767px) {
	
}
@media (min-width: 768px) {
	.about_list {
		margin-top: 40px;
	}
}
@media (min-width: 992px) {
	.about_list .img {
		width: 100%;
	}
}
@media (min-width: 1200px) {
	.about_list {
		margin-top: 60px;
	}
}
@media (min-width: 1440px) {
	.about_list {
		margin-left: -55px;
		margin-right: -55px;
	}
	.about_list .column {
		padding: 0 55px;
	}
	.about_list .InfoContent {
		font-size: 16px;
	}
}

/*人才招聘*/
.job_info {
	line-height: 24px;
	margin-top: 20px;
}
.job_info p {
	margin: 0;
}
.job_list_box {
	border: 1px rgba(0,0,0,.1) solid;
	border-radius: 10px;
	overflow: hidden;
	margin-top: 30px;
}
.job_list_box .span {
	float: left;
	width: 21.25%;
	padding: 0 5px;
}
.job_list_box .span5 {
	width: 15%;
}
.job_top {
	background-color: #f5f5f5;
	line-height: 24px;
	padding: 15px;
	overflow: hidden;
}
.job_list .panel {
	border: 0;
	box-shadow: none;
	border-radius: 0;
	margin: 0;
}
.job_list .panel-heading {
	border-radius: 0;
	border-bottom: 1px rgba(0,0,0,.2) dashed;
	padding: 0;
	position: relative;
}
.job_list .panel:last-child .panel-heading {
	border-bottom: 0;
}
.job_list .active .panel-heading {
	border-bottom: 1px rgba(0,0,0,.2) solid!important;
}
.job_list .panel-heading a {
	display: block;
	color: #333;
	overflow: hidden;
	padding: 15px;
	position: relative;
	z-index: 1; 
}
.panel-heading>i {
	display: block;
	width: 16px;
	height: 10px;
	background: url(../images/icon/icon7.png) no-repeat center;
	background-size: contain;
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -5px;
	transition: all .5s;
}
.panel.active .panel-heading>i {
	transform: rotate(180deg);
}
.job_list .panel-body {
	border-bottom: 1px rgba(0,0,0,.2) dashed;
	padding-top: 20px;
	padding-bottom: 30px;
}
.job_list .panel:last-child .panel-body {
	border-bottom: 0;
}
.job_description .column {
	margin-bottom: 10px;
}
.job_description .inner>h2 {
	font-size: 16px;
	margin: 0;
	position: relative;
	padding-left: 15px;
}
.job_description .inner>h2:before {
	content: "";
	width: 4px;
	height: 16px;
	background-color: #eb5902;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 1px;
}
.job_description .inner .InfoContent {
	margin-top: 10px;
}
.apply_btn {
	margin-top: 30px;
	text-align: center;
}
.apply_btn a {
	display: inline-block;
	background-color: #eb5902;
	line-height: 20px;
	color: #fff;
	border-radius: 5px;
	padding: 8px 25px;
	text-decoration: none;
}
.apply_btn a:hover {
	background-color: #555;
}

@media (max-width: 767px) {
	.job_list_box .span {
		width: 33.33333%;
	}
	.job_list_box .span4,
	.job_list_box .span5 {
		display: none
	}
}
@media (min-width: 768px) {
	.job_info {
		margin-top: 40px;
	}
	.job_top_box {
		margin-top: 60px;
	}
	.job_top {
		font-size: 16px;
	}
	.job_top,
	.job_list .panel-heading a {
		padding-left: 30px;
		padding-right: 30px;
	}
	.job_list .panel-body {
		padding-top: 40px;
		padding-bottom: 60px;
	}
	.job_description .inner .InfoContent {
		padding-left: 40px;
	}
}
@media (min-width: 992px) {
	.job_list_box .span {
		width: 22%;
	}
	.job_list_box .span5 {
		width: 12%;
	}
}
@media (min-width: 1200px) {
	.job_top,
	.job_description .inner>h2 {
		font-size: 18px;
	}
	.job_top,
	.job_list .panel-heading a {
		padding-left: 70px;
		padding-right: 70px;
	}
	.panel-heading>i {
		right: 50px;
	}
	.job_description {
		margin-left: -50px;
		margin-right: -50px;
		padding: 0 100px;
	}
	.job_description .column {
		padding: 0 50px;
	}
	.apply_btn a {
		font-size: 18px;
		border-radius: 10px;
		padding: 12px 35px;
	}
}
@media (min-width: 1440px) {
	.job_description {
		margin-left: -135px;
		margin-right: -135px;
		padding: 0 160px;
	}
	.job_description .column {
		padding: 0 135px;
	}
}

/*问题答疑*/
.question_list .panel {
	border: none;
	border-bottom: 1px rgba(51,51,51,.1) solid;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	margin: 0;
}
.question_list .panel-heading {
	padding: 0;
	border: none;
	border-radius: 0;
	position: relative;
}
.question_list .panel-heading a {
	display: block;
	font-size: 16px;
	color: #333;
	overflow: hidden;
	text-decoration: none;
	padding: 10px 40px 10px 0;
	position: relative;
	z-index: 1;
}
.question_list .active .panel-heading a {
	color: #eb5902;
}
.question_list .panel-body {
	background-color: #f7f7f7;
	margin: 10px 0 30px;
	color: #666;
}

@media (min-width: 1200px) {
	.question_list .panel-heading a {
		font-size: 20px;
		padding: 15px 70px 15px 0;
	}
	.question_list .panel-body {
		font-size: 16px;
		padding: 15px 25px 25px;
	}
}

/*联系我们*/
.contact_list {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.contact_list li {
	width: 50%;
	padding: 0 15px;
	margin: 15px 0;
	border-right: 1px rgba(214,214,214,.5) solid;
}
.contact_list li:nth-child(2n) {
	border-right-width: 0;
}
.contact_list .icon {
	width: 60px;
	margin: 0 auto 10px;
	position: relative;
}
.contact_list .icon img {
	display: block;
	width: 100%;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.contact_list li:hover .icon img {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.contact_list a {
	display: block;
	color: #333;
	text-align: center;
}
.contact_list h4 {
	font-size: 16px;
	margin: 0;
}
.contact_list p {
	word-break: break-all;
	margin: 10px 0 0;
}

.map {
	margin-top: 20px;
}
.map #dituContent {
	width: 100%;
	height: 240px;
	border: 1px #ddd solid;
}

@media (max-width: 479px) {
	.contact_list li {
		width: 100%;
		border-right: 0;
		border-bottom: 1px rgba(214,214,214,.5) solid;
		padding-bottom: 20px;
		margin: 0 0 20px;
	}
}
@media (min-width: 768px) {
	.contact_list h4 {
		font-size: 18px;
	}
	.contact_list .icon {
		width: 80px;
		margin-bottom: 20px;
	}
	.map {
		margin-top: 50px;
	}
	.map #dituContent {
		height: 400px;
	}
}
@media (min-width: 1200px) {
	.contact_list li {
		width: 25%;
	}
	.contact_list li:nth-child(2n) {
		border-right-width: 1px;
	}
	.contact_list li:nth-child(4n) {
		border-right-width: 0;
	}
	.map #dituContent {
		height: 540px;
	}
}

/*动画*/
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}
.fadeIn {
	-webkit-animation: fadeIn 1s;
	animation: fadeIn 1s;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		-ms-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}
.fadeInDown {
	-webkit-animation: fadeInDown 1s;
	animation: fadeInDown 1s;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		-ms-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}
.fadeInUp {
	-webkit-animation: fadeInUp 1s;
	animation: fadeInUp 1s;
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		-ms-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}
.fadeInLeft {
	-webkit-animation: fadeInLeft 1s;
	animation: fadeInLeft 1s;
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		-ms-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}
.fadeInRight {
	-webkit-animation: fadeInRight 1s;
	animation: fadeInRight 1s;
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	50% {
		opacity: 1
	}
}
@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		-ms-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	50% {
		opacity: 1
	}
}
.zoomIn {
    -webkit-animation: zoomIn 1s;
    animation: zoomIn 1s
}