@charset "utf-8";
/* ====================公共样式========================= */

/*reset Css*/
* {
	margin: 0;
	padding: 0;
}

/** 清除内外边距 **/
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
/* structural elements 结构元素 */
dl,
dt,
dd,
ul,
ol,
li,
/* list elements 列表元素 */
pre,
/* text formatting elements 文本格式元素 */
form,
fieldset,
legend,
button,
input,
textarea,
/* form elements 表单元素 */
th,
td

/* table elements 表格元素 */
	{
	margin: 0;
	padding: 0;
}

body {
	background-color: #fff;
	/*整体背景颜色*/
	-webkit-touch-callout: none;
	/*-webkit-user-select: none;*/
	/*禁止复制*/
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	/*点击高亮效果*/
}

/*clearfix清除浮动*/
.clearfix {
	*zoom: 1
}

.clearfix:before,
.clearfix:after {
	display: table;
	content: ""
}

.clearfix:after {
	clear: both
}

/* 默认合并表格边框 */
table {
	border-collapse: collapse;
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
} */

input,
textarea {
	-webkit-appearance: none;
	border-radius: 0;
}

ol,
ul,
li {
	list-style: none;
}

a,
a:active {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

a {
	border: 0;
}

em,
i {
	font-style: normal;
}

/* <input>标签 */
input {
	border: none;
	appearance: none;
	-moz-appearance: none;
	outline: none;
	-webkit-appearance: none;
}

input:focus {
	outline: none;
}

/* input标签聚焦不出现默认边框 */

textarea {
	resize: none;
}

/* 禁用了文本的拖拉，尤其在谷歌下 */
select,
button,
input,
img {
	vertical-align: middle;
}

/*去除图片底部缝隙并基于中线对齐*/
img {
	width: auto;
	height: auto;
	width: auto\9;
	max-width: 100%;
	display: block;
	-ms-interpolation-mode: bicubic;
}

/** 设置默认字体 **/
body,
button,
input,
select,
textarea

/* for ie */
	{
	font: 16px/1 'Arial', "Microsoft YaHei", sans-serif;
}

body {
	background: #fff;
	-webkit-text-size-adjust: 100%;
	color: #333;
}

/*End reset*/

/*public Css*/

/* 重绘元素边框盒 */
* {
	box-sizing: border-box;
}

*::before,
*::after {
	box-sizing: border-box;
}

*:focus {
	outline: none;
}

html {
	-ms-touch-action: none;
	/* 阻止windows Phone 的默认触摸事件 */
}

/*兼容iphone去除默认input表单默认设置*/
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
	-webkit-appearance: none;
}


/* 水平垂直居中 */
.cell_mid {
	display: table;
	height: 100%;
	width: 100%;
}

.cell_h {
	height: 100%;
	display: table-cell;
	vertical-align: middle;
}

