/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 设置背景渐变色 */
body {
    font-family: 'Microsoft YaHei', sans-serif;
    height: 100vh;
    background: linear-gradient(135deg, #6B73FF, #000DFF);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 容器样式 */
.container {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

/* Logo样式 */
.logo {
    margin-bottom: 20px;
}

.logo img {
    max-width: 100px;
    height: auto;
}

/* 标题样式 */
.header h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* 内容样式 */
.content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* 按钮样式 */
button {
    background-color: #FF5722;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    margin: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #E64A19;
}
