:root {
	--blue: #0071EF;
	--black: #1D2129;
	--gray: #6B7785;
	--lightGray: #86909C;
	--grayWhite: #F7F8FA;
	--borderColor: #e5e6eb;
}

html,
body {
	height: 100%;
	font-family: Helvetica Neue, Helvetica, Arial, Microsoft Yahei, Hiragino Sans GB, Heiti SC, WenQuanYi Micro Hei, sans-serif;
	-webkit-tap-highlight-color: transparent;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	color: var(--gray);
	font-size: 18px;
	line-height: 1.4;
	background-color: white;
}

/* 重置各标签的默认样式 */
a,
body,
center,
cite,
code,
dd,
del,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hr,
html,
img,
input,
label,
legend,
li,
mark,
ol,
p,
section,
span,
textarea,
time,
td,
th,
ul {
	margin: 0;
	border: 0;
	padding: 0;
	font-style: normal;
	box-sizing: border-box;
	/*  自动换行 */
	word-wrap: break-word;
	/*  强制英文单词断行 */
	word-break: break-all;
}

h1 {
	font-size: 58px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 28px;
}

h4 {
	font-size: 22px;
}

h5 {
	font-size: 18px;
}

/*  设置标签为块级分类 */
article,
aside,
details,
fieldset,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

/* 去除input标签的默认样式 */
button,
input,
textarea {
	-webkit-appearance: none;
	font-family: Helvetica Neue, Helvetica, Arial, Microsoft Yahei, Hiragino Sans GB, Heiti SC, WenQuanYi Micro Hei, sans-serif;
	border: 0;
	margin: 0;
	padding: 0;
	font-size: 1em;
	line-height: 1em;
	outline: none;
	background-color: transparent;
}

/*  禁止多文本框手动拖动大小 */
textarea {
	resize: none;
	-webkit-appearance: none;
}

/* 去掉按下的阴影盒子 */
input,
textarea,
a {
	-webkit-tap-highlight-color: transparent;
}

/*  清除a标签下划线 */
a,
a:visited {
	text-decoration: none;
}

a:focus,
a:active,
a:hover {
	outline: none;
}

/*  清除列表前面的点 */
ol,
li,
ul {
	list-style: none;
}

/*  清除IE下图片的边框 */
img {
	max-width: 100%;
	border-style: none;
	font-size: 0;
	display: block;
}

/*  解决chrome浏览器默认黄色背景问题 */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #fff inset;
}

/*  设置默认滚动条样式 */
::-webkit-input-placeholder {
	color: #afbdcc;
}

:-moz-placeholder {
	color: #afbdcc;
}

::-moz-placeholder {
	color: #afbdcc;
}

:-ms-input-placeholder {
	color: #afbdcc;
}

::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-track {
	background-color: #f5f5f5;
}

::-webkit-scrollbar-track-piece {
	background-color: #f5f5f5;
	border-radius: 6px;
}

::-webkit-scrollbar-thumb {
	background-color: #cccccc;
	border-radius: 6px;
}

::-webkit-scrollbar-corner {
	background-color: #f5f5f5;
}

::-webkit-resizer {
	background-repeat: no-repeat;
	background-position: bottom right;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.clearfix:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	*zoom: 1;
}

.container,
.container-fluid {
	width: 100%;
	margin-left: auto;
	margin-right: auto
}

.container {
	max-width: 1200px;
}

.display-block {
	display: block;
}

.display-flex {
	display: flex;
}

.flex-1 {
	flex: 1;
}

.flex-direction-column {
	flex-direction: column;
}

.flex-wrap-wrap {
	flex-wrap: wrap;
}

.align-items-start {
	align-items: flex-start;
}

.align-items-end {
	align-items: flex-end;
}

.align-items-center {
	align-items: center;
}

.justify-content-start {
	justify-content: flex-start;
}

.justify-content-end {
	justify-content: flex-end;
}