/*动画--规定动画移动出去的时间*/
a {
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.animation {
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

/* 指定文字禁止复制 */
.noSelect {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-khtml-user-select: none;
	user-select: none;
}

/* 文字限制行数 */
/* 限制一行 */
.linelimit {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

/* 【常用】限制多行 修改行数-webkit-line-clamp: 2;【兼容必须限高】 */
.linelimit-2 {
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.linelimit-3 {
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.linelimit-4 {
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

/*动画效果 所有属性获得过度*/
* {
	transition-property: all;
}

.com-img {
	overflow: hidden;
}

.com-img img {
	transition: all 0.5s ease-out;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
}

.com-img:hover 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);
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.show {
	display: block;
}

.hide {
	display: none;
}

.tac {
	text-align: center;
}

.tal {
	text-align: left;
}

.tar {
	text-align: right;
}

.ttu {
	text-transform: uppercase;
}

.ttc {
	text-transform: capitalize;
}

/*字母转换为大写*/
.ofh {
	overflow: hidden;
}

.ofh img {
	width: 100%;
	transition: 1.5s cubic-bezier(.165, .84, .44, 1);
}

.ofh:hover img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.pst-rel {
	position: relative;
}

.pst-abs {
	position: absolute;
}

.pst-pic {
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.w100 {
	width: 100%;
}

.col-2 {
	width: 50%;
	float: left;
}

.col-3 {
	width: 33.333333%;
	float: left;
}

.col-4 {
	width: 25%;
	float: left;
}

.col-5 {
	width: 20%;
	float: left;
}

.col-6 {
	widows: 16.6666%;
	float: left;
}

.w12 {
	width: 1200px;
	max-width: 92%;
	margin: 0 auto;
}

.w14 {
	width: 1440px;
	max-width: 92%;
	margin: 0 auto;
}

.w16 {
	width: 1600px;
	max-width: 92%;
	margin: 0 auto;
}

.w18 {
	width: 1800px;
	max-width: 92%;
	margin: 0 auto;
}

.pc {
	display: block;
}

.mb {
	display: none;
}

.mt {
	margin-top: 100px;
}

@media all and (max-width:1000px) {
	.pc {
		display: none;
	}

	.mb {
		display: block;
	}
}

*[class*="rect-"] {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	overflow: hidden;
}

*[class*="rect-"] ._full {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	*height: auto;
	object-fit: cover;
}

.rect-35 {
	padding-bottom: 35%;
}

.rect-40 {
	padding-bottom: 40%;
}

.rect-50 {
	padding-bottom: 50%;
}

.rect-55 {
	padding-bottom: 55%;
}

.rect-5625 {
	padding-bottom: 56.25%;
}

.rect-60 {
	padding-bottom: 60%;
}

.rect-65 {
	padding-bottom: 65%;
}

.rect-70 {
	padding-bottom: 70%;
}

.rect-75 {
	padding-bottom: 75%;
}

.rect-80 {
	padding-bottom: 80%;
}

.rect-90 {
	padding-bottom: 90%;
}

.rect-100 {
	padding-bottom: 100%;
}

.rect-135 {
	padding-bottom: 135%;
}

.rect-140 {
	padding-bottom: 140%;
}

.rect-150 {
	padding-bottom: 150%;
}

li *[class*="pic"] {
	overflow: hidden;
}

li *[class*="pic"]>img {
	-webkit-transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	-ms-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}

li:hover *[class*="pic"]>img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.trs3 {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.trs5 {
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.pd-40 {
	padding: 0.4rem 0;
}

.pd-60 {
	padding: 0.6rem 0;
}

.pd-80 {
	padding: 0.8rem 0;
}

.pd-100 {
	padding: 1rem 0;
}

.pd-120 {
	padding: 1.2rem 0;
}

.pd-140 {
	padding: 1.4rem 0;
}

.pd-160 {
	padding: 1.6rem 0;
}

.pd-180 {
	padding: 1.8rem 0;
}

.mt30 {
	margin-top: 0.3rem;
}

.mt40 {
	margin-top: 0.4rem;
}

.mt50 {
	margin-top: 0.5rem;
}

.mt60 {
	margin-top: 0.6rem;
}

.mt70 {
	margin-top: 0.7rem;
}

.mt80 {
	margin-top: 0.8rem;
}

.mt90 {
	margin-top: 0.9rem;
}

.mt100 {
	margin-top: 1rem;
}

.mt110 {
	margin-top: 1.1rem;
}

.mt120 {
	margin-top: 1.2rem;
}

.mt130 {
	margin-top: 1.3rem;
}

.mt140 {
	margin-top: 1.4rem;
}

.mb10 {
	margin-bottom: .1rem;
}

.mb15 {
	margin-bottom: .15rem;
}


.mb20 {
	margin-bottom: .2rem;
}

.mb30 {
	margin-bottom: .3rem;
}

.mb40 {
	margin-bottom: .4rem;
}

.mb50 {
	margin-bottom: .5rem;
}

.mb60 {
	margin-bottom: .6rem;
}

.mb70 {
	margin-bottom: .7rem;
}

.mb80 {
	margin-bottom: .8rem;
}

.mb90 {
	margin-bottom: .9rem;
}

.mb100 {
	margin-bottom: 1rem;
}

.mb110 {
	margin-bottom: 1.1rem;
}

.mb120 {
	margin-bottom: 1.2rem;
}

.mb130 {
	margin-bottom: 1.3rem;
}

.mb140 {
	margin-bottom: 1.4rem;
}

.mb150 {
	margin-bottom: 1.5rem;
}

/*==常用字号==*/
.tit-12 {
	font-size: 12px;
}

.tit-13 {
	font-size: 13px;
}

.tit-14 {
	font-size: 14px;
}

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

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

.tit-17 {
	font-size: 17px;
}

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

.tit-19 {
	font-size: 19px;
}

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

.tit-21 {
	font-size: 21px;
}

.tit-22 {
	font-size: 22px;
}

.tit-23 {
	font-size: 23px;
}

.tit-24 {
	font-size: 24px;
}

.tit-25 {
	font-size: 25px;
}

.tit-26 {
	font-size: 26px;
}

.tit-27 {
	font-size: 27px;
}

.tit-28 {
	font-size: 28px;
}

.tit-29 {
	font-size: 29px;
}

.tit-30 {
	font-size: 30px;
}

.tit-31 {
	font-size: 31px;
}

.tit-32 {
	font-size: 32px;
}

.tit-33 {
	font-size: 33px;
}

.tit-34 {
	font-size: 34px;
}

.tit-35 {
	font-size: 35px;
}

.tit-36 {
	font-size: 36px;
}

.tit-37 {
	font-size: 37px;
}

.tit-38 {
	font-size: 38px;
}

.tit-39 {
	font-size: 39px;
}

.tit-40 {
	font-size: 40px;
}

.tit-41 {
	font-size: 41px;
}

.tit-42 {
	font-size: 42px;
}

.tit-43 {
	font-size: 43px;
}

.tit-44 {
	font-size: 44px;
}

.tit-45 {
	font-size: 45px;
}

.tit-46 {
	font-size: 46px;
}

.tit-47 {
	font-size: 47px;
}

.tit-48 {
	font-size: 48px;
}

.tit-49 {
	font-size: 49px;
}

.tit-50 {
	font-size: 50px;
}

.tit-51 {
	font-size: 51px;
}

.tit-52 {
	font-size: 52px;
}

.tit-53 {
	font-size: 53px;
}

.tit-54 {
	font-size: 54px;
}

.tit-55 {
	font-size: 55px;
}

.tit-56 {
	font-size: 56px;
}

.tit-57 {
	font-size: 57px;
}

.tit-58 {
	font-size: 58px;
}

.tit-59 {
	font-size: 59px;
}

.tit-60 {
	font-size: 60px;
}

.tit-61 {
	font-size: 61px;
}

.tit-62 {
	font-size: 62px;
}

.tit-63 {
	font-size: 63px;
}

.tit-64 {
	font-size: 64px;
}

.tit-65 {
	font-size: 65px;
}

.tit-66 {
	font-size: 66px;
}

.tit-67 {
	font-size: 67px;
}

.tit-68 {
	font-size: 68px;
}

.tit-69 {
	font-size: 69px;
}

.tit-70 {
	font-size: 70px;
}

.tit-71 {
	font-size: 71px;
}

.tit-72 {
	font-size: 72px;
}

.tit-73 {
	font-size: 73px;
}

.tit-74 {
	font-size: 74px;
}

.tit-75 {
	font-size: 75px;
}

.tit-76 {
	font-size: 76px;
}

.tit-77 {
	font-size: 77px;
}

.tit-78 {
	font-size: 78px;
}

.tit-79 {
	font-size: 79px;
}

.tit-80 {
	font-size: 80px;
}

@media (max-width: 768px) {
	.tit-16 {
		font-size: 12px;
	}

	.tit-18 {
		font-size: 14px;
	}

	.tit-20 {
		font-size: 16px;
	}

	.tit-33 {
		font-size: 20px;
	}

	.tit-34 {
		font-size: 21px;
	}

	.tit-35 {
		font-size: 22px;
	}

	.tit-36 {
		font-size: 23px;
	}

	.tit-37 {
		font-size: 24px;
	}

	.tit-38 {
		font-size: 25px;
	}

	.tit-39 {
		font-size: 26px;
	}

	.tit-40 {
		font-size: 24px;
	}

	.tit-41 {
		font-size: 25px;
	}

	.tit-42 {
		font-size: 26px;
	}

	.tit-43 {
		font-size: 27px;
	}

	.tit-44 {
		font-size: 28px;
	}

	.tit-45 {
		font-size: 29px;
	}

	.tit-46 {
		font-size: 30px;
	}

	.tit-47 {
		font-size: 31px;
	}

	.tit-48 {
		font-size: 32px;
	}

	.tit-49 {
		font-size: 33px;
	}

	.tit-50 {
		font-size: 28px;
	}

	.tit-51 {
		font-size: 29px;
	}

	.tit-52 {
		font-size: 30px;
	}

	.tit-53 {
		font-size: 31px;
	}

	.tit-54 {
		font-size: 32px;
	}

	.tit-55 {
		font-size: 33px;
	}

	.tit-56 {
		font-size: 34px;
	}

	.tit-57 {
		font-size: 35px;
	}

	.tit-58 {
		font-size: 36px;
	}

	.tit-59 {
		font-size: 37px;
	}

	.tit-60 {
		font-size: 36px;
	}

	.tit-61 {
		font-size: 37px;
	}

	.tit-62 {
		font-size: 38px;
	}

	.tit-63 {
		font-size: 39px;
	}

	.tit-64 {
		font-size: 40px;
	}

	.tit-65 {
		font-size: 41px;
	}

	.tit-66 {
		font-size: 42px;
	}

	.tit-67 {
		font-size: 43px;
	}

	.tit-68 {
		font-size: 44px;
	}

	.tit-69 {
		font-size: 45px;
	}

	.tit-70 {
		font-size: 46px;
	}

	.tit-70 {
		font-size: 42px;
	}

	.tit-71 {
		font-size: 43px;
	}

	.tit-72 {
		font-size: 44px;
	}

	.tit-73 {
		font-size: 45px;
	}

	.tit-74 {
		font-size: 46px;
	}

	.tit-75 {
		font-size: 47px;
	}

	.tit-76 {
		font-size: 48px;
	}

	.tit-77 {
		font-size: 49px;
	}

	.tit-78 {
		font-size: 50px;
	}

	.tit-79 {
		font-size: 51px;
	}

	.tit-80 {
		font-size: 52px;
	}
}

.flex-1 {
	flex: 1;
}

/* flex布局 */
.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/*默认 主轴为水平方向，起点在左端*/
.f-dr {
	-webkit-box-orient: horizontal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}

/*主轴为水平方向，起点在右端*/
.f-dr-r {
	-webkit-box-orient: horizontal;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

/*主轴为垂直方向，起点在上沿*/
.f-dc {
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

/*主轴为垂直方向，起点在下沿*/
.f-dc-r {
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

/* 交叉轴的起点对齐 */
.f-as {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

/* 交叉轴的中点对齐 */
.f-ac {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

/* 交叉轴的终点对齐 */
.f-ae {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}

/* 项目的第一行文字的基线对齐 */
.f-ab {
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}

/* 交叉轴拉伸对齐 */
.f-ast {
	-webkit-align-items: stretch;
	-moz-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

/* 左对齐 */
.f-js {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

/* 居中 */
.f-jc {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/* 右对齐 */
.f-je {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

/* 两端对齐，项目之间的间隔都相等 */
.f-jsb {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

/* 每个项目两侧的间隔相等。所以，项目之间的间隔比项目与边框的间隔大一倍 */
.f-jsa {
	-webkit-box-pack: distribute;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

/* 换行，第一行在上方 */
.f-warp {
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

/* 换行，在第一行的下方 */
.f-warp-r {
	-webkit-flex-wrap: wrap-reverse;
	-moz-flex-wrap: wrap-reverse;
	-ms-flex-wrap: wrap-reverse;
	-o-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
}

/* 头部 */
.Header-wrapper {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	/* background-color: rgb(255, 255, 255); */
	z-index: 99;
	line-height: 100px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

/* .Header-wrapper:after {content: "";position: absolute;left: 0;bottom: 0;z-index: 0;width: 100%;height: 1px;background-color: #fff;opacity: .3;transition: opacity .3s;} */
.Header-wrapper.on {
	line-height: 80px;
	background-color: rgb(255, 255, 255);
	box-shadow: 0 2px 10px rgb(0 0 0 / 5%);
}

.Header-wrapper.on .Header-container .c-nav>li .c-title-box {
	color: #000000;
}

/* .Header-wrapper.on::after {opacity: 0;} */
#c-header.c-head-move {
	top: 0;
}

.Header-container {}

.Header-container .logo {}

.Header-container .logo {}

.Header-container .logo a {
	display: flex;
	align-items: center;
	font-size: 0;
}

.Header-container .logo a img {
	width: auto;
	display: block;
	height: 0.65rem;
}

.Header-container .logo a img.x_logo,
.Header-wrapper.on .Header-container .logo a img.s_logo {
	display: none;
}

.Header-wrapper.on .Header-container .logo a img.x_logo {
	display: block;
}

.Header-wrapper.on .Header-container .logo a img:hover {
	top: 3px;
}

.Header-wrapper.on .Header-container .logo a img {
	height: .45rem;
}

.Header-container .fr {
	display: flex;
	align-items: center;
}

@media all and (min-width:1000px) {
	.Header-container .c-nav {
		display: flex;
		align-items: center;
		font-size: .18rem;
		flex-wrap: wrap;
	}

	.Header-container .c-nav>li {
		position: relative;
		margin-right: 0.35rem;
	}

	.Header-container .c-nav>li .c-title-box {
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
	}

	.Header-container .c-nav>li .c-title-box>a {
		display: block;
	}

	.Header-container .c-nav>li.active .c-title-box,
	.Header-container .c-nav>li:hover .c-title-box {
		color: #ff7a39 !important;
	}

	.Header-container .c-nav>li .c-title-box i {
		margin-left: 0.06rem;
		-webkit-transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
		-ms-transition: all 0.3s ease-out;
		-o-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	.Header-container .c-nav>li>ul {
		min-width: 240px;
		position: absolute;
		top: 100%;
		left: 50%;
		margin-top: 0;
		background-color: #fff;
		z-index: 2;
		-webkit-transform: translate(-50%, 10px);
		-ms-transform: translate(-50%, 10px);
		transform: translate(-50%, 10px);
		-webkit-border-radius: 2px;
		-ms-border-radius: 2px;
		border-radius: 2px;
		padding: 15px 20px;
		opacity: 0;
		pointer-events: none;
		-webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
		-ms-transition: all .3s cubic-bezier(.645, .045, .355, 1);
		transition: all .3s cubic-bezier(.645, .045, .355, 1);
		box-shadow: 0 5px 50px rgb(0 0 0 / 10%);
	}

	.Header-container .c-nav>li:hover>ul {
		pointer-events: all;
		-webkit-transform: translate(-50%);
		-ms-transform: translate(-50%);
		transform: translate(-50%);
		-webkit-transition-delay: .1s;
		-ms-transition-delay: .1s;
		transition-delay: .1s;
		opacity: 1;
	}

	.Header-container .c-nav>li>ul>li:not(:last-child) {
		border-bottom: 1px solid #efefef;
	}

	.Header-container .c-nav>li>ul>li>a {
		display: block;
		position: relative;
		padding: 15px 0;
		font-size: 16px;
		color: #58595b;
		-webkit-transition: color .3s cubic-bezier(.645, .045, .355, 1);
		-ms-transition: color .3s cubic-bezier(.645, .045, .355, 1);
		transition: color .3s cubic-bezier(.645, .045, .355, 1);
		line-height: initial;
		text-align: center;
		text-transform: capitalize;
	}

	.Header-container .c-nav>li>ul>li>a:before {
		content: "";
		position: absolute;
		top: 7px;
		bottom: 7px;
		left: -20px;
		width: 4px;
		background: #ff7a39;
		-webkit-transform: scaleY(0);
		-ms-transform: scaleY(0);
		transform: scaleY(0);
		-webkit-transition: -webkit-transform .3s cubic-bezier(.162, .85, .45, 1);
		transition: transform .3s cubic-bezier(.162, .85, .45, 1);
	}

	.Header-container .c-nav>li>ul>li:hover>a:before {
		-ms-transform-origin: top;
		-webkit-transform-origin: top;
		transform-origin: top;
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1)
	}

	.Header-container .c-nav>li>ul>li:hover>a {
		color: #ff7a39;
	}

	.Header-wrapper .Header-container .c-nav>li .c-title-box {
		color: #ffffff;
	}

}

.Header-container .tool {
	display: flex;
	align-items: center;
	color: #000;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.Header-wrapper.on .Header-container .tool {
	color: #000;
}

.Header-container .tool .search {
	color: #ffffff;
}

.Header-wrapper.on .Header-container .tool .search i {
	color: #000;
}

.Header-container .tool .search i {
	position: relative;
	font-size: 24px;
	padding-right: 0.18rem;
	margin-right: 0.2rem;
	cursor: pointer;
	vertical-align: middle;
}

.Header-container .tool .search i::after {
	position: absolute;
	content: '';
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 1px;
	height: 20px;
	background-color: rgb(255, 255, 255, .3);
}

.Header-wrapper .Header-container .tool .search i::after {
	background-color: rgb(0, 0, 0, .3);
}

.Header-container .tool .language {
	position: relative;
}

.Header-container .tool .language a {
	display: flex;
	align-items: center;
	color: white;
}

.Header-container .tool .language i {
	font-size: 24px;
}

.Header-container .tool .language p {
	font-size: 16px;
	margin-left: 0.08rem;
	display: flex;
	align-items: center;
}

.Header-container .tool .language p::after {
	display: inline-block;
	margin-left: 5px;
	content: "\e60a";
	font-size: 12px;
	font-family: 'iconfont';
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.Header-container .tool .language.on p::after {
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
}

.Header-container .tool .language .language_down {
	display: none;
	position: absolute;
	z-index: 2;
	left: 5px;
	top: 100%;
	width: 100%;
	height: auto;
	background: #ffffff;
	text-align: left;
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	-ms-transition: top 0.3s;
	-o-transition: top 0.3s;
	transition: top 0.3s;
}

.Header-container .tool .language .language_down a {
	display: block;
	font-size: 14px;
	line-height: 1.3;
	padding: 10px 15px;
	color: #ff7a39;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	text-align: center;
}

.Header-container .tool .language .language_down a:hover {
	color: #ffffff;
	background-color: #ff7a39;
}

.Header-wrapper .Header-container .tool .language>a {
	color: #ffffff;
}

.Header-wrapper.on .Header-container .tool .language>a {
	color: #000;
}

/*顶部导航开关*/
#c-header .c-switch {
	display: none;
	width: 24px;
	height: 20px;
	cursor: pointer;
}

#c-header .c-switch i {
	position: relative;
	display: block;
	height: 2px;
	background: #000;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#c-header .c-switch i:nth-child(1) {
	top: 0;
}

#c-header .c-switch i:nth-child(3) {
	bottom: 0;
}

#c-header .c-switch i:nth-child(2) {
	margin: 6px 0;
}

#c-header.on .c-switch i {
	background: #333;
}

body.c-open #c-header .c-switch i:nth-child(2) {
	opacity: 0;
}

body.c-open #c-header .c-switch i:nth-child(1) {
	top: 8px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

body.c-open #c-header .c-switch i:nth-child(3) {
	bottom: 8px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

@media (max-width: 1000px) {
	#c-header .c-switch {
		display: block;
	}

	.Header-wrapper {
		line-height: 60px;
	}

	.Header-container .tool .search {
		height: 60px;
	}

	.Header-container .c-nav {
		height: 0;
	}

	.Header-container .tool {
		padding-right: 0.24rem;
	}

	.Header-container .tool .language p {
		margin-left: 0.12rem;
	}

	.Header-container .logo a img {
		height: 28px;
	}

	.mt {
		margin-top: 60px;
	}

	/*顶部移动端导航*/
	#c-header .c-nav {
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		height: 0;
		line-height: 50px;
		background: #fff;
		overflow-y: auto;
		transition: all 0.5s;
		text-align: left;
		overflow-x: hidden;
	}

	#c-header .c-nav>li:last-child {
		border-bottom: 1px solid #f1f1f1;
	}

	#c-header .c-nav li {
		width: 100%;
		padding: 0 4%;
		border-top: 1px solid #f1f1f1;
	}

	#c-header .c-nav li .c-title-box {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	#c-header .c-nav li a {
		display: block;
		color: #333;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		font-size: 16px;
		min-width: calc(100% - 50px);
	}

	#c-header .c-nav li i {
		font-size: 20px;
		color: #333;
		-webkit-transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
		-ms-transition: all 0.3s ease-out;
		-o-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
		width: 20px;
		height: 50px;
		text-align: center;
		line-height: 50px;
	}

	#c-header .c-nav li.on .c-title-box i {
		transform: rotate(180deg);
	}

	#c-header .c-nav li a:hover,
	#c-header .c-nav li.on>a {
		color: #508cc9;
	}

	#c-header .c-nav li ul {
		display: none;
	}

	.c-open #c-header .c-nav {
		height: calc(100vh - 60px);
	}
}

@media (max-width: 768px) {
	#c-header .c-nav li {
		padding: 0 4%;
	}

	#c-header .c-nav ul li {
		font-size: 16px;
		line-height: 45px;
	}
}

/* 底部 */

footer.ct-footer [data-column] {
	flex-direction: column;
}

footer.ct-footer .ct-widget {
	width: 100%;
	margin: 0;
}

footer.ct-footer .ct-widget p a {
	line-height: 1.75;
	text-transform: capitalize;
	color: rgba(255, 255, 255, .7)
}

footer.ct-footer .ct-widget p a:hover {
	color: #ffffff;
}

[data-footer*="type-1"] .ct-footer [data-column="widget-area-2"] {
	margin-left: 2.5vw;
}

.stk-block-heading:first-child .stk-block-heading__text:not([contenteditable]) {
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
}

footer .ct-icon,
footer .ct-icon-container svg {
	fill: #ffffff;
}

footer [data-icons-type*=outline] .ct-icon-container,
footer [data-icons-type*=outline]:hover .ct-icon-container {
	border-color: #ffffff;
}

footer [class*=ct-contact-info] .contact-info {
	color: rgba(255, 255, 255, .7)
}

footer [class*=ct-contact-info] .contact-info:hover {
	color: #ffffff;
	cursor: pointer;
}

footer .ct-container .ct-footer-copyright p {
	color: rgba(255, 255, 255, .7)
}

[data-footer*="type-1"] .ct-footer h3.widget-title {
	font-size: 22px;
	color: #ffffff;
}

[data-footer*="type-1"] .ct-footer .widget_nav_menu ul li a {
	color: rgba(255, 255, 255, .8)
}

[data-footer*="type-1"] .ct-footer .widget_nav_menu ul li:hover a {
	color: #ff7a39
}

/* ind_txt */
.ind_txt {
	line-height: 1.3;
}

.ind_txt span {
	color: #353535;
}

.ind_txt h2 {
	color: #ff7a39;
}

.ind_txt p {
	color: #4f4f4f;
	line-height: 1.4;
}

/* com_page */
.com_page {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 0.55rem;
}

.com_page a,
.com_page span {
	width: .5rem;
	height: .5rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #eee;
	font-size: .16rem;
	color: #333;
	/* background: #fff; */
	margin: 0 .05rem;
	transition: all .3s;
	min-width: 30px;
	min-height: 30px;
}

.com_page a.page-num-current,
.com_page a:hover {
	border-color: #ff7a39;
	background: #ff7a39 !important;
	color: #fff;
}

.com_page a:last-child,
.com_page a:first-child {
	background-color: #eff2f7;
}

.com_page a:last-child::after,
.com_page a:first-child::after {
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
}

.com_page a:first-child::after {
	content: "\f104";
}

.com_page a:last-child::after {
	content: "\f105";
}

/* md-sideBar */
.md-sideBar {
	position: fixed;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0.1rem;
	z-index: 200;
	box-shadow: 0 0.8rem 1.4rem 1px hsl(0deg 0% 80% / 35%);
}

.md-sideBar .side_item {
	display: block;
	width: auto;
	position: relative;
	cursor: pointer;
	zoom: 1;
}

.md-sideBar .side_item:hover .bd {
	right: 100%;
	opacity: 1;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	width: auto;
}

.md-sideBar .side_item .hd {
	width: 0.6rem;
	height: 0.6rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px solid #ececec;
	position: relative;
	z-index: 202;
	background-color: #ff7a39;
}

.md-sideBar .side_item .hd i {
	font-size: 0.3rem;
	color: #ffffff;
}

.md-sideBar .side_item .bd {
	color: #ff7a39;
	position: absolute;
	right: 100%;
	top: 0;
	background-color: #fff;
	padding: 0 0.18rem;
	white-space: nowrap;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 0;
	right: 0;
	width: 0;
	overflow: hidden;
	font-size: 18px;
	line-height: 0.6rem;
	z-index: 201;
}

.md-sideBar .side_item .bd.wx {
	padding: 0.08rem;
}

.md-sideBar .side_item:hover .bd.wx {
	width: calc(100px + 0.16rem);
}

.md-sideBar .side_item .bd img {
	width: 100px;
	height: 100px;
}

/* tc_search s */
.tc_search {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10001;
	pointer-events: none;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.tc_search.act {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	display: block;
	pointer-events: auto;
}

.tc_search form {
	width: 9.6rem;
	max-width: 80%;
	margin: 0 auto;
	padding: 0 20px;
	border-bottom: 2px solid #eee;
	height: 0.7rem;
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.tc_search input {
	width: 80%;
	height: 0.7rem;
	font-size: 0.34rem;
	color: #c1c1c1;
	box-shadow: none;
	-webkit-appearance: none;
	float: left;
	border-right: 0;
	background: none;
}

.tc_search input::placeholder {
	color: #c1c1c1;
}

.tc_search button {
	max-width: 20%;
	height: 0.7rem;
	border: 0;
	line-height: 0.7rem;
	color: #c1c1c1;
	cursor: pointer;
	text-transform: uppercase;
	float: right;
	font-size: 0.48rem;
	background-color: transparent;
}

.tc_search .search_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .85);
	z-index: 0;
}

/* tc_search e */

/* c_more s */
.c_more {
	display: inline-block;
	padding: 18px 35px;
	/* margin-top: 9vh; */
	border-radius: 50px;
	/* width: 180px;
	height: 55px; */
	color: #fff;
	text-align: center;
	transition: 0.36s;
	background-image: -moz-linear-gradient(0deg, rgb(255, 122, 57) 0%, rgb(251, 83, 0) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(255, 122, 57) 0%, rgb(251, 83, 0) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(255, 122, 57) 0%, rgb(251, 83, 0) 100%);
}

.c_more span {
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
}

.c_more i.fa {
	font-size: 18px;
	margin-left: 12px;
	vertical-align: middle;
}

.c_more:hover {
	color: #ffffff;
	box-shadow: 3px 5px 12px 0 rgba(0, 0, 0, 0.12);
	transform: translateY(-3px);
}

/* c_more e */

/* n_ban */
.n_ban {
	position: relative;
	height: 5rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.n_ban .ban_txt {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	color: #fff;
	text-align: center;
}

.n_ban .ban_txt h3 {
	font-size: 0.48rem;
	font-weight: 700;
}

.n_ban .ban_txt p {
	font-size: 0.22rem;
	margin-top: 0.24rem;
}

/* sort_nav */
.sort_nav {
	border-bottom: 1px solid #e8e8e8;
}

.sort_nav .w16 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 90px;
}

/* sort_nav_view */
.sort_nav_view {}

.sort_nav_view ul {
	display: flex;
	align-items: center;
}

.sort_nav_view ul li {
	margin-left: 0.5rem;
}

.sort_nav_view ul li a {
	position: relative;
	font-size: 18px;
	display: block;
	line-height: 90px;
	color: #111;
}

.sort_nav_view ul li a:hover {
	color: #ff7a39;
}

.sort_nav_view ul li.active a {
	color: #ff7a39;
}

.sort_nav_view ul li.active a::after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: -1px;
	left: 0;
	background-color: #ff7a39;
}

/* crumbs */
.crumbs {
	/* border-bottom: 1px solid #eee; */
}

.crumbs {
	padding-left: 25px;
	background: url('../images/ico_home.png') no-repeat center;
	background-position: 0 center;
	display: flex;
	align-items: center;
}

.crumbs a {
	font-size: 18px;
	color: #666;
	display: inline-flex;
	align-items: center;
}

.crumbs a:not(:last-child)::after {
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f105";
	display: inline-block;
	margin: 0 0.08rem;
}

.crumbs a:hover {
	color: #ff7a39;
}

/* bg */
.white_bg {
	background-color: white;
}

.grey_bg {
	background-color: #fafafa;
	background-color: #EFF2F7;
	/* background-color: #f7f9fa; */
}

/* n_tit */
.n_tit {
	color: #212121;
}

.n_tit p {
	font-size: 16px;
	line-height: 1.5;
	text-transform: uppercase;
}

.n_tit h3 {
	position: relative;
	font-size: 0.3rem;
	line-height: 1.3;
	font-weight: 700;
	padding-bottom: 0.15rem;
	margin-bottom: 0.45rem;
}

.n_tit h3::after {
	content: '';
	display: block;
	width: 35px;
	height: 2px;
	background: #ff7a39;
	position: absolute;
	left: 0;
	bottom: 0;
}

.n_tit.tac {
	text-align: center;
}

.n_tit.tac h3::after {
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

/* morelink */
.morelink {
	display: inline-block;
	position: relative;
	font-size: 16px;
	line-height: 30px;
	color: #fff;
	padding: 10px 40px;
	background-color: #ff7a39;
	border: 1px solid #ff7a39;
	border-radius: 5px;
	text-transform: capitalize;
	transition: all 0.3s;
	cursor: pointer;
}

.morelink:hover {
	color: #ff7a39;
}

/* btn-3 */
.btn-3 {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.btn-3:before {
	content: '';
	width: 0;
	height: 0;
	-webkit-transform: rotate(360deg);
	border-style: solid;
	border-width: 0 0 0 0;
	border-color: transparent transparent transparent #fff;
	position: absolute;
	bottom: -5px;
	left: -5px;
	transition: all .5s;
	z-index: -1;
}

.btn-3:after {
	content: '';
	width: 0;
	height: 0;
	-webkit-transform: rotate(360deg);
	border-style: solid;
	border-width: 0 0 0 0;
	border-color: transparent #fff transparent transparent;
	position: absolute;
	top: -5px;
	right: -5px;
	transition: all .5s;
	z-index: -1;
}

.btn-3:hover:before {
	border-width: 300px 0 0 300px;
}

.btn-3:hover:after {
	border-width: 0 300px 300px 0;
}

/* swiper-page01 */
.swiper-page01.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 0;
}

.swiper-page01.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.swiper-page01.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #ff7a39;
	width: 30px;
	height: 8px;
	border-radius: 4px;
}

/* 产品侧边栏 s*/
.ct-sidebar .widget-title {
	display: block;
	margin-bottom: 1vw;
	text-transform: uppercase;
}

.ct-sidebar {
	padding-bottom: 20px;
	/* 	background-color:#ff7a39; */
	box-shadow: 0px 0px 15px rgb(0 0 0 / 15%);
	-moz-box-shadow: 0px 0px 15px rgb(0 0 0 / 15%);
	-webkit-box-shadow: 0px 0px 15px rgb(0 0 0 / 15%);
}

.ct-sidebar .widget_nav_menu {}

.ct-sidebar .widget_nav_menu h3,
.ct-sidebar .widget-title {
	padding: 20px;
	margin-bottom: 0;
	font-size: 22px;
	color: #ffffff;
	text-transform: uppercase;
	background-color: #ff7a39;
}

.ct-sidebar .widget_nav_menu .menu-productr-center-container,
.ct-widget .product_list_widget {
	padding: 20px;
}

.ct-sidebar .widget_nav_menu ul li,
.product_list_widget .product-title {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 1.5;
	color: #4C4C4C;
	padding: 10px 35px 12px 0;
	text-transform: capitalize;
	border-bottom: 1px solid rgba(36, 36, 36, 0.3);
}

.product_list_widget .product-title {
	padding: 0;
	border: none;
	line-height: 1.3;
	height: 2.6em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.ct-sidebar .widget_nav_menu ul li a {
	font-weight: 500;
}

.ct-sidebar .widget_nav_menu ul li.current-menu-item a {
	color: #ff7a39;
}

.ct-container .products li:hover h2,
.ct-container .products li:hover h5,
.product_list_widget li:hover a.product-title {
	color: #ff7a39;
}

.product_list_widget li a.ct-media-container img {
	overflow: hidden;
	transition: all .3s;
}

.product_list_widget li:hover a.ct-media-container img {
	transform: scale(1.1);
}

/* 侧边栏 e*/

/* ====================首页样式========================= */
/* 首页轮播海报效果 */
/* banner s*/
.keyan-banner-slider {
	position: relative;
	min-width: 100%;
	overflow: hidden;
	background-color: #fff;
}

.keyan-slides-container {
	position: relative;
	width: 100%;
	min-height: 900px;
	display: flex;
}

.keyan-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.keyan-slide img {
	transition: 4s ease-in-out;
	-webkit-transition: 4s ease-in-out;
	transform: scale(1.2, 1.2);
}

.keyan-slide.active img {
	transform: scale(1);
	-webkit-transform: scale(1);
}

.keyan-slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}

.keyan-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.keyan-slide.has-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

.keyan-slide-content {
	position: relative;
	z-index: 2;
	max-width: 1600px;
	margin: 0 auto;
	height: 100%;
	min-height: inherit;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.keyan-slide-content.align-left {
	align-items: flex-start;
	text-align: left;
}

.keyan-slide-content.align-right {
	align-items: flex-end;
	text-align: right;
}

.keyan-slide-content.align-center {
	align-items: center;
	text-align: center;
}

.keyan-slide-content-inner {
	max-width: 50%;
	margin: 0;
	padding: 0 20px;
}

.keyan-slide-heading {
	font-size: 105px;
	font-weight: 700;
	line-height: 1.125em;
	color: #ff7a39;
	margin: 0;
}

.keyan-slide-text {
	font-size: 60px;
	font-weight: 700;
	line-height: 1.875em;
	color: #fff;
	margin-bottom: 48px;
}

.keyan-slide-content.align-center .keyan-slide-content-inner {
	max-width: 70%;
}

.keyan-slide-content.align-center .keyan-slide-heading {
	font-size: 70px;
}

.keyan-slide-content.align-center .keyan-slide-text p,
.keyan-slide-content.align-center .keyan-slide-text span {
	text-transform: capitalize;
}

.keyan-slide-content.align-center .keyan-slide-text span {
	color: #1da2ff;
}

.keyan-slide-text p,
.keyan-slide-text span {
	display: inline-block;
}

.keyan-slide-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 1em 1.71em;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	color: #ffffff !important;
	border: solid 1px #ff7a39 !important;
	background: linear-gradient(90deg, #ff7a39 50%, #ff7a39 50%);
	background-size: 204% 100%;
	background-position: 0 0;
	background-repeat: no-repeat;
	transition: all 0.45s ease;
}

.keyan-slide-button svg {
	width: 14px;
	height: 14px;
	stroke: #ffffff;
	stroke-width: 2;
	fill: none;
	transition: transform 0.3s;
}

.keyan-slide-button:hover {
	background-position: 100% 0;
	color: #ffffff !important;
	border-color: #ff7a39 !important;
}

.keyan-slide-button:hover svg {
	transform: translateX(4px);
}

.keyan-slider-footer {
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	z-index: 3;
	pointer-events: none;
}

.keyan-slider-footer-content {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
	pointer-events: auto;
}

.keyan-slider-pagination {
	display: flex;
	align-items: center;
	gap: 20px;
}

.keyan-slider-progress {
	font-size: 16px;
	color: #fff;
	font-weight: 500;
}

.keyan-slider-progress .current {
	font-weight: 600;
}

.keyan-slider-dots {
	display: flex;
	gap: 15px;
}

.keyan-slider-dot {
	width: 48px;
	height: 4px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.6);
	cursor: pointer;
	transition: 0.3s;
}

.keyan-slider-dot.active {
	border-bottom: 4px solid #ff7a39;
}

.keyan-slider-nav {
	display: flex;
	gap: 12px;
}

.keyan-slider-nav button {
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
}

.keyan-slider-nav button:hover {
	background: #ff7a39;
}

.keyan-slider-nav button svg {
	width: 24px;
	height: 24px;
	stroke: #333;
	stroke-width: 2;
	fill: none;
}

.keyan-slider-nav button:hover svg {
	stroke: #fff;
}

@media (max-width: 1599px) {
	.keyan-slide-heading {
		font-size: 80px;
	}
}

@media (max-width: 1200px) {

	.keyan-slide-heading,
	.keyan-slide-text,
	.keyan-slide-content.align-center .keyan-slide-heading {
		font-size: 36px;
	}

	.keyan-slide-content-inner {
		max-width: 50%;
	}

	.keyan-slides-container {
		min-height: 700px;
	}
}

@media (max-width: 768px) {
	.keyan-slides-container {
		min-height: 500px;
	}

	.keyan-slide-button {
		padding: 10px;
	}

	.keyan-slide-content.align-center .keyan-slide-heading,
	.keyan-slide-content.align-center .keyan-slide-text p,
	.keyan-slide-content.align-center .keyan-slide-text span {
		font-size: 30px;
	}
}

@media (max-width: 660px) {

	.keyan-slide-content.align-left,
	.keyan-slide-content.align-right {
		align-items: center;
		text-align: center;
	}

	.keyan-slide-content-inner,
	.keyan-slide-content.align-center .keyan-slide-content-inner {
		max-width: 100%;
		margin: 40px 0 0 0;
		text-align: center !important;
	}

	.keyan-slider-footer-content {
		justify-content: space-between;
		flex-wrap: nowrap;
		bottom: 20px;
		gap: 10px;
	}

	.keyan-slider-pagination {
		gap: 10px;
	}

	.keyan-slider-progress {
		font-size: 14px;
	}

	.keyan-slider-dot {
		width: 24px;
	}

	.keyan-slider-nav button {
		width: 36px;
		height: 36px;
		border-radius: 8px;
	}

	.keyan-slider-nav button svg {
		width: 18px;
		height: 18px;
	}
}

/* 轮播 e*/

.i_apply_list_tab .swiper-button-prev,
.i_apply_list_tab .swiper-button-next {
	background: url(../images/ind_apply.png) no-repeat center;
	width: 22px;
	height: 63px;
}

.i_apply_list_tab .swiper-button-prev {
	left: 24px;
	background-position: 0 0;
}

.i_apply_list_tab .swiper-button-next {

	left: auto;
	right: 20px;
	background-position: -24px 0;
}

.i_apply_list_tab .swiper-button-next:after,
.i_apply_list_tab .swiper-container-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
	display: none;
}

/* 首页产品 s*/
.ind_pro {
	padding-top: 0;
	padding-bottom: 0;
}

.ind_pro .i_pro_top {}


.i_pro_top_l {
	width: 100%;
}

.ind_pro .i_pro_top .i_pro_top_l h2 {
	margin-bottom: 0
}

.i_pro_top_l span {
	display: block;
}

.i_pro_top_r {
	width: 30%;
}

.i_pro_bot {
	margin-top: .2rem;
}

.i_pro_bot .i_pro_list {}

.i_pro_bot .i_pro_list ul {}

.i_pro_bot .i_pro_list ul li {
	padding: 2%;
	padding-top: 3%;
	padding-bottom: 0;
	margin-bottom: 30px;
	width: 32%;
	border-radius: 10px;
	background-color: #f5f5f5;
	overflow: hidden;
}

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

.i_pro_bot .i_pro_list ul li:hover {
	background-color: #ff7a39;
	box-shadow: rgba(0, 0, 0, 0.14) 5px 4px 9px 0px;
}

.i_pro_bot .i_pro_list ul li a {
	display: block;
}

.i_pro_list_info {}

.i_pro_list_info span {
	display: block;
	padding: 0 10%;
	line-height: 1.3;
	height: 2.6em;
	font-weight: 700;
}

.i_pro_bot .i_pro_list ul li:hover span {
	color: #ffffff;
}

.i_pro_list_info .i_pro_list_ico {}

.i_pro_bot .i_pro_list ul li:hover .i_pro_list_info .i_pro_list_ico {
	-webkit-box-reflect: below -10% linear-gradient(rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, .1) 100%);
}

