@font-face {
    font-family: 'AlimamaFangYuanTiVF';
    src: url('/fonts/AlimamaFangYuanTiVF-Thin.woff2') format('woff2'),
         url('/fonts/AlimamaFangYuanTiVF-Thin.woff') format('woff'),
         url('/fonts/AlimamaFangYuanTiVF-Thin.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'AlimamaFangYuanTiVF', sans-serif;
    background: #f4f4f4; /* 页面背景色 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* 将内容垂直居中 */
    min-height: 100vh; /* 设置最小高度 */
}

.container {
    width: 90%;
    max-width: 800px;
    padding: 20px;
    background: white; /* 容器背景色 */
    border-radius: 12px; /* 容器圆角 */
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease-in-out;
    margin-top: 0; /* 移除顶部边距 */
}

.container:hover {
    transform: translateY(-5px); /* 鼠标悬停时轻微上移 */
}

.footer {
    padding: 20px;
    background: white; /* 与容器背景色一致 */
    color: #333;
    width: 100%;
    font-size: 0.8em;
    margin-top: 20px; /* 与容器保持一定距离 */
    border-radius: 12px; /* 页脚四个角都是圆角 */
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1); /* 页脚阴影 */
}

.footer p {
    margin: 0;
}

#time {
    margin-top: 20px;
    font-size: 1em;
    color: #333;
}

a {
    color: #333; /* 链接文字颜色为黑色 */
    text-decoration: none;
    transition: color 0.3s; /* 平滑的颜色过渡 */
}

a:hover {
    color: orange; /* 鼠标悬停时文字颜色为橙色 */
    text-decoration: underline;
}

.logo {
    width: 30px; /* 根据实际图标大小调整 */
    height: 100%;
    margin-right: 10px;
    vertical-align: middle;
}

h1, h2 {
    color: #333; /* 标题颜色 */
    font-weight: 300;
}

ul, ol {
    padding-left: 20px;
    text-align: left; /* 列表内容左对齐 */
}

li {
    margin-bottom: 10px;
}

p {
    margin-bottom: 20px; /* 文章和按钮之间的空间 */
    color: #666; /* 较深的文本颜色 */
    line-height: 1.6; /* 行高 */
    font-size: 1em; /* 字体大小 */
}

.button-link {
    font-family: 'AlimamaFangYuanTiVF', sans-serif;
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px; /* 按钮顶部的空间 */
    border: none;
    border-radius: 6px;
    background-image: linear-gradient(to right, #667eea, #764ba2);
    color: white;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
    text-align: center; /* 按钮文字居中 */
}

.button-link:hover {
    font-family: 'AlimamaFangYuanTiVF', sans-serif;
    background-image: linear-gradient(to right, #764ba2, #667eea);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.button-link:active {
    font-family: 'AlimamaFangYuanTiVF', sans-serif;
    transform: scale(0.95);
}

input[type="text"] {
    width: 300px; /* 设置搜索框的宽度 */
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 15px;
}

input[type="text"]:focus {
    border-color: #66afe9;
    outline: none;
}
