#loader {
position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgb(222, 255, 235);*/
    background: radial-gradient(circle, #faffde, #bdc0a9,#a9b086);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 消失动画 */
    opacity: 1;
    transition: opacity 0.5s ease;
}
.dark #loader {
    /*background-color: rgb(0, 0, 0);*/
    background: radial-gradient(circle, #000000, #040404, #111111);
}
#loader.hiddenAni {
    /* 消失动画 */
    opacity: 0;
}
#loader.hidden {
    /* 消失后不阻碍页面操作 */
    opacity: 0;
    display: none;
}


#loaderText {
    font-size: 18px;
    color: rgb(0, 0, 0);
}
.dark #loaderText {
    color: rgb(249, 255, 206);
}


a {
    color: #20a53a;
    font-weight: 900;
}

.footer {
    width: 100%;
    /* height: 30px;
    padding-top: 20px; */
    position: fixed;
    /* bottom: 5; */
    left: 0;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    font-weight: 200;
    opacity: 0.6;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("");
    background-color: #191919;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: background-image 0.5s ease-in-out;
}



.bg.change {
    background-image: url("");/* 凑数的东东 */
}

.container {
    background: rgba(85, 85, 85, 0.4);
    box-shadow: 0 0 10px 0px #333;
    backdrop-filter: blur(10px);
    position: relative;
    max-width: 880px;
    width: 95%;
    /* height: %; */
    padding: 45px 65px;
    border-radius: 10px;
    color: #fff;
    overflow: hidden;
    margin: auto;
    text-align: center;
}


pre {
    background: rgba(74, 50, 50, 0.2);
    align-items: center;
    border: 1px solid rgba(105, 87, 87, 0.2);
    border-radius: 4px;
    font-size: large;
    font-weight: 400;
    overflow-x: scroll;
    overflow-x: auto;
    padding: 14px;
    /* margin-bottom: 5px; */
    /* margin-left: 5px; */
    /* margin-right: 5px; */
}

img {
    border-radius: 5px;
    cursor: pointer;
}



/* 滚动条整体样式(高宽分别对应横竖滚动条的尺寸) */

pre::-webkit-scrollbar {
    width: 5px;
    height: 6px;
}

/* 滚动条里面小方块 */

pre::-webkit-scrollbar-thumb {

    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);

}

/* 滚动条里面轨道 */

pre::-webkit-scrollbar-track {
    width: 90%;
    border-radius: 10;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0);
    background: rgba(0, 0, 0, 0);
}

#toggle-btn {
    /* transform: rotate(-45deg); */
    height: 300px;
    width: 300px;
    border-radius: 50%;
    color: var(--black);
    background-color: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: fixed;
    top: -170px;
    right: -170px;
    user-select:none;
}



.smBtnRotateLight {
    animation: spinL 300ms ease forwards;
}

@keyframes spinL {
    from {
        transform: rotate(135deg);
    }

    to {
        transform: rotate(-45deg);
    }
}



#toggle-fom {
    /* line-height: 130px; */
    color: var(--white);
    font-size: 50px;
    margin-top: 125px;
    /* margin-left: 10px; */
    transform: rotate(-135deg);
}

#toggle-fo {
    /* line-height: 130px; */
    color: var(--white);
    font-size: 50px;
    /* margin-top: 190px; */
    margin-right: 140px;
    transform: rotate(45deg);
}

/* darkMode */

.dark hr {
    border: none;
    height: 1px;
    background: rgba(122, 125, 68, 0.4);
}

.dark .bg {
    background: url() !important;
    background-color: #000000 !important;
}

.dark .container {
    filter: none !important;
    background: rgba(255, 255, 255, 0.1);
}


.dark pre {
    background: rgba(11, 28, 14, 0.4);
    border: 1px solid rgba(122, 125, 68, 0.4);
}

.dark img {
    filter: brightness(50%) contrast(120%);
}



.dark #toggle-btn {
    background-color: rgba(214, 236, 240, 0.05);

}

.smBtnRotateDark {
    animation: spinD 300ms ease forwards;
}

@keyframes spinD {
    from {
        transform: rotate(-45deg);
    }

    to {
        transform: rotate(135deg);
    }
}