.i_pro_list_info .i_pro_list_ico img {
	filter: drop-shadow(1px -1px 3px rgba(0, 0, 0, 0.2));
}

.i_pro_bot .i_pro_list ul li:hover .i_pro_list_info .i_pro_list_ico img {
	filter: none;
}

/* 首页产品 e*/

/* 首页关于我们 s */
.ind_ab {
	padding: 0;
	/* background-color: #fafafa; */
}

.ind_ab .i_ab_tit {
	color: #ff7a39;
	font-weight: 700;
}

.ind_ab .i_ab_des {
	color: #353535;
	text-align: justify;
	line-height: 1.4;
	height: 8.4em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
}

.box {
	position: relative;
	/* padding: 0 0 70px; */
	padding: 0;
}

.img-box {
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
	display: none;
}

.img-box .img {
	position: relative;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.img-box .img i {
	content: '';
	position: absolute;
	left: 50%;
	top: 45%;
	background: transparent url(../images/plays.png) no-repeat center/cover;
	width: 90px;
	height: 90px;
	margin-left: -45px;
	cursor: pointer;
	display: none;
}

.con {
	width: 100%;
	float: right;
	/* padding-left: 4.6%; */
	position: relative;
}

.ab_num {
	overflow: hidden;
	padding-top: 2.5vw;
}

.ab_num .flex {}

.ab_num ul {
	display: flex;
	justify-content: space-between;
}

.ab_num ul li:first-child {
	border: 0;
	padding-left: 0;
}

.ab_num ul li:last-child {
	padding-right: 0;
	margin-right: 0;
	/* width: 26%; */
}

.ab_num ul li {
	/* width: 22%; */
	float: left;
	overflow: hidden;
	/* border-left: 1px solid #eee; */
	padding-left: 15px;
	margin-right: 18px;
	/* text-align: center; */
}

.ind_about .ab_fl .ab_num ul li .counter {
	margin-right: 5px;
}

.ab_num ul li .num {
	padding-bottom: 10px;
}

.ab_num ul li .num,
.ab_num ul li .counter {
	color: #ff7a39;
}

.ab_num ul li .num b {
	display: inline-block;
	/* font-size: .58rem; */
	line-height: 1.3;
}

.ab_num ul li p {
	display: block;
	color: #4f4f4f;
	font-size: .2rem;
	line-height: 1.3;
	text-transform: capitalize;
	height: 1.3em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.ind_about .ab_fl .ab_num ul li .f16 {
	color: #3c3c3c;
	font-size: 16px;
	height: 20px;
	line-height: 20px;
}

@media (max-width:1620px) {
	.ab_num ul li {
		width: 21%;
	}
}

/* 首页关于我们 e */

/* 首页产品场景 s*/
.ind_apply {
	padding-top: 0;
	padding-bottom: .25rem;
}

.ind_apply .ind_apply_box {}

.ind_apply_box .i_apply_top {
	margin-bottom: 0;
}

.i_apply_top .i_apply_l {
	width: 40%;
}

.i_apply_top .i_apply_l span {
	display: block;
}

.ind_apply .i_apply_list {}

.i_apply_list .i_apply_list_tab {
	margin-bottom: .4rem;
}

.i_apply_list_tab .i_apply_list_item {
	width: 100%;
	display: none;
	transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
}

.i_apply_list_tab .i_apply_list_item.show {
	display: block;
}

.i_apply_list_tab .i_apply_list_item ul {}


.i_apply_list_tab .i_apply_list_item ul li {}

.i_apply_list_tab .i_apply_list_item ul li .i_apply_list_ico {
	border-radius: 10px;
}

.i_apply_list_tab .i_apply_list_item ul li img {
	border-radius: 10px;
	cursor: pointer;
}

.ind_apply .i_apply_tab_nav {}

.i_apply_tab_nav ul {}

.i_apply_tab_nav ul li {
	margin-right: 2%;
	padding: 15px 30px;
	background-color: #f2f2f2;
	border-radius: 50px;
}

.i_apply_tab_nav ul li.active,
.i_apply_tab_nav ul li:hover {
	cursor: pointer;
	background-image: -moz-linear-gradient(0deg, rgb(255, 122, 57) 0%, rgb(251, 83, 0) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(255, 122, 57) 0%, rgb(251, 83, 0) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(255, 122, 57) 0%, rgb(251, 83, 0) 100%);
}

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

.i_apply_tab_nav ul li span {
	color: #353535;
	line-height: 1.3;
}

.i_apply_tab_nav ul li:hover span,
.i_apply_tab_nav ul li.active span {
	color: #ffffff;
}

/* 轮播容器切换区 */
.i_apply_list_tab {
	position: relative;
}

.i_apply_list_item {
	width: 100%;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
}

.i_apply_list_item.show {
	display: block;
	visibility: visible;
	position: relative;
}

/* 首页产品场景 e*/

/* 首页服务 s*/
.ind_service {
	position: relative;
	/* background-color: #fafafa; */
}

.ind_service .i_ser_con {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.ind_service .i_ser_con .i_ser_l {
	position: relative;
	padding: 7% 2%;
	width: 28%;
	height: 100%;
	/* background-color: #ff7a39; */
}

.ind_service .i_ser_con .i_ser_l::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background-color: #ff7a39; */
	background: #ff7a39 url('/wp-content/uploads/home_service.webp') no-repeat center/cover;
	z-index: 1;
}

.ind_service .ind_txt {}

.ind_service .ind_txt h2 {
	position: relative;
	color: #ffffff;
	z-index: 2;
}

.ind_service .ind_txt h2::after {
	content: '';
	position: absolute;
	bottom: -1vw;
	left: 0;
	width: 35%;
	height: 2px;
	background-color: #ffffff;
}

.ind_service .ind_txt .i_ser_des {
	position: relative;
	display: block;
	color: #ffffff;
	line-height: 1.5;
	z-index: 3;
}

.ind_service .ind_txt .i_ser_more {
	position: relative;
	display: inline-block;
	padding: 5px 17px;
	color: #ffffff;
	border: 1px solid #fff;
	border-radius: 8px;
	z-index: 3;
}

.ind_service .ind_txt .i_ser_more:hover {
	background-color: #ffffff;
}

.i_ser_r {
	width: 72%;
}

.i_ser_list {
	width: 100%;
	margin: 0 auto;
}

.i_ser_r ul {}

.i_ser_r ul li {
	display: block;
	width: 40%;
	margin-right: 8%;
	padding-bottom: 2%;
}

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

.i_ser_r ul li a {
	display: block;
}

.i_ser_r ul li .i_ser_info {}

.i_ser_r ul li .i_ser_info .i_ser_info_img {
	margin-bottom: 5%;
}

.i_ser_info .i_ser_info_img img {}

.i_ser_r ul li .i_ser_info .i_ser_tit {}

.i_ser_info .i_ser_tit span {
	position: relative;
	color: #353535;
	font-weight: 700;
}

.i_ser_info .i_ser_tit span::before {
	content: '';
	position: absolute;
	bottom: -1vw;
	left: 0;
	width: 50%;
	height: 2px;
	background-color: #353535;
}

.i_ser_r ul li:hover .i_ser_info .i_ser_tit span::before {
	background-color: #ff7a39;
}

.i_ser_r ul li:hover .i_ser_info .i_ser_tit span {
	color: #ff7a39;
}

.i_ser_r ul li .i_ser_info .i_ser_des {
	width: 100%;
	color: #353535;
	line-height: 1.3;
	height: 3.9em;
}

/* 首页服务 e*/

/* 发展历程 s */
.keyan-history-module {
	background-color: #f5f5f5;
	min-width: 100%;
	padding: 0;
}

.keyan-history-module .keyan-philosophy-module-title {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
	font-size: 56px;
	text-transform: uppercase;
	text-align: center;
	color: #ff7a39;
}

.keyan-scroll-line {
	max-width: 1600px;
	margin: 0;
	padding: 0;
}

.keyan-line-base {
	height: 2px;
	background-color: #e0e4e8;
	width: 100%;
	position: relative;
	border-radius: 2px;
}

.keyan-line-active {
	height: 2px;
	background-color: #ff7a39;
	width: 0%;
	transition: width 0.1s ease-out;
	border-radius: 2px;
}

.keyan-scroll-container {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	cursor: grab;
	scrollbar-width: thin;
	scrollbar-color: #ff7a39 rgba(0, 0, 0, 0.06);
}

.keyan-scroll-container::-webkit-scrollbar {
	height: 6px;
}

.keyan-scroll-container::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.06);
	border-radius: 10px;
	margin: 0 20px;
}

