.dark-mode {
    filter: invert(1) hue-rotate(180deg);
}

* {
    z-index: 10;
}

#hidescreen,
#fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    background-position: center center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    display: none;
}

#hidescreen {
    z-index: 9998;
}

#fullscreen {
    z-index: 9999;
}

#fullscreen img {
    width: 200px;
    margin: 10px;
}

#drag-region {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 30px);
    height: 32px;
    /* 设置拖动区域的高度 */
    -webkit-app-region: drag;
    /* 设置拖动区域响应鼠标事件 */
    background-color: transparent;
    /* 设置背景为透明 */
    z-index: 99999;
    display: none;
}

#window-controls {
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 100000;
    background-color: white;
    border-radius: 0 0 0 35px;
    opacity: 0.7;
    transition: 0.5s;
}

#window-controls:hover {
    opacity: 1;
}

#window-controls div {
    margin: 5px;
}

button:not(#settingBtn, #closeTab),
input,
img,
.sound {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2px;
}

#playerTab,
#searchTab,
#window-controls,
#comments,
#lyric,
#valueList {
    box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.1);
}

#result {
    position: absolute;
    top: 150px;
    left: 5%;
    max-height: calc(98% - 160px);
    max-width: 90%;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    display: block;
    z-index: 999;
    overflow-y: scroll;
    box-shadow: 10px 10px 25px rgba(255, 255, 255, 0.2);
}

#result tr {
    display: flex;
    padding: 5px;
    align-items: center;
    margin-top: 5px;
    transition: all .3s;
    border-radius: 12px;
}

#result tr td img,
#valueList tr td img {
    width: 35px;
    height: 35px;
    transition: all .3s;
    border-radius: 5px;
    transform: translateX(-300%);
    box-shadow: none;
}

#result tr td:not(.tdBtn):hover img,
#valueList tr td:not(.tdBtn):hover img {
    transform: translateX(0px);
    transition-delay: 0.5s;
}

#result tr td span,
#valueList tr td span {
    transition: all .3s;
    height: 100%;
    display: block;
    margin-top: -42px;
}

#result tr td:not(.tdBtn):hover span,
#valueList tr td:not(.tdBtn):hover span {
    margin-top: 0px;
    transition-delay: 0.5s;
}

#result .flexright {
    display: flex;
    justify-content: flex-end;
}

#result tr:hover,
#lyric span.active,
.hover,
#valueList tr:hover {
    transition-behavior: normal;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-property: all;
    background: #eaeffd;
    color: #335eea;
    box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.1);
}

#result tr td {
    width: 25%;
    margin: 5px;
}

#result tr:hover {
    box-shadow: none;
    transition-duration: 0.5s;
}

.tdBtn {
    margin-left: auto !important;
    min-width: 120px;
}

#result .tdBtn {
    margin-left: auto !important;
    min-width: 180px;
}

#valueList {
    position: fixed;
    top: 150px;
    left: 5%;
    min-width: 300px;
    max-height: calc(98% - 150px);
    max-width: 33%;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
    display: none;
    z-index: 10000;
    overflow-y: auto;
    transition-timing-function: linear;
    transition: all 0.3s;
}

#valueList tr {
    display: flex;
    margin: 8px;
    padding: 8px;
    border-radius: 10px;
}

#valueList tr:hover {
    box-shadow: none;
    transition-duration: 0.5s;
}

#valueList tr td {
    width: 25%;
    margin: 5px;
}

.shadow-container::after {
    content: "";
    position: absolute;
    width: 100%;
    height: var(--shadow-height);
    bottom: 0;
    left: 0;
    z-index: 1;
    border-radius: 10px;
    transition: transform 0.2s ease;
    /* 平滑阴影移动 */
    transform: translate(0, var(--shadow-y));
    background: #eaeffd;
}

.valueListJson_Btn {
    font-size: 15px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
    min-width: auto;
    width: 40px;
}

.valueListJson_Btn span {
    display: block;
    margin-left: 8px;
    font-size: 12px;
    transition: all 0.3s ease-in-out;
    transform: scale(0);
}

.valueListJson_Btn svg {
    border-radius: 0;
    margin-left: 7px;
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

.valueListJson_Btn:hover {
    width: 100px;
}

.valueListJson_Btn:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

.valueListJson_Btn:hover svg {
    transform: rotate(45deg) scale(1.1);
}

.valueListJson_Btn:hover span {
    transform: scale(1);
}

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }

    to {
        transform: translateY(-0.1em);
    }
}

