* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
}

.page {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: opacity 0.6s ease;
}

/* 左上角 */

.logo {
    position: absolute;
    top: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 18px 25px;
    border-radius: 25px;
}

.avatar {
    width: 60px;
    height: 60px;
    background: #ccc;
    border-radius: 50%;
}

.title {
    font-size: 26px;
    font-weight: 900;
    color: #000;
}

.subtitle {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.badge {
    background: linear-gradient(90deg, #00ff66, #00cc44);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 15px;
    color: #000;
}

/* 右上 */

.right-tag {
    position: absolute;
    top: 200px;
    right: 120px;
    background: #8cff00;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 900;
}

/* 二维码 */

.qrcode-box {
    position: absolute;
    bottom: 160px;
    left: 120px;
    text-align: center;
    background: rgba(0,0,0,0.6);
    padding: 25px;
    border-radius: 25px;
}

.qrcode-box img {
    width: 200px;
    height: 200px;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
}

.download-tip {
    margin-top: 15px;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
}

.download-subtip {
    font-size: 15px;
    color: #ddd;
}

/* 主标题 */

.main-text {
    position: absolute;
    bottom: 220px;
    right: 100px;
    text-align: right;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 30px 45px;
    border-radius: 30px;
}

.main-title {
    font-size: 60px;
    font-weight: 900;
    color: #35bfff;
}

.main-highlight {
    font-size: 48px;
    font-weight: 900;
    color: #ff2a2a;
    margin-top: 10px;
}

/* 底部 */

.bottom-notice {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #aaff66;
    padding: 14px;
    text-align: center;
    font-weight: bold;
}