#player-container {
	text-align: center;
}
button {
	padding: 10px;
	margin: 5px;
	font-size: 16px;
	cursor: pointer;
}
/* 对于屏幕宽度大于768px的设备 */
@media screen and (min-width: 768px) {
	.player-container {
		width: 592px;
		margin: auto;
	}
}
 
/* 对于屏幕宽度小于等于768px的设备 */
@media screen and (max-width: 768px) {
	.player-container {
		width: 100%;
	}
}
.btj-footer-icon {
	height: 14px;
	width: 14px;
}

/* 语言切换按钮选中状态 */
button[data-lang].active {
background: var(--color-primary, #6c63ff) !important;
}

button[data-lang] {
background: transparent;
transition: background 0.2s;
}
