/* 主容器布局 */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
    flex-direction: column;
}

/* 网站配置区域 */
.site-config {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    margin-top: 50px;
}

.site-config:hover {
    transform: translateY(-5px);
}

/* 标题样式 */
.config-title h1 {
    font-size: 2.5rem;
    color: #007bff;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}
.config-title h2 {
    font-size: 2.5rem;
    color: #007bff;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
}

.config-title h3 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
}

/* 内容样式 */
.config-content {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}
/* 标题样式 */
.config-content h1 {
    font-size: 2.5rem;
    color: #007bff;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}
.config-content h2 {
    font-size: 2.5rem;
    color: #007bff;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
}

.config-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
}
/* 设置标题样式 */
.site-config h1 {
    font-size: 2.5rem;
    color: #007bff;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* 设置段落样式 */
.site-config p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .site-config {
        padding: 30px 20px;
    }

    .config-title h1 {
        font-size: 2rem;
    }

    .config-content {
        font-size: 1rem;
    }
    .site-config h1 {
        font-size: 2rem;
    }

    .site-config p {
        font-size: 1rem;
    }
}