html,body {
    width: 100%;
    height: 100%;
}
body { padding: 0; margin: 0; overflow:hidden; background: black; -webkit-user-select: none; user-select: none; -webkit-touch-callout:none;}
#unity-container { position: absolute }
#unity-container.unity-desktop { left: 50%; top: 50%; transform: translate(-50%, -50%) }
#unity-container.unity-mobile { position: fixed; width: 100%; height: 100%; display:flex; justify-content: center; align-items: center; }
#unity-canvas { background: #231F20 }
.unity-mobile #unity-canvas { width: 100%; height: 100% }
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
#unity-logo { width: 154px; height: 130px; background: url('unity-logo-dark.png') no-repeat center }
#unity-progress-bar-empty { width: 141px; height: 18px; margin-top: 10px; margin-left: 6.5px; background: url('progress-bar-empty-dark.png') no-repeat center }
#unity-progress-bar-full { width: 0%; height: 18px; margin-top: 10px; background: url('progress-bar-full-dark.png') no-repeat center }
#unity-footer { position: relative }
.unity-mobile #unity-footer { display: none }
#unity-webgl-logo { float:left; width: 204px; height: 38px; background: url('webgl-logo.png') no-repeat center }
#unity-build-title { float: right; margin-right: 10px; line-height: 38px; font-family: arial; font-size: 18px }
#unity-fullscreen-button { cursor:pointer; float: right; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center }
#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }

.videoNode {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: none;
}

.videoNode video {
    width: 100%;
    height: 100%;
    background: #000000a6;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

.videoNode #closeNode {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 50px;
    height: 50px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.audioPlayNode {
    position: absolute;
    right: 50px;
    top: 50px;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    display: none;
}

.swiperArea {
    position: absolute;
    width: 90%;
    height: 90%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: none;
    align-items: center;
    overflow-y: auto;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout:none;
}
.swiperClose {
   position: fixed;
    right: 5.5%;
    top: 6%;
    width: 30px;
    height: 30px;
    z-index: 9999;
}

#swiperList {
    width: 100%;
    height: 100%;
    display: flex;
}

#swiperList img {
    -webkit-user-drag: none;   /* 禁止图片拖拽 */
    user-select: none;         /* 禁止选中图片（兼容移动端） */
    pointer-events: none;      /* 可选：禁用图片的点击事件（根据需求决定） */
    display: block;
    touch-action: pan-x pan-y;
}

.swiper-container {
    width: 60%;
    height: 50%;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* Center slide text vertically */
    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;
}

.swiper-slide img {
    width: 60%;
    /*height: 100%;*/
}

video::-webkit-media-controls-fullscreen-button {
  display: none; /* 针对Chrome/Safari */
}
 
video::-moz-full-screen-button {
  display: none; /* 针对Firefox */
}
 
video::-ms-fullscreen-button {
  display: none; /* 针对IE/Edge */
}