/* 通用样式 */
.body {
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100vh; /* 使页面占满整个屏幕高度 */
    font-family: Microsoft Yahei UI light, Microsoft Yahei, 微软雅黑, Arial, helvetica;
    font-size: 1em;
    background-color: #FFF; /* 白色背景 */
    color: #333; /* 灰色文字 */
    display: flex;
    flex-direction: column;
    justify-content: center; /* 垂直居中 */
    align-items: center; /* 水平居中 */
    text-align: center; /* 文字居中 */
    line-height: 1.6;
}

a {
    color: #444; 
    text-decoration: none;
}

.container {
    max-width: 800px; /* 限制内容宽度 */
    padding: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333; /* 黑色标题 */
}

p {
    font-size: 1.2em;
    color: #333; /* 灰色文字 */
}

.links {
    position: absolute;
    bottom: 10%;
    width: 100%;
    text-align: center;
}

.link a {
    margin-right: 40px;
    color: #333; /* 灰色链接 */
    text-decoration: none;
}

.link a:hover {
    color: #333; /* 黑色链接悬停 */
    text-decoration: underline; /* 添加鼠标悬停效果 */
}

/* 移动端适配 */
@media (max-width: 768px) {
    h1 {
        font-size: 2em; /* 移动端缩小标题字体 */
    }

    p {
        font-size: 1em; /* 移动端缩小正文字体 */
    }

    .links {
        bottom: 5%; /* 移动端调整链接位置 */
    }

    .link a {
        margin-right: 20px; /* 移动端减少间距 */
    }
}