.keyan-scroll-container::-webkit-scrollbar-thumb {
	background: #ff7a39;
	border-radius: 10px;
	transition: background 0.2s;
}

.keyan-scroll-container::-webkit-scrollbar-thumb:hover {
	background: #2a8bb5;
}

.keyan-scroll-container:active {
	cursor: grabbing;
}

.keyan-scroll-inner {
	display: flex;
	flex-wrap: nowrap;
	gap: 30px;
	padding: 20px 20px 30px 20px;
	max-width: 1600px;
	margin: 0 auto;
}

.keyan-history-card {
	flex: 0 0 280px;
	background: transparent;
	border-radius: 24px;
	padding: 0 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: none;
}

.keyan-year {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
	color: #ff7a39;
	margin-bottom: 0;
}

.keyan-card-image {
	width: 100%;
	max-width: 200px;
	margin: 0 auto 20px auto;
}

.keyan-card-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
	object-fit: cover;
	aspect-ratio: 244 / 167;
}

.keyan-dot {
	width: 15px;
	height: 15px;
	background-color: #ff7a39;
	border-radius: 50%;
	margin: 16px 0 14px 0;
	display: inline-block;
	animation: keyan-pulse 1.8s ease-in-out infinite;
}

@keyframes keyan-pulse {
	0% {
		transform: scale(1);
		opacity: 1;
		box-shadow: 0 0 0 0 rgba(255, 122, 57, 0.4);
	}

	50% {
		transform: scale(1.15);
		opacity: 0.9;
		box-shadow: 0 0 0 8px rgba(255, 122, 57, 0.2);
	}

	100% {
		transform: scale(1);
		opacity: 1;
		box-shadow: 0 0 0 0 rgba(255, 122, 57, 0);
	}
}

