* {
    margin: 0;
    padding: 0;
}

html {
    scrollbar-color: #6969dd #e0e0e0;
    scrollbar-width: thin;
}

body {
    overflow: hidden;
    margin: 0;
    width: 100vw;
    background: #fbfbfd;
    font-family: SF Pro SC, SF Pro Display, SF Pro Icons, PingFang SC, Helvetica Neue, Helvetica, Arial, sans-serif;
    justify-content: center;
    align-items: center;
}

a {
    text-decoration: none;
}

iframe {
    border: none;
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
    padding: 0;
    color: #1d1d1f;
}

svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.main {
    height: 100vh;
    width: 100vw;
    background: #242830;
    background-size: cover;
}

h1 {
    font: 10vmin/0.8 "Libre Franklin";
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #fbfbfd;
    text-shadow: 0 0 5px #fff;
    mix-blend-mode: overlay;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    transition: 3s ease-in-out;
}

.model {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent;
    transition: .3s ease-out;
}

.dilog-main {
    height: 65%;
    width: 90%;
    min-height: 625px;
    max-width: 400px;
    min-width: 290px;
    background: #fbfbfdc6;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
}

.dialog-bottom::-webkit-scrollbar-thumb {
    background-color: transparent;
}

.dialog-window {
    height: 100%;
    width: 80%;
    margin: 28px auto;
}

.top {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.3rem;
    color: #28282b;
}

span {
    color: #28282b;
    font-size: 1.5rem;
}

.mid {
    position: relative;
    height: 111px;
}

input {
    width: 92%;
    height: 22px;
    background-color: rgb(255 255 255 / 52%);
    border: none;
    outline: none;
    border-radius: 28px;
    padding: 10px;
    font-size: 1.1rem;
    margin: 0 auto 18px auto;
}

.getBtnOut {
    display: flex;
}

.getBtn {
    height: 36px;
    width: 82px;
    background-color: #6969dd;
    background-color: rgb(255 255 255 / 52%);
    border-radius: 28px;
    position: relative;
    line-height: 36px;
    text-align: center;
    font-size: .9rem;
    color: #28282b;
    margin: 0 6px;
}

.bottom p {
    font-size: .8rem;
    margin-top: 8px;
}

.footer {
    position: absolute;
    font-size: .8rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    text-align: center;
}
/* ... 其他CSS代码 */

.getBtnOut {
    display: flex;
    z-index: 10;
    position: relative;
}

.getBtn {
    height: 36px;
    width: 82px;
    background-color: #2b75ff;
    background-color: rgb(43,117,255 / 52%);
    border-radius: 28px;
    position: relative;
    line-height: 36px;
    text-align: center;
    font-size: .9rem;
    color: #ffffff;
    margin: 0 6px;
    z-index: 10;
    cursor: pointer;
}

/* 确保背景不覆盖按钮 */
svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

