body {
	background: #fff;
	font-size: 14px;
	margin: 0 auto;
	color: #333;
	position: relative;
	scroll-behavior: smooth;

}
a:link,
a:hover,
a:visited,
a:active {
	text-decoration: none;
	color: #333;
}
ul,
li {
	list-style: none;
	padding: 0;
	margin: 0;
}
h1,h2,h3,h4,h5{
	margin: 0;
	font-weight: 500;
}
p {
	margin: 0;
}
img{
	display: block;
	max-width: 100%;
}
@font-face {
	font-family: 'numfont';
	font-display: swap;
	src: url('../../fonts/DINCond-Bold.otf') format('truetype');
}
@font-face {
	font-family: 'wavehaus';
	font-display: swap;
	src: url('../../fonts/wavehaus.otf') format('truetype');
}
@font-face {
	font-family: 'ikaros';
	font-display: swap;
	src: url('../../fonts/ikaros.otf') format('truetype');
}
@font-face {
	font-family: 'din';
	font-display: swap;
	src: url('../../fonts/din.ttf') format('truetype');
}
.s_mobile {
	min-height: calc(100vh - 290px);
	overflow: hidden;
}
.s_mobile .s_header_top{
	height: 60px;
}
.s_window {
	position: relative;
	margin: 0 auto;
	width: 92%;
}
/* 头部 */
.s_header{
	height: 60px;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	display: flex;
	align-items: center;
	background-color: #fff;
	z-index: 11;
}
.s_header ._logo {
	height: 38px;
	overflow: hidden;
	padding-right: 32px;
	transition: padding-right .3s;
	margin-left: 4%;
}
.s_header ._logo img{
	height: 38px;
	width: auto;
}
.s_header ._logo h1{
	display: block;
	font-size: 12px;
}
.s_header ._nav{
	display: flex;
	align-items: center;
	height: 50px;
	font-size: 14px;
	width: 0;
	overflow: hidden;
	opacity: 0;
	transition: width 1s;
	margin-left: auto;
}
.s_header ._nav._active{
	width: auto;
	opacity: 1;
}
.s_header ._nav i{
	width: 18px;
	display: block;
}
.s_header ._nav span{
	display: block;
}
.s_header ._nav ._language{
	display: flex;
	align-items: center;
	color: #7d7d7d;
	padding: 0 16px;
}
.s_header ._nav ._language span{
	margin-left: 5px;
}
.s_header ._nav ._button{
	display: flex;
	align-items: center;
	padding: 0;
	color: #51a5dc;
}
.s_header ._nav ._button span{
	margin-left: 8px;
}
.s_header ._close{
	margin-right: 4%;
	width: 0;
	overflow: hidden;
	opacity: 0;
	transition: opacity 1s;
}
.s_header ._close._active{
	width: auto;
	opacity: 1;
}
.s_header ._close i{
	display: block;
	width: 18px;
	transition: transform 1s;
}
.s_header ._close._active i{
	transform:rotate(90deg);
	-webkit-transform:rotate(90deg);
}
/* 菜单 */
.s_menu{
	position: fixed;
	top: 60px;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100;
	overflow-y: auto;
	background-color: #fff;
}
.s_menu ul ._one{
	font-size: 16px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:24px 0;
	margin: 0 4%;
	border-bottom: 0;
}
.s_menu ul ._one.collapsed{
	border-bottom: 1px solid #eceaef;
}
.s_menu ul ._one i{
	font-size: 20px;
	color: #e6e6e6;
	transition: transform .3s;
}
.s_menu ul ._one.collapsed i{
	transform:rotate(180deg);
	-webkit-transform:rotate(180deg);
}
.s_menu ul ._two{
	background-color: #f7f7f7;
}
.s_menu ul ._two a{
	display: block;
	font-size: 15px;
	color: #484848;
	padding: 16px 4%;
}
.s_menu ul ._two a._active{
	color: #51a5dc;
}

