/* 创作者中心样式 */
.page-container{
    height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1;
    overflow: hidden;
}
.live-section {
    position: relative;
    background-image: url('https://res.yzfz.net/website/fz_innovate_bg_1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 100%;
}
.live-content {
    max-width: 800px;
    z-index: 1;
    /* background-color: rgba(0, 0, 0, 0.5); */
    padding: 60px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    text-align: left;
}
.live-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.live-subtitle {
    font-size: 2rem;
    color: #919191;
    margin-bottom: 25px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.live-btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 1rem;
    background-color: #ff3e6c;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    margin: 20px auto 0;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 62, 108, 0.4);
}
.live-btn:hover {
    background-color: #ff2a58;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 62, 108, 0.6);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .live-section {
        padding: 100px 0;
        min-height: auto;
    }
    .live-content {
        padding: 40px 20px;
        margin: 0 15px;
    }
    .live-title {
        font-size: 36px;
    }
    .live-subtitle {
        font-size: 18px;
    }
    .live-btn {
        padding: 12px 30px;
        font-size: 16px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .live-title {
        font-size: 28px;
    }
    .live-subtitle {
        font-size: 16px;
    }
    .live-content {
        padding: 30px 15px;
    }
}