2020-11-25 10:00:46 +08:00
|
|
|
*{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
html{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
body{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: #F5F5F5;
|
|
|
|
font-family: Futura,sans-serif;
|
|
|
|
}
|
|
|
|
video{
|
|
|
|
background-color: #d8d8d8;
|
|
|
|
}
|
2020-12-01 10:04:23 +08:00
|
|
|
/* @media screen and (min-width:960rem) {
|
2020-11-25 10:00:46 +08:00
|
|
|
video{
|
|
|
|
width: auto !important;
|
|
|
|
height: 100% !important;
|
|
|
|
position: inherit !important;
|
|
|
|
}
|
|
|
|
.video-div{
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
}
|
2020-12-01 10:04:23 +08:00
|
|
|
@media screen and (max-width:960rem) {
|
2020-11-25 10:00:46 +08:00
|
|
|
video{
|
|
|
|
width: 100% !important;
|
|
|
|
height: auto !important;
|
|
|
|
position: inherit !important;
|
|
|
|
}
|
|
|
|
.video-div{
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
} */
|
|
|
|
#room-root{
|
|
|
|
width: 100%;
|
2020-12-01 10:04:23 +08:00
|
|
|
height: 750rem;
|
|
|
|
/* min-width: 1500rem; */
|
|
|
|
/* min-height: 700rem; */
|
2020-11-25 10:00:46 +08:00
|
|
|
display: none;
|
|
|
|
align-items: flex-start;
|
2020-12-01 10:04:23 +08:00
|
|
|
padding: 16rem;
|
|
|
|
background-color: #F5F5F5;
|
2020-11-25 10:00:46 +08:00
|
|
|
}
|
|
|
|
.member{
|
|
|
|
cursor: default;
|
|
|
|
border-bottom-style: solid;
|
|
|
|
border-width: 0;
|
|
|
|
border-bottom-color: #f0f0f0;
|
|
|
|
}
|
|
|
|
#video-grid{
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(5, 1fr);
|
|
|
|
grid-template-rows: repeat(3, 1fr);
|
|
|
|
grid-template-areas: 'm m m a b'
|
|
|
|
'm m m c d'
|
|
|
|
'e f g h i';
|
|
|
|
}
|
|
|
|
#video-grid>div{
|
|
|
|
position: relative;
|
2020-12-01 10:04:23 +08:00
|
|
|
padding: 10rem;
|
2020-11-25 10:00:46 +08:00
|
|
|
}
|
|
|
|
#main-video{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2020-12-01 10:04:23 +08:00
|
|
|
padding: 10rem;
|
2020-12-03 10:23:09 +08:00
|
|
|
grid-area: 1/1/3/5;
|
2020-12-01 10:04:23 +08:00
|
|
|
border-radius: 17rem;
|
2020-11-25 10:00:46 +08:00
|
|
|
}
|
|
|
|
.video-box{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.mask{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
2020-12-01 10:04:23 +08:00
|
|
|
font-size: 14rem;
|
2020-11-25 10:00:46 +08:00
|
|
|
color: #888888;
|
|
|
|
z-index: 9;
|
|
|
|
justify-content: center
|
|
|
|
}
|
|
|
|
div[id^=player] {
|
|
|
|
background-color: #d8d8d8 !important;
|
|
|
|
}
|