/* main css */
/* 语言切换区域 */
.languageSwitch_allbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background: rgb(51 51 51 / 50%);
	z-index: 9999;
}

.languageSwitch_box {
	display: none;
	position: fixed;
	bottom: 0;
	width: 100%;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

.languageSwitch_topBox {
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

.languageSwitch_topBox span {
	font-size: 16px;
}

.cancelBtn,
.confirmBtn {
	cursor: pointer;
}

.swiperLanguage {
	height: 65px;
	/* padding: 0 15px; */
	border-radius: 8px;
	margin-top: 10%;
	margin-bottom: 2%;
}

.dropCloth {
	width: 100%;
	height: 100%;
}

.languageItem_box {
	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;
	justify-content: center;
	cursor: pointer;
	font-size: 12px;
}

/* .languageList {
	padding: 15px; */
/* text-align: center; */
/* font-size: 12px; */
/* cursor: pointer;
} */

.swiper-slide-active {
	font-size: 16px;
}

/* 媒体查询css */
/* 手机超小屏幕竖屏375px及以下 */
@media (max-width:375px) {

	/* 语言切换区域 */
	.swiperLanguage {
		margin-top: 25%;
		margin-bottom: 10%;
	}
}

/* 手机小屏幕横屏376px~767px以下 */
@media (min-width:376px) and (max-width:767px) {

	/* 语言切换区域 */
	.swiperLanguage {
		margin-top: 25%;
		margin-bottom: 10%;
	}

}

/* 平板中屏幕768px-991px */
@media (min-width:768px) and (max-width:991px) {}

/* 普通电脑大屏幕992px~1199px */
@media (min-width:992px) and (max-width:1199px) {}

/* 大屏幕1200及以上 */
@media (min-width:1200px) {}