.uniqueII-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
		
.uniqueII-video-container video {
    width: 100%;
    object-fit: contain;
}

.uniqueII-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 0px 5px 10px 5px; /* 上 右 下 左 */
    color: white;
    z-index: 10;
    user-select: none; /* 禁止选中 */
    -webkit-user-select: none; /* Safari/Chrome */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */
			transition: transform 0.3s ease, opacity 0.3s ease;
			transform: translateY(0); /* 默认显示 */
			opacity: 1;
}
		
		.uniqueII-video-controls.hidden {
			transform: translateY(100%); /* 向下隐藏 */
			opacity: 0;
			pointer-events: none; /* 防止隐藏时仍然可以交互 */
		}
		

.uniqueII-video-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
			padding: 50px 0px 10px 10px; /* 上 右 下 左 */
}

.uniqueII-video-poster {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.uniqueII-video-info {
    flex: 1;
    overflow: hidden;
}

.uniqueII-video-title {
    font-size: 15px;
			width: 20%;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
			padding: 0px 0px 2px 0px; /* 上 右 下 左 */
}

.uniqueII-video-desc {
    font-size: 12px;
			width: 50%;
    color: #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
			padding: 2px 0px 0px 0px; /* 上 右 下 左 */
}

.uniqueII-progress-container {
    position: relative;
    height: 3px;
    background: rgb(253 253 253 / 18%);
    border-radius: 3px;
    margin: 10px 0;
    cursor: pointer;
}

.uniqueII-progress-loaded {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgb(141 190 135 / 33%);
    border-radius: 3px;
}

.uniqueII-progress-played {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #fa0c5bd6;
    border-radius: 3px;
}

.uniqueII-progress-time {
    position: absolute;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 12px;
    display: none;
}

.uniqueII-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.uniqueII-left-controls {
    display: flex;
    align-items: center;
    flex: 1;
}

.uniqueII-right-controls {
    display: flex;
    align-items: center;
}


.uniqueII-control-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    margin: 0 5px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.uniqueII-control-btn svg {
    width: 25px;
    height: 25px;
}
		
/* 音量控制条样式 */
.uniqueII-volume-control {
    position: absolute;
    left: 80%;
    transform: translateX(-50%);
    width: 40px;
    height: 100px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    padding: 10px 5px;
    display: none; /* 默认隐藏 */
    flex-direction: column;
    align-items: center;
    z-index: 100;
}

.uniqueII-volume-slider {
    width: 6px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.uniqueII-volume-level {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fa0c5bd6;
    border-radius: 3px;
}

.uniqueII-volume-percentage {
    color: white;
    font-size: 12px;
    margin-top: 5px;
}

/* 倍速选择框样式 */
.uniqueII-beisu-control {
    position: absolute;
    left: 30%;
    transform: translateX(-50%);
    width: 100px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    padding: 10px 0;
    display: none; /* 默认隐藏 */
    flex-direction: column;
    align-items: center;
    z-index: 100;
}

.uniqueII-beisu-option {
    color: white;
    padding: 8px 15px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-size: 14px;
}

.uniqueII-beisu-option:hover {
    background: rgba(255, 255, 255, 0.2);
}

.uniqueII-beisu-option.active {
    background: #fa0c5bd6;
}

/* 清屏开关样式 */
.uniqueII-clear-screen-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    font-size: 12px;
    cursor: pointer;
}

.uniqueII-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.uniqueII-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.uniqueII-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cccccc69;
    transition: .4s;
    border-radius: 26px;
}

.uniqueII-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 0px;
    bottom: 1px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}




input:checked + .uniqueII-slider {
    background-color: #e21c5a;
}

input:checked + .uniqueII-slider:before {
    transform: translateX(22px);
}

.uniqueII-time-display {
    margin: 0 10px;
    font-size: 14px;
}

.uniqueII-volume-container {
    display: flex;
    align-items: center;
    position: relative;
}

