.widget .widget-title:after {
    display: none;
}
.widget-area .widget {
    margin-bottom: 0px;
}
/* 核心：视频容器（自适应） */
.video-container {
    width: 100%;
    max-width: 1000px; /* 桌面端最大宽度 */
    margin: 0 auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    /* 保持视频16:9比例（自适应关键） */
    aspect-ratio: 16 / 9;
    /* 解决移动端点击区域问题 */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
/* 自定义封面图（未播放时显示） */
/* 播放按钮（自适应大小） */
.play-btn {
    width: clamp(40px, 8vw, 80px); /* 移动端最小40px，桌面最大80px */
    height: clamp(40px, 8vw, 80px);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    transition: transform 0.3s ease;
    /* 提升按钮点击优先级 */
    pointer-events: auto;
}
.play-btn::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    /* 按钮三角自适应 */
    border-width: clamp(8px, 1.5vw, 15px) 0 clamp(8px, 1.5vw, 15px) clamp(12px, 2vw, 22px);
    border-color: transparent transparent transparent #fff;
    margin-left: clamp(2px, 0.5vw, 5px);
}
.video-container:hover .play-btn {
    transform: scale(1.1);
}
/* 视频标签（初始隐藏，播放后显示） */
#video-player {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden; /* 初始隐藏，避免覆盖封面 */
    /* 解决iOS视频层级问题 */
    z-index: 2;
}
/* 播放状态：隐藏封面，显示视频 */
.video-container.playing .video-cover {
    opacity: 0;
    pointer-events: none;
}
.video-container.playing #video-player {
    visibility: visible;
}

.about-content p{
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 10px;
}
.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}
/* 移动端优化：去掉hover效果，调整点击区域 */
@media (max-width: 768px) {
.video-container {
    border-radius: 4px;
}
.play-btn {
    transform: none !important; /* 取消hover缩放 */
}
}
.widget .widget-title:after{
	display: none;
}