#comments {
    width: 20%;
    max-height: 96%;
    overflow: auto;
    margin: 0 auto;
    position: fixed;
    right: 41%;
    top: 2%;
    overflow-y: scroll;
    border-radius: 20px 0 0 20px;
    background-color: rgba(255, 255, 255, 0.5);
}

#comments .hotComments::before {
    font-size: 25px;
    content: "🔥热评";
}

#comments .commentList::before {
    font-size: 25px;
    content: "  评论";
}

#comments .commentList>div,
#comments .hotComments>div {
    margin-bottom: 20px;
}

#comments span {
    display: block;
    max-width: 100%;
    display: block;
    margin: 10px;
}

#comments img {
    display: block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    margin-left: 10px;
    float: left;
}

#comments .commentUserName {
    margin-left: 50px;
}

#comments .commentContent {
    margin: 5px;
}

#comments .whereWhen {
    color: #777777;
    font-size: 80%;
    margin: 0;
}

#lyric {
    width: 38%;
    min-width: 30%;
    max-height: 96%;
    overflow: auto;
    margin: 0 auto;
    position: fixed;
    z-index: 100;
    right: 2%;
    top: 2%;
    overflow-y: scroll;
    border-radius: 0 20px 20px 0;
    cursor: default;
    background-color: rgba(255, 255, 255, 0.5);
    font-size: 22px;
}

#lyric span {
    display: block;
    max-width: 100%;
    padding: 10px;
    transition: 0.5s;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
    display: block;
    margin: 15px;
    margin-left: 30px;
    opacity: .3;
    transform: scale(.95);
    font-weight: 800;
    border-radius: 12px;
    transition: 0.3s;
    transition-delay: 0.1s;
}

#lyric span:not(.active):hover {
    background: hsla(0, 0%, 100%, 0.2);
    opacity: .7;
}

#lyric span.active {
    font-weight: bolder;
    margin-left: 12px;
    opacity: 1 !important;
    transform: scale(1);
    filter: blur(0px) !important;
}

.active .lyric_Chinese {
    opacity: .65;
}

#lyric span.lyric_Wait {
    height: 0;
    padding: 0;
}

#lyric span.active.lyric_Wait {
    height: fit-content;
    padding: 10px;
}

#lyric span.active.lyric_Wait div {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.8;
    width: fit-content;
    background-position: 100% 0%;
    background-image: linear-gradient(to right, #335eea, #335eea 50%, white 50%, white);
    background-size: 200% 100%;
    white-space: nowrap;
}

#lyric span.active.lyric_Wait div::before {
    content: '● ● ● ● ● ● ';
}

@keyframes lyric_Wait_animate {
    0% {
        background-position: 100% 0%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.buttonTab {
    z-index: 10000;
    position: fixed;
    top: 50%;
    left: 50%;
    max-width: 80%;
    min-width: 60%;
    min-height: 40%;
    transform: translate(-50%, -50%);
    display: none;
}

#videotab {
    height: 100%;
    width: 100%;
}

#openTab {
    position: fixed;
    z-index: 9999;
    bottom: 5px;
    right: 5px;
    border: none;
    min-width: 45px;
    width: 45px;
    height: 45px !important;
    display: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50% !important;
    color: rgba(255, 255, 255, 0.5);
}

#openTab svg {
    border-radius: 0;
}

.dplayer svg {
    width: 80%;
    height: 80%;
}

/* latin-ext */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    src: url('../font/ttf.ttf');
}

@font-face {
    font-family: 'moeyy';
    font-style: normal;
    src: url('../font/Barlow-SemiBold.woff2');
}

body {
    font-family: 'Lato';
    letter-spacing: 1px;
    font-size: 16px;
    overflow: hidden;
    background-color: white;
}

::selection {
    color: #fff;
    background: #87CEFA;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    background: url('https://imgapi.xl0408.top/index.php');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-color: rgba(255, 255, 255, 0.5);
}

.bghover,
.otherbtn {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    filter: blur(50px) contrast(125%) brightness(50%);
    transition: 0.3s;
}

.otherbtn {
    z-index: 0;
    filter: none;
    background-color: rgba(0, 0, 0, 0.1);
}

