imeeting/frontend/src/pages/home/RightVisual.less

24 lines
593 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

.home-right-visual {
position: absolute;
top: 50%;
left: 35%; // 向左侧偏移(原本是 50%
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
pointer-events: none;
&__video {
width: 800px;
max-width: none;
height: auto;
object-fit: cover;
// 轻微的阴影可以让视频更好地融入背景
filter: drop-shadow(0 15px 35px rgba(99, 102, 241, 0.15));
// webm 如果带透明通道,正常显示即可,不再需要 mix-blend-mode 干扰
}
}