.keyan-description {
	font-size: 16px;
	line-height: 1.5;
	color: #353535;
	text-align: center;
	margin: 1vw 0;
	font-weight: 400;
	line-height: 1.5;
	height: 9.5em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
}

.keyan-history-card.cta-card {
	background: transparent;
	justify-content: center;
}

.cta-link {
	text-decoration: none;
	display: block;
	width: 100%;
	height: 100%;
}

.cta-content {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
}

.keyan-cta-text {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: #ff7a39;
	text-align: center;
	letter-spacing: -0.01em;
	margin: 0;
}

.keyan-cta-text small {
	font-size: 16px;
	font-weight: 500;
	display: block;
	margin-top: 12px;
	opacity: 0.8;
	color: #ff7a39;
}

.keyan-scroll-hint {
	text-align: center;
	margin-top: 20px;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 500;
	color: #c9683b;
	background: #f5f5f5;
	letter-spacing: 0.5px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	width: 100%;
}

.keyan-scroll-hint span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.keyan-scroll-hint svg {
	width: 18px;
	height: 18px;
	stroke: #ff7a39;
	stroke-width: 2;
	fill: none;
}

@media (max-width: 768px) {
	.keyan-history-card {
		flex: 0 0 260px;
		padding: 24px 16px 32px 16px;
	}

	.keyan-year {
		font-size: 38px;
	}

	.keyan-cta-text {
		font-size: 22px;
	}

	.keyan-scroll-inner {
		gap: 20px;
		padding: 15px 16px 25px 16px;
	}

	.keyan-dot {
		width: 24px;
		height: 24px;
	}

	.keyan-scroll-hint {
		font-size: 12px;
	}

	.keyan-scroll-container::-webkit-scrollbar {
		height: 4px;
	}
}

