/* 用于指定当用户点击或触摸一个可点击元素时，浏览器会显示的高亮颜色。
在这个属性中，-webkit 前缀表明这是 WebKit 浏览器引擎的专有属性，
通常用于 Safari 浏览器和一些基于 WebKit 的浏览器。
这个属性允许你设置高亮颜色为透明，意味着当用户点击时不会出现任何视觉反馈。 
*/
* {
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0px;
  overflow: hidden;
  user-select: none;
  -webkit-tap-highlight-color: rgba(200, 200, 200, 0);
  touch-action: none;
}
.example {
  position: relative;
}
.example-rotate-90 {
  transform-origin: 0 0;
  transform: rotateZ(90deg) translateY(-100%);
  width: 100vh;
  height: 100vw;
}
.video {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  border: 0;
  outline: 0;
}
/* 频控制元素的容器，包括播放/暂停按钮、音量控制 */
video::-webkit-media-controls-enclosure {
  display: none !important;
}
.custom-player {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  /* PC上移出本地光标样式 */
  cursor: none;
}

.at-vir-layout {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 3;
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
}
.at-vir-layout-pc {
  z-index: 2;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.at-vir-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  background: none;
  /* display: none; */
}
.at-vir-keyboard-box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
}
.at-vir-keyboard-mask {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 3;
}
.at-vir-keyboard {
  height: 73%;
  position: absolute;
  left: 0;
  right: 0;
  padding: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}
.at-vir-keyboard .panel {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  padding: 3.5% 2.7%;
  text-align: center;
}
.at-vir-keyboard .panel table {
  width: 100%;
  height: 100%;
  table-layout: fixed;
}
.at-vir-keyboard .panel table td {
  margin: 0;
  padding: 2px;
}
.at-vir-keyboard .panel table tr {
  height: 12.41%;
}
.at-vir-keyboard .i_button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  height: 100%;
  border-radius: 1px;
  text-align: center;
  font-size: 14px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  color: #fff;
  background: rgba(25, 27, 29, 0.7) !important;
  cursor: pointer;
}
.at-vir-keyboard .i_button.ctrl {
  color: #eb6800;
}
.at-vir-keyboard .i_button.arrow {
  font-size: 24px !important;
}
.at-vir-keyboard .i_button.active {
  background-color: rgba(167, 174, 182, 0.7) !important;
}

.panel {
  display: none;
}
.panel-active {
  display: block !important;
}
/* 设置鼠标一个默认值最小 宽高 防止连接没发送光标数据 */
.player-canvas-cursor {
  width: 9.55px;
  height: 9.55px;
  /* position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
  pointer-events: none; */
  /* 可选，防止它挡住你鼠标 */
}

#AtKitCrosshair {
  z-index: 6666;
  position: absolute;
  border: none;
  display: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
