.coming-soon {
    min-height: calc(100vh - 80px - 300px); /* 减去导航栏和页脚的高度 */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.coming-soon-content {
    text-align: center;
    padding: 2rem;
}

.coming-soon h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.coming-soon p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
} 