@media (max-width: 480px) {
	.keyan-history-card {
		flex: 0 0 240px;
	}

	.keyan-year {
		font-size: 32px;
	}

	.keyan-description {
		font-size: 13px;
	}

	.keyan-dot {
		width: 20px;
		height: 20px;
	}
}

/* 发展历程 e */

/* 首页新闻 s */
.ind_news {
	position: relative;
	padding: .4rem;
	background-color: #ffffff;
}

.i_news_top {}

.i_news_top .i_news_l {}

.i_news_top .i_news_l span {
	display: block;
}

.i_news_top .i_news_l h2 {}

.i_news_top .i_news_r {}

.i_news_top .i_news_r a {
	display: block;
}

.i_news_bot {}

.i_news_bot .i_news_list {}

.i_news_list ul {}

.i_news_list ul li {
	margin-right: 2%;
	width: 31.3333%;
	border-radius: 20px;
}

.i_news_list ul li:hover {
	box-shadow: rgba(0, 0, 0, 0.14) 5px 4px 9px 0px;
}

.i_news_list ul li a {
	display: block;
}

.i_news_list ul li .i_news_ico {
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
}

.i_news_list ul li .i_news_ico img {
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
}

.i_news_list ul li .i_news_info {
	padding: 8% 5%;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	background-color: #f9f9f9;
}

