/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 0 10px; /* 增加左右间距 */
}

/* 页面容器 */
.container {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px; /* 限制最大宽度 */
}

/* 标题样式 */
h1 {
    color: #333;
    margin-bottom: 20px;
}

/* 按钮容器 */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 20px; /* 增加按钮间距 */
}

/* 按钮样式 */
.button {
    display: inline-block;
    padding: 18px 35px; /* 增大按钮的内边距 */
    font-size: 20px; /* 增大字体 */
    text-decoration: none;
    color: white;
    background-color: rgb(7, 193, 96); /* 使用提取的绿色 */
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
    text-align: center;
}

.button:hover {
    background-color: #009e65; /* 稍微暗一些的绿色 */
    transform: scale(1.1);
}

.button:active {
    background-color: #007b4f; /* 更深一点的绿色 */
}

/* 手机适配 */
@media (max-width: 600px) {
    .button-container {
        padding: 0;
    }

    .button {
        padding: 20px 0; /* 增大按钮的上下内边距 */
        font-size: 24px; /* 增大字体 */
    }
}