/* 这是CSS样式文件，控制网页的外观 */

/* 基础重置 - 这些不用改，确保各浏览器显示一致 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 网页主体样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    /* 【可选修改】背景颜色 - 可以改成你喜欢的颜色 */
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
    /* 下面这些不用改，确保内容居中显示 */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* 主内容容器 */
.container {
    text-align: center;
    width: 100%;
    /* 最大宽度，在大屏幕上不会太宽 */
    max-width: 800px;
}

/* 图片区域样式 */
.hero-image {
    margin-bottom: 40px;
}

.hero-image img {
    /* 确保图片响应式，不会超出屏幕 */
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* 【可选修改】图片圆角，如果不要圆角改成 0 */
    border-radius: 8px;
    /* 【可选修改】图片阴影，如果不要阴影改成 none */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 下载按钮区域 */
.download-section {
    margin-top: 20px;
}

/* 下载按钮样式 */
.download-button {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    /* 【可选修改】按钮背景颜色 - 当前是蓝色渐变 */
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    /* 【可选修改】按钮圆角 - 当前是椭圆形状 */
    border-radius: 50px;
    transition: all 0.3s ease;
    /* 【可选修改】按钮阴影 */
    box-shadow: 0 4px 10px rgba(106, 142, 251, 0.4);
    border: none;
    cursor: pointer;
}

/* 鼠标悬停时按钮效果 */
.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(106, 142, 251, 0.6);
    background: linear-gradient(135deg, #5a7dfa, #9666d8);
}

/* 手机端适配 - 这些不用改，自动适应手机屏幕 */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .hero-image {
        margin-bottom: 30px;
    }

    .download-button {
        padding: 16px 35px;
        font-size: 1.2rem;
        width: 90%;
        max-width: 300px;
    }
}