.i_news_list ul li:hover .i_news_info {
	background-color: #ff7a39;
}

.i_news_list ul li .i_news_info .i_news_list_tit {}

.i_news_list ul li .i_news_info .i_news_list_tit span {
	display: block;
	color: #ff7a39;
	line-height: 1.3;
	height: 1.3em;
}

.i_news_list ul li:hover .i_news_info .i_news_list_tit span {
	color: #ffffff;
}

.i_news_list ul li .i_news_list_des {}

.i_news_list ul li .i_news_list_des p {
	display: block;
	color: #353535;
	line-height: 1.3;
	height: 2.6em;
}

.i_news_list ul li:hover .i_news_list_des p {
	color: #ffffff;
}

/* 首页新闻 e */

/* 首页联系表单 s*/
.stk-05a4353 .stk-05a4353-column .stk-304f89b .wpforms-container .wpforms-form * {
	display: flex !important;
	flex-wrap: wrap !important;
	justify-content: space-between !important;
}

.stk-05a4353 .stk-05a4353-column .stk-304f89b .wpforms-container .wpforms-field {
	width: 50% !important;
}

.stk-05a4353 .stk-05a4353-column .stk-304f89b .wpforms-container .wpforms-field:last-child {
	width: 100% !important;
}

.stk-05a4353 .stk-05a4353-column .stk-304f89b .wpforms-container input.wpforms-field-medium {
	max-width: 95% !important;
}

.stk-05a4353 .stk-05a4353-column .stk-304f89b .wpforms-container #wpforms-submit-156 {
	display: block !important;
	width: 100%;
	padding: 15px 50px;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	cursor: pointer;
}

/* 首页联系表单 e*/

/* ====================内页样式========================= */

/* ====================关于样式========================= */

/* 公司简介 s */
.ny_about .ny_ab_des {
	color: #353535;
	text-align: justify;
	line-height: 1.4;
}

/* 公司简介 e */

/* 企业文化 s */
/* 企业文化 e */

/* 荣誉资质 s */

.stk-7813f3b .stk-column-wrapper .wp-block-stackable-column:hover .stk-block-background {
	background-color: var(--theme-palette-color-1) !important;
}

