/* Add v-cloak to prevent flash of unstyled content */
[v-cloak] {
    display: none !important;
}

.bottom-right {
    /* position: fixed; */
    /* bottom: 90px; */
    width: 100%;
    /* 距离底部 10px */
    /* 距离右侧 10px */
    display: flex;
    /* flex-direction: column; */
    /* 让按钮水平居中 */
    justify-content: center;
    /* 让按钮垂直排列 */
    gap: 30px;
    /* 按钮间距 */
}

.bottom-right img {
    width: 50px;
    /* 图标宽度，可根据需要调整 */
    height: 50px;
    /* 图标高度 */
    /* 控制按钮大小 */
    height: auto;
}

.register-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 22px;
    font-weight: 900;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.register-button:hover {
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.register-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

body {
    scroll-behavior: smooth !important;
    background-position: center top;
    background-size: auto;
    /* height: 1000dvh; */
    position: relative;
    padding: 0 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    overflow: hidden;
    background-repeat: repeat-y;
    animation: scrollBackground 55s linear infinite;
    /* 根据图片长度调整时间 */
}

@keyframes scrollBackground {
    from {
        background-position-y: 0;
    }

    to {
        background-position-y: 100%;
        /* 根据图片的实际高度调整 */
    }
}