/* 其他公共css */
/* main css */
header,
section {
	padding: 15px;
}

header {
	position: sticky;
	top: 0;
	z-index: 999;
}
.userIcon{
	font-size: 28px;
	margin-right: 10px;
	cursor: pointer;
}
/* 模式切换css */
.modeBtn_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.dayNight_modeIcon {
	font-size: 28px;
	margin-right: 10px;
	cursor: pointer;
}

.languageIcon {
	font-size: 28px;
	cursor: pointer;
}

.userName_box{
	margin-right: 10px;
}

/* 模式切换css end */

/* 媒体查询css */
/* 手机超小屏幕竖屏375px及以下 */
@media (max-width:375px) {

	/* home css */
	.dayNight_modeIcon {
		font-size: 24px;
	}

	.languageIcon {
		font-size: 24px;
	}
	
	.userName_box{
		display: none;
	}
	/* home css end */
}

/* 手机小屏幕横屏376px~767px以下 */
@media (min-width:376px) and (max-width:767px) {

	/* home css */
	.dayNight_modeIcon {
		font-size: 24px;
	}

	.languageIcon {
		font-size: 24px;
	}
	
	.userName_box{
		display: none;
	}
	/* home css end */
}

/* 平板中屏幕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) {}