@font-face {
    font-family: "TsangerYuMo03";
    font-weight: bold;
    src: url('/static/report/report2023/fonts/TsangerYuMoW03.ttf')
}

@font-face {
    font-family: "TsangerYuMo04";
    font-weight: bold;
    src: url('/static/report/report2023/fonts/TsangerYuMoW04.ttf')
}

@font-face {
    font-family: "AlimamaShuHeiTi-Bold";
    font-weight: bold;
    src: url('/static/report/report2023/fonts/AlimamaShuHeiTi-Bold.otf')
}


html, body {
    position: relative;
    height: 100%;
}

body {
    background: #eee;
    margin: 0;
    padding: 0;
    height: 100vh;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: #72ace3;
}

a:focus {
    outline: none;
    -moz-outline: none
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.25rem;
    border-radius: 0.25rem;
    transition: all .15s ease-in-out;
    color: #929daf;
    letter-spacing: 1px;
    background-color: #fff;
    outline: none !important;
    -webkit-transition: 0.15s linear;
}

/*背景音乐*/
.bgm-wraper {
    width: 28px;
    height: 28px;
    position: absolute;
    right: 5vw;
    top: 1.5rem;
    z-index: 999;
}

.btn-bgm {
    display: block;
    width: 28px;
    height: 28px;
}

.btn-bgm.played {
    animation: auto_rotation 5s linear infinite;
}


@keyframes auto_rotation {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

/*下一页*/
.next {
    display: inline-block;
    width: 36px;
    height: 36px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 15px;
    animation: animate-next 1.5s infinite; /* 启动动画特效 */
    z-index: 1000;
}

@keyframes animate-next {
    0% {
        transform: translateY(0);
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10px);
        opacity: 0;
    }
}
@keyframes animate-star {
    0% {
        transform: translateY(2px);
        opacity: 1;
    }
    80% {
        transform: translateY(0);
    }
    100% {
        opacity: 0;
    }
}

/**
常用类
 */
.fs-14 {
    font-size: 14px !important;
    line-height: 30px !important;
}

/*二维码*/
.qrcode-wrap {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 14px;
    bottom: 5%;
    z-index: 999;
}

.qrcode-wrap > img {
    width: 40px;
    height: 40px;
}