/* 行业应用events */
.application_list {
	float: left;
	margin: 15px 0.5%;
	width: 32.3%;
}

.application_list h1 {
	font-size: 16px;
	text-align: center;
	margin: 10px 0 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.application_list h1 a {
	color: #333;
}

.application {
	color: #fff;
	position: relative;
	overflow: hidden;
	background: #000000;
	width: 100%;
	text-align: left;
}

.application * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.application img {
	max-width: 100%;
	opacity: 1;
	width: 100%;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

.application figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 30px 3em;
	width: 100%;
	height: 100%;
}

.application figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 100%;
	border-left: 4px solid rgba(255, 255, 255, 0.8);
	content: '';
	opacity: 0;
	background-color: rgba(255, 255, 255, 0.5);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-transition-delay: 0.6s;
	transition-delay: 0.6s;
}

.application h2,
.application p {
	margin: 0 0 5px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;
}

.application h2 {
	word-spacing: -0.15em;
	text-transform: uppercase;
	-webkit-transform: translate3d(30%, 0%, 0);
	transform: translate3d(30%, 0%, 0);
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	font-size: 20px;
	font-weight: bold;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.application p {
	-webkit-transform: translate3d(0%, 30%, 0);
	transform: translate3d(0%, 30%, 0);
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	line-height: 26px;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.application a {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: absolute;
	color: #ffffff;
}

.application:hover img {
	opacity: 0.3;
}

.application:hover figcaption h2 {
	opacity: 1;
	-webkit-transform: translate3d(0%, 0%, 0);
	transform: translate3d(0%, 0%, 0);
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.application:hover figcaption p {
	opacity: 0.9;
	-webkit-transform: translate3d(0%, 0%, 0);
	transform: translate3d(0%, 0%, 0);
	-webkit-transition-delay: 0.6s;
	transition-delay: 0.6s;
}

.application:hover figcaption::before {
	background: rgba(255, 255, 255, 0);
	left: 30px;
	opacity: 1;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

/* 行业应用结束 */
/* 产品中心开始 */
.product_box {
	width: 100%;
	overflow: hidden;
}

.product_list {
	width: 24%;
	float: left;
	margin: 10px .5%;
}

.product_list h2 {
	font-size: 15px;
	text-align: center;
	margin: 15px 0 0;
	font-weight: bold;
}

.product_list h2 a {
	color: #333;
}

.product {
	text-align: center;
	overflow: hidden;
	position: relative;
}

.product:hover {
	box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.3);
}

.product:before {
	content: "";
	background: linear-gradient(to left top, #ff4700, #e97f18);
	height: 100%;
	width: 100%;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	transition: all 0.4s linear;
}

.product:hover:before {
	opacity: 1;
}

.product img {
	width: 100%;
	height: auto;
	transition: all 0.4s linear;
}

.product:hover img {
	opacity: 0;
	transform: scale(3);
}

.product .product_content {
	color: #fff;
	width: 100%;
	transform: translateY(-50%) scale(0);
	position: absolute;
	top: 45%;
	left: 0;
	transition: all 0.4s linear;
}

.product:hover .product_content {
	transform: translateY(-50%) scale(1);
}

.product .title {
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0;
}

.product .post {
	font-size: 16px;
	text-transform: capitalize;
}

/* 产品中心结束 */
/* 新闻中心industryNews */
.new-t {
	font-size: 30px;
	padding: 30px 0;
	text-align: center;
	color: #333;
	background: url(../image/wrap-bg.png) no-repeat center;
	background-position-y: 33px;
}

.new-wrap {
	padding-top: 45px;
}

.new .new-wrap li {
	position: relative;
	top: 0;
	border-bottom: 1px solid #eee;
	padding: 15px 10px;
	transition: all .4s;
	display: flex;
	justify-content: space-between;
}

.new-img {
	display: block;
	width: 320px;
	overflow: hidden;
	position: relative;
}

.new-img img {
	width: 100%;
	height: 225px;
}

.new-item {
	display: flex;
}

.new-txt {
	display: flex;
	flex-direction: column;
	width: calc(100% - 350px);
}

.new .new-wrap a {
	text-decoration: none;
	color: #333;
}

.new-title {
	line-height: 1.5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin: 10px 0;
	font-size: 24px;
}

.new-txt p {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 25px;
	margin-bottom: 12px;
	color: #666;
}

.new-time {
	color: #999;
}

.new-btn {
	line-height: 31px;
	border: 1px solid #999;
	margin-top: 4%;
	margin-right: 2%;
	width: 14%;
	text-align: center;
	color: #999;
	transition: all 0.5s;
}

.new-item:hover {
	-webkit-box-shadow: 0 0 30px rgb(0 0 0 / 10%);
	box-shadow: 0 0 30px rgb(0 0 0 / 15%);
	-webkit-transform: translate3d(0, 0px, -2px);
	transform: translate3d(0, 1px, -2px);
	color: #001762;
}

.new-item:hover .new-title {
	color: #e97f18;
}

.new-item:hover .new-btn {
	border: 1px solid #e97f18;
	background: #e97f18;
	color: #fff;
}

.pagination {
	float: right;
	margin-top: 43px;
}

/* 品牌中心 */
.bran_box .bran_list {
	width: 100%;
	padding: 50px 0 0;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.bran_box .bran_list li {
	width: 16%;
	overflow: hidden;
	border: 1px solid #dedede;
	transition: all 0.5s;
}

.bran_box .bran_list li a img {
	width: 100%;
	padding: 10px;
	transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.bran_box .bran_list li:hover a img {
	transform: scale(1.15);
}

.bran_box .bran_list li:hover {
	border: 1px solid #e97f18;
}

.about_tit {
	width: 100%;
	overflow: hidden;
	background: #201e2b;
	margin-bottom: 40px;
}

.about_tit ul li {
	width: 25%;
	overflow: hidden;
	float: left;
	border-left: 1px solid #6a6680;
	transition: all 0.5s;
}

.about_tit ul li:last-child {
	border-right: 1px solid #6a6680;
}

.about_tit ul li a {
	line-height: 54px;
	color: #fff;
	display: block;
	text-align: center;
	font-size: 16px;
}

.about_tit ul li:hover {
	background: #e97f18;
}

.about-article img {
	max-height: 380px;
	display: block;
	margin: 30px auto;
}

.about-article p {
	margin: 0;
	font-size: 14px;
	line-height: 28px;
	text-indent: 2em;
}

.js_active {
	background: #e97f18;
}

/* 三级页面all  详情页面 */
.detali {
	padding: 20px 0;

}

.detali h4 {
	font-size: 26px;
	color: #333;
	text-align: center;
	line-height: 35px;
}

.detali .date {
	color: #999;
	text-align: center;
	border-bottom: 1px solid #cecece;
	line-height: 27px;
	margin-bottom: 20px;
}

.detali .nr_text p {
	text-indent: 2em;
	margin: 0 !important;
	line-height: 28px;
}

/* 三级页面all  详情页面 */
/*分页*/
.qylb_pic_box {
	width: 100%;
	overflow: hidden;
	padding: 40px 0 0;
}

.qylb_pic_box .fy {
	border-bottom: 1px solid #ccc;
	text-align: center;
}

.qylb_pic_box .fy li {
	margin: 0 !important;
}

.qylb_pic_box .fy a {
	color: #333;
}

.qylb_pic_box .fy .pagination>.active>a,
.qylb_pic_box .fy .pagination>.active>a:focus,
.qylb_pic_box .fy .pagination>.active>a:hover {
	z-index: 3;
	color: #fff;
	cursor: default;
	background-color: #e97f18;
	border-color: #e97f18;
}

.qylb_pic_box .fy .active {
	background-color: #e97f18 !important;
	color: #fff;
}

.fy .center {
	/* display: flex; */
	align-items: center;
	padding-bottom: 20px;
}

.fy .fy_inp {
	display: inline-block;
}

.fy .fy_inp .inp_span {
	margin: 0 10px;
}

.fy .fy_inp input {
	width: 50px;
	height: 30px;
	text-align: center;
	border: 1px solid #ccc;
	margin: 0 5px
}

.fy .fy_inp button {
	height: 30px;
	position: relative;
	width: 51px;
	border: 0;
	background: #e97f18;
	color: #fff;
}

@media (max-width: 768px) {
	.new .new-wrap li {
		flex-direction: column;
		padding: 20px 10px;
	}

	.new-item .new-txt {
		width: 100%;
	}

	.new-img {
		width: 100%;
	}

	.product_box {
		width: 100%;
		overflow: hidden;
		margin: 0 auto;
	}

	.product_list {
		width: 48%;
		float: left;
		margin: 5px 1%;
	}

	.product {
		font-family: 'Kanit', sans-serif;
		text-align: center;
		border: 3px solid #fff;
		box-shadow: 0px 0px 1px #000000;
		overflow: hidden;
		position: relative;
	}

	.product_title {
		font-size: 16px;
		margin: 0 0 10px;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}

	.product .post {
		font-size: 13px;
		text-transform: capitalize;
	}

	.product_list h2 {
		font-size: 14px;
		text-align: center;
		margin: 10px 0 0;
		font-weight: bold;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}

	.new {
		width: 100%;
		overflow: hidden;
		margin: auto;
	}

	.new .new-wrap {
		padding: 0;
	}

	.new-title {
		line-height: 1.5;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		overflow: hidden;
		margin: 10px 0 5px;
		font-size: 16px;
		font-weight: bold;
	}

	.new-txt p {
		width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		line-height: 24px;
		margin-bottom: 10px;
		color: #666;
	}

	.new-time {
		font-size: 12px;
		color: #999;
	}

	.new-btn {
		line-height: 34px;
		border: 1px solid #e97f18;
		width: 150px;
		text-align: center;
		color: #e97f18;
		display: block;
		margin-top: 20px;
	}

	.new-img img {
		width: 100%;
		max-height: 230px;
	}

	.application_box {
		width: 96%;
		overflow: hidden;
		margin: auto;
	}

	.application_list {
		float: left;
		margin: 5px 1%;
		width: 48%;
	}

	.application_list h1 a {
		color: #333;
		font-size: 14px;
		font-weight: bold;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}

	.application figcaption {
		position: absolute;
		bottom: 0;
		left: 0;
		padding: 10px;
		width: 100%;
		height: 100%;
	}

	.application h2 {
		word-spacing: -0.15em;
		text-transform: uppercase;
		-webkit-transform: translate3d(30%, 0%, 0);
		transform: translate3d(30%, 0%, 0);
		-webkit-transition-delay: 0.3s;
		transition-delay: 0.3s;
		font-size: 14px;
		font-weight: bold;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		margin: 4px 0;
	}

	.application p {
		-webkit-transform: translate3d(0%, 30%, 0);
		transform: translate3d(0%, 30%, 0);
		-webkit-transition-delay: 0s;
		transition-delay: 0s;
		line-height: 20px;
		display: -webkit-box;
		text-overflow: ellipsis;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		font-size: 12px;
	}

	.application figcaption::before {
		position: absolute;
		top: 0;
		right: 30px;
		bottom: 0;
		left: 100%;
		border-left: 3px solid rgb(0 87 255);
		content: '';
		opacity: 0;
		background-color: rgba(255, 255, 255, 0.5);
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		-webkit-transition-delay: 0.6s;
		transition-delay: 0.6s;
	}

	.application:hover figcaption::before {
		background: rgba(255, 255, 255, 0);
		left: 0;
		opacity: 1;
		-webkit-transition-delay: 0s;
		transition-delay: 0s;
	}


	.about_tit ul li a {
		line-height: 54px;
		color: #fff;
		display: block;
		text-align: center;
		font-size: 14px;
	}

	.detali {
		padding: 0;
		width: 95%;
		margin: auto;
		overflow: hidden;
	}

	.nr_text img {
		display: block;
		margin: auto;
		width: 100%;
	}

	.detali .nr_text p {
		text-indent: 2em;
		margin: 0 !important;
		line-height: 26px;
	}

	.detali h4 {
		font-size: 20px;
		color: #333;
		text-align: center;
		line-height: initial;
		margin: 0;
	}
	.bran_box .bran_list li {
	    width: 49%;
	    overflow: hidden;
	    border: 1px solid #dedede;
	    transition: all 0.5s;
	    margin-bottom: 15px;
	}
	.bran_box .bran_list {
	    width: 100%;
	    padding: 20px 0 0;
	    overflow: hidden;
	    display: flex;
	    flex-wrap: wrap;
	    justify-content: space-between;
	}
	.new-wrap {
	    padding-top: 45px;
	    /* padding: 0; */
	    margin: 0;
	    width: 100%;
	}

}
