Livestream
margin: 0;
font-family: “Segoe UI”, sans-serif;
background: #f0f2f5;
}
.livestream-layout {
display: flex;
flex-direction: row;
max-width: 1200px;
margin: 40px auto;
background: white;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
overflow: hidden;
flex-wrap: wrap;
}
.video-column {
flex: 2;
display: flex;
flex-direction: column;
background: black;
min-width: 300px;
}
.video-wrapper {
position: relative;
padding-bottom: 56.25%; /* 16:9 tỷ lệ */
height: 0;
overflow: hidden;
}
.video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
.video-footer {
background-color: #121212;
color: white;
display: flex;
align-items: center;
padding: 12px 16px;
gap: 12px;
font-size: 14px;
flex-wrap: wrap;
}
.video-logo {
height: 32px;
width: auto;
}
.video-caption {
margin: 0;
line-height: 1.4;
}
.comment-column {
flex: 1;
padding: 16px;
background: #ffffff;
border-left: 1px solid #e0e0e0;
min-width: 280px;
}
.fb-comments {
width: 100% !important;
}
@media (max-width: 768px) {
.livestream-layout {
flex-direction: column;
margin: 0;
border-radius: 0;
box-shadow: none;
}
.comment-column {
border-left: none;
border-top: 1px solid #e0e0e0;
}
.video-footer {
flex-direction: column;
align-items: center;
margin-bottom: 16px;
}
}
