.banner {
	width: 100%;
}

.banner img {
	display: block;
	width: 100%;
}

.banner .typelist {
	margin-top: -92px;
	position: relative;
	z-index: 10;
}

.banner .typelist ul {
	box-sizing: border-box;
	width: 100%;
	background-color: #0075c2;
	border-top: 4px solid #ffffff;
	background-image: url(../images/typelist_icon.png);
	background-repeat: no-repeat;
	background-position: right 60px center;
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	padding-top: 28px;
	padding-bottom: 26px;
	padding-left: 30px;
}

.banner .typelist ul li a {
	font-size: 18px;
	color: #71b3df;
	line-height: 34px;
	padding: 0 30px;
	background-image: url(../images/typelist_list_bg.png);
	background-repeat: no-repeat;
	background-position: right center;
	
}

.banner .typelist ul li:last-child a {
	background-image: none;
}

.banner .typelist ul li.active a {
	color: #FFFFFF;
}

.main {
	background-color: #f6f6f6;
	padding-bottom: 120px;
	padding-top: 120px;
}

.main .container {
	position: relative;
}

.main .gallery-thumbs {
	width: calc(100% - 110px);
	margin: 0 auto;
	margin-bottom: 40px;
	pointer-events: none;
}

.main .gallery-thumbs .swiper-slide {
	text-align: center;
	font-family: 'Dinb';
	font-weight: bold;
	font-size: 25px;
	color: #0075c2;
	line-height: 60px;
	transition: 0.3s;
}

.main .gallery-thumbs .swiper-slide-active {
	transform: scale(1.8);
}

.main .swiper-button-next,
.main .swiper-button-prev {
	width: 54px;
	height: 54px;
	background-color: #0075c2;
	background-size: auto;
	top: 25px;
}

.main .swiper-button-next {
	right: 0px;
	background-image: url(../images/course_next.png);
}

.main .swiper-button-prev {
	left: 0px;
	background-image: url(../images/course_prev.png);
}


.main .gallery-top {
	height: 562px;
	width: 100%;
	background-image: url(../images/course_bg.png);
	background-repeat: no-repeat;
	background-position: top center;
	border-bottom: 6px solid #ffbf00;
	pointer-events: none;
}

.main .gallery-top .swiper-slide .course {
	box-sizing: border-box;
	padding: 0 80px;
	padding-top: 65px;
}

.main .gallery-top .swiper-slide .course p {
	font-size: 18px;
	color: #ccd9e0;
	line-height: 42px;
}

@media screen and (max-width: 550px ) {
	
	.banner .typelist {
		display: none;
	}
	
	.main {
		padding-top: 20px;
		padding-bottom: 70px;
	}
	
	.main .gallery-thumbs {
		margin-bottom: 10px;
	}
	
	.main .gallery-thumbs .swiper-slide-active {
		transform: scale(1);
	}
	
	.main .gallery-top .swiper-slide .course {
		padding: 0 10px;
		padding-top: 30px;
	}
	
	.main .gallery-top .swiper-slide .course p {
		font-size: 14px;
		color: #ccd9e0;
		line-height: 28px;
	}
	
}