.index_card {
	width: 80%;
	margin: 0 auto;
	text-align: center;
	
}
.msg-box-center {
	width: 420px;
	transform: translate(0, 50%);
}
.suspend-button {
	position: fixed;
	background-color: #3f9eff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 20px;
	-webkit-box-shadow: 0 0 6px rgba(0,0,0,.12);
	box-shadow: 0 0 6px rgba(0,0,0,.12);
	cursor: pointer;
	z-index: 5;
}
/* 进入动画 */
.fade-enter-active {
	transition: all 0.5s ease !important;
}
.fade-enter {
	opacity: 0;
	transform: translateY(20px) !important;
}

/* 离开动画 */
.fade-leave-active {
	transition: all 0.5s ease !important;
	position: absolute !important; /* 避免列表项突然跳动 */
}
.fade-leave-to {
	opacity: 0 !important;
	transform: translateX(20px) !important;
}

/* 列表项移动动画 */
.fade-move {
	transition: transform 0.5s !important;
}
@media screen and (max-width: 768px) {
	.msg-box-center {
		width: 100% !important; /* 强制覆盖默认样式 */
	}
}