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

/** 设置默认字体 **/
/* 
    宋体：\5B8B\4F53
    新宋体：\65B0\5B8B\4F53
    黑体：\9ED1\4F53
    微软雅黑：\5FAE\8F6F\96C5\9ED1
    楷体：\6977\4F53_GB2312
    思源黑体： Source Han Sans CN
 */
body,
button,
input,
select,
textarea

/* for ie */
	{
	font: 14px/1 "ML", "Microsoft YaHei", "Hiragino Sans GB", "Droid Sans Fallback", "WenQuanYi Micro Hei", 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;
}

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

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

.clearfix:after {
	clear: both
}

/* 水平垂直居中 */
.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;
}

/* 引入字体 */
@font-face {
	font-family: 'MR';
	src: url('../fonts/Montserrat-Regular.otf'),
		url('../fonts/Montserrat-Regular.eot'),
		url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Montserrat-Regular.woff2') format('woff2'),
		url('../fonts/Montserrat-Regular.woff') format('woff'),
		url('../fonts/Montserrat-Regular.otf') format('truetype'),
		url('../fonts/Montserrat-Regular.svg#svgFontName') format('svg');
}

@font-face {
	font-family: 'MB';
	src: url('../fonts/Montserrat-Bold.otf'),
		url('../fonts/Montserrat-Bold.eot'),
		url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Montserrat-Bold.woff2') format('woff2'),
		url('../fonts/Montserrat-Bold.woff') format('woff'),
		url('../fonts/Montserrat-Bold.otf') format('truetype'),
		url('../fonts/Montserrat-Bold.svg#svgFontName') format('svg');
}

@font-face {
	font-family: 'ML';
	src: url('../fonts/Montserrat-Light.otf'),
		url('../fonts/Montserrat-Light.eot'),
		url('../fonts/Montserrat-Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Montserrat-Light.woff2') format('woff2'),
		url('../fonts/Montserrat-Light.woff') format('woff'),
		url('../fonts/Montserrat-Light.otf') format('truetype'),
		url('../fonts/Montserrat-Light.svg#svgFontName') format('svg');
}

@font-face {
	font-family: 'SS-H';
	src: url('../fonts/SourceHanSansCN-Heavy.otf'),
		url('../fonts/SourceHanSansCN-Heavy.eot'),
		url('../fonts/SourceHanSansCN-Heavy.eot?#iefix') format('embedded-opentype'),
		url('../fonts/SourceHanSansCN-Heavy.woff2') format('woff2'),
		url('../fonts/SourceHanSansCN-Heavy.woff') format('woff'),
		url('../fonts/SourceHanSansCN-Heavy.otf') format('truetype'),
		url('../fonts/SourceHanSansCN-Heavy.svg#svgFontName') format('svg');
}

@font-face {
	font-family: 'SS-B';
	src: url('../fonts/SourceHanSansCN-Bold.otf'),
		url('../fonts/SourceHanSansCN-Bold.eot'),
		url('../fonts/SourceHanSansCN-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/SourceHanSansCN-Bold.woff2') format('woff2'),
		url('../fonts/SourceHanSansCN-Bold.woff') format('woff'),
		url('../fonts/SourceHanSansCN-Bold.otf') format('truetype'),
		url('../fonts/SourceHanSansCN-Bold.svg#svgFontName') format('svg');
}

@font-face {
	font-family: 'SS-R';
	src: url('../fonts/SourceHanSansCN-Regular.otf') format('truetype'),
}

@font-face {
	font-family: 'UL-B';
	src: url('../fonts/ULAGADISANS-BOLD.ttf'),
		url('../fonts/ULAGADISANS-BOLD.eot'),
		url('../fonts/ULAGADISANS-BOLD.eot?#iefix') format('embedded-opentype'),
		url('../fonts/ULAGADISANS-BOLD.woff2') format('woff2'),
		url('../fonts/ULAGADISANS-BOLD.woff') format('woff'),
		url('../fonts/ULAGADISANS-BOLD.otf') format('truetype'),
		url('../fonts/ULAGADISANS-BOLD.svg#svgFontName') format('svg');
}

.UL-B {
	font-family: 'UL-B';
}

.SS-H {
	font-family: 'SS-H';
}

.SS-R {
	font-family: 'SS-R';
}

.SS-B {
	font-family: 'SS-B';
}

.MR {
	font-family: 'MR';
}

.MB {
	font-family: 'MB';
}

.ML {
	font-family: 'ML';
}

/*动画效果 所有属性获得过度*/
* {
	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;
}

/*字母转换为大写*/
.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;
}


.fw6 {
	font-weight: 600;
}

.fw7 {
	font-weight: 700;
}

@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-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-55 {
	padding-bottom: 55%;
}

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

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

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

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

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

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

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

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

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

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

.mt58 {
	margin-top: 0.58rem;
}

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

.mb20 {
	margin-bottom: 0.2rem;
}

.mb25 {
	margin-bottom: 0.25rem;
}

/*==常用字号==*/
.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 {
	box-shadow: 0 2px 10px rgb(0 0 0 / 5%);
}

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

.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 .fr {
	display: flex;
	align-items: center;
	font-size: 0;
}

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

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

	.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: #004ea0 !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;
		font-size: 16px;
		padding: 15px 0;
		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;
		letter-spacing: 1px;
	}

	.Header-container .c-nav>li>ul>li>a:before {
		content: "";
		position: absolute;
		top: 7px;
		bottom: 7px;
		left: -20px;
		width: 4px;
		background: #004ea0;
		-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: #004ea0;
	}

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

.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 {}

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

