.aplayer-title {
    color: var(--fontColor) !important;
}
 
.aplayer.aplayer-fixed {
    z-index: 100 !important;
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

屏蔽Ctrl+S 保存 F12 右键

<!--onselectstart:禁止选中 oncontextmenu:右键弹出版权 event.keyCode==27:按esc键表示放弃Esc键阻止网页继续载入,也就是说你按ESC键网页还是继续加载-->
<body onselectstart="return false;" oncontextmenu="alert('请尊重本网站版权！');return false;" onkeydown="if(event.keyCode==27) return false;">
<script type="text/javascript">
document.onmousedown = click; //绑定禁用鼠标右键事件
document.onkeydown = ctrl_key; //绑定禁用键盘事件
function click() {
if (event.button == 2) //单击的鼠标键为右键
{
alert('请尊重本网站版权！');
return false;
}
}
function ctrl_key() {
if (event.keyCode == 17) { //禁用CTRL+S 保存网页代码
window.alert("请尊重本网站版权！");
return false;
}
if (event.keyCode == 123) { //禁用F12查看源代码
alert('请尊重本网站版权！');
return false;
}
}
</script>