* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部插图区域 */
.hero-section {
    position: relative;
    background-color: #1a202c;
    padding: 0;
    margin-bottom: 0;
    overflow: hidden;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
    object-position: center;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: auto;
    z-index: 20;
}

/* 右侧卡片（电脑端） */
.right-card {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 280px;
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* 主内容区域（电脑端） */
.main-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
    min-height: 250px;
    padding: 20px;
}

.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 40px;
}

.introduction {
    margin-top: 10px;
    color: #666;
}

.right-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.status-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.status-tag {
    display: inline-block;
    font-size: 12px;
    color: #ff6b35;
}

.status-tag::before {
    content: '●';
    font-size: 8px;
    margin-right: 5px;
    color: #ff6b35;
}

.replay-btn {
    background-color: white;
    border: 1px solid #ff6b35;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.replay-btn:hover {
    background-color: #ff6b35;
    color: white;
}

.live-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.enter-live-btn {
    width: 100%;
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 12px 0;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.enter-live-btn:hover {
    background-color: #e55a2b;
}

/* 移动端内容（默认隐藏） */
.mobile-content {
    display: none;
    background-color: white;
    margin-bottom: 0;
}

.mobile-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.mobile-title {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-status {
    margin-bottom: 0;
    font-size: 12px;
}

.mobile-section-title {
    margin: 0;
    padding: 15px 20px;
    text-align: left;
    position: relative;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: 600;
}

.mobile-section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20px;
    transform: none;
    width: 60px;
    height: 2px;
    background-color: #ff6b35;
}

.mobile-content .introduction {
    padding: 20px;
    margin: 0;
}

.mobile-btn {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

/* 底部功能区 */
.bottom-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
}

.share-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.share-btn::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8'/%3E%3Cpolyline points='16 6 12 2 8 6'/%3E%3Cline x1='12' y1='2' x2='12' y2='15'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.share-btn:hover {
    border-color: #ddd;
    color: #333;
}

.language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 4px;
    position: relative;
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
}

.language-options.show {
    display: block;
}

.language-option {
    padding: 8px 16px;
    cursor: pointer;
    white-space: nowrap;
}

.language-option:hover {
    background-color: #f5f5f5;
}

.dropdown-icon {
    font-size: 10px;
    margin-left: 5px;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-content {
        display: none;
    }
    
    .mobile-content {
        display: block;
    }
    
    .bottom-section {
        display: none;
    }
    
    .right-card {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-content {
        display: none;
    }
}