.Header-container .tool .search i::after {
	display: none;
	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: #004ea0;
	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: rgba(255, 255, 255, .8);
	-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 {
	background-color: #3F3B3A;
}

.Header-wrapper .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-wrapper {
	background-color: #fff;
}

.Footer-container {
	padding-top: .8rem;
	padding-bottom: .8rem;
}

.f_first {
	width: 16%;
}

.f_first .foot_logo {
	width: 100%;
	margin-bottom: 0.38rem;
}

.footer_r {}

.footer_r .footer_r_tel_desc {}

.footer_r .ad_kefu {
	text-align: center;
}

.footer_r .footer_r_tel_desc p {
	color: #a5a5a5;
	font-size: .18rem;
	/* font-family: 'SS-B'; */
	line-height: 1.3;
}

.footer_r span {
	display: block;
	text-align: center;
	margin-top: 0.1rem;
	color: #a5a5a5;
	font-size: .16rem;
}

.footer_r .shangqiao {}

.footer_r .ad_kefu .shangqiao {
	display: block;
	width: 70%;
	height: 48px;
	line-height: 48px;
	text-align: center;
	border-radius: 30px;
	margin: 0 auto;
	margin-top: 20px;
	font-size: 16px;
	color: #fff;
	padding-left: 30px;
	background: url(../images/footkf_on.png)no-repeat 20px #898989;
	transition: all 0.5s;
	/* margin: 20px auto 0 auto;
	margin-left: .1rem; */
}

.footer_r .ad_kefu .shangqiao:hover {
	background-color: #004ea0;
}

.Footer-container .top {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0.36rem 0;
	display: inline-block;
	width: 100%;
}

.Footer-container .top .foot_logo {}

.Footer-container .top .foot_logo img {
	height: 50px;
}

.Footer-container .top .foot_link {}

.media_ul {}

.media_ul li {
	margin-right: 8px;
}

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

.media_ul li a {
	display: block;
	padding: 10px;
	background-color: #3b5999;
	color: white;
	border-radius: 50%;
	font-size: 0;
}

.media_ul li a img {}

.Footer-container .mid {
	width: 50%;
}

.Footer-container .mid ul {}

.Footer-container .mid ul li {
	float: left;
	/* margin-right: 0.6rem; */
	overflow: hidden;
}

.Footer-container .mid ul li p {
	font-size: 20px;
	color: #636363;
	display: block;
	margin-bottom: 24px;
	transition: all .3s;
}

.Footer-container .mid ul li a {
	font-size: 16px;
	color: #8c8c8c;
	line-height: 30px;
	display: block;
}

.Footer-container .mid ul li a:hover {
	color: #004ea0;
}

.Footer-container .mid ul li.lxwm {
	max-width: 450px;
	margin-right: 0;
}

.Footer-container .ewm {
	width: 8%;
	text-align: center;
}

.Footer-container .ewm span {
	display: block;
	margin-top: 0.15rem;
	font-size: 0.16rem;
	color: #8c8c8c;
}

.Footer-container .mid ul li dl {}

.Footer-container .mid ul li dd {
	position: relative;
	font-size: 14px;
	line-height: 20px;
	color: rgb(255, 255, 255, .8);
	margin-bottom: 16px;
	padding-left: 30px;
}

.Footer-container .mid ul li dd i {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 18px;
	color: rgb(255, 255, 255, .8);
}

.Footer-wrapper .bot {
	font-size: 15px;
	color: #8c8c8c;
	text-align: center;
	padding: 0.25rem 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.Footer-wrapper .bot a {
	color: #8c8c8c;
	transition: all .3s;
}

.Footer-wrapper .bot a:hover {
	color: #004ea0;
}

/* 中间+共用部分 */

.ind_tit {
	font-size: .5rem;
}

.ind_tit h3 {
	color: #000;
	margin-bottom: 0.2rem;
	font-weight: 700;
}

.ind_tit p {
	font-size: .18rem;
	text-transform: uppercase;
}

/*内页banner*/

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
	display: none !important;
}

.ny_banenr {
	width: 100%;
	position: relative;
	margin-top: 100px;
}

.ny_banenr::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	/* background: url(../images/img112.png)no-repeat top center; */
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

.ny_banenr .ba_pic {
	width: 100%;
}

.ny_banenr .ba_pic img {
	width: 100%;
	display: block;
}

.ny_banenr .wordsbox {
	width: 100%;
	position: absolute;
	left: 0;
	top: 43%;
	z-index: 2;
}

.ny_banenr .wordsbox h2 {
	font-size: 45px;
	color: #ffffff;
	line-height: 50px;
	text-align: center;
	font-weight: bolder;
}

.ny_banenr .dq_box {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 18px;
	z-index: 2;
}

.ny_banenr .dq_box .content {
	width: 100%;
	font-size: 0;
}

.ny_banenr .dq_box .content img {
	width: 19px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.ny_banenr .dq_box .content a {
	font-size: 14px;
	color: #ffffff;
	line-height: 19px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	margin: 0 10px;
}

.ny_banenr .dq_box .content a::before {
	content: '>';
	position: absolute;
	right: -12px;
	top: 0;
}

.ny_banenr .dq_box .content a:last-child::before {
	display: none;
}

.ny_banenr .dq_box .content span {
	font-size: 14px;
	color: #ffffff;
	line-height: 19px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 4px;
}

.ny_banenr .dq_box .content a:hover,
.ny_banenr .dq_box .content a.on {
	opacity: 0.8;
}

@media screen and (max-width: 1680px) {
	.ny_banenr .wordsbox {
		top: 50%;
	}

	.ny_banenr .wordsbox h2 {
		font-size: 36px;
		line-height: 40px;
	}

	.ny_banenr .dq_box {
		bottom: 14px;
	}
}

@media screen and (max-width: 1024px) {
	.ny_banenr {
		margin-top: 60px;
	}

	.ny_banenr::after {
		display: none;
	}

	.ny_banenr .wordsbox {
		top: 50%;
		transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		-webkit-transform: translate(0, -50%);
		-moz-transform: translate(0, -50%);
		-o-transform: translate(0, -50%);
	}

	.ny_banenr .wordsbox h2 {
		font-size: 24px;
		line-height: 28px;
	}

	.ny_banenr .dq_box {
		bottom: 10px;
		display: none;
	}

	.ny_banenr .dq_box .content img {
		width: 18px;
		margin-right: 6px;
	}

	.ny_banenr .dq_box .content a {
		font-size: 12px;
		line-height: 18px;
	}

	.ny_banenr .dq_box .content span {
		font-size: 12px;
		line-height: 18px;
		margin: 0 2px;
	}
}

/*二级导航*/
.ej_section {
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	background: #f5f5f5;
	border-bottom: 1px solid #E3E3E3;
}

.ej_section ul {
	font-size: 0;
	text-align: center;
	margin: -6px -72px;
	width: calc(100% + 144px);
}

.ej_section ul li {
	display: inline-block;
	vertical-align: middle;
	padding: 6px 72px;
	position: relative;
}

.ej_section ul li::after {
	content: "";
	display: block;
	width: 6px;
	height: 8px;
	background: url(../images/img152.png)no-repeat center center;
	background-size: cover;
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.ej_section ul li:last-child::after {
	display: none;
}

.ej_section ul li a {
	display: block;
	font-size: 18px;
	color: #333333;
	line-height: 24px;
}

.ej_section ul li:hover a,
.ej_section ul li.on a {
	color: #004ea0;
}

@media screen and (max-width: 1680px) {
	.ej_section {
		padding-top: 16px;
		padding-bottom: 16px;
	}

	.ej_section ul {
		margin: -4px -40px;
		width: calc(100% + 80px);
	}

	.ej_section ul li {
		padding: 4px 40px;
	}

	.ej_section ul li a {
		font-size: 16px;
		line-height: 20px;
	}
}

@media screen and (max-width: 1024px) {
	.ej_section ul {
		margin: 0 -16px;
		width: calc(100% + 32px);
		white-space: nowrap;
		overflow: hidden;
		overflow-x: auto;
		scrollbar-width: thin;
		max-width: 100%;
		text-align: left;
	}

	.ej_section ul::-webkit-scrollbar {
		display: none;
	}

	.ej_section ul li {
		padding: 0 16px;
	}

	.ej_section ul li a {
		font-size: 16px;
		line-height: 20px;
	}
}

/* 分页条 */

.com_page {
	overflow: hidden;
}

.com_page a {
	display: block;
	padding: 10px;
	border: 1px solid #ccc;
	margin-right: 15px;
	font-size: 16px;
	color: #444;
	background-color: #fff;
	transition: all .3s;
}

.com_page a:hover {
	color: #fff;
	background-color: #004ea0;
}

.com_page .page_num {}

.com_page .page-num-current {
	color: #fff;
	background-color: #004ea0;
}

/* ind_banner */
.ind_banner .swiper-pagination-bullet {
	background-color: white;
	opacity: 1;
}

.ind_banner .swiper-pagination-bullet-active {
	background-color: #004ea0;
}

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

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

.md-sideBar .side_item .bd {
	color: #004ea0;
	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 */


/* 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: #004ea0;
	width: 30px;
	height: 8px;
	border-radius: 4px;
}

/* ====================首页样式========================= */

/* 产品中心 s */
.ind_pro {
	background-color: #f5f5f5;
}

.ind_pro .con {
	margin-top: 0.55rem;
}

.ind_pro .con .top {
	margin-bottom: 0.25rem;
}

.ind_pro .con .top ul {}

.ind_pro .con .top ul li {
	position: relative;
	flex-grow: 1;
	border-right: 1px solid #EFF2F7;
	z-index: 2;
	-webkit-flex-grow: 1;
	-moz-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.ind_pro .con .top ul li a {
	text-align: center;
	font-size: 18px;
	color: #333;
	padding: 6px 2%;
	min-height: 60px;
	background-color: white;
	text-transform: capitalize;
}

.ind_pro .con .top ul li.active a,
.ind_pro .con .top ul li:hover a {
	background-color: #004ea0;
	color: white;
}

.ind_pro .con .top ul li a span {
	line-height: 1.5;
}

.ind_pro .con .bot {}

.ind_pro .con .bot .item {
	display: none;
}

.ind_pro .con .bot .item.show {
	display: block;
}

.ind_pro .con .bot .item .fl {
	width: calc(40% - 15px);
	margin-right: 15px;
	background-color: #fff;
}

.ind_pro .con .bot .item .fl .pic {}

.ind_pro .con .bot .item .fl .info {
	padding-bottom: 15px;
}

.ind_pro .con .bot .item .fl h4 {
	font-size: 20px;
	color: #191919;
	text-align: center;
	line-height: 55px;
	height: 55px;
	padding: 0 5%;
}

.ind_pro .con .bot .item .fl a:hover h4 {
	color: #004ea0;
}

.ind_pro .con .bot .item .fl p {
	font-size: 14px;
	line-height: 25px;
	height: 50px;
	text-align: center;
	color: #888;
	padding: 0 8%;
}

.ind_pro .con .bot .item .fr {
	width: 60%;
}

.ind_pro .con .bot .item .fr ul {}

.ind_pro .con .bot .item .fr ul li {
	float: left;
	width: calc((100% - 30px) / 3);
	margin-right: 15px;
	margin-bottom: 15px;
	background-color: white;
}

.ind_pro .con .bot .item .fr ul li:nth-child(3n) {
	margin-right: 0;
}

.ind_pro .con .bot .item .fr ul li a {}

.ind_pro .con .bot .item .fr ul li p {
	font-size: 14px;
	color: #191919;
	text-align: center;
	height: 55px;
	padding: 0 2%;
}

.ind_pro .con .bot .item .fr ul li p span {
	font-size: 14px;
	line-height: 20px;
}

.ind_pro .con .bot .item .fr ul li:hover p {
	color: #004ea0;
}

.ind_pro .con .bot .item p {
	-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;
}

/* 产品中心 e */

/* 关于我们 s */
.ind_ab .ind_tit h3 {
	display: inline-block;
	vertical-align: bottom;
	margin-bottom: 0.08rem;
	font-family: 'SS-B';
}

.ind_ab .ind_tit img {
	display: inline-block;
}

.ind_ab .ab_box {
	align-items: flex-start;
}

.ind_ab .fl {
	width: 50%;
}

.ind_ab .fl .ind_tit {}

.ind_ab .fl .ind_tit h3 {}

.ind_ab .fl .ind_tit img {}

.ind_ab .fl .ind_tit p {
	width: 90%;
	font-size: 0.24rem;
	line-height: 1.3;
	margin-top: 0.28rem;
}

.ind_ab .fl .des {
	margin-top: 0.65rem;
	color: #505050;
	font-size: 0.16rem;
	line-height: 1.7em;
	height: 6.8em;
}

.ind_ab .fl .more {}

.ind_ab .fl .more a {
	display: inline-block;
	padding: 15px 48px;
	margin: 54px 0 34px;
	font-size: 0.16rem;
	color: #fff;
	background-color: #004ea0;
	text-align: center;
	transition: all .3s;
}

.ind_ab .fl .more a:hover {
	font-weight: 700;
}

.ind_ab .fr {
	position: relative;
	width: 42.5%;
}

.ind_ab .fr img {}

.ind_ab .fr a {
	display: block;
}

.ind_ab .fr i {
	display: inline-block;
	width: 90px;
	height: 90px;
	line-height: 90px;
	text-align: center;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	margin: auto;
	cursor: pointer;
}

.ind_ab .fr i::before {
	content: "";
	display: block;
	width: 90px;
	height: 90px;
	background: url(../images/ico_play.png) center no-repeat;
	background-size: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -35px;
	margin-top: -35px;
	z-index: 2;
}

/* 数字滚动 */
.ab_num {}

.ab_num ul {}

.ab_num ul li {}

.ab_num ul li .num {}

.ab_num ul li .num b {
	color: #004ea0;
}

.ab_num ul li p {}

/* 关于我们 e */
/* 应用领域 s */
.ind_solution {
	background-color: #f7f7f7;
}

.application {}

.application>div {}

.application ul {}

.application ul li {
	display: inline-block;
	position: relative;
	transition: all .3s;
}

.application ul li:hover::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transition: 0.5s;
	background: -webkit-linear-gradient(90deg, rgb(19, 173, 229) 0%, rgb(19, 173, 229, 0.5) 10%, rgb(19, 173, 229, 0) 60%);
}

.application ul li a {
	display: block;
}

.application ul li .img {
	width: 101%;
}

.application ul li .img img {}

.application ul li .info {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 0 35px 40px 42px;
	color: #fff;
	transform: translateY(45%);
	transition: all .3s;
	z-index: 1;
}

.application ul li:hover .info {
	transform: translateY(0);
}

.application ul li .info>span {
	font-size: 107px;
	color: #fff;
	opacity: .4;
	line-height: 1.1;
}

.application ul li:hover .info>span {
	opacity: .8;
}

.application ul li .info .tit {
	position: relative;
	font-size: 26px;
}

.application ul li .info .tit::after {
	position: absolute;
	content: '';
	left: 0;
	bottom: -20px;
	width: 11%;
	height: 3px;
	background-color: #fff;
	opacity: 0;
	transition: all .3s;
}

.application ul li .info .des {
	margin: 48px 0 27px 0;
	font-size: 18px;
	opacity: 0;
	line-height: 1.3em;
	height: 2.6em;
}

.application ul li:hover .info .tit::after,
.application ul li:hover .info .des {
	opacity: 1;
}

.application ul li .info .more {
	font-size: 16px;
}

/* 应用领域 e */
/* 服务案例 s */
.ind_case {}

.ind_case .case_box {
	align-items: flex-start;
}

.ind_case .case_box .fl {
	width: 37%;
	margin-left: 5%;
}

.ind_case .case_box .fl .swiper-container {
	position: relative;
	width: 93%;
	overflow: hidden;
}

.ind_case .case_box .fl .swiper-slide {}

.ind_case .case_box .fl .swiper-slide::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background: transparent url(../images/yuan.png) no-repeat center;
	z-index: 2;
	transform: translate(-50%, -50%);
}

.ind_case .case_box .fl .swiper-slide a {
	display: block;
	position: relative;
	padding: 8%;
}

.ind_case .case_box .fl .swiper-slide:hover {
	cursor: pointer;
}

.ind_case .case_box .fl .swiper-slide a::before {}

.ind_case .case_box .fl .swiper-slide a>div {
	margin: 0 auto;
}

.ind_case .case_box .fl .swiper-slide a>div img {
	z-index: 1;
}

.ind_case .case_box .fl .swiper-slide .rect-100 {
	border-radius: 50%;
}

.ind_case .case_box .fl .swiper-slide .rect-100::before {}

.ind_case .case_box .fl .swiper-container .swiper-button-prev,
.ind_case .case_box .fl .swiper-container .swiper-button-next {
	width: 0.6rem;
	height: 0.6rem;
	background: url(../images/left_on.png) no-repeat center;
	background-size: 100% auto;
	left: 0;
}

.ind_case .case_box .fl .swiper-container .swiper-button-prev {}

.ind_case .case_box .fl .swiper-container .swiper-button-next {
	background-image: url(../images/right_on.png);
	left: auto;
	right: 0;
}

.ind_case .case_box .fl .swiper-container .swiper-button-prev:after {
	display: none;
}

.ind_case .case_box .fl .swiper-container .swiper-button-next:after {
	display: none;
}

.ind_case .case_box .fr {
	width: 50%;
}

.ind_case .case_box .fr .swiper-container {
	overflow: hidden;
}

.ind_case .case_box .fr .ind_tit {}

.ind_case .case_box .fr .ind_tit h3 {}

.ind_case .case_box .fr .ind_tit p {}

.ind_case .case_box .fr .info {}

.ind_case .case_box .fr .swiper-slide {
	cursor: default;
}

.ind_case .case_box .fr .info h2 {
	margin-top: 80px;
	margin-bottom: 58px;
}

.ind_case .case_box .fr .info .des {
	line-height: 1.3;
}

.ind_case .case_box .fr .info .more {
	margin-top: 100px;
}

.ind_case .case_box .fr .info .more a {
	display: inline-block;
	padding: 15px 48px;
	font-size: 0.16rem;
	color: #fff;
	background-color: #004ea0;
}

/* 服务案例 e */
/* 新闻中心 s */
#news {
	background-color: #f5f5f5;
}

#news .news_t {
	overflow: hidden;
	display: block;
}

#news .news_t .ind_tit {
	display: inline-block;
}

#news .news_t .news_btn {
	float: right;
	display: block;
	padding-top: 50px;
}

#news .news_t .news_btn a {
	width: 168px;
	line-height: 52px;
	display: block;
	border-radius: 5px;
	text-align: center;
	background: #eeeeee;
	display: inline-block;
	margin-left: 26px;
	font-size: 18px;
	color: #999999;
}

#news .news_t .news_btn a.on {
	background: #004ea0;
	color: #fff;
}

#news .news_nr {
	display: block;
	margin-top: 55px;
	position: relative;
}

