* {
	margin: 0;
	padding: 0;
}

@font-face {
	font-family: 'AlibabaPuHuiTi';
	src: url('https://static.firecloudtech.com/fonts/AlibabaPuHuiTi-3-55-Regular/AlibabaPuHuiTi-3-55-Regular.woff2') format('woff2');
	/* src: url('../fonts/AlibabaPuHuiTi-3-45-Light/AlibabaPuHuiTi-3-45-Light.woff2') format('woff2'); */
}

#app {
	width: 100%;
	min-width: 1470px;
	font-family: 'AlibabaPuHuiTi', '黑体', '宋体';
}

.flex {
	display: flex;
	align-items: center;
}

.flex-1 {
	flex: 1;
}

a {
	color: #ffffff;
	text-decoration: none;
}

/* 样式用于遮罩层 */
.modal {
	position: fixed;
	z-index: 3000;
	/* 放在顶层 */
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	/* 半透明黑色背景 */
	overflow: auto;
	/* 允许滚动 */
}

/* 样式用于放大图像 */
.modal-content {
	margin: 5% auto;
	display: block;
	max-width: 80%;
	max-height: 80%;
}

/* 样式用于关闭按钮 */
.close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}

.close:hover,
.close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}