@charset "uft-8";
/* css document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer {
    position: relative;
    width: 60vw;
    padding: 2vw;
    margin: 0 auto;
    border-radius: 2vw;
    background-color: rgb(240, 248, 255);
    text-align: left;
    font-family: 'Douyin Sans';
}

footer h1 {
    font-size: 1.2vw;
}

footer p {
    font-size: 0.85vw;
    padding: 0.2vw;
}

footer a {
    color: rgb(0, 0, 0);
}

.wechat {
    position: absolute;
    overflow: hidden;
    cursor: pointer;
    width: 11vw;
    height: 1.2vw;
}

.wechat:hover {
    height: 12.4vw;
    transform: translateY(-11.2vw);
    background-image: url('../image/links/mywechat.webp');
    background-size: 10vw;
    background-repeat: no-repeat;
    background-position: center;
}

/*↓↓↓萌娘百科版文字黑幕↓↓↓*/
span.heimu a.external,span.heimu a.external:visited,span.heimu a.extiw,span.heimu a.extiw:visited {
    color: black
}
.heimu,.heimu a,a .heimu,.heimu a.new {
    background-color: black;
    color: black;
    text-shadow: none
}
body:not(.heimu_toggle_on) .heimu:hover,body:not(.heimu_toggle_on) .heimu:active,body:not(.heimu_toggle_on) .heimu.off {
    transition: color .13s linear;
    color: #fff
}
body:not(.heimu_toggle_on) .heimu:hover a,body:not(.heimu_toggle_on) a:hover .heimu,body:not(.heimu_toggle_on) .heimu.off a,body:not(.heimu_toggle_on) a:hover .heimu.off {
    transition: color .13s linear;
    color: #add8e6
}
body:not(.heimu_toggle_on) .heimu.off .new,body:not(.heimu_toggle_on) .heimu.off .new:hover,body:not(.heimu_toggle_on) .new:hover .heimu.off,body:not(.heimu_toggle_on) .heimu.off .new,body:not(.heimu_toggle_on) .heimu.off .new:hover,body:not(.heimu_toggle_on) .new:hover .heimu.off {
    transition: color .13s linear;
    color: #ba0000
}
/*↑↑↑萌娘百科版文字黑幕↑↑↑*/

.pixel {
    image-rendering: pixelated;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
    background-color: #f5f5f5;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: rgb(186, 183, 183);
    background-color: #f5f5f5;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    -webkit-box-shadow: rgb(186, 183, 183);
    background-color: rgb(190, 190, 190);
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(170 , 170 , 170);
}

::-webkit-scrollbar-thumb:active {
    background-color: rgb(150 , 150 , 150);
}

.loading {
    background: linear-gradient(100deg, rgb(23, 62, 107), rgb(25, 26, 105), rgb(41, 23, 104));
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 9999999;
    transition: 0.6s ease;
}

.loading_out {
    transform: translateY(-100%);
}

.loader {
    border: 1vw solid #ffffff;
    border-top: 1vw solid #34db74;
    border-radius: 50%;
    width: 6vw;
    height: 6vw;
    margin-top: 40vh;
    margin-left: auto;
    margin-right: auto;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loadtext {
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 3vw;
    font-weight: lighter;
    padding-top: 1vw;
}

.navigator {
    font-family: 'Douyin Sans';
    position: fixed;
    left: 0;
    top: 50vh;
    transform: translate(0 , -50%);
    width: 8vw;
    height: fit-content;
    z-index: 100;
    transition: transform 0.5s;
    user-select: none;
}

.navbar {
    position: relative;
    border-top-right-radius: 1vw;
    border-bottom-right-radius: 1vw;
    border-top: solid 0.2vw rgb(0, 0, 0);
    border-right: solid 0.2vw rgb(0, 0, 0);
    border-bottom: solid 0.2vw rgb(0, 0, 0);
    display: inline-block;
    height: fit-content;
    line-height: 1vw;
    width: 6vw;
    z-index: 101;
    background-color: #ffffff;
}

.navbar h1 {
    color: rgb(0, 0, 0);
    padding-top: 0.4vw;
    font-size: 1vw;
    text-align: center;
}

.navbar p {
    color: rgb(0, 0, 0);
    font-size: 0.9vw;
    text-align: center;
}

.navbtn {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: solid 0.2vw rgb(0, 0, 0);
    position: relative;
    display: grid;
    text-align: center;
    text-decoration: none;
    place-content: center;
    font-size: 0.9vw;
    border-radius: 0.5vw;
    width: 5vw;
    min-height: 2vw;
    margin: 0.5vw;
    z-index: 102;
    padding: 0.4vw;
    cursor: pointer;
    transition: background-color 0.5s;
}

.navbtn:hover {
    background-color: rgb(246, 232, 255);
}

.navfoldbtn {
    background-color: #ffffff;
    position: absolute;
    display: inline-block;
    border-top: solid 0.2vw rgb(0, 0, 0);
    border-right: solid 0.2vw rgb(0, 0, 0);
    border-bottom: solid 0.2vw rgb(0, 0, 0);
    border-radius: 0 1vw 1vw 0;
    top: 30%;
    left: 5.8vw;
    width: 2vw;
    height: 6.2vw;
    z-index: 106;
    cursor: pointer;
}

.navfoldbtn h1 {
    color: rgb(0, 0, 0);
    font-size: 1vw;
    text-align: center;
    padding: 0.5vw;
    line-height: 1vw;
}

.navfold {
    transform: translate(-76% , -50%);
}

.pbtn {
    cursor: pointer;
}

.tt {
    margin-bottom: 3vw;
    color: white;
}

.tt h1 {
    font-size: 4vw;
}

.tt h2 {
    font-size: 2vw;
    margin-bottom: 0.4vw;
}

.tt p {
    font-size: 1.4vw;
    line-height: 0.5vw;
    text-transform: uppercase;
}