﻿:root {
	--swiper-theme-color: #1e50ae;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,p,blockquote,th,td,header,main,footer,aside,section,article,nav {
	padding: 0;
	margin: 0;
}
fieldset,img {
	border: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
ol,ul {
	list-style-type: none;
}
address,caption,cite,code,dfn,em,th,var {
	font-weight: normal;
	font-style: normal;
}
caption,th {
	text-align: left;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
	font-size: 100%;
}
p:before,p:after {
	content: '';
}
abbr,acronym {
	border: 0;
}
a {
	text-decoration: none;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.clr {
	HEIGHT: 0px;
	VISIBILITY: hidden;
	CLEAR: both;
	FONT-SIZE: 0px;
	OVERFLOW: hidden;
	width: 100%;
}
body,samp {
	font-size: 14px;
	color: #333;
	font-family: '微软雅黑','Microsoft YaHei',"Arial",'SimSun',Serif,"PingFang SC","苹方";
}
img {
	vertical-align: bottom;
}
input[type="text"],input[type="hidden"],input[type="button"],input[type="radio"],input[type="submit"],input[type="checkbox"],input[type="password"],button,textarea,select {
	outline: none;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
}
body {
	opacity: 0;
	animation: show 1s ease 0.3s 1;
	animation-fill-mode: forwards;
}
img {
	-webkit-transition: all 0.6s ease 0s;
	-moz-transition: all 0.6s ease 0s;
	-ms-transition: all 0.6s ease 0s;
	-o-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
}
.menu span {
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
/*
.even:nth-child(even){
	表示偶数
}
.odd:nth-child(odd){
	表示奇数
}
:first-child{
	首个子元素
}
:nth-child(2){
	第二个子元素
}
:last-child{
	最后一个子元素
}
*/
.a-i-c{
    display: flex;
    align-items: center;/*垂直居中*/
}
.j-c-c{
    display: flex;
    justify-content:center;/*水平居中*/
}
.j-c-s-b{
    display: flex;
    align-items: center;
    justify-content: space-between;/*两端对齐，项目之间的间隔都相等。*/
}
.j-c-f-s{
    display: flex;
    justify-content:flex-start;/*左对齐*/
}
.j-c-f-e{
    display: flex;
    justify-content:flex-end;/*右对齐*/
}
.a-i-f-e{
    display: flex;
    align-items:flex-end;/*局底*/
}
.a-i-f-s{
    display: flex;
    align-items:flex-start;/*局顶*/
}
.w1200{
	width: 1200px;
	margin: 0 auto;
}
.m-t{
	margin-top: 50px;
}
.m-b{
	margin-bottom: 50px;
}
/**********************导航**********************/
.header {
	width: 100%;
	height: 150px;
}
.header .header-top .w1200{
    display: flex;
    justify-content: space-between;/*两端对齐，项目之间的间隔都相等。*/
    align-items: center;/*垂直居中*/
}
.header .header-top .fl{
    display: flex;
	align-items: center;/*垂直居中*/
}
.header .header-top .logo {
	float: left;
	width: 130px;
}
.header .header-top .logo img {
	display: block;
	width: 100%;
}
.header .header-top .logo_title{
	position: relative;
	padding-left: 80px;
}
.header .header-top .logo_title::after{
	content: "";
	position: absolute;
	width: 1px;
	height: 53px;
	background: #eeeeee;
	left: 40px;
	top: 0px;
}
.header .header-top .logo_title p:nth-child(1){
	font-size: 24px;
	color: #1e50ae;
}
.header .header-top .logo_title p:nth-child(2){
	font-size: 14px;
	color: #b2b2b2;
	line-height: 1.8;
}
.header .header-top .fr{
    display: flex;
	align-items: center;/*垂直居中*/
}
.header .header-top .telephone p:nth-child(1){
	font-size: 14px;
	color: #b2b2b2;
}
.header .header-top .telephone p:nth-child(2){
	font-size: 24px;
	color: #1e50ae;
	line-height: 1.8;
}
.header .header-ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	background: #2b2b2b;
}
.header .header-ul ul li {
	float: left;
	width: auto;
	height: 100%;
	position: relative;
	margin-right: 130px;
}
.header .header-ul ul li.act {
	position: static;
}
.header .header-ul ul li:last-child {
	margin-right: 0px;
}
.header .header-ul ul li span {
	width: 100%;
	height: 50px;
	line-height: 50px;
	display: block;
	overflow: hidden;
	position: relative;
}
.header .header-ul ul li span:before {
	width: 0%;
	height: 2px;
	content: "";
	position: absolute;
	left: 0px;
	bottom: 0px;
	background: #1e50ae;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.header .header-ul ul li span a {
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
	font-size: 16px;
	color: #fff;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.header .header-ul ul li:hover span:before,
.header .header-ul ul li.ons span:before {
	width: 100%;
}
/*导航下拉*/
.header .sub-nav {
	width: auto;
	position: absolute;
	left: 50%;
	top: 50px;
	z-index: 15;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	opacity: 0;
	visibility: hidden;
	transform-origin: top;
	transform: translateX(-50%) scaleY(0);
	box-shadow: 0px 5px 12px 5px rgba(0,0,0,0.02);
}
.header .header-ul ul li:hover .sub-nav {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) scaleY(1);
}
.header .sub-nav p {
	width: 100%;
	background: #fff;
	overflow: hidden;
	border-radius: 0px 0px 5px 5px;
	padding: 10px 0px;
}
.header .sub-nav p em {
	width: 100%;
	display: block;
	height: 36px;
	line-height: 36px;
	text-align: center;
	position: relative;
}
.header .sub-nav p em:before {
	width: 0%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
	background: #1e50ae;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s
}
.header .sub-nav p em:hover:before {
	width: 100%
}
.header .header-ul ul li .sub-nav p em a {
	width: 100%;
	height: 100%;
	display: block;
	font-size: 14px;
	color: #000 !important;
	white-space: pre;
	padding: 0px 20px;
	box-sizing: border-box;
	position: relative;
	z-index: 12
}
.header .header-ul ul li .sub-nav p em:hover a {
	color: #fff !important
}
/*导航下拉 end*/
.header .menu {
	display: none;
}
/**********************导航 end******************/
/**********************首页大图 ******************/
.banner {
	width: 100%;
	height: 500px;
	overflow: hidden;
	position: relative;
}
.banner img {
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
	object-fit: cover;
}
.banner .swiper-slide {
	overflow: hidden;
	position: relative;
}
.banner .swiper-slide a {
	width: 100%;
	height: 100%;
	display: block;
}
.banner .swiper-button-prev,
.banner .swiper-button-next{
	display: block;
}
.banner-ver{
	width: 1200px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 12;
	color: #fff;
}
.banner-ver h3 {
	width: 100%;
	font-size: 52px;
	transform: translateY(60px);
	opacity: 0;
	-webkit-transition: all 0.6s ease 0.5s;
	-moz-transition: all 0.6s ease 0.5s;
	-ms-transition: all 0.6s ease 0.5s;
	-o-transition: all 0.6s ease 0.5s;
	transition: all 0.6s ease 0.5s;
}
.banner-ver p {
	width: 52%;
	font-size: 18px;
	line-height: 32px;
	margin-top: 44px;
	transform: translateY(60px);
	opacity: 0;
	-webkit-transition: all 0.6s ease 0.6s;
	-moz-transition: all 0.6s ease 0.6s;
	-ms-transition: all 0.6s ease 0.6s;
	-o-transition: all 0.6s ease 0.6s;
	transition: all 0.6s ease 0.6s;
}
.banner-more {
	width: 100%;
	margin-top: 42px;
	transform: translateY(60px);
	opacity: 0;
	-webkit-transition: all 0.6s ease 0.7s;
	-moz-transition: all 0.6s ease 0.7s;
	-ms-transition: all 0.6s ease 0.7s;
	-o-transition: all 0.6s ease 0.7s;
	transition: all 0.6s ease 0.7s;
}
.banner-ver em {
	width: 136px;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	display: block;
	border-radius: 20px;
	background: #ff4b40;
	text-align: center;
	font-size: 16px;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	color: #fff;
}
.banner-ver em:hover {
	box-shadow: 0px 0px 12px 5px rgba(255,77,65,0.5);
}
.banner .swiper-pagination {
	bottom: 30px;
}
.banner .swiper-pagination span {
	background: #fff;
	opacity: 1;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.banner .swiper-pagination .swiper-pagination-bullet-active {
	background: #1e50ae;
}
.banner .swiper-slide-active .banner-ver h3,.banner .swiper-slide-active .banner-ver p,.banner .swiper-slide-active .banner-more {
	opacity: 1;
	transform: translateY(0px);
}
.banner .swiper-slide:nth-child(2) .banner-ver h3,.banner .swiper-slide:nth-child(2) .banner-ver p {
	color: #000;
}
/* .banner-wap {
	display: none;
} */
/**********************首页大图 end***************/
/**********************内页大图 ******************/
.page_banner_img{
	position: relative;
}
.page_banner_img img {
	width: 100%;
	display: block;
	overflow: hidden;
}
.page_banner_img .title{
	position: absolute;
	top: 40%;
	left: 0%;
	right: 0;
	transform: translate(0%, -50%);
	z-index: 1;
	margin: 0 auto;
	color: #fff;
}
.page_banner_img .title h1{
	font-size: 40px;
	font-weight: 800;
}
.page_banner_img .title span{
	font-size: 24px;
	font-weight: 300;
	text-transform: uppercase;
}
/**********************内页大图 end***************/
/*查看更多*/
.home_more {
	width: 100%;
	transform: translateY(60px);
	opacity: 1;
}
.home_more span {
	float: left;
	width: 185px;
	height: 47px;
	line-height: 47px;
	border-radius: 4px;
	overflow: hidden;
	border: 2px #1e50ae solid;
	text-align: center;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.home_more span em {
	width: auto;
	height: 100%;
	display: inline-block;
	font-size: 14px;
	color: #1e50ae;
	padding-right: 16px;
	position: relative;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s
}
.home_more span em:before {
	width: 7px;
	height: 100%;
	content: "";
	position: absolute;
	right: 0px;
	top: 0px;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	background: url("../images/icon-13.png") no-repeat center
}
.home_more span em:after {
	width: 7px;
	height: 100%;
	content: "";
	position: absolute;
	right: 0px;
	top: 0px;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	background: url("../images/icon-13-1.png") no-repeat center;
	opacity: 0
}
.home_more span:hover {
	background: #1e50ae
}
.home_more span:hover em {
	color: #fff;
	padding-right: 24px;
}
.home_more span:hover em:before {
	opacity: 0;
}
.home_more span:hover em:after {
	opacity: 1;
}
/**********************标题**********************/
.home_tithead {
	width: 1400px;
	margin: 0px auto;
	text-align: center;
	position: relative;
	z-index: 12;
	margin-top: 60px;
}
.home_tithead h3 {
	width: 100%;
	font-size: 40px;
	line-height: 44px;
	color: #1e50ae;
	white-space: pre;
}
.home_tithead p {
	width: 100%;
	font-size: 16px;
	color: #333333;
	line-height: 26px;
	margin-top: 60px
}
/**********************标题 end******************/
/**********************首页产品展示 **************/
.hydl_Content_1{
	overflow: hidden;
	background: #fafafa;
}
.home_Products{
	overflow: hidden;
}
.home_Products .tit p:first-child{
	letter-spacing: 6px; /*字间距*/
}
.home_Products .tit p{
    display: flex;
    justify-content:center; /*水平居中*/
	text-transform: uppercase; /*大写*/
	font-size: 40px;
	color: #333;
}
.home_Products .tit span{
	font-size: 18px;
	color: #1e50ae;
	padding-left: 30px;
	line-height: 58px;
	letter-spacing: 10px; /*字间距*/
}
.home_Products .ProductsList{
	overflow: hidden;
}
.home_Products .ProductsList .List{
	background: #fff;
	margin-left: 78px;
	float: left;
	width: 348px;
}
.home_Products .ProductsList .List:nth-child(3n+1){
	margin-left: 0px;
}
.home_Products .ProductsList .List .img{
	width: 100%;
    position:relative;
    padding-top: 77.333%;
    margin: 0 auto;
    overflow: hidden;
    transition: all 1s;
}
.home_Products .ProductsList .List img{
	position:absolute;
    top: 0;
    left:0%;
    height:100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.48s;
}
.home_Products .ProductsList .List:hover img{
	transform:scale(1.1);
    transition:all 1s;
}
.home_Products .ProductsList .List:hover .tie{
	background: #1e50ae;
}
.home_Products .ProductsList .List:hover .tie p{
	color: #fff;
}
.home_Products .ProductsList .List .tie{
	height: 87px;
	padding: 0 20px;
    display: flex;
    align-items: center;/*垂直居中*/
    justify-content:center;/*水平居中*/
	border: 1px solid #dddddd;
}
.home_Products .ProductsList .List .tie p{
	text-align: center;
	color: #1e50ae;
	font-size: 14px;
	/*段落*/
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.home_Products .home_more a span{
	margin: 0 auto;
    display: block;
    float: none;
}
/**********************首页产品展示 end***********/
/**********************首页关于我们 **************/
.hydl_Content_2{
	background: #fff;
}
.home_About_us{
    display: flex;
    align-items: center;/*垂直居中*/
    justify-content: space-between;/*两端对齐，项目之间的间隔都相等。*/
}
.home_About_us .About_fl{
	position: relative;
	width: 640px;
	height: 476px;
	background:url("../images/home_About_img01.png") no-repeat;
    background-position: top left;
    background-size: 12px 257px;
}
.home_About_us .About_fl .img02{
	position: absolute;
	top: 0;
	right: 0;
	height: 400px;
	width: 550px;
}
.home_About_us .About_fl .img03{
	position: absolute;
	bottom: 0;
	left: 0;
	height: 220px;
	width: 220px;
}
.home_About_us .About_fl .img02 img{
	position:absolute;
    top: 0;
    left:0%;
    height:100%;
    width: 100%;
    object-fit: cover;
}
.home_About_us .About_fl .img03 img{
	position:absolute;
    top: 0;
    left:0%;
    height:100%;
    width: 100%;
    object-fit: cover;
}
.home_About_us .About_fr{
	width: 480px;
	height: 476px;
	padding-left: 80px;
}
.home_About_us .About_fr .tit{
	position: relative;
	font-size: 14px;
	color: #1e50ae;
	padding-bottom: 50px;
	letter-spacing: 5px; /*字间距*/
	text-transform: uppercase; /*大写*/
}
.home_About_us .About_fr .tit::before{
	content: "";
	position: absolute;
	width: 180px;
	height: 1px;
	background: #dddddd;
	bottom: 25px;
    left: -80px;
}
.home_About_us .About_fr h1 span{
	font-size: 18px;
	color: #333;
	letter-spacing: 20px; /*字间距*/
}
.home_About_us .About_fr h1{
	font-size: 36px;
	line-height: 40px;
	color: #333;
	text-transform: uppercase; /*大写*/
}
.home_About_us .About_fr h2{
	font-size: 14px;
	color: #1e50ae;
	margin-top: 50px;
}
.home_About_us .About_fr .brief{
	font-size: 14px;
	line-height: 24px;
	text-align: justify;
	color: #999;
	text-indent: 30px;
	margin-top: 20px;
	/*段落*/
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}
/**********************首页关于我们 end***********/
/**********************首页新闻中心***************/
.hydl_Content_3{
	background: #fff;
	overflow: hidden;
}
.home_New .tit{
	text-align: center;
}
.home_New .tit h1{
	font-size: 48px;
	color: #333;
	text-transform: uppercase; /*大写*/
}
.home_New .tit p{
	font-size: 18px;
	color: #1e50ae;
	letter-spacing: 20px; /*字间距*/
}
.home_New .New_box{
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 45px;
}
.home_New .New_box .list .new_img{
	position: relative;
	float: left;
	width: 200px;
	height: 150px;
    /* padding-top: 30%; */
    margin: 0 auto;
    overflow: hidden;
    transition: all 1s;
}
.home_New .New_box .list .new_img img{
	position:absolute;
    top: 0;
    left: 0%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.48s;
}
.home_New .New_box .list .new_tit{
	width: 355px;
	float: left;
	padding-left: 20px;
}
.home_New .New_box .list .new_tit h1{
	font-size: 18px;
	color: #333;
    /*单行省略号*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home_New .New_box .list .new_tit span{
	line-height: 26px;
}
.home_New .New_box .list .new_tit span,
.home_New .New_box .list .new_tit p{
	font-size: 14px;
	color: #999;
}
.home_New .New_box .list .new_tit p{
	line-height: 22px;
    margin-top: 5px;
	/*段落*/
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.home_New .New_box .list .new_tit a{
	display: block;
	float: right;
	border: 1px solid #1e50ae;
	border-radius: 4px;
	color: #1e50ae;    
	padding: 2px 5px;
    margin-top: 4px;
}
.home_New .New_box .list:hover .new_img img{
	transform:scale(1.1);
    transition:all 1s;
}
.home_New .New_box .list .new_tit a:hover{
	background: #1e50ae;
	color: #fff; 
}
.home_New .New_box .list:hover .new_tit h1{
	color: #1e50ae;
}
/**********************首页新闻中心 end***********/
/**********************底部 *********************/
.hydl_Content_4{
	background: #282828;
	overflow: hidden;
}
.home_footer .home_footer_top{
	height: 60px;
	line-height: 60px;
	border-bottom: 1px solid #5f5f5f;
}
.home_footer .home_footer_top a{
	color: #5f5f5f;
	float: left;
	width: 14.222%;
	text-align: center;
}
.home_footer .home_footer_top a:hover{
	color: #fff;
}
.home_footer .home_footer_bottom{
	height: 200px;
    display: flex;
    align-items: center;/*垂直居中*/
    justify-content: space-between;/*两端对齐，项目之间的间隔都相等。*/
}
.home_footer .home_footer_bottom h1{
	font-size: 36px;
	color: #1e50ae;
}
.home_footer .home_footer_bottom .hotline img{
	float: left;
}
.home_footer .home_footer_bottom .hotline p{
	float: left;
	margin-left: 20px;
}
.home_footer .home_footer_bottom .hotline p span{
	display: block;
}
.home_footer .home_footer_bottom .hotline p span:nth-child(1){
	color: #666;
	font-size: 14px;
}
.home_footer .home_footer_bottom .hotline p span:nth-child(2){
	color: #999;
	font-size: 26px;
}
.home_footer .home_footer_bottom .mailbox::after{
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	background: #5f5f5f;
	top: 0;
	left: 0;
}
.home_footer .home_footer_bottom .mailbox{
	position: relative;
	height: 100%;
}
.home_footer .home_footer_bottom .mailbox li{
	display: block;
	overflow: hidden;
	padding:0 0 20px 40px;
}
.home_footer .home_footer_bottom .mailbox li:first-child{
	/*首个子元素*/
	padding-top: 70px;
}
.home_footer .home_footer_bottom .mailbox li:last-child{
	/*最后一个子元素*/
	padding-bottom: 0px;
}
.home_footer .home_footer_bottom .mailbox img{
	display: block;
	float: left;
	padding-right: 20px;
}
.home_footer .home_footer_bottom .mailbox span{
	color: #666;
	float: left;
}
.home_footer .home_footer_copyright{
	text-align: center;
	height: 40px;
	line-height: 40px;
	background: #1d1d1d;
	font-size: 12px;
	color: #999;
}
/**********************底部 end******************/
/**********************内页 页码 *****************/
.page {
	width: 820px;
	height: 40px;
	margin-top:30px;
	text-align: center;
}
.prev, .next {
	padding: 5px 10px;
	font-size: 14px;
	color: #333;
	margin: 0 4px;
	background-color: #fff;
	border: 1px solid #e7e7e7;
}
.current {
	font-weight: 700;
	padding: 6px 13px;
	margin: 0 4px;
	background-color: #1e50ae;
	color: #fff;
}
.page a {
	padding: 6px 13px;
	margin: 0 4px;
	font-size: 14px;
	color: #333;
	border: 1px #CCC solid;
}
.Page_number{
    display: flex;
    justify-content:center;/*水平居中*/
    text-align: center;
}
.Page_number .current{
    background-color: #1e50ae;
    color: #fff;
    padding: 5px 10px;
    border: 1px solid #d9d9d9;
}
.Page_number .num{
    font-size: 14px;
    color: #333;
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #fff;
    border: 1px solid #d9d9d9;
}
.Page_number .prev{
    padding: 5px 10px;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    color: #000;
}
.Page_number .next{
    padding: 5px 10px;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    color: #000;
}
.Page_number .end{
    font-size: 14px;
    color: #000;
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #fff;
    border: 1px solid #d9d9d9;
}
.Page_number .end:hover{
    background-color: #1e50ae;
    color: #fff;
}
.Page_number .num:hover{
    background-color: #1e50ae;
    color: #fff;
}
.Page_number .prev:hover{
    background-color: #1e50ae;
    color: #fff;
}
.Page_number .next:hover{
    background-color: #1e50ae;
    color: #fff;
}
.Page_number .selected{
    background-color: #1e50ae;
    color: #fff;
}
/**********************内页 页码 end**************/
/**********************右侧悬浮 ******************/
.floatingwindow-right {
	width: auto;
	position: fixed;
	right: 0px;
	bottom: 10%;
	transform: translateY(-50%);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.floatingwindow-right.active {
	opacity: 1;
	visibility: visible;
}
.floatingwindow-back {
	width: 60px;
	height: 60px;
	background: rgba(0,0,0,0.4) url("../images/top-4.png") no-repeat center;
	background-size: 30px 30px;
	cursor: pointer;
}
.floatingwindow-back:hover {
	background: #1e50ae url("../images/top-4.png") no-repeat center;
	background-size: 30px 30px;
}
/**********************右侧悬浮 end***************/
/**********************内页公共 end***************/
.page_inner{
	overflow: hidden;
	background: #f7f7f7;
}
.page_inner .page_acL{
	width: 384px;
	float: left;
}
.page_inner .page_acL .page_Tit{
	text-align: left;
	margin-bottom: 60px;
}
.page_inner .page_acL .page_Tit span {
    font-size: 48px;
    letter-spacing: 2px;
    line-height: 1.4;
    font-weight: 600;
}
.page_inner .page_acL .page_Tit span b {
    color: #1e50ae;
    font-size: 40px;
    line-height: 1.4;
    letter-spacing: 2px;
    font-weight: 600;
}
.page_inner .page_acL .page_Tit p{
	color: #cbcbcb;
	font-size: 24px;
	line-height: 1;
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 5px;
}
.page_inner .page_acL .memberNav{
	width: 300px;
	background: #fff;
}
.page_inner .page_acL .memberNav li{
	font-size: 16px;
    position: relative;
    z-index: 1;
}
.page_inner .page_acL .memberNav li .aNow{
	/*选中*/
	position: relative;
	background: #1e50ae;
	color: #fff;
}
.page_inner .page_acL .memberNav li .aNow::after{
	content: "";
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
	height: 10px;
	background: url("../images/icon-13-1.png") no-repeat;
	background-size: 7px 10px;
}
.page_inner .page_acL .memberNav li a:hover{
    background: #1e50ae;
    color: #fff;
}
.page_inner .page_acL .memberNav li a:hover::after{
	content: "";
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
	height: 10px;
	background: url("../images/icon-13-1.png") no-repeat;
	background-size: 7px 10px;
}
.page_inner .page_acL .memberNav li a {
    display: block;
    border: #eee solid 1px;
    border-bottom: none;
    position: relative;
    padding-left: 25px;    
	padding-right: 40px;
    height: 60px;
    line-height: 60px;
    overflow: hidden;
    color: #333;
	/*段落限制1行*/
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.page_inner .page_acL .memberNav li a::after{
	content: "";
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
	height: 10px;
	background: url("../images/icon-13.png") no-repeat;
	background-size: 7px 10px;
}
.page_inner .page_acL .memberNav dl {
    padding: 32px 0;
    border: #eee solid 1px;
    border-bottom: none;
}
.page_inner .page_acL .memberNav dd a {
    display: inline-block;
    border: none;
    background: #fff;
    color: #999;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    position: relative;
    padding: 0 25px;
}
.page_inner .page_acL .memberNav dd a::after{
	content: "";
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 2px;   
	background: #1e50ae;
	background-image: none;
	opacity: 0;
}
.page_inner .page_acL .memberNav dd .on::after{
	/*选中*/
	opacity: 1;
}
.page_inner .page_acL .memberNav dd a:hover::after{
	content: "";
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 2px;   
	background: #1e50ae;
	background-image: none;
	opacity: 1;
}
.page_inner .page_acL .memberNav dd a:hover,
.page_inner .page_acL .memberNav dd a.on {
    color: #1e50ae;
	background-image: none;
	background: none;
    border: none;
}
.page_inner .page_acR{
	width: 816px;
	float: right;
	min-height: 700px;
	background: #fff;
	padding-bottom: 30px;
}
.page_inner .page_acR .pageNow{
	height: 60px;
	text-align: left;
	font-size: 16px;
	color: #999;
	border-bottom: 1px solid #ededed;
    display: flex;
    align-items: center;/*垂直居中*/
    justify-content:flex-start;/*左对齐*/ 
    padding: 0 0 0 30px;
}
.page_inner .page_acR .pageNow img{
	display: block;
	padding-right: 15px;
}
.page_inner .page_acR .pageNow a{
	color: #999;
}
.page_inner .page_acR .pageNow a:hover{
	color: #1e50ae;
}
/**********************内页公共 end***************/
/**********************内页新闻 ******************/
.page_new{
	overflow: hidden;
	padding-bottom: 20px;
}
.page_new .list{
	overflow: hidden;
	padding: 30px 30px 0px 30px;
}
.page_new .list .img_fl{
	position: relative;
	float: left;
	width: 26.457%;
	padding-top: 19.844%;
    margin: 0 auto;
    overflow: hidden;
    transition: all 1s;
}
.page_new .list .img_fl img{
	position:absolute;
    top: 0;
    left: 0%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.48s;
}
.page_new .list .tit_fr{
    float: left;
	width: 71%;
    padding-left: 2%;
}
.page_new .list .tit_fr h1{
	font-size: 18px;
	color: #333;
    /*单行省略号*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.page_new .list .tit_fr span{
	line-height: 26px;
}
.page_new .list .tit_fr span,
.page_new .list .tit_fr p{
	font-size: 14px;
	color: #999;
}
.page_new .list .tit_fr p{
	line-height: 22px;
    margin-top: 5px;
	/*段落*/
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.page_new .list .tit_fr a{
	display: block;
	float: right;
	border: 1px solid #1e50ae;
	border-radius: 4px;
	color: #1e50ae;    
	padding: 2px 5px;
    margin-top: 4px;
}
.page_new .list:hover .img_fl img{
	transform:scale(1.1);
    transition:all 1s;
}
.page_new .list .tit_fr a:hover{
	background: #1e50ae;
	color: #fff; 
}
.page_new .list:hover .tit_fr h1{
	color: #1e50ae;
}
/**********************内页新闻 end***************/
/**********************内页新闻详情 **************/
.page_new_detail{
	padding: 0 40px;
}
.page_new_detail h1{
    width: 100%;
    overflow: hidden;
    font-size: 32px;
    color: #333;
	margin-top: 40px;
}
.page_new_detail .detail_1{
	width: 100%;
    overflow: hidden;
    font-size: 14px;
    color: #999;
    padding-bottom: 44px;
    border-bottom: 1px #ededed solid;
    margin-top: 10px;
}
.page_new_detail .detail_1 span {
    float: left;
    width: auto;
    margin-right: 16px;
    margin-top: 7px;
    height: 36px;
    line-height: 38px;
	padding-left: 20px;
}
.page_new_detail .detail_1 span:nth-child(1){
    background: url(../images/rr_year.png) left center no-repeat;
}
.page_new_detail .detail_1 span:nth-child(2){
    background: url(../images/rr_browse.png) left center no-repeat;
}
.page_new_detail .detail_body {
    width: 100%;
    overflow: hidden;
    padding: 40px 0px 60px;
    font-size: 16px;
    color: #333;
    line-height: 30px;
    /*text-indent: 2em;*/
    border-bottom: 1px #ededed solid;
	min-height: 366px;
}
.page_new_detail .detail_body span,
.page_new_detail .detail_body p{
    /* font-size: 16px !important; */
}
.page_new_detail .detail_body img{
	/* min-width: 500px !important;
	margin: 0 auto;
	display: block; */
}
.page_new_detail .detail_page {
    width: 100%;
    overflow: hidden;
    margin-top: 24px;
}
.page_new_detail .detail_page span a{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
.page_new_detail .detail_page span {
    float: left;
    width: 100%;
    overflow: hidden;
    line-height: 30px;
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}
.page_new_detail .detail_page span a {
    color: #333;
}
.page_new_detail .detail_page span a:hover{
    color: #1e50ae;
}
/**********************内页新闻详情 end***********/
/**********************内页产品展示 **************/
.page_product{
	overflow: hidden;
	padding: 30px 30px 0 30px;
}
.page_product .list{
	background: #fff;
	float: left;
	margin-left: 20px;
	margin-bottom: 20px;
    width: 31.555%;
}
.page_product .list:nth-child(3n+1){
	margin-left: 0px;
}
.page_product .list .img{
	width: 100%;
    position:relative;
    padding-top: 77.333%;
    margin: 0 auto;
    overflow: hidden;
    transition: all 1s;
}
.page_product .certificate{
	border: 1px solid #ededed;
}
.page_product .certificate img{
    object-fit: scale-down !important;   
}
.page_product .list img{
	position:absolute;
    top: 0;
    left:0%;
    height:100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.48s;
}
.page_product .list:hover img{
	transform:scale(1.1);
    transition:all 1s;
}
.page_product .list:hover .title{
	background: #1e50ae;
	color: #fff;
}
.page_product .list:hover .title p{
	color: #fff;
}
.page_product .list .title{
	padding: 15px;
	height: 20px;
}
.page_product .list .title p{
	text-align: center;
	font-size: 14px;
	color: #333;
	overflow: hidden;
	/*段落*/
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
/**********************内页产品展示 end***********/




















































































































































.swiper {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}
.swiper-vertical>.swiper-wrapper {
	flex-direction: column;
}
.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}
.swiper-android .swiper-slide,.swiper-wrapper {
	transform: translate3d(0px, 0, 0);
}
.swiper-pointer-events {
	touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
	touch-action: pan-x;
}
.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
}
.swiper-slide-invisible-blank {
	visibility: hidden;
}
.swiper-autoheight,.swiper-autoheight .swiper-slide {
	height: auto;
}
.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform,height;
}
.swiper-backface-hidden .swiper-slide {
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper {
	perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper {
	transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
	background: rgba(0,0,0,0.15);
}
.swiper-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(to left, rgba(0,0,0,0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(to right, rgba(0,0,0,0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}
.swiper-css-mode>.swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
	display: none;
}
.swiper-css-mode>.swiper-wrapper>.swiper-slide {
	scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
	scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode>.swiper-wrapper {
	scroll-snap-type: y mandatory;
}
.swiper-centered>.swiper-wrapper::before {
	content: '';
	flex-shrink: 0;
	order: 9999;
}
.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
	margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
	height: 100%;
	min-height: 1px;
	width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
	margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical>.swiper-wrapper::before {
	width: 100%;
	min-width: 1px;
	height: var(--swiper-centered-offset-after);
}
.swiper-centered>.swiper-wrapper>.swiper-slide {
	scroll-snap-align: center center;
}
.swiper-virtual .swiper-slide {
	-webkit-backface-visibility: hidden;
	transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
	height: 1px;
	width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
	width: 1px;
	height: var(--swiper-virtual-size);
}
:root {
	--swiper-navigation-size: 44px;
}
.swiper-button-next,.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: calc(var(--swiper-navigation-size)/ 44 * 27);
	height: var(--swiper-navigation-size);
	margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
	opacity: .35;
	cursor: auto;
	pointer-events: none;
}
.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden {
	opacity: 0;
	cursor: auto;
	pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev {
	display: none !important;
}
.swiper-button-next:after,.swiper-button-prev:after {
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	text-transform: none !important;
	letter-spacing: 0;
	font-variant: initial;
	line-height: 1;
}
.swiper-button-prev,.swiper-rtl .swiper-button-next {
	left: 10px;
	right: auto;
}
.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after {
	content: 'prev'
}
.swiper-button-next,.swiper-rtl .swiper-button-prev {
	right: 10px;
	left: auto;
}
.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after {
	content: 'next'
}
.swiper-button-lock {
	display: none
}
.swiper-pagination {
	position: absolute;
	text-align: center;
	transition: .3s opacity;
	transform: translate3d(0, 0, 0);
	z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
	opacity: 0
}
.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled {
	display: none !important
}
.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction {
	/* bottom: 10px; */
	left: 0;
	width: 100%;
}
.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(0.33);
	position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale(0.33);
}
.swiper-pagination-bullet {
	width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
	height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
	display: inline-block;
	border-radius: 50%;
	background: var(--swiper-pagination-bullet-inactive-color, #000);
	opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}
.swiper-pagination-bullet:only-child {
	display: none !important;
}
.swiper-pagination-bullet-active {
	opacity: var(--swiper-pagination-bullet-opacity, 1);
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	transform: translate3d(0px, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
	display: block;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	transition: .2s transform,.2s top;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap
}
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: .2s transform,.2s left
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: .2s transform,.2s right
}

.swiper-pagination-progressbar {
	background: rgba(0,0,0,0.25);
	position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0
}

.swiper-pagination-lock {
	display: none
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0,0,0,0.1)
}

.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled {
	display: none !important
}

.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%
}

.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0,0,0,0.5);
	border-radius: 10px;
	left: 0;
	top: 0
}

.swiper-scrollbar-cursor-drag {
	cursor: move
}

.swiper-scrollbar-lock {
	display: none
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center
}

.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain
}

.swiper-slide-zoomed {
	cursor: move
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	transform-origin: 50%;
	box-sizing: border-box;
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top-color: transparent
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
	animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
	0% {
		transform: rotate(0deg)
	}

	100% {
		transform: rotate(360deg)
	}
}

.swiper .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000
}

.swiper-free-mode>.swiper-wrapper {
	transition-timing-function: ease-out;
	margin: 0 auto
}

.swiper-grid>.swiper-wrapper {
	flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
	transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
	pointer-events: none;
	transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-cube {
	overflow: visible
}

.swiper-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	transform-origin: 0 0;
	width: 100%;
	height: 100%
}

.swiper-cube .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
	transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev {
	pointer-events: auto;
	visibility: visible
}

.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 100%;
	opacity: .6;
	z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
	content: '';
	background: #000;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	filter: blur(50px)
}

.swiper-flip {
	overflow: visible
}

.swiper-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-creative .swiper-slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
	transition-property: transform,opacity,height
}
.swiper-cards {
	overflow: visible
}
.swiper-cards .swiper-slide {
	transform-origin: center bottom;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden
}
.swiper {
	height: 100%
}
.swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	height: auto
}

.swiper-button-prev,.swiper-button-next {
	background: none
}

.swiper-button-prev::after,.swiper-button-next::after {
	content: ""
}

.swiper-button-prev:focus,.swiper-button-next:focus,.swiper-pagination-bullet:focus {
	outline: none
}

.swiper-button-prev {
	left: 0px;
	opacity: 1
}

.swiper-button-next {
	right: 0px;
	opacity: 1
}

.move1,.move2,.move3,.move4,.move5 {
	opacity: 0;
	transition: all 0.8s ease 0.3s
}

.move1 {
	transform: translateY(70px)
}

.move2 {
	transform: translateY(-70px)
}

.move3 {
	transform: translateX(70px)
}

.move4 {
	transform: translateX(-70px)
}

.move5 {
	transform: translateY(70px)
}

.move1.move-run,.move2.move-run {
	transform: translateY(0px);
	opacity: 1
}

.move3.move-run,.move4.move-run {
	transform: translateY(0px);
	opacity: 1
}

.move5.move-run {
	transform: translateY(0px);
	opacity: 1
}

.video-prop {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 1000;
	background: rgba(0,0,0,0.6);
	text-align: center;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease
}

.video-prop:before {
	height: 100%;
	content: "";
	display: inline-block;
	vertical-align: middle
}

.video-center {
	width: 65%;
	vertical-align: middle;
	display: inline-block;
	position: relative
}

.video-center video {
	width: 100%;
	height: auto;
	display: block;
}

.video-close {
	width: 36px;
	height: 36px;
	overflow: hidden;
	position: absolute;
	right: -18px;
	top: -18px;
	z-index: 12;
	border-radius: 50%;
	background: #fafafa;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease
}

.video-close:before {
	width: 60%;
	height: 2px;
	content: "";
	position: absolute;
	left: 20%;
	top: calc(50% - 1px);
	background: #333;
	transform: rotate(45deg)
}

.video-close:after {
	width: 60%;
	height: 2px;
	content: "";
	position: absolute;
	left: 20%;
	top: calc(50% - 1px);
	background: #333;
	transform: rotate(-45deg)
}

.video-close:hover {
	transform: rotate(180deg)
}

.video-active {
	opacity: 1;
	visibility: visible
}

@media screen and (max-width: 768px) {
	.video-center {
		width: 90%
	}

	.video-close {
		width: 32px;
		height: 32px;
		right: -16px;
		top: -16px
	}
}

@keyframes show {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes suofang {
	0% {
		transform: scale(1)
	}

	100% {
		transform: scale(1.3)
	}
}

@keyframes trans {
	0% {
		opacity: 0;
		transform: translateY(60px)
	}

	100% {
		opacity: 1;
		transform: translateY(0px)
	}
}

@keyframes move {
	0% {
		transform: translateY(-10px)
	}

	100% {
		transform: translateY(10px)
	}
}