/* 通用样式设置 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif; /* 使用一种比较美观现代的字体 */
    background-color: #f4f4f4;
    background-image: url('your-background-image-url-here'); /* 替换为实际背景图片路径或链接 */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#construction-wrapper {
    background-color: rgba(255, 255, 255, 0.8); /* 半透明的白色背景覆盖，让文字更清晰可读 */
    border-radius: 10px; /* 圆角边框 */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* 淡淡的阴影效果 */
    padding: 30px;
    width: 80%;
    max-width: 600px; /* 限制最大宽度，在大屏幕上也不会太宽 */
}

#construction-message {
    text-align: center;
}

#construction-message h1 {
    color: #333; /* 标题文字颜色 */
    font-size: 36px;
    margin-bottom: 10px;
}

#construction-message p {
    color: #666; /* 段落文字颜色 */
    font-size: 18px;
}

#time-display {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #333;
}

/* 响应式调整，比如在较小屏幕尺寸下改变字体大小、间距等 */
@media (max-width: 600px) {
    #construction-wrapper {
        width: 90%;
    }
    #construction-message h1 {
        font-size: 28px;
    }
    #construction-message p {
        font-size: 16px;
    }
}