#news .news_nr .box_r_nr {
	display: block;
}

#news .news_nr .box_r_nr ul {
	display: block;
}

#news .news_nr .box_r_nr ul li {
	display: block;
	padding: 0 30px;
}

#news .news_nr .box_r_nr ul li a {
	display: block;
}

#news .news_nr .box_r_nr ul li a img {
	max-width: 100%;
	display: block;
}

#news .news_nr .box_r_nr ul li a .desc {
	padding: 20px 10px;
	display: block;
}

#news .news_nr .box_r_nr ul li a .desc .t {
	font-size: 24px;
	color: #666666;
	line-height: 2;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

#news .news_nr .box_r_nr ul li:hover a .desc .t {
	color: #004ea0;
}

#news .news_nr .box_r_nr ul li a .desc .list {
	font-size: 16px;
	color: #999999;
	line-height: 1.6;
	display: block;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-top: 10px;
	margin-bottom: 20px;
}

#news .news_nr .box_r_nr ul li a .desc span {
	text-align: left;
	font-size: 14px;
	color: #999999;
	display: block;
}

#news .news_nr .box_r_nr ul li:hover a .desc span {
	color: #454545;
}

.nybusiness-img {
	overflow: hidden;
}

.white,
.whites {
	position: relative;
	overflow: hidden;
}

.dh300s {
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
}

.white::after,
.whites::after {
	content: '';
	cursor: pointer;
	position: absolute;
	left: -120%;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: -moz-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .5), rgba(255, 255, 255, 0));
	background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .5), rgba(255, 255, 255, 0));
	transform: skewx(-25deg);
	transition: unset;
}

.white:hover::after {
	left: 120%;
	-moz-transition: 1s;
	-o-transition: 1s;
	-webkit-transition: 1s;
	transition: 1s;
}

/* 新闻中心 e */
/* ====================内页样式========================= */

/* ====================关于样式========================= */
/* 公司介绍 s */
.ab_tit h3 {
	font-size: 0.42rem;
	color: #004ea0;
	font-weight: 600;
	line-height: 1.6;
}

.ab_tit p {
	color: #333;
	font-weight: bold;
	font-size: 0.18rem;
	line-height: 1.4;
	text-transform: uppercase;
}

.ab_profile {}

.profile_view {}

.profile_text {
	position: relative;
	width: 50%;
	padding: 3% 5% 0.2rem 0;
}

.profile_text .ab_tit {
	margin-bottom: 0.1rem;
}

.profile_text .info {
	font-size: 18px;
	line-height: 1.8;
	height: 3rem;
	padding-right: 20px;
	overflow-y: auto;
	margin-top: 0.25rem;
	text-align: justify;
}


.profile_text .info::-webkit-scrollbar {
	width: 6px;
	height: 16px;
	background-color: #F5F5F5;
}

/*定义滚动条轨道 内阴影+圆角*/
.profile_text .info::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
.profile_text .info::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #555;
}

.profile_pic {
	position: relative;
	width: 50%;
}

.profile_pic img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-transition: all .8s;
	-o-transition: all .8s;
	-moz-transition: all .8s;
	transition: all .8s;
	-o-object-fit: cover;
	object-fit: cover;
}

.profile_ul {
	background: #004ea0;
	width: 100%;
	margin-top: 0.4rem;
}

.profile_ul li {
	position: relative;
	-webkit-flex-grow: 1;
	-moz-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	text-align: center;
	padding: 0.45rem 0;
	width: 25%;
}

.profile_ul li .ico {
	position: relative;
	filter: drop-shadow(100vw 0px 0 white);
	-webkit-filter: drop-shadow(100vw 0px 0 white);
	right: 100vw;
}

.profile_ul li .ico img {
	display: inline-block;
}

.profile_ul li p {
	color: #fff;
	margin-top: 0.1rem;
	font-size: 0;
}

.profile_ul li p span {
	display: block;
	font-size: 16px;
	line-height: 1.5;
}

.profile_ul li:after {
	position: absolute;
	content: '';
	width: 1px;
	height: 56px;
	top: 50%;
	right: 0;
	margin-top: -28px;
	background: rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.38);
}

/* 公司介绍 e */


/* 企业文化 s */
.ab_culture {
	position: relative;
	background: url(../images/ab_culture_bg.jpg) no-repeat center;
	background-size: cover;
}

.ab_culture .ab_tit h3 {
	position: relative;
	color: white;
}

.ab_culture .ab_tit p {
	color: white;
}

.ab_culture::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(37, 89, 159, 0.28);
	z-index: 0;
}

.ab_culture ul {
	position: relative;
	z-index: 2;
	margin-top: 0.4rem;
}

.ab_culture ul li {
	position: relative;
	width: 25%;
	min-height: 390px;
	padding: 30px;
	color: #333;
	text-align: center;
	background-color: white;
}


.ab_culture ul li:nth-child(2n) {
	background-color: #004ea0;
	color: white;
}

.ab_culture ul li .box {
	width: 100%;
}

.ab_culture ul li .box .icon {}

.ab_culture ul li .box .icon img {
	width: 33px;
	margin: 0 auto;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}

.ab_culture ul li:hover .box .icon img {
	margin-top: -20px;
}

.ab_culture ul li .box h4 {
	padding: 14px 0;
	font-size: 24px;
	line-height: 30px;
}

.ab_culture ul li .box p {
	font-size: 16px;
	line-height: 1.5;
	color: #5f5f5f;
	letter-spacing: 1px;
	padding: 0 4%;
}

.ab_culture ul li .box p i {
	display: block;
}

.ab_culture ul li:nth-child(2n) .box p {
	color: white;
}

.ab_culture ul li .box p:after {
	display: block;
	content: "";
	width: 25px;
	height: 1px;
	background: #000;
	margin: 15px auto 20px;
}

.ab_culture ul li .box p:nth-of-type(1):after{
    display: none;
}

.ab_culture ul li:nth-child(2n) .box p:after {
	background-color: white;
}

.ab_culture ul li .box span {
	font-size: 2.6vw;
	display: inline-block;
	line-height: 58px;
	font-weight: 600;
	text-transform: capitalize;
	color: #004ea0;
}

.ab_culture ul li:nth-child(2n) .box span {
	color: white;
}

/* 企业文化 e */


/* 荣誉资质 s */
.ab_honor {}

.ab_honor .honor_view {}

.ab_honor .honor_view .fl {
	width: 66.66%;
	float: none;
}

.ab_honor .fl .honor_tit {
	margin-bottom: 0.3rem;
}

.ab_honor .fl .honor_tit .ab_tit {}

.ab_honor .fl .honor_tit .box {}

.ab_honor .fl .swiper-button-next,
.ab_honor .fl .swiper-button-prev {
	position: relative;
	display: inline-block;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	width: 50px;
	height: 50px;
	background-size: 25px !important;
	border: none;
	border-radius: 0;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	margin-left: 5px;
}

.ab_honor .fl .swiper-button-next::after,
.ab_honor .fl .swiper-button-prev::after {
	display: none;
}

.ab_honor .fl .honor_tit .box .swiper-button-prev {
	background: #004ea0 url(../images/honor_left.png) no-repeat center;
}

.ab_honor .fl .honor_tit .box .swiper-button-prev:hover,
.ab_honor .fl .honor_tit .box .swiper-button-next:hover {
	-moz-box-shadow: 2px 2px 6px #DDDDDD;
	-webkit-box-shadow: 2px 2px 6px #dddddd;
	box-shadow: 2px 2px 6px #dddddd;
}

.ab_honor .fl .honor_tit .box .swiper-button-next {
	background: #004ea0 url(../images/honor_right.png) no-repeat center;
}

.ab_honor .fl ul {}

.ab_honor .fl ul li {}

.ab_honor .fl ul li a {}

.ab_honor .fl ul li a .pic {}

.ab_honor .fl ul li a .pic img {}

.ab_honor .fl ul li a p {}

.ab_honor .fr {
	position: relative;
	float: none;
	width: 30.33%;
	margin-left: 3%;
}

.ab_honor .fr img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-transition: all .8s;
	-o-transition: all .8s;
	-moz-transition: all .8s;
	transition: all .8s;
	-o-object-fit: cover;
	object-fit: cover;
}

/* 荣誉资质 e */

/* 荣誉资质改 s */
.ab_honor2.innov_con2 {}

/* 荣誉资质改 e */

/* 专利证书 s */
.innov_con2 {
	padding: 0.5rem 0 0.8rem;
	background-color: #f5f5f5;
}

.innov_con2 .honor_ul {
	margin-top: 0.4rem;
}

.innov_con2 .honor_ul li {
	position: relative;
	top: 0;
	width: 11.5%;
	padding: 2.5% 1.5%;
	margin-right: calc(8% / 7);
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #fff;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	cursor: pointer;
}

.innov_con2 .honor_ul li:nth-child(8n) {
	margin-right: 0;
}

.innov_con2 .honor_ul li:hover,
.innov_con2 .honor_ul li.active {
	border-color: #004ea0;
	background-color: #004ea0;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
}

.innov_con2 .honor_ul li img {
	display: block;
	width: auto;
	max-width: 100%;
	height: 80px;
	margin: 0 auto;

}

.innov_con2 .honor_ul li p {
	margin: 12px 0 0;
	font-size: 18px;
	text-align: center;
	color: #333;
}

.innov_con2 .honor_ul li:hover p,
.innov_con2 .honor_ul li.active p {
	color: #FFFFFF;
	/* color: #004ea0; */
}

.innov_con2 .honor_view {
	margin-top: 0.4rem;
}


.innov_con2 .honor_view ul {}

.innov_con2 .honor_view ul li {}

.innov_con2 .honor_view ul li .pic {
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 10px;
	background: #fff;
	overflow: hidden;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	text-align: center;
}

.innov_con2 .honor_view ul li:hover .pic {
	border-color: #004ea0;
}

.innov_con2 .honor_view ul li .pic img {
	display: inline-block;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
}

.innov_con2 .honor_view ul li:hover .pic img {
	transform: scale(0.98);
	-webkit-transform: scale(0.98);
	-moz-transform: scale(0.98);
	-o-transform: scale(0.98);
	-ms-transform: scale(0.98);
}

.innov_con2 .honor_view ul li p {
	text-align: center;
	font-size: 18px;
	color: #333;
	margin-top: 15px;
	font-weight: 500;
	padding: 0 2%;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.innov_con2 .honor_view ul li:hover p {
	color: #004ea0;
}

.innov_con2 .swiper-button-next,
.innov_con2 .swiper-button-prev {
	color: #000;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.innov_con2 .swiper-button-prev {
	left: -40px;
}

.innov_con2 .swiper-button-next {
	right: -40px;
}

.innov_con2 .swiper-button-next:hover,
.innov_con2 .swiper-button-prev:hover {
	color: #004ea0;
}

/* 专利证书 e */


/* ====================产品样式========================= */
/* 产品列表 s */

.cat_page_title {
	font-size: 0.24rem;
	font-weight: 700;
	margin: 0 0 0.25rem;
	border-bottom: 1px solid #e1e1e1;
	padding: 0 0 0.16rem;
	line-height: 1.3;
	color: #212121;
	text-transform: capitalize;
}

#n_main {
	background-color: #f5f5f5;
}

.sortnav_view {
	width: 28%;
	background-color: white;
	padding: 0.4rem 0.3rem;
	margin-right: 2%;
}

/* .sortnav_view_con{
	margin-bottom: 0.35rem;
} */
.sortnav_view .tit {
	position: relative;
	font-size: 0.24rem;
	font-weight: bold;
	line-height: 1.3;
	color: #000;
	padding-bottom: 0.15rem;
	border-bottom: 1px solid #F2F2F2;

}

.sortnav_view .tit::after {
	position: absolute;
	content: "";
	display: block;
	width: 0.72rem;
	height: 0.02rem;
	left: 0;
	bottom: 0;
	background-color: #004ea0;
}

.sortnav_view>ul {
	/* border-top: 1px solid #F2F2F2; */
}

/* .sortnav_view>ul>li.active{
	border-bottom: 1px solid #F2F2F2;
} */
.sortnav_view>ul>li>a {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 1.5;
	color: #4C4C4C;
	padding: 0.16rem 42px 0.12rem 0.12rem;
	border-bottom: 1px solid #F2F2F2;
}