*::-webkit-scrollbar {
    display: none;
}

button {
    font-family: monospace;
    background-color: rgba(255, 255, 255, 0.6);
    color: #3b82f6;
    border: none;
    border-radius: 15px;
    min-width: 50px;
    height: 25px;
    transition: 0.3s;
    margin: 3px;
    font-family: 'Lato';
}

button:active {
    transform: scale(0.9);
}

button:not(.dplayer-icon, .imghoverBtnImg button, #settingBtn):hover {
    background-color: #f3f7fe;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6);
}

.input {
    height: 15px;
    background-color: transparent;
    padding-inline: 0.5em;
    padding-block: 0.7em;
    border: none;
    margin: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    display: flex;
    padding-inline: 0.8em;
    font-family: 'Lato';
    font-size: 14px;
    letter-spacing: 1px;
}

.input::placeholder {
    color: black;
    transition: 0.3s;
}

.input:focus::placeholder {
    color: #808080;
}

input:focus {
    outline: none;
}

.progress-bar,
.volume-bar {
    background-size: 98% 3px;
    margin: auto;
    width: 100px;
    outline: none;
    height: 3px;
    margin: 8px;
}

input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    transition: 0.3s;
}

input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 5px;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    transition: 0.3s;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #3b82f6;
    transform: translateY(-30%);
}

div,
table {
    transition: 0.3s;
}

a,
a:focus,
a:active {
    text-decoration: none;
    color: black;
}

#songsnamesp:hover {
    text-decoration-color: #87cefa;
}

#songsnamesp:hover {
    text-decoration: underline;
}

#back {
    display: none;
    position: fixed;
    top: 180px;
    left: 5%;
    width: 70px;
    z-index: 999;
}

#showValue {
    position: fixed;
    top: 100px;
    left: 5%;
    width: 70px;
    z-index: 999;
}

#listPlayBtn {
    position: absolute;
    top: 2px;
    right: 78px;
    z-index: 999;
}

.volume-percentage {
    position: fixed;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: black;
    z-index: 9999;
    border-radius: 10px;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.3);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: all 0.4s cubic-bezier(0.5, 0, 0.5, 1.76);
    word-break: break-all;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.volume-percentage svg {
    height: 20px !important;
    min-width: 20px !important;
    fill: rgb(59, 130, 246);
    margin-right: 5px;
}

#closeTab {
    position: absolute;
    top: -40px;
    right: 0px;
    height: 80px;
    min-width: 40px;
    width: 40px;
    background-color: white;
    border-radius: 40px;
    border: none;
}

#searchTab {
    position: fixed;
    top: 20px;
    left: 5%;
    background: white;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
}

#playerTab {
    position: fixed;
    top: 60px;
    left: 5%;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
}

div#driver-popover-item .driver-popover-footer button {
    padding: 0;
}

.canNotClick {
    cursor: not-allowed;
    filter: grayscale(100%);
    //IE浏览器
    -webkit-filter: grayscale(100%);
    //谷歌浏览器
    -moz-filter: grayscale(100%);
    //火狐
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    -webkit-filter: grayscale(1);
    //谷歌浏览器
}

#tip {
    position: fixed;
    top: 60px;
    left: 5%;
    min-height: 10px;
    max-height: 50%;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    z-index: 99999;
    transition: 0.5s;
    overflow: auto;
}

#tip td {
    margin: 10px;
}

.tips {
    width: fit-content;
}

.imgbg {
    position: fixed;
    z-index: 0;
    display: none;
    width: 140vw;
    height: 140vw;
    transform: rotate(0deg);
    transition: all 0.5s;
}

.img01 {
    right: 0;
    top: 0;
    animation-direction: reverse;
}

.img02 {
    left: 0;
    bottom: 0;
    animation-direction: reverse;
}

@keyframes rotate {
    0% {
        transform: rotateZ(0deg);
        /*从0度开始*/
    }

    100% {
        transform: rotateZ(360deg);
        /*360度结束*/
    }
}

@keyframes rotate2 {
    0% {
        transform: rotateZ(360deg);
        /*从0度开始*/
    }

    100% {
        transform: rotateZ(0deg);
        /*360度结束*/
    }
}

