225 lines
3.4 KiB
SCSS
225 lines
3.4 KiB
SCSS
.meeting-page {
|
|
width: 100%;
|
|
height: 100vh;
|
|
background: #000;
|
|
}
|
|
|
|
.meeting-nav {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 16px;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
z-index: 1000;
|
|
}
|
|
|
|
.meeting-nav .nav-back {
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.meeting-nav .nav-back .back-icon {
|
|
color: #fff;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.meeting-nav .nav-title {
|
|
color: #fff;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.meeting-nav .nav-right .end-btn {
|
|
color: #ff4444;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* 弹窗模式样式 */
|
|
.meeting-modal {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.modal-mask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
z-index: 1;
|
|
}
|
|
|
|
.modal-content {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background: #fff;
|
|
border-radius: 16px 16px 0 0;
|
|
animation: slideUp 0.3s ease-out;
|
|
max-height: 70vh;
|
|
overflow-y: auto;
|
|
z-index: 2;
|
|
}
|
|
|
|
@keyframes slideUp {
|
|
from {
|
|
transform: translateY(100%);
|
|
}
|
|
to {
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.modal-header {
|
|
position: relative;
|
|
padding: 20px 20px 16px;
|
|
border-bottom: 1px solid #f0f0f0;
|
|
}
|
|
|
|
.modal-title {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: #333;
|
|
padding-right: 40px;
|
|
}
|
|
|
|
.close-btn {
|
|
position: absolute;
|
|
right: 16px;
|
|
top: 16px;
|
|
width: 32px;
|
|
height: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.close-icon {
|
|
font-size: 28px;
|
|
color: #999;
|
|
line-height: 1;
|
|
}
|
|
|
|
.modal-body {
|
|
padding: 20px;
|
|
}
|
|
|
|
.meeting-info {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.info-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.info-label {
|
|
font-size: 14px;
|
|
color: #666;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.info-value {
|
|
font-size: 14px;
|
|
color: #333;
|
|
flex: 1;
|
|
}
|
|
|
|
.tips-box {
|
|
background: #fff7e6;
|
|
border: 1px solid #ffd591;
|
|
border-radius: 8px;
|
|
padding: 12px;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.tips-icon {
|
|
font-size: 20px;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.tips-text {
|
|
font-size: 13px;
|
|
color: #d48806;
|
|
flex: 1;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.url-preview {
|
|
background: #f5f5f5;
|
|
border-radius: 8px;
|
|
padding: 12px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.url-label {
|
|
font-size: 12px;
|
|
color: #999;
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.url-text {
|
|
font-size: 12px;
|
|
color: #666;
|
|
word-break: break-all;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.modal-footer {
|
|
padding: 0 20px 32px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.action-btn {
|
|
width: 100%;
|
|
height: 48px;
|
|
border-radius: 8px;
|
|
font-size: 16px;
|
|
border: none;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.copy-btn {
|
|
background: #667eea;
|
|
color: #fff;
|
|
}
|
|
|
|
.browser-btn {
|
|
background: #fff;
|
|
color: #667eea;
|
|
border: 1px solid #667eea;
|
|
}
|
|
|
|
/* 全屏页面样式(非小程序环境) */
|
|
.meeting-page-full {
|
|
width: 100%;
|
|
height: 100vh;
|
|
background: #000;
|
|
} |