@charset "utf-8";
/* reset */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	font-size: 12px;
	font-family: Arial, 微软雅黑;
	color: #333;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
	font-weight: normal;
}

em,
i {
	font-style: normal;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	color: inherit;
}

a:focus {
	text-decoration: none;
	outline: none;
}

img {
	border: none;
	max-width: 100%;
	max-height: 100%;
}




/* 内容浮动清除 */
.clearfix {*zoom: 1;}
.clearfix:before,.clearfix:after {content:'';display: block;height: 0;clear: both;visibility: hidden;}




/* 图片盒子缩放居中 */
.img_box {
	font-size: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.img_box img {
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.img_box:hover img {
	transform: scale(1.2);
	-ms-transform: scale(1.2);
	-webkit-transform: scale(1.2);
}

.img_box2 {
	font-size: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}




/* 图片盒子适应填充 */
.img-cover {
	font-size: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.img-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.img-cover:hover img {
	transform: scale(1.1);
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
}

.img-cover2 {
	font-size: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.img-cover2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}




/* 响应式内容区 */
.main{max-width:1600px; margin: 0 auto;}
@media (max-width:1600px){
	.main{padding-left:15px;padding-right:15px;box-sizing: border-box;}
}




/**
 * 响应式样式
 * 只保留隐藏样式
 */
/*当页面大于1200px时，大屏幕主要是PC端*/
@media (min-width:1200px){
	.hidden-lg{
		display: none!important;
	}
}

/*在992和1199像素之间的屏幕里，中等屏幕，分辨率低的PC*/
@media (min-width:992px) and (max-width:1199px){
	.hidden-md{
		display: none!important;
	}
}

/*在768和991像素之间的屏幕里，小屏幕，主要是PAD*/
@media (min-width:768px) and (max-width:991px){
	.hidden-sm{
		display: none!important;
	}
}

/*在小于767像素的屏幕，微小屏幕，更低分辨率的手机*/
@media (max-width: 767px){
	.hidden-xs{
		display: none!important;
	}
}




@font-face {
	font-family: sy-b;
	src: url(../fonts/SourceHanSansCN-Bold.otf);
}




.banner,
.inc-banner {
	font-size: 0;
}

.banner img,
.inc-banner img {
	width: 100%;
}




.swiper-pagination-bullet,
.swiper-button-prev,
.swiper-button-next {
	opacity: 1 !important;
	border: none;
	outline: none;
}

.swiper .swiper-pagination {
	font-size: 0;
	bottom: 0;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-button-prev::after,
.swiper-button-next::after {
	background-size: contain;
	background-repeat: no-repeat;
}

.swiper-button-prev,
.swiper-button-next
{
	margin-top: 0;
}

.swiper-button-prev {
	left: 0;
	background-position: left center;
}

.swiper-button-next {
	right: 0;
	background-position: right center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	content: '';
	position: absolute;
	background-position: center;
}




.font-omit1,
.font-omit2,
.font-omit3 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.font-omit1 {
	line-clamp: 1;
	-webkit-line-clamp: 1;
}

.font-omit2 {
	line-clamp: 2;
	-webkit-line-clamp: 2;
}

.font-omit3 {
	line-clamp: 3;
	-webkit-line-clamp: 3;
}




.pb-menu {
	border-bottom: 1px solid #dcdcdc;
	background-color: #fff;
}

.pb-menu li {
	color: #333;
	font-size: 18px;
	line-height: 80px;
	height: 80px;
	float: left;
	position: relative;
}

.pb-menu li:not(:last-child) {
	margin-right: 20px;
}

.pb-menu li::after {
	content: '';
	width: 0;
	height: 4px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	transition: all ease-in-out .6s;
	background-color: #291770;
}

.pb-menu li.on::after,
.pb-menu li:hover::after {
	width: 100%;
}

.pb-menu li a {
	width: 100%;
	height: 100%;
	padding: 0 25px;
	display: inline-block;
}




.listbox .list a {
	width: 100%;
	height: 100%;
	display: inline-block;
}




.page-con {
	font-size: 0;
	padding: 40px 0;
}

.page-con .strip {
	color: #666;
	font-size: 15px;
	margin-right: 14px;
}

.page .pagination {
	display: inline-block;
}

.page .pagination li {
	text-align: center;
	float: left;
	width: 36px;
	height: 36px;
	line-height: 36px;
	font-size: 15px;
	color: #666;
	margin: 0 4px;
	border-radius: 4px;
	background: #ededed;
}

.page .pagination li.prev,
.page .pagination li.next 
{
	position: relative;
}

.page .pagination li.prev::after,
.page .pagination li.next::after 
{
	content: '';
	width: 7px;
	height: 12px;
}

.page .pagination li.prev::after {
	background-image: url(../images/page-p.png);
}

.page .pagination li.next::after {
	background-image: url(../images/page-n.png);
}

.page .pagination li.prev:hover::after,
.page .pagination li.next:hover::after
{
	-webkit-filter: grayscale(100%) brightness(500%);
	filter: grayscale(100%) brightness(500%);
}

.page .pagination li span,
.page .pagination li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 3px;
}

.page .pagination li.active,
.page .pagination li:hover {
	color: #fff;
	background-color: var(--theme-color);
}




@media(max-width:1200px) {
	.page-con .strip {
		font-size: 14px;
		margin-right: 10px;
	}

	.page .pagination li {
		font-size: 14px;
		line-height: 34px;
		width: 34px;
		height: 34px;
	}
}

@media(max-width: 768px) {
	.page-con .strip {
		/* font-size: 12px;
		margin-right: 8px; */
		display: none;
	}

	.page .pagination li {
		font-size: 12px;
		line-height: 30px;
		width: 30px;
		height: 30px;
		margin: 0 3px;
	}

	.page .pagination li.prev::after,
	.page .pagination li.next::after 
	{
		height: 10px;
	}
}

/* @media(max-width: 480px) {
	.page .pagination li {
		line-height: 28px;
		width: 28px;
		height: 28px;
		margin: 0 2px;
	}
}

@media(max-width: 380px) {
	.page .pagination li {
		line-height: 24px;
		width: 24px;
		height: 24px;
	}
} */




.breadcrumbs {
	position: relative;
	z-index: 99;
}

.breadcrumbs .container {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 35px;
}

.breadcrumbs .item {
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
}

.breadcrumbs li {
	color: #fff;
	font-size: 15px;
	position: relative;
	transition: all .3s;
}

.breadcrumbs li:not(:last-child) {
	margin-right: 24px;
}

.breadcrumbs li:not(:last-child)::after {
	content: '/';
	width: 4px;
	position: absolute;
	top: 50%;
	transform: translate(0 , -50%);
	left: auto;
	right: -14px;
}

.breadcrumbs li a:hover {
	font-weight: bold;
}




@media(max-width:1600px) {
	.breadcrumbs .container {
		padding: 0 15px;
	}
}

@media(max-width:1400px) {
	.breadcrumbs .container {
		bottom: 30px;
	}

	.breadcrumbs li {
		font-size: 14px;
	}

	.breadcrumbs li:not(:last-child) {
		margin-right: 20px;
	} 

	.breadcrumbs li:not(:last-child)::after {
		right: -12px;
	}
}

@media(max-width:1200px) {
	.breadcrumbs li:not(:last-child) {
		margin-right: 16px;
	} 

	.breadcrumbs li:not(:last-child)::after {
		right: -10px;
	}
}

@media(max-width:768px) {
	.breadcrumbs {
		display: none;
	}
	.breadcrumbs .container {
		bottom: 20px;
	}
}




.grid2,
.grid3,
.grid4 {
	display: grid;
}

.grid2 {
	grid-template-columns: 1fr;
}

.grid3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid4 {
	grid-template-columns: repeat(4, 1fr);
}




.flex,
.flex-center,
.flex-between {
	display: flex;
}

.flex-center {
	align-items: center;
	justify-content: center;
}

.flex-between {
	justify-content: space-between;
}




input,
select,
textarea,
button {
	border: none;
	outline: none;
	display: block;
	border-radius: 0;
}

textarea {
	font-family: 'Arial';
	resize: none;
	overflow: hidden;
}

button {
	cursor: pointer;
}




.form .code {
	cursor: pointer;
}

.form .code img {
	width: 100%;
	height: 100%;
}




.around-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	
}

.around-btn .swiper-button-prev,
.around-btn .swiper-button-next,
.around-btn .swiper-pagination 
{
	position: static;
}

.around-btn .swiper-button-prev,
.around-btn .swiper-button-next 
{
	width: 50px;
	height: 50px;
	margin-top: 0;
	position: relative;
	border-radius: 50%;
	/* box-shadow: 0px 0px 10px #f3f6f9; */
	box-shadow: 0px 0px 10px #eee;
	background: #fff;
}

.around-btn .swiper-button-prev {
	margin-right: 35px;
}

.around-btn .swiper-button-prev::after,
.around-btn .swiper-button-next::after
{
	content: '';
	width: 11px;
	height: 17px;
}

.around-btn .swiper-button-prev::after {
	background-image: url(../images/pp.png);
}

.around-btn .swiper-button-next::after {
	background-image: url(../images/pn.png); 
}

.around-btn .swiper-button-prev:hover::after {
	background-image: url(../images/pp2.png);
}

.around-btn .swiper-button-next:hover::after {
	background-image: url(../images/pn2.png); 
}

.around-btn .swiper-pagination {
	font-size: 0;
	width: auto;
	margin: 0 35px;
}

.around-btn .swiper-pagination-bullet {
	width: 13px;
	height: 13px;
	margin: 0 9px !important;
	border: 2px solid #c1c1c1;
	background: #c1c1c1;
}

.around-btn .swiper-pagination-bullet-active {
	border: 2px solid #a5a5a5;
	background: #fff;
}




@media(max-width:1400px) {
	.around-btn .swiper-button-prev {
		margin-right: 25px;
	}
}

@media(max-width:1200px) {
	.around-btn .swiper-button-prev,
	.around-btn .swiper-button-next
	{
		width: 48px;
		height: 48px;
	}

	.around-btn .swiper-button-prev {
		margin-right: 20px;
	}

	.around-btn .swiper-button-prev::after,
	.around-btn .swiper-button-next::after
	{
		width: 10px;
		height: 16px;
	}
}

@media(max-width:768px) {
	.around-btn .swiper-button-prev,
	.around-btn .swiper-button-next
	{
		width: 38px;
		height: 38px;
	}

	.around-btn .swiper-button-prev {
		margin-right: 10px;
	}

	.around-btn .swiper-button-prev::after,
	.around-btn .swiper-button-next::after
	{
		width: 8px;
		height: 13px;
	}
}

@media(max-width:430px) {
	.around-btn .swiper-button-prev,
	.around-btn .swiper-button-next
	{
		width: 35px;
		height: 35px;
	}
}




.icon,
.bgCover {
	background-repeat: no-repeat;
	background-position: center;
}

.icon {
	display: block;
	background-size: contain;
}

.bgCover {
	background-size: cover;
}




*::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}




:root {
    --theme-color:#0082eb;
	--theme-touch-color:#048fff;
}




.theme-title {
	color: #222;
	font-size: 36px;
	font-weight: bold;
}




@media(max-width:1400px) {
	.theme-title {
		font-size: 32px!important;
	}
}

@media(max-width:1200px) {
	.theme-title {
		font-size: 27px!important;
	}
}

@media(max-width:768px) {
	.theme-title {
		font-size: 22px!important;
	}
}

@media(max-width:430px) {
	.theme-title {
		font-size: 20px!important;
	}
}




.theme-text {
	color: #666;
	font-size: 16px;
	line-height: 34px;
}




@media (max-width:1400px) {
	.theme-text {
		font-size: 15px;
		line-height: 30px;
	}
}

@media (max-width:1200px) {
	.theme-text {
		font-size: 14px;
		line-height: 28px;
	}
}

@media (max-width:768px) {
	.theme-text {
		font-size: 13px;
		line-height: 26px;
	}
}

@media (max-width:430px) {
	.theme-text {
		/* font-size: 12px; */
		line-height: 24px;
	}
}




.sy-b {
	font-family: sy-b;
}




.i-title {
	color: #333;
}




.i-infor {
	color: #cbcbcb;
	font-size: 36px;
	font-weight: bold;
	line-height: 66px;
}

.i-infor span {
	color: var(--theme-color);
}




@media(max-width:1400px) {
	.i-infor {
		font-size: 32px;
		line-height: 58px;
	}
}

@media(max-width:1200px) {
	.i-infor {
		font-size: 27px;
		line-height: 48px;
	}
}

@media(max-width:768px) {
	.i-infor {
		font-size: 22px;
		line-height: 38px;
	}
}

@media(max-width:430px) {
	.i-infor {
		font-size: 17px;
		line-height: 28px;
	}
}




.i-more {
	color: #666;
	font-size: 16px;
	line-height: 48px;
	height: 48px;
	display: inline-block;
	padding: 0 35px;
	transition: all ease-in-out .3s;
	border-radius: 50px;
	border: 1px solid #d2d2d2;
}

.i-more:hover {
	color: #fff;
	border: 1px solid var(--theme-color);
	background: var(--theme-color);
}




@media(max-width:1200px) {
	.i-more {
		font-size: 14px;
		line-height: 42px;
		height: 42px;
		padding: 0 22px;
	}
}

@media(max-width:768px) {
	.i-more {
		font-size: 13px;
		line-height: 40px;
		height: 40px;
	}
}

@media(max-width:430px) {
	.i-more {
		font-size: 12px;
		line-height: 35px;
		height:35px;
		padding: 0 25px;
	}
}