.theme-switch {
    --toggle-size: 10;
    --container-width: 3.8em;
    --container-height: 2em;
    --container-radius: 2.5em;
    --container-light-bg: #3D7EAE;
    --container-night-bg: #1D1F2C;
    --circle-container-diameter: 3.375em;
    --sun-moon-diameter: 1.8em;
    --sun-bg: #ECCA2F;
    --moon-bg: #C4C9D1;
    --spot-color: #959DB1;
    --circle-container-offset: calc((var(--circle-container-diameter) - var(--container-height)) / 2 * -1);
    --stars-color: #fff;
    --clouds-color: #F3FDFF;
    --back-clouds-color: #AACADF;
    --transition: .5s cubic-bezier(0, -0.02, 0.4, 1.25);
    --circle-transition: .3s cubic-bezier(0, -0.02, 0.35, 1.17);
    position: fixed;
    top: 60px;
    right: 1px;
    z-index: 999998;
}

.theme-switch,
.theme-switch *,
.theme-switch *::before,
.theme-switch *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: var(--toggle-size);
}

.theme-switch__container {
    width: var(--container-width);
    height: var(--container-height);
    background-color: var(--container-light-bg);
    border-radius: var(--container-radius) 0 0 var(--container-radius);
    overflow: hidden;
    cursor: pointer;
    -webkit-box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
    box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: relative;
}

.theme-switch__container::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    -webkit-box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
    box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
    border-radius: var(--container-radius)
}

.theme-switch__checkbox {
    display: none;
}

.theme-switch__circle-container {
    width: var(--circle-container-diameter);
    height: var(--circle-container-diameter);
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: var(--circle-container-offset);
    top: var(--circle-container-offset);
    border-radius: var(--container-radius);
    -webkit-box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: var(--circle-transition);
    -o-transition: var(--circle-transition);
    transition: var(--circle-transition);
    pointer-events: none;
}

.theme-switch__sun-moon-container {
    pointer-events: auto;
    position: relative;
    z-index: 2;
    width: var(--sun-moon-diameter);
    height: var(--sun-moon-diameter);
    margin: auto;
    border-radius: var(--container-radius);
    background-color: var(--sun-bg);
    -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
    box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
    -webkit-filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
    overflow: hidden;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.theme-switch__moon {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    width: 100%;
    height: 100%;
    background-color: var(--moon-bg);
    border-radius: inherit;
    -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
    box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: relative;
}

.theme-switch__spot {
    position: absolute;
    top: 0.75em;
    left: 0.312em;
    width: 0.75em;
    height: 0.75em;
    border-radius: var(--container-radius);
    background-color: var(--spot-color);
    -webkit-box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
    box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
}

.theme-switch__spot:nth-of-type(2) {
    width: 0.375em;
    height: 0.375em;
    top: 0.937em;
    left: 1.375em;
}

.theme-switch__spot:nth-last-of-type(3) {
    width: 0.25em;
    height: 0.25em;
    top: 0.312em;
    left: 0.812em;
}

.theme-switch__clouds {
    width: 1.25em;
    height: 1.25em;
    background-color: var(--clouds-color);
    border-radius: var(--container-radius);
    position: absolute;
    bottom: -0.625em;
    left: 0.312em;
    -webkit-box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
    box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
    -webkit-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
    -o-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
    transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
}

.theme-switch__stars-container {
    position: absolute;
    color: var(--stars-color);
    top: -100%;
    left: 0.312em;
    width: 2.75em;
    height: auto;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

/* actions */

.theme-switch__checkbox:checked+.theme-switch__container {
    background-color: var(--container-night-bg);
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__circle-container {
    left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter));
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__circle-container:hover {
    left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter) - 0.187em)
}

