@charset "utf-8";
/*Author: BeiYue*/
/*QQ: 964214970*/
/*Telegram: BeiYue88*/
/*==============================================================*/

/* CSS Dl */

/*轮播图片----开始--------------------------------------------------------*/
.banner_box {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	flex-wrap: wrap;
	margin-bottom: 50px;
	padding-top: 130px;
}

.banner_box .banner_list {
	max-width: 100%;
	margin: 10px auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	box-sizing: border-box;
	margin-bottom: 50px;
}

.banner_box .banner_list img {
	max-height: 400px;
	width: 100%;
	height: auto;
}

.banner_box .banner_list .banner_app {
	display: flex;
}
.banner_box .banner_list p {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: 100%;
	color: var(--txt);
	font-size: 20px;
	font-weight: bold;
}

/*轮播图片----结束--------------------------------------------------------*/

/*媒体查询样式--开始------------------------------------------------------*/
@media only screen and (max-width: 1200px) {
	.banner_box {
		width: 100%;
	}
}

@media only screen and (max-width: 780px) {
	.banner_box .banner_list {
		flex: 0 0 calc(100% - 20px);
	}
}