/* 引导页 */

body {
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: bold;
}

.boot-page-zong {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../img/bg.jpg?v1");
    width: 100%;
    height: 100%;
}

.boot-page {
    width: 100%;
    overflow: hidden;
    color: #fff;
    /* padding-top: 0.9rem; */
    box-sizing: border-box;
}

.boot-page-xc {
    width: 6rem;
    font-size: 0.6rem;
    height: auto;
    margin-left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: mymove 0.55s linear 1 alternate;
    margin-bottom: 20px;
}

.introduce-chinese {
    width: 4rem;
    font-size: 0.36rem;
    font-weight: 500;
    margin: 0.2rem 0;
    margin-left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: cartoon 0.55s linear 1 alternate;
    margin-bottom: 40px;

    /* 渐变文字效果，保持浅金色渐变 */
    background: linear-gradient(to right, #f0e68c, #ffffe0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    /* 文字描边投影，降低颜色透明度 */
    text-shadow: 
        0 0 2px rgba(0, 0, 0, 0.2),
        0 0 4px rgba(0, 0, 0, 0.15),
        0 0 6px rgba(0, 0, 0, 0.1);
}

@keyframes cartoon {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.introduce-english {
    position: fixed;
    color: #D2A36C;
    right: 1rem;
    bottom: 1rem;
    z-index: 9998;
}

.progress-bar {
    margin-top: 0.4rem;
    width: 100%;
    height: 0.01rem;
    background: rgba(210, 162, 108, 0.2);
}

.progress-bar .schedule {
    width: 0%;
    height: 0.01rem;
    background: #D2A36C;
    position: relative;
}

.progress-bar .schedule .schedule-head {
    display: block;
    width: 0.05rem;
    height: 0.05rem;
    background: #D2A36C;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(0, -50%);
}

.loading-schedule {
    font-size: 0.18rem;
    line-height: 0.3rem;
    text-align: center;
    font-weight: 700;
    margin: 0.22rem 0 0.4rem;
    color: #f8edc4;
}

.entrance-but {
    cursor: pointer;
    width: 2rem;
    height: 0.5rem;
    border: 0.01rem solid #D2A36C;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 0.18rem;
    color: #D2A36C;
}


.beian{
    position: fixed;
    color: #ddd;
    left:46%;
    bottom: 10px;
    z-index: 9998; 
    font-size: 12px;
    font-weight: 500;
}
.beian a{ color: #ddd;}


@media screen and (max-width: 750px) {
.beian{
    left:35%;
}
}

@keyframes mymove {
    0% {
        margin-left: 0;
    }

    50% {
        margin-left: 25%;
    }

    100% {
        margin-left: 50%;
    }
}

@keyframes cartoon {
    0% {
        margin-left: 100%;
    }

    50% {
        margin-left: 75%;
    }

    100% {
        margin-left: 50%;
    }
}

@keyframes cartoon1 {
    0% {
        margin-left: 200%;
    }

    50% {
        margin-left: 100%;
    }

    100% {
        margin-left: 50%;
    }
}

.upglide {
    width: 0.6rem;
    height: 0.6rem;
    display: flex;
    margin: auto;
}