.theme-switch__circle-container:hover {
    left: calc(var(--circle-container-offset) + 0.187em);
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__moon {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__clouds {
    bottom: -4.062em;
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__stars-container {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.underline {
    height: 0.2em;
    width: 0;
    display: block;
    border-radius: 5px;
    background-color: #6288f1;
    margin-top: 10px;
}

#songsnamesp {
    position: absolute;
    top: 5px;
}

.imghoverBtnImg {
    height: 80px;
    width: 80px;
    border-radius: 10px;
    display: none;
    position: relative;
}

.imghoverBtnImg::before {
    content: "";
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    animation-duration: 6s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

.imghoverBtnImg:hover::before {
    animation-name: hover_before;
}

@keyframes hover_before {
    10% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.imghoverBtnImg button {
    opacity: 0.8;
    transform: scale(0.7);
    position: relative;
    left: 45px;
    top: 45px;
    z-index: 2;
    min-height: 30px;
    min-width: 30px !important;
    height: 30px;
    width: 30px;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.imghoverBtnImg button svg {
    width: 80%;
}

.imghoverBtnImg button:hover {
    transform: scale(1.1) !important;
}

.imghoverBtnImg:active button {
    transform: scale(0.85) !important;
}

.imghoverBtnImg:hover button {
    opacity: 1;
    transform: scale(1);
    left: 25px;
    top: 25px;
    border: 1px solid rgb(255 255 255 / 60%);
}

@keyframes underline_ToEnd {

    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.tallshort {
    width: 40px;
    position: relative;
    top: 50%;
    transform: translateY(50%);
}

.tallshort div {
    height: 8px;
    width: 4px;
    border-radius: 4px;
    background-color: #3b82f6;
    margin-left: 3px;
    float: left;
    transform: translateY(0px);
    animation: tallshort 0.5s infinite linear;
    animation-direction: alternate;
}

.tallshort .tallshort1 {
    animation-delay: 0.7s;
}

.tallshort .tallshort2 {
    animation-delay: 1s;
}

.tallshort .tallshort3 {
    animation-delay: 0.5s;
}

@keyframes tallshort {

    0% {
        transform: translateY(0px);
        height: 8px;
    }

    100% {
        transform: translateY(-8px);
        height: 16px;
    }
}

#settingBtn {
    position: fixed;
    top: 20px;
    right: 0;
    z-index: 1000000;
    border: none;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 15px 0 0 15px;
    height: 30px;
    width: 40px;
    transition: 0.3s;
    margin: 0;
    min-width: 0;
}

#setting {
    max-width: 60%;
    width: 40px;
    height: 30px;
    position: fixed;
    top: 20px;
    right: 0;
    z-index: 999999;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px 0 0 15px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
    transition-duration: 0.3s;
    overflow: scroll;
    padding-bottom: 5px;
    box-sizing: border-box;
}

.setItem {
    border-radius: 10px;
    width: 96%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 6px;
    margin-top: 8px;
    margin-left: 5px;
    width: calc(100% - 20px);
    display: none;
    border: 1px solid #ffffff;
}

.setItem.master {
    width: calc(100% - 5px);
    margin: 0;
    margin-left: -5px;
    margin-top: -5px;
}

#setting .masterItem {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 5px;
    margin: 5px;
    border-radius: 10px;
}

.setItem svg {
    fill: #3b82f6;
}

.setItem:focus {
    border: 1px solid #8ab2f3;
}

#setswitch_loading .setswitch {
    pointer-events: none;
}

#setswitch_loading .setswitch::before {
    height: 100%;
    width: 100%;
    pointer-events: auto;
}

.setswitch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 35px;
    height: 20px;
    margin-left: auto;
    pointer-events: none;
}

.setswitch input {
    opacity: 0;
    width: 0;
    height: 0;
    display: none;
}

.setswitch .setslider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #9fccfa;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.setswitch .setslider::before {
    position: absolute;
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    inset: 0;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.setslider:hover:before {
    transform: translateX(3px);
}

.setswitch input:focus+.setslider {
    box-shadow: 0 0 1px #0974f1;
}

.setswitchOn .setslider::before {
    transform: translateX(16px);
}

.setswitchOn .setslider {
    background: #0974f1;
}

.setItem .text {
    margin-left: 10px;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.circle {
    fill: none;
    stroke: hsl(214, 97%, 59%);
    stroke-width: 2;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash4 1.5s ease-in-out infinite;
}

@keyframes rotate4 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash4 {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dashoffset: -125px;
    }
}

/*一根毛*/
.img_mao {
    position: absolute;
    z-index: 999999;
    box-shadow: none;
    pointer-events: none;
}

@media screen and (max-width: 1355px) {
    #result {
        max-width: 90%;
    }

    #comments {
        top: 219px;
        right: 50%;
        width: 45%;
        max-height: calc(98% - 219px);
    }

    #lyric {
        top: 219px;
        right: 5%;
        width: 45%;
        max-height: calc(98% - 219px);
    }

    #valueList {
        max-width: 90%;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .buttonTab {
        max-width: 95%;
    }
}