.sortnav_view>ul>li>a>i {
	position: absolute;
	top: 50%;
	right: 10px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
	border: 1px solid #F2F2F2;
	color: #000;
	font-weight: normal;
}

.sortnav_view>ul>li>a>i::before {
	font-family: "iconfont" !important;
	content: "\e6a1";
}

.sortnav_view>ul>li.active>a>i::before {
	font-family: "iconfont" !important;
	content: "\e68e";
}

.sortnav_view>ul>li>ul {
	padding: 0.18rem 0.12rem 0.18rem 0.18rem;
	display: none;
}

.sortnav_view>ul>li>ul>li {}

.sortnav_view>ul>li>ul>li>a {
	display: block;
	font-size: 16px;
	line-height: 1.3;
	color: #3c3c3c;
	padding: 0.1rem 0;
}

.sortnav_view>ul>li>ul>li:first-child>a {
	padding-top: 0;
}

.sortnav_view>ul>li>ul>li:last-child>a {
	padding-bottom: 0;
}

.sortnav_view ul li a:hover,
.sortnav_view ul li.active>a {
	color: #004ea0 !important;
}

.xg_view {
	margin-top: 0.35rem;
}

.xg_view .tit {
	position: relative;
	padding-bottom: .1rem;
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 0.15rem;
}

.xg_view .tit::after {
	position: absolute;
	content: "";
	display: block;
	width: 0.72rem;
	height: 0.02rem;
	left: 0;
	bottom: 0;
	background-color: #004ea0;
}

.xg_view ul {}

.xg_view ul li:not(:last-child) {
	margin-bottom: 0.12rem;
}

.xg_view ul li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.xg_view ul li .pic {
	width: 35%;
	border: 1px solid #f0f0f0;
}

.xg_view ul li .pic img {}

.xg_view ul li p {
	margin-left: 4%;
	font-size: 16px;
	line-height: 1.5;
	height: 3em;
	color: #333;
	margin-top: 20px;
	overflow: hidden;
	width: 56%;
}

.n_productlist {
	width: 70%;
}

.n_productlist ul {}

.n_productlist ul li {
	float: left;
	width: 32%;
	margin-right: 2%;
	margin-bottom: 0.35rem;
	background-color: white;
	-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;
}

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

.n_productlist ul li a {
	display: block;
}

.n_productlist ul li .pic {}

.n_productlist ul li .info {
	color: #3b3b3b;
	padding: 0.2rem;
}

.n_productlist ul li:hover .info {
	color: #fff;
	background-color: #004ea0;
}

.n_productlist ul li .info h4 {
	font-size: 18px;
	line-height: 1.5;
	height: 3em;
}

.n_productlist ul li .info p {
	font-size: 14px;
	line-height: 1.5;
	height: 3em;
}

.n_productlist ul li .info .more {
	border-top: 1px solid #f2f2f2;
	padding-top: 20px;
	margin-top: 15px;
	font-size: 14px;
	color: #8c8c8c;
	-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;
}

.n_productlist ul li .info .more i {
	font-size: 14px;
	margin-left: 0.04rem;
}

.n_productlist ul li:hover .info .more {
	color: white;
}

/* 产品列表 e */


/* 产品详情 s */
.n_pro_det {
	width: 70%;
}

.n_pro_det .top {
	overflow: hidden;
}

.n_pro_det .top .fl {
	width: 40%;
}

.n_pro_det .top .fl .product_det_pic {}

.n_pro_det .top .fl .product_det_ico {
	margin-top: 0.2rem;
}

.n_pro_det .top .fl .product_det_ico .pic {
	/* border: 1px solid #d7d9db; */
	border: 1px solid #eceef0;
	cursor: pointer;
}

.n_pro_det .top .fl .product_det_ico .swiper-slide-thumb-active .pic {
	border-color: #004ea0;
}

.n_pro_det .top .fr {
	width: 55%;
}

.n_pro_det .top .fr .sub_title {
	display: block;
	font-size: 0.2rem;
	line-height: 1.5;
	color: #333;
	margin-bottom: 0.1rem;
}

.n_pro_det .top .fr h3 {
	font-size: 0.3rem;
	line-height: 1.3;
	color: #004ea0;
	display: block;
	border-bottom: 1px solid #E5E5E5;
	padding-bottom: 0.15rem;
	margin-bottom: 0.2rem;
}

.n_pro_det .top .fr .color{
    color:#000;
}

.n_pro_det .top .fr .des {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
}

.n_pro_det .top .fr .inquiry {
	margin-top: 0.4rem;
}

.n_pro_det .top .fr .inquiry a {
	padding: 0.14rem 0.32rem;
	border-radius: 6px;
	display: inline-flex;
	font-size: 16px;
	color: #fff;
	background-color: #004ea0;
	align-items: center;
}

.n_pro_det .top .fr .inquiry a i {
	margin-right: 0.08rem;
	font-size: 18px;
}

.n_pro_xq {}

.n_pro_xq .view_nav {
	width: 100%;
	background-color: #fff;
}

.n_pro_xq .view_nav ul {}

.n_pro_xq .view_nav ul li {}

.n_pro_xq .view_nav ul li a {
	position: relative;
	display: inline-block;
	min-width: 2.4rem;
	font-size: 18px;
	line-height: 0.55rem;
	padding: 0 0.2rem;
	color: #434343;
	text-align: center;
}

.n_pro_xq .view_nav ul li.active a {
	background-color: #004ea0;
	color: white;
}

.n_pro_xq .view_nav ul li.active a::after {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	top: 100%;
	border: 0.16rem solid #004ea0;
	border-left-color: transparent;
	border-bottom-color: transparent;
	border-right-color: transparent;
}

.n_pro_xq .view_con {}

.n_pro_xq .view_con .view_con_item {
	display: none;
	background-color: white;
	padding: 0.3rem;
}

.n_pro_xq .view_con .view_con_item.show {
	display: block;
}

.n_pro_xq .view_con {
	font-size: 16px;
	line-height: 1.75;
	padding-top: 0.35rem;
	padding-bottom: 0.2rem;
	border-bottom: 1px solid #e8e8e8;
}

.n_pro_xq .view_con img {
	max-width: 100% !important;
	height: auto !important;
}

.n_pro_xq .view_con h3 {
	font-size: 24px;
	line-height: 1.3;
	font-weight: 700;
	color: #212121;
	margin-bottom: 0.16rem;
}

.n_pro_xq .view_con h3:not(:first-child) {
	border-top: 1px dashed #ccc;
	margin-top: 0.25rem;
	padding-top: 0.2rem;
}

.n_pro_xq .view_con table {
	width: auto !important;
	max-width: 100%;
}

.n_pro_xq .view_con .scroll {
	overflow-x: auto;
	padding-bottom: 0.1rem;
}

.n_pro_xq .view_con .scroll::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 10px;
	/*高宽分别对应横竖滚动条的尺寸*/
	height: 10px;
}

.n_pro_xq .view_con .scroll::-webkit-scrollbar-thumb {
	/*滚动条里面小方块*/
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: #004ea0;
}

.n_pro_xq .view_con .scroll::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	/* -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
	border-radius: 10px;
	background: #fff;
}

.ar_article td,
.ar_article th {
	padding: 12px 10px !important;
	border: 1px solid #dadbdd !important;
	vertical-align: middle !important;
	font-size: 15px;
	color: #303030;
	white-space: nowrap;
	text-align: center !important;
}

.n_pro_form {
	box-shadow: 0 0 0.06rem rgb(0, 0, 0, .1);
}

.n_pro_form .tit {
	display: block;
	padding: 0.2rem;
	font-size: 18px;
	color: white;
	background-color: #004ea0;
}

.n_pro_form form {
	padding: 0.2rem 0.2rem 0.4rem 0.2rem;
}

.n_pro_form form .mauticform-row {
	margin-bottom: 0.16rem;
}

.n_pro_form form input {
	width: 100%;
	line-height: 40px;
	height: 42px;
	border: 1px solid #f5f5f5;
	border-left: 3px solid #004ea0;
	font-size: 16px;
	color: #333;
	padding-left: 0.15rem;
}

.n_pro_form form textarea {
	width: 100%;
	height: 150px;
	padding: 0.15rem;
	font-size: 16px;
	line-height: 1.5;
	color: #333;
	border: 1px solid #f5f5f5;
	border-left: 3px solid #004ea0;
}

.n_pro_form form button {
	display: block;
	width: 100%;
	font-size: 16px;
	color: white;
	line-height: 40px;
	background-color: #004ea0;
	border: none;
	cursor: pointer;
}

.n_pro_form .mauticform-errormsg {}

.n_pro_recommend {
	width: 100%;
}

.n_pro_recommend>.tit {
	margin-bottom: 30px;
	border-bottom: 1px solid #ddd;
	position: relative;
}

.n_pro_recommend>.tit h3 {
	display: inline-block;
	padding: 0.1rem 0.5rem;
	font-size: 20px;
	line-height: 1.5;
	position: relative;
	background-color: #004ea0;
	color: #fff;
	border: 1px solid #004ea0;
}

.n_pro_recommend .con {
	padding-bottom: 0.45rem;
}

.n_pro_recommend ul {}

.n_pro_recommend ul li {}

.n_pro_recommend ul li .pic {
	border: 1px solid #eee;
}

.n_pro_recommend ul li:hover .pic {
	border-color: #004ea0;
}

.n_pro_recommend ul li .txt {
	padding-top: 0.15rem;
	text-align: center;
}

.n_pro_recommend ul li .txt .tit {
	font-size: 14px;
	line-height: 1.3;
	height: 2.6em;
	color: #111;
}

.n_pro_recommend ul li:hover .txt .tit {
	color: #004ea0;
}

.n_pro_recommend .swiper-pagination-clickable .swiper-pagination-bullet {
	background-color: #004ea0;
}

/* 产品详情 e */

/* ====================应用领域========================= */
/* ny-solution */
.bcf5{
    background-color: #f5f5f5;
}

.ny-soli {
	/*background-color: #f5f5f5;*/
}

.soli_tit {
	margin-bottom: 55px;
}

.soli_tit .lf {}

.soli_tit .lf h4 {
	font-size: 36PX;
	position: relative;
	padding-bottom: 15px;
}

.soli_tit .lf h4::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #004ea0;
}

.soli_tit .lr {}

.soli_tit .lr h4 {
	font-size: 24px;
}

.soli_tit .lr p {
	font-size: 16px;
	width: 80%;
	margin-top: 15px;
	line-height: 1.4;
}

.ny-soli .soli {}

.ny-soli .soli ul {}

.ny-soli .soli ul li {
	width: 32%;
	margin-right: 2%;
	margin-bottom: 60px;
}

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

.soli ul li a {}

.soli ul li a {
	box-shadow: 2px 5px 10px 0px rgb(0 0 0 / 10%);
	display: block;
	border-radius: 15px;
	overflow: hidden;
}

.soli ul li a .info {
	padding: 30px 35px;
	background: #fff;
}

.soli ul li a .info .tit {
	font-size: 20PX;
	margin-bottom: 15PX;
}

.soli ul li a .info .con {
	font-size: 16PX;

	line-height: 1.4;
}

.ny_solu {
	background: #f5f5f5;
}

.ny_solu .solu-con {
	background: #fff;
	padding-left: 50px;
	padding-right: 50px;
	box-shadow: 0 4px 7px rgba(0, 0, 0, .08);
}

.ny_solu .solu-con img {
	margin: 10px 0;
}

.ny_solu .Related {
	margin-top: 30px;
	background: #fff;
	padding-left: 50px;
	padding-right: 50px;
	box-shadow: 0 4px 7px rgba(0, 0, 0, .08);
}

.ny_solu .Related .tit {

	font-size: 24PX;
	margin-bottom: 25px;
	padding-left: 15px;
	position: relative;
}

.ny_solu .Related .tit::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background: #004ea0;
}

.ny_solu .Related .Rela_list {}

.Related .Rela_list li {
	width: 32%;
	border: 1px solid #e5e5e5;
	transition: all .3s;
}

.Related .Rela_list li:hover {
	border-color: #004ea0;
}

.Related .Rela_list li a {
	display: block;
	padding: 10% 10% 5% 10%;
}

.Related .Rela_list li a .pic {}

