/* 视频弹窗：独立类名 vmodal，完全不依赖原站 .modal 样式，彻底避免冲突。
   所有设备都居中显示（不再贴底）。 */
.vmodal{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;padding:16px;background:rgba(10,18,32,.62)}
.vmodal[hidden]{display:none !important}
.vmodal__panel{position:relative;width:min(92vw,560px);max-height:88vh;background:#fff;border-radius:12px;box-shadow:0 20px 60px rgba(0,0,0,.35);padding:14px;display:flex;flex-direction:column}
.vmodal__head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}
.vmodal__head h3{margin:0;font-size:16px;line-height:1.35;color:#172033}
.vmodal__close{width:34px;height:34px;flex:0 0 34px;border:0;border-radius:8px;background:#f1f3f6;color:#172033;font-size:22px;line-height:1;cursor:pointer}
.vmodal__video{display:block;width:100%;max-height:64vh;border-radius:8px;background:#000}
.vmodal__actions{display:flex;justify-content:flex-end;margin-top:10px}
.vmodal__actions button{border:0;border-radius:8px;background:#eef8f3;color:#0e8358;padding:8px 14px;font-size:13px;font-weight:700;cursor:pointer}
