body {
	background-color: #f5f5f5;
}
.swiper {
	width: 100%;
	background: #e3e3e37a;
}

.swiper-slide {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 20%;
}
.swiper-slide .banner-img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	/*max-width: 1920px;*/
	margin-left: auto;
	margin-right: auto;
	z-index: 1;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-slide .banner-box {
	position: absolute;
	z-index: 2;
	text-align: left;
	display: flex;
	align-items: start;
	justify-content: center;
	flex-direction: column;
	width: 95%;
	height: 100%;
	min-height: 300px;
	max-width: 1310px;
	top: 5%;
}
.c-w {
	color: #fff;
}
.c-b {
	color: #0c418f;
}

.banner-box .title {
	letter-spacing: 1px;
	text-shadow: 1px 0 1px #00000080;
}
.banner-box .mini-title {
	display: flex;
	align-items: center;
	margin-top: 16px;
	background: #0c418f;
	padding: 10px 18px;
	min-width: 25%;
	font-weight: bold;
	color: #fff;
}
.banner-box .mini-title .icon {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}
.banner-box .banner-btn-box {
	margin-top: 30px;
}
.banner-btn-box .btn {
	display: inline-block;
	border: 2px solid currentColor;

}
@media only screen and (max-width: 768px) {
	.banner-box .title {
		font-size: 26px;
		font-weight: 700;
	}
	.banner-box .mini-title {
		font-size: 14px;
	}
	.banner-box .btn {
		font-size: 12px;
		padding: 7px 20px;
		border-radius: 20px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 900px) {
	.banner-box .title {
		font-size: 32px;
		font-weight: 700;
	}
	.banner-box .mini-title {
		font-size: 16px;
	}
	.banner-box .btn {
		font-size: 14px;
		padding: 7px 20px;
		border-radius: 20px;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1440px) {
	.banner-box .title {
		font-size: 32px;
		font-weight: 700;
	}
	.banner-box .mini-title {
		font-size: 16px;
	}
	.banner-box .btn {
		font-size: 14px;
		padding: 7px 20px;
		border-radius: 20px;
	}
}
@media only screen and (min-width: 1440px) and (max-width: 1680px) {
	.banner-box .title {
		font-size:38px;
		font-weight: 700;
	}
	.banner-box .mini-title {
		font-size: 21px;
	}
	.banner-box .btn {
		font-size: 18px;
		padding: 13px 29px;
		border-radius: 30px;
	}
}
@media only screen and (min-width: 1680px) {
	.banner-box .title {
		font-size:38px;
		font-weight: 700;
	}
	.banner-box .mini-title {
		font-size: 21px;
	}
	.banner-box .btn {
		font-size: 18px;
		padding: 13px 29px;
		border-radius: 30px;
	}
}
.album-box .album-title{
	font-size: 32px;
	color: #333;
	text-align: center;
	position: relative;
	padding-top: 70px;
	margin-bottom: 64px;
	font-weight: 900;
}
.album-box .album-title:after{
	content: "";
	position: absolute;
	width: 55px;
	height: 4px;
	background: #cf261c;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}
.album-box-bg{
    padding: 64px 30px 55px 30px;

}
.album-box {
	max-width: 1310px;
	margin: 0 auto;
	width: 100%;
	height: auto;
}
.album-box .album-content {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1.95% 0 -1.02%;
}
.album-content .album-item {
	overflow: hidden;
	margin: 1%;
	box-sizing: border-box;
	padding-bottom: 28%;
	position: relative;
	flex: 0 0 31%;
	box-shadow: 0 4px 10px 0 rgba(34,41,77,.15);
}
.album-content .album-item img {
	position: absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: 1s all;
}
.album-content .album-item:hover {
	box-shadow: 8px 10px 20px rgba(34,41,77,.15);
}
.album-content .album-item:hover img {
	transform: scale(1.15);
}

.album-content .album-item .title-des {
	position: absolute;
	background-image: linear-gradient(rgba(0,0,0,0) 0,rgba(0,0,0,0.3) 70%);
	width: 100%;
	height: 40%;
	transform: translate(0,10%);
	transition: .6s;
	bottom: 0;
	z-index: 5;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding-bottom: 34px;
}
.album-content .album-item .more {
	margin-left: 22px;
	font-size: 16px;
	display: none;
	cursor: pointer;
}
.album-content .album-item:hover .title-des {
	transform: translate(0,0%);
}
.album-content .album-item:hover .more {
	display: block;
}
.album-content .album-item .more .red-dot {
	color: #d00;
	text-shadow: 0 0 #d00;
	font-weight: 700;
	margin-left: 10px;
}
.title-des .title {
	margin: 40px 0 5px 0;
	padding: 0 22px;
	font-size: 20px;
	line-height: 1.7;
}