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;
}

.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: 275px;
    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);
}