body {
    margin: 0;
    padding: 0;
    /* background-color: black; */
    background: url('bg.jpg') no-repeat center center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

/* 视频背景层 */
#bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

/* 视频加载完成后淡入 */
body.video-bg-ready #bgVideo {
    opacity: 1;
}

/* 确保原有body背景仍然存在但被视频覆盖 */
body {
    background: url('bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

.logo {
    padding: 10px 20px;
}

.logo img {
    height: 40px;
}

.menu {
    width: fit-content;
    height: 45px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 22.25px;
    font-size: 15px;
    padding: 0px 5px;
}

.menu-list {
    padding: 0px 10px;
    box-sizing: border-box;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 19px;
    opacity: 0.5;
}

.menu-list span {
    padding: 0 5px;
}

.menu-list.active {
    background-color: #FFF;
    opacity: 1;
}

.foot {
    width: 100%;
    height: 215px;
    border-radius: 20px 20px 0px 0px;
    background: linear-gradient(137.36deg, rgba(214, 214, 214, 0.6) 4.96%, rgba(94, 93, 93, 0.6) 78.22%);
    backdrop-filter: blur(60px);
    color: #FFF;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    gap: 18px;
    display: flex;
    flex-direction: column;
}

.foot-top {
    width: 100%;
    height: 60px;
    display: flex;
    /* text-align: center; */
    justify-content: space-between;
    position: relative;
}

.foot-title {
    font-weight: 700;
    font-size: 24px;
}

.foot-title-two {
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
}

.foot-yuan {
    position: absolute;
    top: 0px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    right: 0px;
}

.foot-yuan,
.iconify {
    position: relative;
    top: -1px;
    left: -1px;
}

.tux-separator-thin--horizontal {
    width: 100%;
    height: 1px;
    transform: scaleY(.5);
}

.foot-center {
    display: flex;
    -webkit-box-pack: center;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

.foot-txt {
    font-weight: 400;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.font-txt-title {
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-size: 16px;
    line-height: 20.8px;
}

.foot-down {
    color: rgb(255, 255, 255);
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    gap: 4px;
    height: 48px;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 14px;
    border-radius: 24px;
    background-color: rgb(254, 44, 85);
}

/* ==================== iOS 引导弹窗样式 ==================== */
.ios-guide-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(137.36deg, rgba(214, 214, 214, 0.75) 4.96%, rgba(94, 93, 93, 0.75) 78.22%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.ios-guide-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ios-guide-box {
    /* background: rgba(99, 99, 99, 0.25); */
    /* background: linear-gradient(137.36deg, rgba(214, 214, 214, 0.65) 4.96%, rgba(94, 93, 93, 0.65) 78.22%); */
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    border-radius: 24px;
    padding: 32px 24px 24px;
    max-width: 340px;
    width: 92%;
    color: #fff;
    animation: slideUp 0.35s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: none;
}

.ios-guide-box .icon-wrap {
    text-align: center;
    margin-bottom: 12px;
}

.ios-guide-box .icon-wrap .iconify {
    font-size: 48px;
    color: #fff;
}

.ios-guide-box h3 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 4px 0;
}

.ios-guide-box .sub {
    font-size: 14px;
    text-align: center;
    opacity: 0.7;
    margin: 0 0 16px 0;
}

.ios-guide-box .steps {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 16px 18px;
    margin: 0 0 18px 0;
    font-size: 13px;
    line-height: 2;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ios-guide-box .steps span {
    display: block;
}

.ios-guide-box .steps .highlight {
    color: #FFD700;
    font-weight: 600;
}

.ios-guide-box .steps .highlight-blue {
    color: #5AC8FA;
    font-weight: 600;
}

.ios-guide-box .btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 去设置按钮 - 新增 */
.ios-guide-box .btn-settings {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.ios-guide-box .btn-settings:active {
    transform: scale(0.96);
    opacity: 0.7;
}

.ios-guide-box .btn-confirm {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    border: none;
    /* padding: 14px 0; */
    padding: 12px 0;
    width: 100%;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.ios-guide-box .btn-confirm:active {
    transform: scale(0.96);
    opacity: 0.8;
}

.ios-guide-box .btn-cancel {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 24px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 12px;
}

.ios-guide-box .btn-cancel:active {
    opacity: 0.6;
}

/* 复制成功 Toast */
.toast {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    z-index: 99999;
    animation: fadeIn 0.25s ease;
    border: none;
}

.toast.show {
    display: block;
}