* {
	padding: 0;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
}

a {
	-webkit-touch-callout: none !important;
	user-select: none !important;
	-webkit-user-select: none !important;
	pointer-events: auto;
}

@media (max-width: 375px) {
	.fixed-bg {
		background-position: center 20%;
	}
}

@media (min-width: 1024px) {
	.fixed-bg {
		background-image: url('./img/zy.JPG');
		background-size: contain;
	}
}

@media (orientation: landscape) {
	.fixed-bg {
		background-position: 30% center;
	}
}

a {
	line-height: 10px;
	color: #ffffff;
	text-decoration: none;
}

/* 右下角 */
.刷新 {
	position: fixed;
	right: 20px;
	bottom: 75px;
	cursor: pointer;
	display: inline-block;
	transition: transform 0.75s ease;
}

@keyframes spin {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(360deg);
	}
}

.刷新:active {
	animation: spin 0.5s linear infinite;
}