.justify-content-center {
	justify-content: center;
}

.justify-content-between {
	justify-content: space-between;
}

.font-size-12 {
	font-size: 12px;
}

.font-size-14 {
	font-size: 14px;
}

.font-size-16 {
	font-size: 16px;
}

.font-size-18 {
	font-size: 18px;
}

.font-size-20 {
	font-size: 20px;
}

.font-size-22 {
	font-size: 22px;
}

.font-size-24 {
	font-size: 24px;
}

.font-size-26 {
	font-size: 26px;
}

.font-size-28 {
	font-size: 28px;
}

.font-weight-normal {
	font-weight: normal;
}

.font-weight-bold {
	font-weight: bold;
}

.round {
	border-radius: 999px;
}

.text-black {
	color: var(--black);
}

.text-gray {
	color: var(--gray);
}

.text-lightGray {
	color: var(--lightGray);
}

.text-blue {
	color: var(--blue);
}

.text-white {
	color: white;
}

.text-white-80 {
	color: rgba(255, 255, 255, 0.8);
}

.text-align-left {
	text-align: left;
}

.text-align-center {
	text-align: center;
}

.text-align-right {
	text-align: right;
}

.text-ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.text-ellipsis1,
.text-ellipsis2,
.text-ellipsis3 {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical
}

.text-ellipsis1 {
	-webkit-line-clamp: 1;
}

.text-ellipsis2 {
	-webkit-line-clamp: 2;
}

.text-ellipsis3 {
	-webkit-line-clamp: 3;
}

.bg-cover {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.btn {
	text-align: center;
	cursor: pointer;
	display: inline-block;
	transition: background-color 0.5s;
}

.btn>i {
	margin-right: 5px;
}

.btn>i.right {
	margin-right: 0;
	margin-left: 5px;
}

.btn:hover>i {
	color: white;
}

.btn-large {
	min-width: 240px;
	height: 60px;
	line-height: 58px;
	font-size: 22px;
}

.btn-normal {
	min-width: 170px;
	height: 40px;
	line-height: 38px;
	font-size: 16px;
}

.btn-small {
	min-width: 100px;
	height: 30px;
	line-height: 28px;
	font-size: 14px;
}


.btn-blue,
.bg-blue {
	background-color: var(--blue);
	color: white;
}

.btn-gray,
.bg-gray {
	background-color: var(--grayWhite);
	color: var(--gray);
}

.btn-gray:hover {
	background-color: var(--blue);
	color: white;
}

.btn-white,
.bg-white {
	background-color: white;
	color: var(--blue);
}

.btn-white:hover>i {
	color: var(--blue);
}

.btn-outline-blue {
	border: 1px solid var(--blue);
	color: var(--blue);
}

.btn-outline-blue:hover {
	background-color: var(--blue);
	color: white;
}

.btn-outline-white {
	border: 1px solid white;
	color: white;
}

.btn-outline-white:hover {
	border-color: var(--blue);
	background-color: var(--blue);
}

.margin-top-100 {
	margin-top: 100px;
}

.margin-top-80 {
	margin-top: 80px;
}

.margin-top-60 {
	margin-top: 60px;
}

.margin-top-50 {
	margin-top: 50px;
}

.margin-top-40 {
	margin-top: 40px;
}

.margin-top-30 {
	margin-top: 30px;
}

.margin-top-20 {
	margin-top: 20px;
}

.margin-top-10 {
	margin-top: 10px;
}

.margin-top-5 {
	margin-top: 5px;
}

.header {
	width: 100%;
	height: 184px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

.topbar {
	padding: 20px 0;
}

.topbar-logo {
	height: 84px;
}

.topbar-contact {
	line-height: 1.25;
}

.topbar-contact .icon {
	width: 50px;
	height: 50px;
	margin-right: 10px;
}

.navbar {
	height: 60px;
}

.navbar ul li a {
	height: 60px;
	line-height: 60px;
}

.bannerSwiper {
	width: 100%;
	height: 600px;
	margin-top: 184px;
}

.bannerSwiper .container {
	height: 600px;
}

.bannerSwiper .container .title {
	letter-spacing: 10px;
}

.bannerSwiper .container .subtitle {
	letter-spacing: 5px;
	margin-top: 10px;
	margin-bottom: 60px;
}

.swiper .swiper-horizontal>.swiper-pagination-bullets,
.swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 20px;
}

.swiper .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	border-radius: 0;
	background-color: white;
}

