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

.title {
    display: inline-block;
}
.title p {
    text-align: justify;
    letter-spacing: 12px;
    /* text-align: center; */
    margin: 0px 0px -30px 0px;
    font-size: 14px;
    font-weight: 200;
    opacity: 0.6;
}

.footer {
    width: 100%;
    position: fixed;
    /* left: 0; */
    /* text-align: center; */
    font-size: 14px;
    font-weight: 200;
    opacity: 0.6;
}

#bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("");
    background-color: #d3d3d3;
    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;
}

.container {
    background: rgba(255, 255, 255, 0.3);
    /* box-shadow: 0 0 10px 0px #ffffff; */
    backdrop-filter: blur(10px);
    position: relative;
    max-width: 300px;
    width: 400px;
    height: auto;
    padding: 45px 65px;
    border-radius: 10px;
    color: #000000;
    overflow: hidden;
    margin: auto;
    /* text-align: center; */
}

hr {
    border: none;
    height: 1px;
    background: rgba(255, 152, 152, 0.2);
}

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 {
    text-align: center;
    /* 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);
}

/* dark模式样式 */

.dark hr {
    border: none;
    height: 1px;
    background: rgba(123, 125, 67, 0.2);
}

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


.dark .container {
    background: rgba(255, 255, 255, 0.1);
    /* box-shadow: 0 0 10px 0px #333; */
    color: #cbcbcb;
}

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