.Related .Rela_list li a .pic img {}

.Related .Rela_list li a .info {
	text-align: center;
}

.Related .Rela_list li a .info .tit {
	padding-top: 20px;
	position: relative;
	text-align: center;
	font-size: 18px;

	color: #5f5f5f;
	height: 2em;
}

.Related .Rela_list li a .info .tit::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	margin: 0 auto;
	background: #004ea0;
}

.Related .Rela_list li a .info .move {
	border: 1px solid #535353;
	color: #5f5f5f;
	display: inline-block;
	margin: 0 auto;
	padding: 8px 12px;
	border-radius: 4px;
	margin-top: 2.5em;
	-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;
	font-size: 16PX;
}

.Related .Rela_list li a:hover .move {
	border: 1px solid #004ea0;
	background: #004ea0;
	color: #fff;

}

.ny_solu .lf {
	width: 68%;
}

.ny_solu .solu-con {}

.ny_solu .other {
	width: 28%;
}

.ny_solu .other .tit {
	font-size: 33px;
	margin-bottom: 25px;
	padding-left: 15px;
	position: relative;
}

.ny_solu .other .tit::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background: #004ea0;
}

.ny_solu .other ul {}

.ny_solu .other ul li {
	margin-bottom: 30px;
	width: 100%;
}

/* 应用领域内页 */
.ny_new {
	background: #f5f5f5;
}

.ny_new .new-con {
	background: #fff;
	padding-left: 50px;
	padding-right: 50px;
	box-shadow: 0 4px 7px rgba(0, 0, 0, .2);
}

.new-con .title {
	text-align: center;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 30px;
}

.new-con .title h1 {
	font-size: 28px;
	text-transform: uppercase;
	margin-bottom: 25px;
}

.new-con .title p {
	font-size: 18px;
}

.new-con .con {
	margin-top: 40px;
	line-height: 1.5;
	font-size: 16px;
}

.new-con .con p {
	margin-bottom: 2em;
	font-size: 16px;
}

.new-con .follow {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 15px;
}

.new-con .follow h4 {
	font-size: 20px;
}

.new-con .follow {}

.new-con .follow .icon-item {}

.new-con .follow .icon-item ul {
	margin-top: 15px;
}

.new-con .follow .icon-item ul li {
	margin-right: 12PX;
}

.new-con .follow .icon-item ul li a {
	width: 40px;
	background: #fff;
	border-radius: 4px;
	display: block;
	height: 40px;
	text-align: center;
	border-radius: 50%;
}

.con_page {
	margin-top: 15PX;
}

.con_page .le {
	line-height: 2;
}

.con_page .le .prev,
.con_page .le .next {
	font-size: 16px;
}

.con_page .le .prev a,
.con_page .le .next a {
	position: relative;
	padding-bottom: 2px;
	transition: all .3s;
}

.con_page .le .prev a::before,
.con_page .le .next a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 2px;
	background: #004ea0;
	transition: all .3s;
}

.con_page .le .prev a:hover::before,
.con_page .le .next a:hover::before {
	width: 100%;
}

.con_page .le .prev a:hover,
.con_page .le .next a:hover {
	color: #004ea0;
}

.con_page .lr {
	line-height: 2;
	padding-right: 20px;
	font-size: 18px;
	transition: all .3s;
}

.con_page .lr i {
	font-size: 22px;
	padding: 2px;
	border: 1px solid;
	border-radius: 50%;
	margin-right: 5px;
	transition: all .3s;
}

.con_page .lr:hover {
	color: #004ea0;
}

.con_page .lr:hover i {
	color: #fff;
	background: #004ea0;
	border-color: #004ea0;
}

/* 应用领域内页 */

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

/*新闻咨询详情*/
.xwlb_section {
	width: 100%;
	padding-top: 60px;
	padding-bottom: 60px;
	background: #f5f5f5;
}

.xwlb_section .content {
	width: 100%;
}

.xwlb_section .content ul {
	width: 100%;
	margin-bottom: 50px;
}

.xwlb_section .content ul li {
	width: 100%;
	margin-bottom: 20px;
}

.xwlb_section .content ul li:last-child {
	margin-bottom: 0;
}

.xwlb_section .content ul li a {
	width: 100%;
	padding: 30px 0 30px 30px;
	font-size: 0;
	background: #fff;
	display: block;
	position: relative;
}

.xwlb_section .content ul li a::after {
	content: "";
	display: block;
	width: 0;
	height: 4px;
	background: #004ea0;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: All 0.3s ease-in-out;
	-webkit-transition: All 0.3s ease-in-out;
	-moz-transition: All 0.3s ease-in-out;
	-o-transition: All 0.3s ease-in-out;
}

.xwlb_section .content ul li a:hover::after {
	width: 100%;
}

.xwlb_section .content ul li a .picbox {
	width: 251px;
	display: inline-block;
	vertical-align: middle;
}

.xwlb_section .content ul li a .picbox .pic {
	width: 100%;
	padding-bottom: 66.93%;
	position: relative;
	overflow: hidden;
	min-height: 50px;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
}

.xwlb_section .content ul li a .picbox .pic img {
	width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	min-height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;
	transition: -webkit-transform 2s;
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
}

.xwlb_section .content ul li a:hover .picbox .pic img {
	-webkit-transform: translate(-50%, -50%) scale(1.1);
	-moz-transform: translate(-50%, -50%) scale(1.1);
	transform: translate(-50%, -50%) scale(1.1);
}

.xwlb_section .content ul li a .wordsbox {
	width: calc(100% - 253px - 190px);
	display: inline-block;
	vertical-align: middle;
	padding-left: 30px;
	padding-right: 32px;
}