/* 通用底部 */
.s_footer{
	background-color: #f7f7f7;
	height: 250px;
	padding-top: 25px;
}
.s_footer ._head{
	color: #454545;
	margin-bottom: 10px;
}
.s_footer ._head ._logo{
	margin-bottom: 18px;
}
.s_footer ._head ._logo img{
	height: 30px;
	width: auto;
}
.s_footer ._head p{
	margin-bottom: 4px;
	line-height: 18px;
}
.s_footer ._bottom, .s_footer ._bottom a{
	color: #8d8d8d;
}
.s_footer ._bottom p{
	margin-bottom: 4px;
	font-size: 10px;
	line-height: 18px;
}

/* 分页样式 */
.s_pager{
	margin-bottom: 15px;
}
.s_pager a{
	display: block;
	background-color: #f2f2f2;
	color: #8c8c8c;
	padding: 8px;
	text-align: center;
	font-size: 12px;
}
.s_pager ._li{
	display: none;
}
/*未做页面*/
.s_404{
	height: 100vh;
	background-color: #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
}
/*点-波纹效果*/
.s_spot {
	position: relative;
}
.s_spot span{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: #2ca6df;
	border-radius: 100%;
	opacity: 0;
	z-index: 1;
}
.s_spot span:nth-of-type(1){
	-webkit-animation: twinkle-enlarge-deep 6s 0s ease-out infinite;
	animation: twinkle-enlarge-deep 6s 0s ease-out infinite;
}
.s_spot span:nth-of-type(2){
	-webkit-animation: twinkle-enlarge-deep 6s 1.5s ease-out infinite;
	animation: twinkle-enlarge-deep 6s 1.5s ease-out infinite;
}
.s_spot span:nth-of-type(3){
	-webkit-animation: twinkle-enlarge-deep 6s 3s ease-out infinite;
	animation: twinkle-enlarge-deep 6s 3s ease-out infinite;
}
.s_spot span:nth-of-type(4){
	-webkit-animation: twinkle-enlarge-deep 6s 4.5s ease-out infinite;
	animation: twinkle-enlarge-deep 6s 4.5s ease-out infinite;
}
/*按钮-波纹效果*/
.s_flowButton{
	position: relative;
}
.s_flowButton ._flowButton{
	position:absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 1;
}
.s_flowButton ._flowButton + div{
	position: relative;
	z-index: 2;
}
.s_flowButton ._flowButton span{
	position:absolute;
	display: block;
	left: 0;
	right: 0;
	top: 40%;
	height: 200%;
	background-color: rgba(0,95,255,.3);
	border-radius:100%;
	opacity: 0;
}
.s_flowButton ._flowButton._red span{
	background-color: rgba(245,75,60,.8);
}
.s_flowButton:hover ._flowButton span:nth-of-type(1){
	-webkit-animation: twinkle-enlarge-deep 1s;
	animation: twinkle-enlarge-deep 1s;
}
.s_flowButton:hover ._flowButton span:nth-of-type(2){
	-webkit-animation: twinkle-enlarge-deep 1s .1s ease-out;
	animation: twinkle-enlarge-deep 1s .1s ease-out;
}
/*移动视觉差增加过渡*/
.s_follow .foll{
	transition: transform .02s;
}
/*banner载入过渡*/
.s_banner_zoom{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transition: transform 1s,background-position .1s;
}
.s_banner_zoom.s_banner_zoom_in{
	transform: scale(1);
	-webkit-transform: scale(1);
}

