@charset "UTF-8";

/*  */
:root {
	--theme-default: #2263AF;
	--theme-green: #60AD31;
}

/* scrollbar */
::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-track {
	background: #f5f5f5;

}

::-webkit-scrollbar-thumb {
	background: var(--theme-default);
}

::-webkit-scrollbar-thumb:active {
	background: #666;
}

/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
/* @font-face {
	font-family: "Montserrat";
	src: url("../../fonts/Montserrat-Medium.otf") format('opentype');
	font-display: swap;
	-webkit-text-size-adjust: 100%;
} */



.container {
	margin: 0 auto;
	width: 100%;
	max-width: 1480px;
	padding-left: 15px;
	padding-right: 15px;
}

.padding {
	padding-top: 120px;
	padding-bottom: 120px;
}

@media (max-width:1600px) {
	.padding {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

@media (max-width:1440px) {
	.padding {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}

@media (max-width:1200px) {
	.padding {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}


@media (max-width:768px) {
	.padding {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}


.pt-100 {
	padding-top: 100px;
}

.pb-100 {
	padding-bottom: 100px;
}

@media (max-width:1440px) {
	.pt-100 {
		padding-top: 80px;
	}

	.pb-100 {
		padding-bottom: 80px;
	}
}

@media (max-width:1200px) {
	.pt-100 {
		padding-top: 80px;
	}

	.pb-100 {
		padding-bottom: 60px;
	}

}

@media (max-width:768px) {
	.pt-100 {
		padding-top: 50px;
	}

	.pb-100 {
		padding-bottom: 50px;
	}
}



@media (max-width:768px) {
	.pb-100 {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}


/*  */

.more {
	font-size: 0;
}

.more a {
	position: relative;
	z-index: 1;
	display: inline-block;
	font-size: 16px;
	padding: 0 50px 0 25px;
	border-radius: 0 12px;
	line-height: 48px;
	border: 1px solid var(--theme-default);
	color: var(--theme-default);
	transition: .3s;
}

.more a i {
	position: absolute;
	top: 50%;
	right: 25px;
	font-size: 24px;
	transform: translateY(-50%);
	transition: .3s;
}

/*  */
.more.white a {
	border: 1px solid #fff;
	color: #fff;
}

/*  */
.more a:hover {
	background-color: var(--theme-default);
	border-color: var(--theme-default);
	color: #fff;
}

.more a:hover i {
	color: #fff;
	transform: translate(10px, -50%);
	transition: .3;
}

@media (max-width:640px) {

	.more a {
		font-size: 14px;
		padding: 0 30px 0 15px;
		line-height: 40px;
	}

	.more a i {
		right: 8px;
		font-size: 20px;
	}


}







/*  */

@font-face {
	font-family: "Montserrat";
	src: url("../../fonts/Montserrat-Medium.otf") format('opentype');
	font-display: swap;
	-webkit-text-size-adjust: 100%;
}


body {
	font-size: 16px;
	font-family: Montserrat, "Open Sans", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;
	line-height: 1.6;
	color: #292929;
}

/* pages-title */
.pages-title {
	padding-bottom: 50px;
}

.pages-title h3 {
	position: relative;
	z-index: 1;
	padding-left: 28px;
	font-size: 48px;
	line-height: 1;
}

.pages-title h3::before,
.pages-title h3::after {
	position: absolute;
	top: 5px;
	left: 0;
	content: '';
	width: 10px;
	height: 10px;
}

.pages-title h3::before {
	background-color: var(--theme-default);
}

.pages-title h3::after {
	top: 15px;
	background-color: var(--theme-green);
}

.pages-title a {
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #D61718;
}

.pages-title a i {
	margin-left: 5px;
	display: inline-block;
	width: 8px;
	height: 8px;
	border-top: 1px solid #D61718;
	border-right: 1px solid #D61718;
	transform: rotate(45deg);
}

.pages-title.center {
	text-align: center;
}

.pages-title.center h3 {
	display: inline-block;
}

.pages-title.white h3 {
	color: #fff;
}

@media (max-width:1600px) {
	.pages-title h3 {
		font-size: 40px;
	}
}

@media (max-width:1440px) {
	.pages-title h3 {
		font-size: 32px;
	}
}

@media (max-width:1200px) {
	.pages-title h3 {
		font-size: 24px;
		padding-left: 20px;
	}

	.pages-title h3::before {
		top: 2px;
	}

	.pages-title h3::after {
		top: 12px;
	}
}