.xwlb_section .content ul li a .wordsbox .tit {
	font-size: 22px;
	color: #333333;
	line-height: 26px;
	margin-bottom: 16px;
	font-weight: bolder;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.xwlb_section .content ul li a:hover .wordsbox .tit {
	color: #004ea0;
}

.xwlb_section .content ul li a .wordsbox .info {
	font-size: 16px;
	color: #666666;
	line-height: 26px;
	margin-bottom: 20px;
	font-weight: lighter;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.xwlb_section .content ul li a .wordsbox .more {
	width: 128px;
	border: 1px solid #004ea0;
	border-radius: px;
	font-size: 0;
	text-align: center;
	border-radius: 20px;
}

.xwlb_section .content ul li a:hover .wordsbox .more {
	background: #004ea0;
}

.xwlb_section .content ul li a .wordsbox .more .words {
	font-size: 14px;
	color: #004ea0;
	line-height: 38px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.xwlb_section .content ul li a:hover .wordsbox .more .words {
	color: #fff;
}

.xwlb_section .content ul li a .wordsbox .more .ico {
	width: 19px;
	display: inline-block;
	vertical-align: middle;
}

.xwlb_section .content ul li a .wordsbox .more .ico img {
	width: 100%;
	display: block;
}

.xwlb_section .content ul li a .wordsbox .more .ico img.ico2 {
	display: none;
}

.xwlb_section .content ul li a:hover .wordsbox .more .ico img.ico1 {
	display: none;
}

.xwlb_section .content ul li a:hover .wordsbox .more .ico img.ico2 {
	display: block;
}

.xwlb_section .content ul li a .datebox {
	width: 190px;
	display: inline-block;
	vertical-align: middle;
	padding-left: 38px;
	padding-top: 30px;
	padding-bottom: 60px;
	border-left: 2px solid #F1F1F1;
}

.xwlb_section .content ul li a .datebox .date1 {
	font-size: 22px;
	color: #333333;
	line-height: 26px;
	margin-bottom: 12px;
	font-weight: bolder;
}

.xwlb_section .content ul li a .datebox .date2 {
	font-size: 42px;
	color: #333333;
	line-height: 46px;
	font-weight: bolder;
}

@media screen and (max-width: 1680px) {
	.xwlb_section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.xwlb_section .content ul {
		margin-bottom: 40px;
	}

	.xwlb_section .content ul li a {
		padding: 20px 0 20px 20px;
	}

	.xwlb_section .content ul li a .picbox {
		width: 220px;
	}

	.xwlb_section .content ul li a .wordsbox {
		width: calc(100% - 222px - 160px);
		padding-left: 26px;
		padding-right: 26px;
	}

	.xwlb_section .content ul li a .wordsbox .tit {
		font-size: 18px;
		line-height: 22px;
		margin-bottom: 14px;
	}

	.xwlb_section .content ul li a .wordsbox .info {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 16px;
	}

	.xwlb_section .content ul li a .wordsbox .more {
		width: 120px;
	}

	.xwlb_section .content ul li a .datebox {
		width: 160px;
		padding-left: 20px;
		padding-top: 20px;
		padding-bottom: 40px;
	}

	.xwlb_section .content ul li a .datebox .date1 {
		font-size: 18px;
		line-height: 22px;
		margin-bottom: 8px;
	}

	.xwlb_section .content ul li a .datebox .date2 {
		font-size: 30px;
		line-height: 34px;
	}
}

@media screen and (max-width: 1024px) {
	.xwlb_section {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.xwlb_section .content ul {
		margin-bottom: 20px;
	}

	.xwlb_section .content ul li {
		margin-bottom: 12px;
	}

	.xwlb_section .content ul li a {
		padding: 12px;
		position: relative;
	}

	.xwlb_section .content ul li a::after {
		height: 2px;
	}

	.xwlb_section .content ul li a .picbox {
		width: 100%;
	}

	.xwlb_section .content ul li a .wordsbox {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		margin-top: 16px;
		overflow: hidden;
	}

	.xwlb_section .content ul li a .wordsbox .tit {
		font-size: 18px;
		line-height: 22px;
		margin-bottom: 10pxwidth: 100%;
		float: left;
	}

	.xwlb_section .content ul li a .wordsbox .info {
		font-size: 14px;
		line-height: 22px;
		margin-bottom: 12px;
		width: 100%;
		float: left;
	}

	.xwlb_section .content ul li a .wordsbox .more {
		width: 100px;
		border-radius: 14px;
		float: right;
	}

	.xwlb_section .content ul li a .wordsbox .more .words {
		line-height: 32px;
		margin-right: 6px;
	}

	.xwlb_section .content ul li a .wordsbox .more .ico {
		width: 16px
	}

	.xwlb_section .content ul li a .datebox {
		padding-left: 0;
		padding-top: 0;
		padding-bottom: 0;
		margin-top: 0;
		border: 0;
		overflow: hidden;
		position: absolute;
		left: 12px;
		bottom: 12px;
	}

	.xwlb_section .content ul li a .datebox .date1 {
		font-size: 18px;
		line-height: 34px;
		margin-bottom: 0;
		float: left;
	}

	.xwlb_section .content ul li a .datebox .date2 {
		font-size: 18px;
		line-height: 34px;
		float: left;
		margin-left: 10px;
	}
}

/*新闻详情*/
.xwxq_section1 {
	width: 100%;
	padding-top: 60px;
	padding-bottom: 60px;
	background: #f5f5f5;
}

.xwxq_section1 .content {
	width: 100%;
	background: #fff;
	padding: 64px 84px 48px 84px;
}

.xwxq_section1 .content::after {
	content: "";
	display: block;
	clear: both;
}

.xwxq_section1 .content .left {
	width: 71.22%;
	float: left;
	padding-right: 95px;
}

.xwxq_section1 .content .left h3 {
	font-size: 26px;
	color: #333333;
	line-height: 30px;
	text-align: center;
	margin-bottom: 36px;
	font-weight: bolder;
}

.xwxq_section1 .content .left .listbox {
	width: 100%;
	margin-bottom: 40px;
	font-size: 0;
	text-align: center;
}

.xwxq_section1 .content .left .listbox .list {
	font-size: 0;
	margin-right: 80px;
	display: inline-block;
	vertical-align: middle;
}

.xwxq_section1 .content .left .listbox .list:last-child {
	margin-right: 0;
}

.xwxq_section1 .content .left .listbox .list img {
	width: 26px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
}

.xwxq_section1 .content .left .listbox .list .words {
	font-size: 14px;
	color: #666666;
	line-height: 24px;
	display: inline-block;
	vertical-align: middle;
}

.xwxq_section1 .content .left .info {
	width: 100%;
	padding-top: 42px;
	border-top: 1px solid #F5F5F5;
	margin-bottom: 42px;
	font-size: 16px;
	color: #666666;
	line-height: 36px;
}

/*.xwxq_section1 .content .left .info img{width: 100%;display: block;}*/
.xwxq_section1 .content .left .dz {
	width: 100%;
	margin-bottom: 30px;
}

.xwxq_section1 .content .left .dz a {
	display: block;
	width: 136px;
	background: #F0F0F0;
	border-radius: 25px;
	font-size: 0;
	text-align: center;
	margin: 0 auto;
}

.xwxq_section1 .content .left .dz a:hover {
	opacity: 0.8;
}

.xwxq_section1 .content .left .dz a img {
	width: 26px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.xwxq_section1 .content .left .dz a img.img2 {
	display: none;
}

.xwxq_section1 .content .left .dz.on a img.img1 {
	display: none;
}

.xwxq_section1 .content .left .dz.on a img.img2 {
	display: inline-block;
}

.xwxq_section1 .content .left .dz a .words {
	font-size: 14px;
	color: #666666;
	line-height: 50px;
	display: inline-block;
	vertical-align: middle;
}

.xwxq_section1 .content .left .dz.on a .words {
	color: #004ea0;
}

.xwxq_section1 .content .left .icobox {
	width: 100%;
	font-size: 0;
	text-align: center;
	padding-bottom: 46px;
	border-bottom: 1px solid #f5f5f5;
	margin-bottom: 45px;
}

.xwxq_section1 .content .left .icobox .words {
	font-size: 14px;
	color: #666666;
	line-height: 20px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

/*/*20221112satrt*/
.xwxq_section1 .content .left .icobox a {
	margin: 0 5px !important;
	width: 30px;
	height: 30px;
	padding: 0 !important;
	display: inline-block;
	vertical-align: middle;
	float: none;
}

.xwxq_section1 .content .left .icobox .bds_weixin {
	background: url(img/h32.png) 0 0 no-repeat !important;
}

.xwxq_section1 .content .left .icobox .bds_sqq {
	background: url(img/h32.png) -40px 0 no-repeat !important;
}

.xwxq_section1 .content .left .icobox .bds_qzone {
	background: url(img/h32.png) -80px 0 no-repeat !important;
}

/*20221112end*/
.xwxq_section1 .content .left .pagebox {
	width: 100%;
	font-size: 0;
}

.xwxq_section1 .content .left .pagebox .page_l {
	width: calc(100% - 134px);
	padding-right: 50px;
	display: inline-block;
	vertical-align: middle;
}

.xwxq_section1 .content .left .pagebox .page_l a {
	font-size: 14px;
	color: #626262;
	line-height: 18px;
	margin-bottom: 12px;
	display: block;
}

.xwxq_section1 .content .left .pagebox .page_l a:last-child {
	margin-bottom: 0;
}

.xwxq_section1 .content .left .pagebox .page_l a:hover {
	color: #004ea0;
}

.xwxq_section1 .content .left .pagebox .fh_r {
	width: 132px;
	display: inline-block;
	vertical-align: middle;
}

.xwxq_section1 .content .left .pagebox .fh_r a {
	display: block;
	font-size: 0;
	text-align: center;
	border-radius: 23px;
	border: 1px solid #004ea0;
}

.xwxq_section1 .content .left .pagebox .fh_r a:hover {
	opacity: 0.8;
}

.xwxq_section1 .content .left .pagebox .fh_r a .words {
	font-size: 14px;
	color: #004ea0;
	line-height: 44px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 14px;
}

.xwxq_section1 .content .left .pagebox .fh_r a img {
	width: 15px;
	display: inline-block;
	vertical-align: middle;
}

.xwxq_section1 .content .right {
	width: 28.78%;
	float: right;
	border: 1px solid #DADADA;
}

.xwxq_section1 .content .right .qh_t {
	width: 100%;
	overflow: hidden;
}

.xwxq_section1 .content .right .qh_t .list {
	width: 100%;
	float: left;
	font-size: 20px;
	color: #666666;
	line-height: 72px;
	text-align: center;
	background: #f0f0f0;
	cursor: pointer;
}

.xwxq_section1 .content .right .qh_t .list.on {
	background: #004ea0;
	color: #fff;
}

.xwxq_section1 .content .right .qh_b {
	width: 100%;
	padding: 0 23px;
}

.xwxq_section1 .content .right .qh_b ul {
	width: 100%;
}

.xwxq_section1 .content .right .qh_b ul li {
	width: 100%;
	border-bottom: 1px solid #E4E4E4;
}

.xwxq_section1 .content .right .qh_b ul li:last-child {
	border-bottom: 0;
}

.xwxq_section1 .content .right .qh_b ul li a {
	display: block;
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
	font-size: 0;
}

.xwxq_section1 .content .right .qh_b ul li a .picbox {
	width: 124px;
	display: inline-block;
	vertical-align: middle;
}

.xwxq_section1 .content .right .qh_b ul li a .picbox .pic {
	width: 100%;
	padding-bottom: 66.93%;
	position: relative;
	overflow: hidden;
	min-height: 50px;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
}

.xwxq_section1 .content .right .qh_b ul li a .picbox .pic img {
	width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	min-height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;
	transition: -webkit-transform 2s;
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
}

.xwxq_section1 .content .right .qh_b ul li a:hover .picbox .pic img {
	-webkit-transform: translate(-50%, -50%) scale(1.1);
	-moz-transform: translate(-50%, -50%) scale(1.1);
	transform: translate(-50%, -50%) scale(1.1);
}

.xwxq_section1 .content .right .qh_b ul li a .wordsbox {
	width: calc(100% - 126px);
	display: inline-block;
	vertical-align: middle;
	padding-left: 22px;
}

/*20221108start*/
.xwxq_section1 .content .right .qh_b ul li a .wordsbox .info {
	font-size: 16px;
	color: #333333;
	line-height: 24px;
	margin-bottom: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.xwxq_section1 .content .right .qh_b ul li a:hover .wordsbox .info {
	color: #004ea0;
}

.xwxq_section1 .content .right .qh_b ul li a .wordsbox .date {
	font-size: 14px;
	color: #aeaeae;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

/*20221108end*/
@media screen and (max-width: 1680px) {
	.xwxq_section1 {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.xwxq_section1 .content {
		padding: 50px 60px;
	}

	.xwxq_section1 .content .left {
		padding-right: 60px;
	}

	.xwxq_section1 .content .left h3 {
		font-size: 22px;
		line-height: 26px;
		margin-bottom: 26px;
	}

	.xwxq_section1 .content .left .listbox {
		margin-bottom: 30px;
	}

	.xwxq_section1 .content .left .listbox .list {
		margin-right: 40px
	}

	.xwxq_section1 .content .left .listbox .list img {
		width: 22px;
		margin-right: 6px;
	}

	.xwxq_section1 .content .left .info {
		padding-top: 30px;
		margin-bottom: 30px;
		font-size: 14px;
		line-height: 30px;
	}

	.xwxq_section1 .content .left .dz {
		margin-bottom: 24px;
	}

	.xwxq_section1 .content .left .dz a {
		width: 120px;
		border-radius: 20px;
	}

	.xwxq_section1 .content .left .dz a img {
		width: 22px;
		margin-right: 8px;
	}

	.xwxq_section1 .content .left .dz a .words {
		line-height: 38px;
	}

	.xwxq_section1 .content .left .icobox {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.xwxq_section1 .content .left .icobox .words {
		margin-right: 6px;
	}

	.xwxq_section1 .content .left .icobox .ico {
		width: 24px;
		margin-right: 6px;
	}

	.xwxq_section1 .content .left .pagebox .page_l {
		width: calc(100% - 122px);
	}

	.xwxq_section1 .content .left .pagebox .fh_r {
		width: 120px;
	}

	.xwxq_section1 .content .left .pagebox .fh_r a {
		border-radius: 20px;
	}

	.xwxq_section1 .content .left .pagebox .fh_r a .words {
		line-height: 38px;
		margin-right: 10px;
	}

	.xwxq_section1 .content .right .qh_t .list {
		font-size: 16px;
		line-height: 50px;
	}

	.xwxq_section1 .content .right .qh_b {
		padding: 0 16px;
	}

	.xwxq_section1 .content .right .qh_b ul li a {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.xwxq_section1 .content .right .qh_b ul li a .picbox {
		width: 100px;
	}

	.xwxq_section1 .content .right .qh_b ul li a .wordsbox {
		width: calc(100% - 102px);
		padding-left: 12px;
	}

	.xwxq_section1 .content .right .qh_b ul li a .wordsbox .info {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 10px;
	}

	.xwxq_section1 .content .right .qh_b ul li a .wordsbox .date {
		font-size: 14px;
		line-height: 18px;
	}
}

@media screen and (max-width: 1024px) {
	.xwxq_section1 {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.xwxq_section1 .content {
		padding: 12px;
	}

	.xwxq_section1 .content .left {
		width: 100%;
		padding-right: 0;
	}

	.xwxq_section1 .content .left h3 {
		font-size: 18px;
		line-height: 22px;
		margin-bottom: 12px;
	}

	.xwxq_section1 .content .left .listbox {
		margin-bottom: 14px;
	}

	.xwxq_section1 .content .left .listbox .list {
		margin-right: 10px;
	}

	.xwxq_section1 .content .left .listbox .list img {
		width: 20px;
		margin-right: 4px;
	}

	.xwxq_section1 .content .left .listbox .list .words {
		font-size: 12px;
	}

	.xwxq_section1 .content .left .info {
		padding-top: 14px;
		margin-bottom: 12px;
		font-size: 14px;
		line-height: 26px;
		font-weight: normal;
	}

	.xwxq_section1 .content .left .dz {
		margin-bottom: 12px;
	}

	.xwxq_section1 .content .left .dz a {
		width: 120px;
		;
		border-radius: 18px;
	}

	.xwxq_section1 .content .left .dz a img {
		width: 22px;
		margin-right: 8px;
	}

	.xwxq_section1 .content .left .dz a .words {
		line-height: 34px;
	}

	.xwxq_section1 .content .left .icobox {
		display: none;
	}

	.xwxq_section1 .content .left .pagebox {
		padding-top: 14px;
		border-top: 1px solid #f5f5f5;
	}

	.xwxq_section1 .content .left .pagebox .page_l {
		width: 100%;
		padding-right: 0;
		margin-bottom: 12px;
	}

	.xwxq_section1 .content .left .pagebox .page_l a {
		margin-bottom: 8px;
	}

	.xwxq_section1 .content .left .pagebox .fh_r {
		width: 110px;
		display: block;
		margin: 0 auto;
	}

	.xwxq_section1 .content .left .pagebox .fh_r a {
		border-radius: 18px;
	}

	.xwxq_section1 .content .left .pagebox .fh_r a .words {
		line-height: 34px;
		margin-right: 6px;
	}

	.xwxq_section1 .content .left .pagebox .fh_r a img {
		width: 12px;
	}

	.xwxq_section1 .content .right {
		width: 100%;
		margin-top: 20px;
		display: none;
	}

	.xwxq_section1 .content .right .qh_t .list {
		font-size: 16px;
		line-height: 40px;
	}

	.xwxq_section1 .content .right .qh_b {
		padding: 0 12px;
	}

	.xwxq_section1 .content .right .qh_b ul li a {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.xwxq_section1 .content .right .qh_b ul li a .picbox {
		width: 100px;
	}

	.xwxq_section1 .content .right .qh_b ul li a .wordsbox {
		width: calc(100% - 102px);
		padding-left: 10px;
	}

	.xwxq_section1 .content .right .qh_b ul li a .wordsbox .info {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 10px;
	}
}

.xwxq_section2 {
	width: 100%;
	padding-bottom: 68px;
	background: #f5f5f5;
}

.xwxq_section2 h4 {
	font-size: 40px;
	color: #2e2e2e;
	line-height: 44px;
	margin-bottom: 28px;
}

.xwxq_section2 .border {
	width: 53px;
	height: 2px;
	background: #004ea0;
	margin-bottom: 50px;
}

.xwxq_section2 .content {
	width: 100%;
}

.xwxq_section2 .content .ul {
	margin: 0 -10px;
	width: calc(100% + 20px);
}

.xwxq_section2 .content .ul .li {
	padding: 0 10px;
}

.xwxq_section2 .content .ul .li a {
	display: block;
	width: 100%;
	background: #fff;
}

.xwxq_section2 .content .ul .li a .picbox {
	width: 100%;
	padding: 10px;
	border-bottom: 1px solid #EFEFEF;
}

.xwxq_section2 .content .ul .li a .picbox .pic {
	width: 100%;
	padding-bottom: 100%;
	position: relative;
	overflow: hidden;
	min-height: 50px;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
}

.xwxq_section2 .content .ul .li a .picbox .pic img {
	width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	min-height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;
	transition: -webkit-transform 2s;
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
}

.xwxq_section2 .content .ul .li a:hover .picbox .pic img {
	-webkit-transform: translate(-50%, -50%) scale(1.1);
	-moz-transform: translate(-50%, -50%) scale(1.1);
	transform: translate(-50%, -50%) scale(1.1);
}

.xwxq_section2 .content .ul .li a .wordsbox {
	width: 100%;
	padding: 20px;
	font-size: 0;
}

.xwxq_section2 .content .ul .li a .wordsbox .left {
	width: calc(100% - 44px);
	padding-right: 12px;
	display: inline-block;
	vertical-align: middle;
}

.xwxq_section2 .content .ul .li a .wordsbox .left .tit {
	font-size: 18px;
	color: #444444;
	line-height: 22px;
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.xwxq_section2 .content .ul .li a:hover .wordsbox .left .tit {
	color: #004ea0;
}

.xwxq_section2 .content .ul .li a .wordsbox .left .info {
	font-size: 12px;
	color: #959595;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.xwxq_section2 .content .ul .li a .wordsbox .right {
	width: 42px;
	display: inline-block;
	vertical-align: middle;
}

.xwxq_section2 .content .ul .li a .wordsbox .right img {
	width: 100%;
	display: block;
}

.xwxq_section2 .content .ul .li a .wordsbox .right img.img2 {
	display: none;
}

.xwxq_section2 .content .ul .li a:hover .wordsbox .right img.img1 {
	display: none;
}

.xwxq_section2 .content .ul .li a:hover .wordsbox .right img.img2 {
	display: block;
}

.xwxq_section2 .content .ul .slick-prev {
	width: 39px;
	height: 39px;
	background: url(img/img137.png) no-repeat center center;
	background-size: cover;
	left: auto;
	right: 77px;
	top: -114px;
	border: 1px solid #A6A6A6;
	transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
}

.xwxq_section2 .content .ul .slick-next {
	width: 39px;
	height: 39px;
	background: url(img/img138.png) no-repeat center center;
	background-size: cover;
	right: 10px;
	top: -114px;
	border: 1px solid #A6A6A6;
	transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
}

.xwxq_section2 .content .ul .slick-prev:hover {
	background: url(img/img139.png) no-repeat center center;
	background-size: cover;
	background-color: #004ea0;
	border-color: #004ea0;
}

.xwxq_section2 .content .ul .slick-next:hover {
	background: url(img/img140.png) no-repeat center center;
	background-size: cover;
	background-color: #004ea0;
	border-color: #004ea0;
}

.xwxq_section2 .content .ul .slick-dots {
	position: absolute;
	bottom: auto;
	height: 6px;
	text-align: center;
	top: -50px;
	left: auto;
	right: 15px;
	width: auto;
}

.xwxq_section2 .content .ul .slick-dots li {
	vertical-align: top;
	width: 6px;
	height: 6px;
	margin: 0 5px;
	background: #C4C4C4;
}

.xwxq_section2 .content .ul .slick-dots li.slick-active {
	background: #004ea0;
}

.xwxq_section2 .content .more {
	width: 100%;
	margin-top: 50px;
}

.xwxq_section2 .content .more a {
	display: block;
	width: 132px;
	font-size: 0;
	text-align: center;
	background: #004ea0;
	border-radius: 23px;
	margin: 0 auto;
}

.xwxq_section2 .content .more a:hover {
	opacity: 0.8;
}

.xwxq_section2 .content .more a .words {
	font-size: 14px;
	color: #ffffff;
	line-height: 46px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 12px;
}

.xwxq_section2 .content .more a img {
	width: 20px;
	display: inline-block;
	vertical-align: middle;
}

@media screen and (max-width: 1680px) {
	.xwxq_section2 {
		padding-bottom: 60px;
	}

	.xwxq_section2 h4 {
		font-size: 34px;
		line-height: 38px;
		margin-bottom: 20px;
	}

	.xwxq_section2 .border {
		width: 46px;
		margin-bottom: 40px;
	}

	.xwxq_section2 .content .ul .li a .wordsbox {
		padding: 12px;
	}

	.xwxq_section2 .content .ul .li a .wordsbox .left {
		width: calc(100% - 36px);
	}

	.xwxq_section2 .content .ul .li a .wordsbox .left .tit {
		font-size: 16px;
		line-height: 20px;
	}

	.xwxq_section2 .content .ul .li a .wordsbox .right {
		width: 34px;
	}

	.xwxq_section2 .content .ul .slick-prev {
		width: 30px;
		height: 30px;
		right: 60px;
		top: -80px;
	}

	.xwxq_section2 .content .ul .slick-next {
		width: 30px;
		height: 30px;
		right: 8px;
		top: -80px;
	}

	.xwxq_section2 .content .ul .slick-dots {
		top: -40px;
		right: 12px;
	}

	.xwxq_section2 .content .more {
		margin-top: 40px;
	}

	.xwxq_section2 .content .more a {
		width: 110px;
		border-radius: 20px;
	}

	.xwxq_section2 .content .more a .words {
		line-height: 40px;
		margin-right: 10px;
	}
}

@media screen and (max-width: 1024px) {
	.xwxq_section2 {
		padding-bottom: 30px;
	}

	.xwxq_section2 h4 {
		font-size: 18px;
		line-height: 22px;
		margin-bottom: 12px;
	}

	.xwxq_section2 .border {
		width: 36px;
		margin-bottom: 14px;
	}

	.xwxq_section2 .content .ul {
		margin: 0 -6px;
		width: calc(100% + 12px);
	}

	.xwxq_section2 .content .ul .li {
		padding: 0 6px;
	}

	.xwxq_section2 .content .ul .li a .wordsbox {
		padding: 12px;
	}

	.xwxq_section2 .content .ul .li a .wordsbox .left {
		width: calc(100% - 26px);
		padding-right: 8px;
	}

	.xwxq_section2 .content .ul .li a .wordsbox .left .tit {
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 4px
	}

	.xwxq_section2 .content .ul .li a .wordsbox .right {
		width: 24px;
	}

	.xwxq_section2 .content .ul .slick-prev {
		width: 26px;
		height: 26px;
		right: 50px;
		top: -46px;
	}

	.xwxq_section2 .content .ul .slick-next {
		width: 26px;
		height: 26px;
		right: 6px;
		top: -46px;
	}

	.xwxq_section2 .content .ul .slick-dots {
		top: -12px;
		right: 6px;
		height: 4px;
	}

	.xwxq_section2 .content .ul .slick-dots li {
		width: 4px;
		height: 4px;
		margin: 0 4px;
	}

	.xwxq_section2 .content .more {
		margin-top: 20px;
	}
}

/* ====================案例样式========================= */

/* ny_newslist */
.ny_case {
	background-color: #f5f5f5;
}

.ny_newslist {}

.ny_newslist ul {}

.ny_newslist ul li {
	float: left;
	width: 24%;
	margin-right: calc(4% / 3);
	margin-bottom: 0.45rem;
}

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

.ny_newslist ul li a {
	display: block;
	background-color: #f7f7f7;
	box-shadow: 1px 3px 20px 0 rgba(0, 0, 0, .2);
}

.ny_newslist ul li:hover a {}

.ny_newslist ul li .pic {
	overflow: hidden;
}

.ny_newslist ul li .pic img {}

.ny_newslist ul li .info {
	padding: 0.2rem;
	font-size: 14px;
	line-height: 1.5;
	color: #999;
}

.ny_newslist ul li .info .tit {
	font-size: 22px;
	color: #333;
	transition: all .3s;
}

.ny_newslist ul li:hover .info .tit {
	color: #004ea0;
}

.ny_newslist ul li:hover .info,
.ny_newslist ul li:hover .info .tit {}

.ny_newslist ul li .info .txt {
	height: 4.5em;
	margin: 0.2rem 0;
	font-size: 16px;
}

.ny_newslist ul li .info .more {
	font-size: 0.16rem;
}

.ny_newslist ul li:hover .info .more {
	color: #004ea0;
}

/* ny_newslist */

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

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

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

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

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

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

/* 联系我们 s */
.contact_box {
	display: block;
	overflow: hidden;
}

.nycont .left {
	float: left;
	width: 50%;
}

.nycont .right .fl {
	float: right;
	width: 50%;
}

.nycont .right .map {
	width: 50%;
	height: 450px;
	overflow: hidden;
}

.nycont .right .map img {
	max-width: none;
}

.nycont .right .zt1 {
	color: #fff;
}

.nycont .map {
	margin: 0 auto;
	display: block;
}

.nycont h3 {
	font-size: 30px;
	color: #333;
	display: inline-block;
	width: auto;
	border-bottom: 1px solid #dedede;
	margin: 20px 0;
	padding-bottom: 10px;
	font-weight: 700;
}

.nycont h3 span {
	font-size: 23px;
}

.nycont dl:first-child dt {
	padding-right: 8%;
}


.nycont dl,
.nycont .box {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	flex-direction: column;
}

.nycont dl:nth-of-type(1) dt {
	padding-right: 7%;
}

.nycont dt {
	position: relative;
	padding-right: 3%;
	/* padding-bottom: 1%; */
}

.nycont dt:last-child {
	padding-right: 0;
}

.nycont dt::before {
	content: '';
	position: absolute;
	width: auto;
	height: 1px;
	background: #dedede;
	bottom: 0;
	right: 0;
}

.nycont dt:last-child::before {
	display: none;
}

.nycont dt .ic {
	/* width: 60px;
	height: 60px; */
	line-height: 45px;
	text-align: center;
	/* border: 1px solid #d2d2d2; */
	/* border-radius: 500px; */
	margin-right: 10px;
}

.nycont dt .ic span {
	font-size: 24px;
	color: #004aa5;
}

.nycont dt .wz {
	color: #666;
	line-height: 36px;
	font-size: 16px;
}

.nycont dt .wz i {
	font-size: 18px;
	color: #333;
	display: inline-block;
	margin-top: 5px;
	font-weight: 700;
}

.nycont .box {
	margin-top: 75px;
}

.nycont .box .b {
	font-size: 20px;
	text-transform: uppercase;
	color: #333;
}

.nycont .box .b i {
	color: #004ea0;
}

.nycont .box .ewm {
	/* max-width: 100px; */
	text-align: center;
}

.nycont .box .ewm p {
	display: block;
	font-size: 14px;
	color: #666;
	margin-top: 10px;
}

.nycont .box .des {
	max-width: 48%;
}

.nyfeed {
	width: 100%;
	background: #f5f5f5;
}

.nyfeed .map {
	width: 100%;
	height: 490px;
	overflow: hidden;
}

.nyfeed .fefo {
	padding: 38px 30px;
	background: #fff;
	width: 100%;
}

/* 留言 */
.input_control {
	position: relative;
	width: 32%;
	float: left;
	margin-right: 2%;
	background: #f6f6f6;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	height: 54px;
	margin-top: 26px;
}

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

.form_input {
	-webkit-appearance: none;
	-moz-appearance: none;
	outline: 0;
	height: 54px;
	line-height: 54px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 30px;
	font-size: 16px;
	color: #666;
	width: 95%;
	background: #f6f6f6;
}

.input_control lable {
	color: red;
	position: absolute;
	left: 20px;
	line-height: 54px;
}

.form_input::-moz-placeholder,
.form_text::-moz-placeholder {
	color: #666;
}

.form_text {
	height: 100px;
	background: #f6f6f6;
	position: absolute;
	left: 30px;
	top: 15px;
	width: 95%;
	font-size: 14px;
	color: #666;
	line-height: 25px;
	border-color: transparent;
}

.input_control2 {
	width: 100%;
	margin: 16px 0 25px;
	height: 150px;
}

.form i {
	font-size: 14px;
	color: #333;
	display: block;
}

.form .submit {
	width: 240px;
	height: 60px;
	line-height: 60px;
	border-radius: 4px;
	background: #898989;
	font-size: 18px;
	color: #fff;
	cursor: pointer;
	transition: all .3s;
}

.form .submit:hover {
	background-color: #004ea0;
}

/* 招聘 */
.container {
	background-color: #f5f5f5;
}

.TextList002514 .auto {
	max-width: 1600px;
}

.TextList002514 .list {
	margin-bottom: 2vw;
	padding: 35px;
	border: 1px solid #ededed;
	transition: .3s;
	background-color: #fff;
}

.TextList002514 .list:hover {
	box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
}

.TextList002514 .list .content-base {
	display: flex;
	justify-content: space-between;
	line-height: 1;
	cursor: pointer;
	border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.TextList002514 .list .content-base .base-left .name {
	display: flex;
	padding-bottom: 20px;
}

.TextList002514 .list .content-base .base-left .name .job-title {
	margin-right: 10px;
	font-size: 22px;
	color: #333;
}

.TextList002514 .list .content-base .base-left .name .tag {
	display: inline-block;
	max-width: 100px;
	padding: 0 12px;
	margin-right: 8px;
	font-size: 12px;
	line-height: 24px;
	color: #004ea0;
	background: rgba(0, 78, 160, .1);
}

.TextList002514 .list .content-base .base-left .name .tag-work {
	color: #00933d;
	background: rgba(0, 147, 61, .1);
}

.TextList002514 .list .content-base .base-left .base-detail span:not(:last-child):after {
	display: inline-block;
	content: '/';
	margin: 0 15px;
	color: #999;
}

.TextList002514 .list .content-base .base-right {
	flex-shrink: 0;
	min-width: 150px;
	padding-top: 19px;
	text-align: right;
	font-size: 16px;
}

.TextList002514 .list .content-base .base-right i {
	display: inline-block;
	margin-left: 10px;
	height: 10px;
	width: 10px;
	background: url(../images/Menu002849_more.gif) no-repeat right center;
}

.TextList002514 .list .content-base.select {
	border-bottom: 1px solid #ededed;
	padding-bottom: 30px;
}

.TextList002514 .job-main {
	display: none;
	padding: 35px 0;
	font-size: 15px;
}

.TextList002514 .job-main strong {
	font-weight: normal;
	font-size: 18px;
}

.TextList002514 .job-email {
	color: #00933d;
	margin-top: 30px;
}



@media(max-width:640px) {
	.TextList002514 .list {
		padding: 15px;
		margin-bottom: 30px;
	}

	.TextList002514 .list .content-base {
		display: block;
	}
}

/* job e */

/* 联系我们 e */


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

	/* 1600 × (900/1024/1200) */
	.ind_case .case_box .fl .swiper-slide::before {
		background-image: url(../images/yuan500.png);
	}
}

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

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

	.ind_case .case_box .fl .swiper-slide::before {
		background-image: url(../images/yuan480.png);
	}

}


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

	/* 1360 × (768) */
	.application ul li .info>span {
		font-size: 90px
	}

	.application ul li .info .tit {
		font-size: 20px;
	}

	.ind_case .case_box .fl .swiper-slide::before {
		background-image: url(../images/yuan450.png);
	}
}

@media all and (max-width:1444px) {
	.ind_case .case_box .fl .swiper-slide::before {
		background-image: url(../images/yuan430.png);
	}
}

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

	/* 1280 × (800/854/1024) */
	/* 内页 */
	.ab_culture ul {
		flex-wrap: wrap;
	}

	.ab_culture ul li {
		width: 50%;
		min-height: 320px;
	}

}

@media screen and (min-width: 769px) and (max-width: 1359px) {
	.ab_culture ul li:nth-child(3) {
		background-color: #e62129;
		color: white;
	}

	.ab_culture ul li:nth-child(3) .box .icon {
		position: relative;
		filter: drop-shadow(100vw 0px 0 white);
		-webkit-filter: drop-shadow(100vw 0px 0 white);
		right: 100vw;
	}

	.ab_culture ul li:nth-child(3) .box p {
		color: white;
	}

	.ab_culture ul li:nth-child(3) .box span {
		color: white;
	}

	.ab_culture ul li:nth-child(3) .box p:after {
		background-color: white;
	}

	.ab_culture ul li:nth-child(4) {
		background-color: white;
		color: #333;
	}

	.ab_culture ul li:nth-child(4) .box p {
		color: #5f5f5f;
	}

	.ab_culture ul li:nth-child(4) .box p:after {
		background-color: #000;
	}

	.ab_culture ul li:nth-child(4) .box span {
		color: #e62129;
	}

	.ab_culture ul li:nth-child(4) .box .icon {
		position: relative;
		filter: drop-shadow(100vw 0px 0 #161616);
		-webkit-filter: drop-shadow(100vw 0px 0 #161616);
		right: 100vw;
	}
}

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

	.ind_case .case_box .fl .swiper-slide::before {
		background-image: url(../images/yuan410.png);
	}

}


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

	/* 1152 × (864) */
	.profile_text .info {
		font-size: 16px;
	}

}

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


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

	/* 平板设备 720 适配 */
	.tit-54 {
		font-size: 36px;
	}

	.pc {
		display: none;
	}

	.mb {
		display: block;
	}

	.ind_pro .con .bot .item .fl {
		display: none;
	}

	.ind_pro .con .bot .item .fr {
		width: 100%;
	}

	.ind_pro .con .bot .item .fr ul li,
	.ind_pro .con .bot .item .fr ul li:nth-child(2n) {
		width: calc((100% - 20px) / 3);
		margin-right: 10px;
		margin-bottom: 10px;
	}

	.ind_pro .con .bot .item .fr ul li:nth-child(3n) {
		margin-right: 0;
	}

	.ind_pro .con .bot .item .fr ul li:nth-child(5),
	.ind_pro .con .bot .item .fr ul li:nth-child(6) {
		display: block;
	}

	.ind_pro .con .top {
		margin-bottom: 0.35rem;
	}

	.ind_pro .con .top ul li {
		width: calc(100% / 3);
		border-bottom: 1px solid #EFF2F7;
	}

	.ind_pro .con .top ul li a {
		font-size: 14px;
		min-height: 54px;
	}

	/* 内页 */
	.ab_tit h3 {
		font-size: 28px;
	}

	.profile_view {
		flex-direction: column-reverse;
		flex-wrap: wrap;
	}

	.profile_pic,
	.profile_text {
		width: 100%;
		padding-right: 0;
	}

	.profile_pic img {
		position: relative;
		width: 100%;
		height: auto;
	}

	.profile_text .info {
		height: auto;
	}

	.profile_ul li h4 {
		font-size: 36px;
	}

	.profile_ul li p {
		font-size: 14px;
	}

	.ny-soli .soli ul li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 35px;
	}

	.ny_solu .lf,
	.ny_solu .other {
		width: 100%;
	}

	.ny_solu .solu-con {
		padding-left: 20px;
		padding-right: 20px;
	}

	.soli_tit .lf h4 {
		font-size: 20PX;
		position: relative;
		padding-bottom: 15px;
	}

	.ny_solu .other .tit {
		margin-top: 10%;
	}

	.ny_newslist ul li {
		width: 100%;
		margin-right: 0;
	}
}

@media all and (max-width:991px) {
	.ind_ab .fl .des {
		line-height: 1.3em;
		height: 7.5em;
	}

	.ind_ab .fl .ind_tit img {
		width: 60px;
	}

	.ind_ab .fr i::before {
		width: 75px;
		height: 75px;
	}

	.ind_case {
		overflow: hidden;
	}

	.ind_case .case_box {
		flex-direction: column;
	}

	.ind_case .case_box .fl,
	.ind_case .case_box .fr {
		width: 100%;
	}

	.ind_case .case_box .fr .info h2 {
		margin: 20px 0;
	}

	.ind_case .case_box .fr .info .more {
		margin-top: 30px;
	}

	.ind_case .case_box .fl .swiper-slide a {
		padding: 15%;
	}

	.f_first {
		width: 40%;
	}

	.Footer-container .mid {
		display: none;
	}

	.Footer-container .ewm {
		width: 25%;
	}

	.Footer-container .ewm img {}
}

@media all and (max-width:768px) {
	.tc_search form {
		width: 100%;
	}

	.ind_pro .con .bot .item .fr ul li {
		width: 49% !important;
		margin-right: 2% !important;
		margin-bottom: 2%;
	}

	.ind_pro .con .bot .item .fr ul li:nth-child(2n) {
		margin-right: 0 !important;
	}

	.ind_ab .ab_box {
		flex-direction: column;
	}

	.ind_ab .fl,
	.ind_ab .fr {
		width: 100%;
	}

	.ind_ab .fl .des {
		height: 7.5em;
	}

	.ind_case .case_box .fl .swiper-slide a {
		padding: 7%;
	}

	.ind_case .case_box .fl .swiper-slide::before {
		background-image: url(../images/yuan350.png);
	}

	/* 内页 */
	.profile_ul {
		flex-wrap: wrap;
	}

	.profile_ul li {
		width: 50%;
	}

	.ab_culture ul li {
		width: 100%;
		height: auto;
		padding: 0.4rem;
	}

	.innov_con2 .honor_view {
		overflow: hidden;
	}

	.sortnav_view {
		width: 100%;
	}

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

	.xg_view {
		display: none;
	}

	.n_productlist,
	.n_pro_det {
		width: 100%;
	}

	.n_productlist ul li {
		width: 48%;
	}

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

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

	.n_pro_det {
		margin-top: 5%;
	}

	.cat_page_title {
		font-size: 20px;
	}

	.n_pro_det .top .fl,
	.n_pro_det .top .fr {
		width: 100%;
	}

	.n_pro_det .top .fr {
		margin-top: 5%;
	}

	.n_pro_det .top .fr .sub_title {
		font-size: 20px;
	}

	.nycont .left {
		width: 100%;
		margin-bottom: 5%;
	}

	.nycont .right .map {
		width: 100%;
	}

	.input_control {
		width: 100%;
	}

	.form .submit {
		margin-top: 10%;
		height: 50px;
		line-height: 50px;
	}

	.nycont h3 {
		font-size: 24px;
	}

}

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

	/* 移动终端以上 360 适配 */
	.ind_pro .con .top ul li {
		width: 50%;
	}

	.ind_pro .con .top ul li a {
		font-size: 12px;
		min-height: 48px;
	}



	/* 内页 */
	.ab_tit h3 {
		font-size: 24px;
	}

	.profile_text .info {
		line-height: 1.6;
		font-size: 13px;
	}

	.profile_ul li h4 {
		font-size: 32px;
	}

	.ab_culture ul li .box span {
		font-size: 20px;
	}

	.ny-soli {
		padding-right: 5%;
		padding-left: 5%;
	}

	.ny-soli .soli ul li {
		width: 100%;
	}

}

@media all and (max-width:480px) {
	.ind_pro .con .bot .item .fr ul li p span {
		font-size: 12px;
		line-height: 1.5;
	}

	.ind_ab .fl .ind_tit img {
		width: 10%;
	}

	.ind_ab .fl .more a {
		margin: 23px 0;
	}

	.ind_ab .fr i::before {
		width: 60px;
		height: 60px;
	}

	.ab_num ul {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.ab_num ul li {
		width: 33.3333%;
		margin-bottom: 3%;
	}

	.application ul li .info {
		padding: 0 15px 20px 22px;
		transform: translateY(55%);
	}

	.application ul li .info>span {
		font-size: 36px;
	}

	#news .news_t .news_btn {
		display: flex;
	}

	#news .news_nr .box_r_nr ul li a .desc {
		padding: 10px 5px;
	}

	#news .news_nr .box_r_nr ul li a .desc .t {
		font-size: 20px;
	}

}

@media all and (max-width:420px) {
	.application ul li .info .des {
		margin: 30px 0 15px 0;
	}

	.ind_case .case_box .fl .swiper-slide a {
		padding: 9%;
	}

	.ind_case .case_box .fl .swiper-slide::before {
		background-image: url(../images/yuan320.png);
	}
	
	.footer_r .ad_kefu .shangqiao{
	    width:100%;
	}
	
	.nycont h3{
	    font-size: 23px;
	}

}

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