.uniqueII-error-display {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    z-index: 20;
			transition: opacity 0.5s ease;
}

.uniqueII-toggle-btn {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    cursor: pointer;
    width: 25px;
    height: 40px;
    border-radius: 10px 0px 0px 10px; /* 左上, 右上, 右下, 左下 */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

.uniqueII-toggle-btn svg {
			padding: 0px 0px 4px 0px; /* 上 右 下 左 */
    width: 30px;
    height: 30px;
}

.uniqueII-fast-seek-display {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    z-index: 25;
    display: none;
}
		
		.uniqueII-fast-seek-display:empty {
			display: none;
		}

/* 加载动画样式 */
.uniqueII-loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 30;
}

.uniqueII-spinner-circle {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
transform: rotate(360deg);
    }
}

.uniqueII-loading-text {
    color: white;
    margin-top: 10px;
    font-size: 14px;
}

/* 中心播放/暂停图标 */
.uniqueII-center-play-btn {
    position: absolute;
    top: 48.4%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 25;
    opacity: 0;
    transition: opacity 0.3s;
}

.uniqueII-center-play-btn.show {
    opacity: 1;
}

.uniqueII-center-play-btn svg {
    width: 30px;
    height: 30px;
}

/* 弹幕发送窗口样式 */
.danmakuII-send-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid #444;
    border-radius: 12px;
    padding: 25px;
    width: 350px;
    max-width: 80%;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(5px);
    animation: modalAppear 0.3s ease-out;
}

@keyframes modalAppear {
    from {
opacity: 0;
transform: translate(-50%, -50%) scale(0.8);
    }
    to {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
    }
}

.danmakuII-send-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #444;
}

.danmakuII-send-title {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.danmakuII-send-close {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.danmakuII-send-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.danmakuII-send-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.danmakuII-input {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #444;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
}

.danmakuII-input:focus {
    outline: none;
    border-color: #fa0c5bd6;
}

.danmakuII-send-btn {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #fa0c5bd6;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.danmakuII-send-btn:hover {
    background: #e00a4a;
}

.danmakuII-colors {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.danmakuII-color {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s;
}

.danmakuII-color:hover {
    transform: scale(1.1);
}

.danmakuII-color.active {
    border-color: white;
}

/* CORS错误提示样式 */
.corsII-error-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(19 19 19 / 85%);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    z-index: 100;
    max-width: 80%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
}

.corsII-error-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
			color: #ff6b6b;
}

.corsII-error-message {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
			color: #fff;
}

.corsII-error-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
			background: #ff6b6b;
}

.corsII-error-close:hover {
    background: #ee4a4ad9;
}
		
/* 弹幕显示区域 - 与视频播放器同级 */
.unique-danmaku-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.unique-danmaku-item {
    position: absolute;
    white-space: nowrap;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    font-size: 16px;
    font-weight: bold;
    user-select: none;
    pointer-events: none;
    z-index: 5;
    animation: danmakuMove linear;
}






.vip_player_payment_toast {
    height: 32px;
    width: 100%;
    line-height: 32px;
    color: #fff;
    font-size: 14px;
    padding-left: 10px;
    position: relative;
    text-align: left;
    z-index: 98;
    display: none; /* 默认隐藏 */
}

.vip_toast_content {
    display: flex;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.vip_player_tit {
    margin-right: 10px;
}

.vip_toast_text {
    color: #ffffff;
    background: rgba(30,30,30, 0.95);
    font-family: PingFang SC;
    font-weight: 500;
    border-radius: 18px;
    padding: 15px 4px 15px 18px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.vip_trial_playing {
    color: #4D132D;
    padding: 2px 11px;
    border-radius: 109px;
    background: linear-gradient(79deg, #FFCC66 0%, #FFDD9A 100%);
    font-size: 13px;
    font-weight: 600;
    font-family: PingFang SC;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 3px;
	cursor: pointer;
}