@media (min-width: 992px) {
	.container {
		max-width: 992px;
		padding-left: 0;
		padding-right: 0;
	}
}

/*   单页轮播组件   */

.page-hero {
	position: relative;
	z-index: 0;
}

.page-hero .overlay-color {
	opacity: 0.5 !important;
}

.hero-vegas-slider {
	position: relative;
}

.hero-vegas-slider .overlay-color {
	z-index: 0 !important;
}

.hero-vegas-slider .vegas-slider-content {
	position: absolute;
	width: 100%;
	height: auto;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.inner-page-hero {
	height: 500px;
}

@media (max-width: 991px) {
	.page-hero {
		height: 260px !important;
	}
}

@media (max-height: 600px) {
	.page-hero {
		height: 260px;
	}
}

/*   单页轮播组件   */

/* 单页导航 */
.page-view .nav-view {
	position: relative;
	height: 80px;
	/*background: rgba(226, 229, 234, 0.3);*/
	overflow-x: auto;
	overflow-y: hidden;
}

.page-view .nav-view li a {
	display: block;
}

.page-view .nav-view::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

.page-view .nav-view::-webkit-scrollbar-track {
	background: #fff
}

.page-view .nav-view::-webkit-scrollbar-thumb {
	background: #CBCBCB;
}

.container-nav {
	background: rgba(226, 229, 234, 0.3);
}

.page-view .nav-view ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	white-space: nowrap;
}

.page-view .nav-view li {
	position: relative;
	display: inline-block;
	line-height: 80px;
	font-size: 24px;
	color: rgba(51, 51, 51, 0.6);
	padding: 0 6px;
}

.page-view .nav-view li::before {
	content: "";
	position: absolute;
	background-color: #2A81EF;
	height: 6px;
	width: 100%;
	bottom: 0;
	left: 0;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease-in-out 0s;
	z-index: 2;
}

.page-view .nav-view li::after {
	content: "";
	position: absolute;
	background-color: rgba(39, 205, 175, 0.4);
	height: 6px;
	width: 100%;
	bottom: 0;
	left: 0;
	transform: scaleX(1);
	transform-origin: center;
	transition: transform 0.3s ease-in-out 0s;
	z-index: 1;
}

.page-view .nav-view li.active {
	color: rgba(51, 51, 51, 1);
}

.page-view .nav-view li:hover {
	color: rgba(51, 51, 51, 1);
}

.page-view .nav-view li.active::before {
	transform: scaleX(1);
}

.page-view .nav-view li:hover::before {
	transform: scaleX(1);
}

.page-view .nav-view li.active::after {
	transform: scaleX(0);
}

.page-view .nav-view li:hover::after {
	transform: scaleX(0);
}

@media (max-width: 990px) {
	.page-view .nav-view {
		height: 60px;
		padding-bottom: 10px;
	}

	.page-view .nav-view li {
		line-height: 50px;
		font-size: 20px;
		margin-right: 28px;
	}

	.page-view .nav-view li::before {
		height: 4px;
	}

	.page-view .nav-view li::after {
		height: 4px;
	}
}

/* 单页导航 */

/* 单页内容 */

.page-box {
	display: flex;
	flex-wrap: wrap;
}

.page-box .col-12 {
	position: relative;
}

.page-side {
	position: relative;
}

.page-side ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.page-side ul li {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 0px;
	padding: 24px 0;
}

.page-side ul li.active {
	border: 1px solid #27CDAF;
	border-right: none;
}

.page-side ul li.active::before {
	content: "";
	position: absolute;
	width: 2px;
	height: 100%;
	background: #fff;
	top: 0;
	right: -1px;
	z-index: 1;
}

.page-side ul li p {
	font-weight: bold;
	font-size: 16px;
	color: #2A81EF;
	line-height: 20px;
	margin-bottom: 0;
	margin-top: 4px;
}

.page-side ul li img {
	transition: all 0.3s ease-in-out;
}

.page-side ul li:hover img {
	transform: scale(1.1);
}

.page-box .col-bd {
	border: 1px solid #27CDAF;
	background: linear-gradient(180deg, rgba(254, 254, 254, 0.4) 80%, rgba(39, 205, 175, 0.5) 110%);
	padding-bottom: 20px;
}

.page-box .col-bd .page-content {
	padding: 40px;
}

@media (max-width: 990px) {
	.page-box .col-bd .page-content{
		padding: 8px;
	}
	.page-side ul {
		display: flex;
		flex-wrap: wrap;
	}

	.page-side ul li {
		min-width: 33%;
	}

	.page-side ul li.active {
		border: none;
	}
}

@media (max-width: 480px) {
	.page-side ul li {
		min-width: 50%;
	}
}

.container .page-img-box::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

.container .page-img-box::-webkit-scrollbar-track {
	background: #fff
}

.container .page-img-box::-webkit-scrollbar-thumb {
	background: #CBCBCB;
}

.page-box .col-bd {
	padding-bottom: 200px;
}

.page-box .col-12 .side-img {
	animation: float 3s ease-in-out infinite;
	transform-style: preserve-3d;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.page-text label {
	font-weight: bold;
}

.page-title-2 label {
	position: relative;
	top: 1px;
	font-size: 32px;
	font-weight: bold;
	margin-right: 6px;
	font-family: DIN;
}

@media (max-width: 990px) {
	.page-title-2 label {
		font-size: 26px;
	}
}

/* 单页内容 */

/* 图片最大宽度 */
.page-content img {
	max-width: 100%;
}


/* 选项卡切换 */
.page-side ul>li {
	cursor: pointer;
}

.page-content .fn-tab-content {
	transition: all .3s linear;
	height: 0px;
	opacity: 0;
}

.page-content .fn-tab-content.active {
	height: auto;
	opacity: 1;
}
