@charset "utf-8";

/* CSS Document */
* {
	margin: 0;
	padding: 0;
}

html,
body {
	font-family: "Microsoft YaHei";
	font-size: 14px;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	min-width: 0;
	overflow: hidden;
}


.swiper-container {
	width: 100%;
	height: 100%;
}

.swiper-wrapper {
	height: 99%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.swiper-slide img {
	width: 100%;
	height: 100%;
}

.swiper-pagination {
	width: 100%;
	font-size: 0;
	bottom: 0 !important;
	display: flex;
}

.swiper-pagination-bullet {
	flex: 1;
	height: 15px;
	text-align: center;
	line-height: 15px;
	margin: 0 1px 0 0 !important;
	border-radius: 0;
	font-size: 12px;
	color: #fff;
	opacity: 1;
	background: #666666;
	padding: 0;
}

.swiper-pagination-bullet-active {
	color: #fff;
	background: red;
}

.music-icon {
	position: fixed;
	top: 44px;
	right: 100px;
	width: 60px;
	height: 60px;
	z-index: 999;
	animation-duration: 5s;
	animation-name: fa-spin;
	animation-iteration-count: infinite;
	animation-timing-function: linear
}


.music-icon.stop {
	animation-name: none
}

.fa-spin {
	-webkit-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear
}

@-webkit-keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg)
	}
}

@keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg)
	}
}