.stk-7813f3b .stk-column-wrapper .wp-block-stackable-column .stk-block-background p.stk-block-text__text {
	font-weight: 500 !important;
	line-height: 1.3;
	height: 2.6em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.stk-7813f3b .stk-column-wrapper .wp-block-stackable-column:hover .stk-block-background p.stk-block-text__text {
	color: #ffffff !important;
}

/* 荣誉资质 e */

/* 工厂环境 s */

/* 工厂环境 e */


/* ====================产品样式========================= */

/* 产品列表 s */
[data-products] .product {
	padding: 10px;
	border-radius: 12px;
	border: 1px solid #ddd;
	transition: all .3s;
}

[data-products] figure {
	border-bottom: 1px solid #ddd;
}

[data-products] .product:hover {
	box-shadow: 0px 0px 5px 2px rgb(0 0 0 / 5%);
	-moz-box-shadow: 0px 0px 5px 2px rgb(0 0 0 / 5%);
	-webkit-box-shadow: 0px 0px 5px 2px rgb(0 0 0 / 5%);
}

[data-products] .product:hover,
[data-products] .product:hover figure {
	border-color: #ff7a39;
}

/* 产品列表 e */

/* 产品详情 s */
.woocommerce div.product div.woocommerce-tabs ul.tabs li.reviews_tab{
	display:none;
}

.woocommerce div.product div.woocommerce-tabs ul.tabs li a {
	color: #ffffff;
	background-color: #ff7a39;
}

.woocommerce div.product div.woocommerce-tabs ul.tabs li.active a {
	color: #ffffff;
}

.woocommerce-tabs.wc-tabs-wrapper article td,
.woocommerce-tabs.wc-tabs-wrapper article th {
	padding: 15px 12px;
	border: 1px solid #dadbdd !important;
	vertical-align: middle;
	font-size: 16px;
	color: #353535;
	text-align: center;
	/* white-space: nowrap;
	overflow-x: auto; */
}

.woocommerce-tabs.wc-tabs-wrapper article td p,
.woocommerce-tabs.wc-tabs-wrapper article th p {
	padding-bottom: 0;
	margin-bottom: 0 !important;
}

.woocommerce-tabs.wc-tabs-wrapper article table {
	border-collapse: collapse;
	border-right: 1px solid #ededed;
	border-bottom: 1px solid #ededed;
	width: 100% !important;
}

.woocommerce-tabs.wc-tabs-wrapper article table tr:first-child {
	background-color: #ff7a39;
}

.woocommerce-tabs.wc-tabs-wrapper article table tr:first-child td {
	color: #ffffff;
	text-transform: capitalize;
	letter-spacing: 1px;
}

.woocommerce-tabs.wc-tabs-wrapper article table tr:not(:first-child) td {}

.woocommerce-tabs.wc-tabs-wrapper article table td {
	border-left: 1px solid #ededed;
	border-top: 1px solid #ededed !important;
}

.woocommerce-tabs.wc-tabs-wrapper article {
	font-size: 16px;
	color: #353535;
	line-height: 30px;
	margin-bottom: 30px;
}

.woocommerce-tabs.wc-tabs-wrapper article p,
.woocommerce-tabs.wc-tabs-wrapper article span {
	font-size: 16px;
	color: #353535;
	line-height: 28px;
}

.woocommerce-tabs.wc-tabs-wrapper article strong {
	font-weight: bold;
}

.woocommerce-tabs.wc-tabs-wrapper article img {
	max-width: 100%;
}

.woocommerce-tabs.wc-tabs-wrapper article a {
	color: #353535;
}

.woocommerce-tabs.wc-tabs-wrapper article h1,
.woocommerce-tabs.wc-tabs-wrapper article h2,
.woocommerce-tabs.wc-tabs-wrapper article h3,
.woocommerce-tabs.wc-tabs-wrapper article h4,
.woocommerce-tabs.wc-tabs-wrapper article h5 {
	font-weight: bold;
}

.woocommerce-tabs.wc-tabs-wrapper article h1 {
	font-size: 36px;
	margin-bottom: 20px
}

.woocommerce-tabs.wc-tabs-wrapper article h2 {
	font-size: 30px;
	margin-bottom: 15px;
	color: #ff7a39;
	text-transform: capitalize;
}

.woocommerce-tabs.wc-tabs-wrapper article h3 {
	font-size: 24px;
	margin-bottom: 30px;
	font-weight: normal;
	color: #353535;
}

.woocommerce-tabs.wc-tabs-wrapper article h4 {
	font-size: 18px;
	margin-bottom: 15px
}

.woocommerce-tabs.wc-tabs-wrapper article h5 {
	font-size: 14px;
	margin-bottom: 10px
}

.woocommerce-tabs.wc-tabs-wrapper article h6 {
	font-size: 12px;
	margin-bottom: 10px
}

.woocommerce-tabs.wc-tabs-wrapper article ul li,
.woocommerce-tabs.wc-tabs-wrapper article ol li {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
	list-style: inherit !important;
}

.woocommerce-tabs.wc-tabs-wrapper article ul li p,
.woocommerce-tabs.wc-tabs-wrapper article ol li p {
	padding-bottom: 0;
	margin-bottom: 3px !important;
}

.woocommerce-tabs.wc-tabs-wrapper article ul,
.woocommerce-tabs.wc-tabs-wrapper article ol {
	margin-bottom: 15px;
}

.woocommerce-tabs.wc-tabs-wrapper article sub {
	vertical-align: sub;
	font-size: smaller;
}

.woocommerce-tabs.wc-tabs-wrapper article sup {
	vertical-align: super;
	font-size: smaller;
}

.woocommerce-tabs.wc-tabs-wrapper article img {
	display: inline-block;
	margin: 20px 0;
}

@media (max-width: 1000px) {

	.woocommerce-tabs.wc-tabs-wrapper article table,
	.woocommerce div.product div.woocommerce-tabs div.woocommerce-Tabs-panel.panel {
		overflow: hidden;
		overflow-x: auto;
	}

	.woocommerce-tabs.wc-tabs-wrapper article table {
		/* min-width: 990px; */
	}

}

@media (max-width: 768px) {

	.woocommerce-tabs.wc-tabs-wrapper article td,
	.woocommerce-tabs.wc-tabs-wrapper article th {
		padding: 6px 5px !important;
		line-height: 20px
	}

	.woocommerce-tabs.wc-tabs-wrapper article p,
	.woocommerce-tabs.wc-tabs-wrapper article span {
		font-size: 13px !important;
		line-height: 24px !important;
	}

	.woocommerce-tabs.wc-tabs-wrapper article img {
		display: inline-block;
		margin: 12px 0;
	}
}

/* 产品详情 e */

/* ====================新闻样式========================= */

/* 新闻列表 s */
[data-prefix="blog"] .entry-card .entry-title,
[data-prefix="categories"] .entry-card .entry-title {
	line-height: 1.3;
	height: 2.6em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

[data-prefix="blog"] .entry-excerpt,
[data-prefix="blog"] .entry-excerpt p,
[data-prefix="categories"] .entry-excerpt {
	line-height: 1.3;
	height: 3.9em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.entry-content {
	line-height: 1.5
}

/* 新闻列表 e */

/* 新闻详情 s */

[data-prefix="single_blog_post"] .ct-share-box .ct-module-title,
[data-prefix="single_blog_post"] .ct-related-posts .ct-module-title {
	margin-bottom: 1vw;
}

.post .entry-content a{
	color:#ff7a39;
	font-weight:700;
}

/* 新闻详情 e */

/* ====================应用样式========================= */


/* ====================服务样式========================= */

/* 服务支持 s */
/* 服务支持 e */

/* 常见问题 s */
/* 常见问题 e */

/* 下载中心 s */
/* 下载中心 e */

/* 视频中心 s */
/* 视频中心 e */

/* ====================联系样式========================= */

/* 联系我们 s */
.wpforms-field-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.wpforms-container .wpforms-field {
	width: 48% !important;
	float: left;
	clear: none;
}

.wpforms-container input.wpforms-field-medium {
	max-width: 100%;
}

.wpforms-container .wpforms-field:last-child {
	width: 100% !important;
}

/* 联系我们 e */



/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {

	/* 1600 × (900/1024/1200) */
	.i_apply_tab_nav ul li {
		margin-right: 1%;
	}
}

@media all and (max-width:1599px) {

	/* 1440 × (900/1050) */
	.Header-container .c-nav>li {
		margin-right: 0.4rem;
	}

	.ct-sidebar .widget_nav_menu ul li,
	.product_list_widget .product-title {
		font-size: 14px
	}

	.i_apply_tab_nav ul li {
		margin-bottom: 1vw;
		width: 23%;
	}

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

	.i_apply_tab_nav ul li span {
		font-size: 16px;
	}
	
	.i_ser_r ul li .i_ser_info .i_ser_des{
		font-size:15px;
	}
}

@media all and (max-width:1439px) {
	/* 1360 × (768) */
}

@media all and (max-width:1359px) {
	/* 1280 × (800/854/1024) */
}

@media all and (max-width:1279px) {
	/* 1152 × (864) */
}

@media all and (max-width:1151px) {
	/* 1024 × (600/768) */
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {

	/* 平板设备 720 适配 */
	.pc {
		display: none;
	}

	.mb {
		display: block;
	}
}

@media all and (max-width:768px) {

	/* 首页产品 */
	.ind_txt,
	.ind_apply_box .i_apply_top,
	.ind_service .i_ser_con {
		flex-direction: column;
	}

	.i_pro_top_l,
	.i_pro_top_r,
	.i_apply_top .i_apply_l,
	.i_apply_top .i_apply_r,
	.ind_service .i_ser_con .i_ser_l,
	.i_ser_r {
		width: 100%;
	}

	.i_pro_bot {
		margin-top: 0.5rem;
	}

	.i_pro_bot .i_pro_list ul li {
		width: 48%;
	}

	.i_pro_list_info span {
		font-size: 18px;
	}

	/* 关于我们 */
	.ind_ab .i_ab_des,
	.ab_num {
		margin-bottom: 5vw;
	}

	.ab_num ul {
		flex-wrap: wrap;
	}

	.ab_num ul li {
		width: 47%;
		padding-left: 0;
	}

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

	/* 应用场景 */
	.ind_apply_box .i_apply_top {}

	.i_apply_top .i_apply_r {
		margin-bottom: 5vw;
	}

	.i_apply_tab_nav ul li {
		width: 48%;
		margin-bottom: 3vw;
	}

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

	/* 服务 */
	.ind_service .i_ser_con .i_ser_l {
		margin-bottom: 3vw;
		padding: 5vw;
	}

	.ind_service .ind_txt .i_ser_des {
		padding-top: 10px !important;
	}

	.ind_service .ind_txt .i_ser_more {
		font-size: 18px;
	}

	.i_ser_list {
		width: 100%;
	}

	.i_ser_r ul li .i_ser_info .i_ser_tit {
		font-size: 20px;

	}
}

@media all and (max-width:640px) {

	/* 移动终端以上 360 适配 */
	p.mb_ab_con {
		font-size: 34px !important;
	}

	p.mb_con_des {
		font-size: 14px !important;
	}
}

@media all and (max-width:480px) {}

@media all and (max-width:420px) {}

@media all and (max-width:376px) {}