/* styles/custom-skin.css */
.custom-video-skin {
position: relative;
border-radius: 8px;
overflow: hidden;
}
.custom-controls {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 16px;
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.controls-left,
.controls-right {
display: flex;
align-items: center;
gap: 8px;
}
.controls-center {
flex: 1;
margin: 0 16px;
}
/* 自定义按钮样式 */
.custom-video-skin button {
background: transparent;
border: none;
color: white;
cursor: pointer;
padding: 8px;
border-radius: 4px;
transition: background-color 0.2s;
}
.custom-video-skin button:hover {
background-color: rgba(255,255,255,0.1);
}