/** 响应样式 **/
@media screen and (min-width: 1200px) {
	
}
@media screen and (max-width: 1024px) {
	
}
@media screen and (max-width: 768px) {
	.s_head .s_window {
		position: relative;
		margin: 0 auto;
		width: 98%;
	}
}
/** 附加样式 **/
.text_line_1 {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.text_line_2 {
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2;
}
.opacity_0 {
	opacity: 0;
}
.shadow_1 {
	-webkit-box-shadow: 2px 3px 30px rgba(20, 73, 206, .1);
	box-shadow: 2px 3px 30px rgba(20, 73, 206, .1);
}
.press {
	transition: box-shadow .3s,transform .3s;
	-webkit-transition: box-shadow .3s,transform .3s,;
}
.press:hover {
	transform: translateY(-2px);
	-webkit-transform: translateY(-2px);
	-webkit-box-shadow: 0 8px 10px rgba(0, 0, 0, .15);
	box-shadow: 0 8px 10px rgba(0, 0, 0, .15);
}
.press_blue {
	transition: box-shadow .3s,transform .3s;
	-webkit-transition: box-shadow .3s,transform .3s,;
}
.press_blue:hover {
	transform: translateY(-2px);
	-webkit-transform: translateY(-2px);
	-webkit-box-shadow: 0 4px 20px rgba(0, 125, 240, .15);
	box-shadow: 0 4px 20px rgba(0, 125, 240, .15);
}
.transit_03 {
	transition: all .3s !important;
	-webkit-transition: all .3s !important;
}
.transit_05 {
	transition: all .5s !important;
	-webkit-transition: all .5s !important;
}
.transit_1 {
	transition: all 1s !important;
	-webkit-transition: all 1s !important;
}

@-webkit-keyframes bounce-down {
	25% {
		-webkit-transform: translateY(0px);
	}
	50% {
		-webkit-transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(0px);
	}
}
@keyframes bounce-down {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0px);
	}
}
@keyframes twinkle-enlarge {
	0% {
		transform: scale(.8);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(.8);
	}
}

@-webkit-keyframes twinkle-enlarge {
	25% {
		-webkit-transform: scale(.8);
	}
	50% {
		-webkit-transform: scale(1.2);
	}
	100% {
		-webkit-transform: scale(.8);
	}
}
@keyframes twinkle-enlarge-light {
	0% {
		transform: scale(.95);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(.95);
	}
}

@-webkit-keyframes twinkle-enlarge-light {
	25% {
		-webkit-transform: scale(.95);
	}
	50% {
		-webkit-transform: scale(1.05);
	}
	100% {
		-webkit-transform: scale(.95);
	}
}
@-webkit-keyframes twinkle-enlarge-deep {
	0% {
		-webkit-transform: scale(0.1);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1.5);
		opacity: 0;
	}
}
@keyframes twinkle-enlarge-deep {
	0% {
		transform: scale(0.1);
		opacity: 1;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}
@-webkit-keyframes transparent-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes transparent-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes width-in {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}
@keyframes width-in {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}	
/** 组件样式 **/
::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 6px;
	height: 1px;
	background-color: rgba(255, 255, 255, 0);
}
::-webkit-scrollbar-thumb {
	/*滚动条里面小方块*/
	border-radius: 10px;
	width: 4px;
	height: 4px;
	background-color: #ccc;
}
.social-share [class*=" icon-"],.social-share [class^=icon-] {
	font-family: "socialshare" !important;
}
/*分享组件*/
.s_share .social-share .social-share-icon {
    width: 20px !important;
    height: 20px !important;
    font-size: 12px !important;
    line-height: 18px !important;
    transition: background 0.3s ease-out 0s;
}
.s_share .social-share .icon-wechat {
    color: #fff !important;
    border-color: #50b674 !important;
	background-color: #50b674 !important;
}
.s_share .social-share .icon-wechat:hover {
    color: #50b674 !important;
    border-color: #50b674 !important;
	background-color: #fff !important;
}
.s_share .social-share .icon-qq {
    color: #fff !important;
    border-color: #2fa5dd !important;
	background-color: #2fa5dd !important;
}
.s_share .social-share .icon-qq:hover {
    color: #2fa5dd !important;
    border-color: #2fa5dd !important;
	background-color: #fff !important;
}
.s_share .social-share .icon-weibo {
    color: #fff !important;
    border-color: #e95e5c !important;
	background-color: #e95e5c !important;
}
.s_share .social-share .icon-weibo:hover {
    color: #e95e5c !important;
    border-color: #e95e5c !important;
	background-color: #fff !important;
}
.swiper-pagination-progress {
    background: #f7f7f7;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
	background: #52a4da;
}