body {
    background-image: url('bg.png');
    color: #222222;
    text-align: center;
    font-family: "Microsoft YaHei", sans-serif; /* 添加后备字体 */
    margin: 0; /* 移除默认外边距 */
    padding: 0; /* 移除默认内边距 */
}

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

a:hover { /* 添加鼠标悬停效果 */
    text-decoration: underline;
}

.main {
    background: #fff;
    text-align: center;
    padding: 40px;
    margin: 100px auto;
    width: 90%; /* 调整宽度以适应不同屏幕 */
    max-width: 1200px; /* 设置最大宽度 */
    background-color: rgba(255, 255, 255, 0.8); /* 增加背景颜色的不透明度 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
}

.title {
    font-size: 3em;
    margin-bottom: 20px; /* 添加底部外边距 */
}

.img {
    margin: 30px auto;
    display: flex; /* 使用flex布局 */
    justify-content: center; /* 居中对齐 */
    gap: 20px; /* 图片之间的间距 */
}

.img a img { /* 确保图片响应式 */
    max-width: 100%;
    height: auto;
}

.tip {
    font-size: 1.5em;
    margin-bottom: 30px; /* 添加底部外边距 */
}

.button {
    margin: 30px auto;
    background: #ed5567;
    color: #fff;
    padding: 10px 20px;
    width: 180px;
    font-size: 1.1em; /* 调整字体大小 */
    border-radius: 3px;
    display: inline-block; /* 确保按钮为内联块元素 */
    line-height: 1.5; /* 调整行高 */
}

#enter a {
    color: #fff;
    text-decoration: none;
}

.notice {
    font-size: 1.1em;
    margin-top: 20px;
}

.link {
    font-size: 1em;
    margin-top: 20px;
}

.foot {
    font-size: 0.8em;
    margin-top: 20px;
    color: #888; /* 调整页脚文字颜色 */
}

.new {
    display: inline-block;
    transform: translateY(-30px);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    background: linear-gradient(to top, #ec867e 0%, #ec6190 100%);
    color: #ffffff;
    border-radius: 1rem;
    padding: 0.15rem 0.275rem;
    line-height: 1;
    font-weight: bold;
    margin-left: 0.4em;
}