mirror of
https://github.com/PlayEdu/frontend.git
synced 2025-07-20 03:59:41 +08:00
101 lines
2.1 KiB
SCSS
101 lines
2.1 KiB
SCSS
.video-mask {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 100vh;
|
|
background-color: #0e0e1e;
|
|
display: flex;
|
|
justify-content: center;
|
|
.top-cont {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 60px;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
.box {
|
|
width: 62.5%;
|
|
height: 60px;
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 0 auto;
|
|
.close-btn {
|
|
width: 110px;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
color: #ffffff;
|
|
line-height: 24px;
|
|
cursor: pointer;
|
|
&:hover {
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.video-body {
|
|
width: 62.5%;
|
|
height: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
padding-top: 30px;
|
|
margin-top: 60px;
|
|
.video-title {
|
|
width: 100%;
|
|
height: 36px;
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
color: rgba(255, 255, 255, 0.88);
|
|
line-height: 36px;
|
|
margin-bottom: 30px;
|
|
text-align: left;
|
|
}
|
|
|
|
.video-box {
|
|
width: 100%;
|
|
// padding-bottom: calc(9 / 16 * 100%);
|
|
height: auto;
|
|
margin: 0 auto;
|
|
border-radius: 8px;
|
|
position: relative;
|
|
.alert-message {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 18px;
|
|
color: white;
|
|
z-index: 100;
|
|
.alert-button {
|
|
width: 200px;
|
|
height: 54px;
|
|
background: #ff4d4f;
|
|
border-radius: 27px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
margin-bottom: 30px;
|
|
&:hover {
|
|
opacity: 0.8;
|
|
}
|
|
&:last-child {
|
|
margin-bottom: 0px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|