/* highlight-banner */
.highlight-banner {
	position: absolute;
	/* bottom: 108px; */
	bottom: 95px;
	left: -245px;
	z-index: 10000;
}

.highlight-banner .highlight-banner-wrapper {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	overflow: hidden;
	height: 100%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	border-radius: 0 8px 8px 0;
}

.highlight-banner .highlight-banner-wrapper .wrapper-banner,
.highlight-banner .highlight-banner-wrapper .wrapper-btn {
	background-color: #034a87;
}

.highlight-banner .highlight-banner-wrapper .wrapper-banner {
	padding: 10px 0 10px 10px;
	width: 245px;
	min-height: 255px;
}



.highlight-banner .highlight-banner-wrapper .wrapper-banner a img {
	width: 100%;
}

.highlight-banner .highlight-banner-wrapper .wrapper-banner .swiper-scrollbar {
	left: 0;
	width: 100%;
	bottom: 0;
	border-radius: 0;
}

.highlight-banner .highlight-banner-wrapper .wrapper-btn {
	width: 30px;
	height: 255px;
}

.highlight-banner .highlight-banner-wrapper .wrapper-btn a {
	display: block;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 10px 18px;
	transform: rotateY(180deg);
}

.highlight-banner.active {
	left: 0;
	height: auto;
}

.highlight-banner.active .highlight-banner-wrapper .wrapper-btn {
	flex-grow: 1;
}

.highlight-banner.active .highlight-banner-wrapper .wrapper-btn a {
	transform: rotateY(0deg);
}

.highlight-banner.transition {
	transition: 0.3s all;
}

@media only screen and (max-width: 979px) {
	.highlight-banner {
		display: none;
	}
}