.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
	font-family: "Font Awesome 5 Pro";
	color: white;
}

.swiper .swiper-button-next {
	right: 30px;
}

.swiper .swiper-button-next:after {
	content: "\f30b";
}

.swiper .swiper-button-prev {
	left: 30px;
}

.swiper .swiper-button-prev:after {
	content: "\f30a";
}

.card1-item {
	width: 380px;
	height: 380px;
	margin-top: 30px;
	margin-right: 30px;
	position: relative;
}

.card1-item:nth-child(3n+3) {
	margin-right: 0;
}

.card1-item-content {
	width: 100%;
	height: 140px;
	background: linear-gradient(180deg, rgba(0, 113, 239, 0) 0%, #0071EF 100%);
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 0 20px;
}

.card2-item {
	width: 380px;
	position: relative;
}

.card2-item+.card2-item {
	margin-left: 30px;
}

.card2-item-img {
	width: 380px;
	height: 240px;
}

.card2-item-tag {
	min-width: 82px;
	height: 32px;
	line-height: 32px;
	padding: 0 10px;
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	left: 0;
}

.card2-item-content {
	padding: 15px 20px;
}

.card2-item-content .title {
	line-height: 1.6;
	height: 90px;
}

.card2-item.last {
	padding: 30px 20px 20px 20px;
}

.card2-item.last>ul>li {
	margin-top: 16px;
}

.tabs-nav .btn+.btn {
	margin-left: 20px;
}

.tabs-nav .btn.active {
	background-color: var(--blue);
	color: white;
}

.tabs-nav .btn.active i {
	color: white;
}

.forte-content,
.forte-img {
	width: 50%;
}

.forte-content {
	padding: 30px;
}

.forte-content>div>.icon {
	width: 50px;
	height: 50px;
	margin-right: 10px;
}

.forte-content>.intro {
	line-height: 1.8;
}

.forte-content>.intro p+p {
	margin-top: 15px;
}

.links-item {
	width: 276px;
	height: 100px;
	padding: 5px;
	border: 1px solid var(--borderColor);
	margin-right: 32px;
	margin-top: 30px;
}

.links-item:nth-child(4n+4) {
	margin-right: 0;
}

.query {
	padding: 30px 0 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.query-form .identity-card {
	width: 340px;
	height: 45px;
	padding: 10px;
	line-height: 1;
	background-color: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 0;
	margin-right: 10px;
}

.query-form .btn {
	min-width: 100px;
	height: 45px;
	line-height: 43px;
	background: white !important;
	color: var(--blue) !important;
}

.collapse {
	padding: 50px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.collapse-item-sub li {
	margin-top: 15px;
}

.collapse-item-sub li a {
	color: rgba(255, 255, 255, 0.8);
}

.copyright {
	padding: 15px 0;
}

.copyright-link {
	margin-left: 10px;
}

.copyright-link a {
	position: relative;
	padding: 0 10px;
}

.copyright-link a::before {
	content: "";
	width: 1px;
	height: 16px;
	background: rgba(255, 255, 255, 0.15);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.banner {
	width: 100%;
	height: 340px;
	margin-top: 184px;
}

.banner .container {
	height: 100%;
}

.banner .container h1 {
	font-size: 40px;
	letter-spacing: 5px;
	margin-top: -20px;
}

.banner .container h1::before {
	content: "";
	width: 8px;
	height: 40px;
	background: var(--blue);
	margin-right: 10px;
}

.banner .container .subtitle {
	padding: 6px 42px 6px 22px;
	background: linear-gradient(to right, rgba(0, 113, 239, 1), rgba(0, 113, 239, 0));
	display: inline-block;
	letter-spacing: 5px;
}


.crumbs>li {
	flex-shrink: 0;
}

.crumbs>li:first-child::before {
	content: "\f80a";
	font-family: "Font Awesome 5 Pro";
	font-size: 18px;
	font-weight: 300;
	margin-right: 4px;
}

.crumbs>li::after {
	content: "\f105";
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	font-size: 18px;
	margin: 0 10px;
	color: var(--lightGray);
}

.crumbs>li:last-child {
	max-width: 200px;
}

.crumbs>li:last-child::after {
	content: none;
}

.menus>li+li {
	margin-left: 15px;
}

.describe-title {
	font-size: 28px;
}

.describe-intro {
	line-height: 1.8;
}

.describe-intro p+p {
	margin-top: 20px;
}

.describe-intro strong {
	color: var(--black);
}

.describe-intro img {
	display: inline-block;
}

.card3-item {
	width: 380px;
	margin-top: 30px;
	margin-right: 30px;
}

.card3-item:nth-child(3n+3) {
	margin-right: 0;
}

.card3-item-image {
	width: 380px;
	height: 380px;
	background-color: var(--grayWhite);
	margin-bottom: 15px;
}

.card3-item-image img {
	width: 280px;
}

.card4-item {
	width: 279px;
	height: 389px;
	position: relative;
	margin-top: 30px;
	margin-right: 28px;
}

.card4-item:nth-child(4n+4) {
	margin-right: 0;
}

.card4-item-content {
	width: 100%;
	padding: 20px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}

.list1-item {
	position: relative;
	width: 580px;
	margin-top: 40px;
	margin-right: 40px;
}

.list1-item:nth-child(2n+2) {
	margin-right: 0;
}

.list1-item-image {
	width: 180px;
	height: 180px;
	margin-right: 20px;
}

.list1-item-content {
	border-bottom: 1px solid var(--borderColor);
	padding-bottom: 20px;
}


.list2-item {
	width: 380px;
	margin-top: 40px;
	margin-right: 30px;
}

.list2-item:nth-child(3n+3) {
	margin-right: 0;
}

.consult {
	width: 100%;
	height: 70px;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 5;
	background: #0065d6;
}

.consult-action a+a {
	margin-left: 10px;
}

.consult-action a.btn-outline-white:hover {
	border-color: white;
	background-color: white;
	color: var(--blue);
}

.consult-action a.btn-outline-white:hover i {
	color: var(--blue);
}

.form {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.form-intro {
	line-height: 1.8;
}

.form-wrapper {
	margin-top: -10px;
}

.form-item {
	margin-top: 40px;
	margin-right: 40px;
	position: relative;
}

.form-item:last-child {
	margin-right: 0;
}

.form-item .label {
	width: 100px;
}

.form-item .editor {
	height: 50px;
	background-color: var(--grayWhite);
	padding: 10px 20px;
}

.form-item .required {
	color: red;
	margin-left: 5px;
}

.form2-item .editor {
	width: 100%;
	height: 60px;
	background-color: var(--grayWhite);
	padding: 10px 20px;
}


.form2-results {
	padding: 30px;
	height: 400px;
	background: var(--grayWhite);
	margin-left: 50px;
}

.cell-item i {
	margin-right: 5px;
}

.map {
	height: 400px;
	margin-left: 40px;
}

.link-mask {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}

.backTop {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: white;
	border: 2px solid var(--blue);
	z-index: 10;
}

.empty {
	width: 100%;
	text-align: center;
}

.empty img {
	margin: auto;
}