/* 背景图片设置，确保背景可滑动 */
.background {
    background-image: url('4.jpg');
    background-size: cover;
    background-repeat: repeat-x;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
}

/* 移除顶部和两侧的空白 */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
}

/* 容器整体居中对齐 */
.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    text-align: center;
}

/* Logo 样式修复，确保显示为方形 */
.header {
    margin-bottom: 10px;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 0; /* 确保 Logo 显示为方形 */
    margin-bottom: 10px;
}

/* 文字说明样式 */
h2 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

/* 毛玻璃效果容器 */
.glass-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    margin-top: 10px;
}

/* 按钮样式 */
.glass-box button {
    width: 80%;
    margin: 10px auto;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    display: block;
    font-size: 16px;
    border: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-download {
    background-color: #ff69b4;
    color: #fff;
}

.btn-android {
    background-color: #ffa500;
    color: #fff;
}

.btn-ios {
    background-color: #32cd32;
    color: #fff;
}

.btn-support {
    background-color: #1e90ff;
    color: #fff;
}

/* 按钮悬停效果 */
.glass-box button:hover {
    opacity: 0.9;
}

/* 温馨提示文本样式 */
.notice {
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
}

/* 自定义文字样式 */
.custom-text {
    color: #fff; /* 可自定义颜色 */
    font-size: 18px; /* 可自定义字体大小 */
    font-weight: bold;
    margin-bottom: 20px;
}
