html,body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family:Alibaba PuHuiTi 3.0, sans-serif;
    font-size: 16px;
    background: #000;
    overflow: hidden;
    
}
small {
    color: green;
}
p {
    
    font-family: Alibaba PuHuiTi 3.0;
    font-size: 50px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: normal;
    color: #FFFFFF;
    text-align: center;
}
.page {
    width: 800px;
    margin: 0 auto;
    background: white;
    padding: 0 15px;
}
@media screen and (max-width: 800px) {
    .page {
        width: 100%;
        box-sizing: border-box;
    }
}

a{
    text-decoration: none;
    color: #333;
}
.container_init{
    color:#fff;
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
}
.container_init video{
    width: 100vw;
    height: 100vh;
    object-fit: fill;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* 确保视频在所有浏览器中正确显示 */
    -webkit-object-fit: fill;
    -moz-object-fit: fill;
    -ms-object-fit: fill;
    /* 视频拉伸填满容器 */
    object-position: center center;
    /* 确保视频加载完成后正确显示 */
    display: block;
}

/* Video.js 特定样式 */
.container_init .video-js {
    width: 100vw !important;
    height: 100vh !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
}

.container_init .video-js .vjs-tech {
    width: 100% !important;
    height: 100% !important;
    object-fit: fill !important;
}
.init_img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.text{
    width: 60%;
    height: 30%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10% 0 0 -30%;
    z-index: 10;
}
.init_btn{
    /* width: 100%; */
    text-align: center;
    position: absolute;
    bottom: 10px;
    right: 2%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.init_btn a{
    display:inline-block;
    font-family: Alibaba PuHuiTi 3.0;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: normal;
    color: #60e8ff;
    /* border-bottom: 2px solid #60e8ff; */
}
.init_btn span{
    vertical-align: top;
}
.init_canvas{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    opacity: .6;
}


#text-container{
    color:#60e8ff
}

/* 音量控制按钮样式 */
.volume_control {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.volume_control:hover {
    opacity: 1;
}

.volume_btn {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #60e8ff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(96, 232, 255, 0.3);
}

.volume_btn:hover {
    background: rgba(96, 232, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(96, 232, 255, 0.5);
}

.volume_btn:active {
    transform: scale(0.95);
}

.volume_icon {
    font-size: 20px;
    color: #60e8ff;
    transition: all 0.3s ease;
    user-select: none;
}

.volume_btn:hover .volume_icon {
    color: #ffffff;
    transform: scale(1.1);
}

/* 移动端优化 */
@media screen and (max-width: 768px) {
    .volume_control {
        top: 15px;
        right: 15px;
    }
    
    .volume_btn {
        width: 45px;
        height: 45px;
    }
    
    .volume_icon {
        font-size: 18px;
    }
}
