/* 给图片里面加一个播放按钮 */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 80px;
    height: 80px;

    background: transparent; /* 完全透明 */
    border: 2px solid #fff;  /* 白色边框 */
    border-radius: 50%;

    transition: all 0.3s ease;
}

/* 三角形 */
.play-btn::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 26px;
    
    width: 0;
    height: 0;
    border-left: 20px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

/* hover 效果（高级感关键） */
.story-video a:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    border-color: #ff6600; /* 你的品牌色 */
}

/* hover 三角形也变色 */
.story-video a:hover .play-btn::before {
    border-left-color: #ff6600;
}

.play-btn {
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.story-video a:hover .play-btn {
    box-shadow: 0 0 25px rgba(255,102,0,0.6);
}
