/* ===== style.css ===== */
@font-face  {
    font-family: "a";
    /*中文字体*/
    src: url(../fonts/shanhaixiaoqiguiw.ttf);
    font-display: swap;
}

@font-face {
    font-family: "b";

    src: url(../fonts/basedone-dr3zl.ttf);
    font-display: swap;
}

@font-face {
    font-family: "title";
    /*英文字体*/
    src: url(../fonts/basedone-dr3zl.ttf);
    font-display: swap;
}
@font-face {
    font-family: "c";
    /*英文字体*/
    src: url(../fonts/Pacifico-Regular.ttf);
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    transition: background-color 0.2s ease;
}

a:hover,
a:link,
a:visited,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    border: none;
    color: inherit;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/* 设置滚动条样式 */
::-webkit-scrollbar {
    width: 0px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main_text_color, #000000);
    border-radius: 8px;
    height: 20%;
}

::-webkit-scrollbar-track {
    background-color: var(--main_bg_color, linear-gradient(50deg, #a2d0ff, #ffffff));
}



html[data-theme="Dark"] {

    --main_text_color: #fff;
    --gradient: linear-gradient(120deg, rgb(133, 62, 255), #f76cc6 30%, rgb(255, 255, 255) 60%);
    --purple_text_color: #747bff;
    --text_bg_color: rgb(26, 4, 48);
    --item_bg_color: rgb(19, 20, 24);
    --item_hover_color: rgb(19, 23, 27);
    --item_left_title_color: rgb(255, 255, 255);
    --item_left_text_color: rgb(142, 142, 142);
    --footer_text_color: #646464;
    --left_tag_item: linear-gradient(50deg, #1f2327, #000000);
    --card_filter: 0px;
    --back_filter: 0px;
    --back_filter_color: #000000;
    --fill: #ffffff;
}






body {
    height: 100%;
    min-height: 100vh;
    width: 100%;
    position: relative;
    font-family: "b", "a",sans-serif;
    color: var(--main_text_color);
    transition: color 0.1s ease;
    background-attachment: scroll;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

/* 修改背景容器样式 */
.zyyo-filter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--back_filter_color);
    z-index: -2;
}

/* 修改背景图片层 */
.zyyo-filter::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: var(--main_bg_color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    filter: blur(var(--background-blur));
}

/* 添加模糊效果层 */
.zyyo-filter::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(var(--back_filter));
    -webkit-backdrop-filter: blur(var(--back_filter));
    z-index: 0;
    pointer-events: none;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    html, body {
        height: 100%;
        overflow-x: hidden;
    }
    
    .zyyo-filter,
    .zyyo-filter::before {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transform: none;
        background-attachment: fixed;
    }
    
    .zyyo-filter::before {
        background-position: center;
        background-size: cover !important;
        transform-origin: center center;
    }
    
    .zyyo-main {
        position: relative;
        min-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* 处理iOS Safari的工具栏问题 */
@supports (-webkit-touch-callout: none) {
    .zyyo-filter,
    .zyyo-filter::before {
        height: 100vh;
        height: -webkit-fill-available;
    }
}

#zyyo-loading {
    background: radial-gradient(white, #d8eaff);
    background-size: 100%;
    background-position: center;

    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999999;
    margin-top: 0px;
    top: 0px;
    pointer-events: none;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}



#zyyo-loading-center {
    height: 150px;
    width: 150px;
    position: relative;
    border-radius: 50%;
    background: #472eff;

    animation: zoom 1s linear infinite;
}

@keyframes zoom {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}




.zyyo-main {
    width: 100%;
    margin: 0 auto;
    transition: transform 0.5s ease;
    max-width: 1150px;
    position: relative;
    display: flex;
    flex-direction: row;
    z-index: 1;
    min-height: 100vh;
    scroll-behavior: smooth;
}


.zyyo-left {
    overflow-y: scroll;
    width: 230px;
    height: 100vh;
    display: flex;
    padding: 0 15px;
    position: sticky;
    top: 0;
    left: 0;
    align-items: center;
    flex-direction: column;
}


.zyyo-left::-webkit-scrollbar {
    display: none;
}


.logo {
    flex-shrink: 0;
    width: 90%;
    position: relative;
    aspect-ratio: 1/1;
    margin-top: 50px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.logo-1 {
    flex-shrink: 0;
    width: 40%;
    position: relative;
    aspect-ratio: 1/1;
    background-size: cover;
    border-radius: 50%;
}




.left-div {
    flex-shrink: 0;
    width: 100%;
    border-radius: 13px;
    margin-top: 15px;
    padding: 20px;
    backdrop-filter: blur(var(--card_filter));
    -webkit-backdrop-filter: blur(var(--card_filter));
    background: var(--item_bg_color);
}

.left-des {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-des-item {
    display: flex;
    align-items: center;
    line-height: 20px;
    font-size: 15px;
    margin-bottom: 5px;
    overflow: hidden;
}

.left-des-item i,
.left-des-item svg {
    width: 16px;
    height: 16px;
    fill: var(--fill);
    font-size: 18px;
    margin-right: 10px;
}

.left-time {
    flex-shrink: 0;
    width: 100%;
    border-radius: 13px;
    margin-top: 15px;
    padding: 20px;
    backdrop-filter: blur(var(--card_filter));
    -webkit-backdrop-filter: blur(var(--card_filter));
    background: var(--item_bg_color);

}
.left-tag {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 14px;
}

.left-tag-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 28px;
    margin: 0px 5px 5px 0;
    padding: 5px;
    font-size: 13px;
    border-radius: 10px;
    background: var(--left_tag_item);
}

#line {
    width: 100%;
    height: 200px;
    font-size: 13px;
    padding-left: 8px;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

#line li {
    list-style: none;
    position: relative;
    padding: 15px 0px 0px 15px;
    border-left: 2px solid #d5d5d5;
    border-radius: 0;
    scroll-snap-align: end;
    color: var(--main_text_color);
}



.focus {
    width: 8px;
    height: 8px;
    border-radius: 22px;
    background-color: rgb(255 255 255);
    border: 2px solid #fff;
    position: absolute;
    left: -5px;
    top: 50%;
}

#line li:first-child .focus:first-child {
    background-color: #aaffcd;
    animation: focus 1.8s ease infinite;
}

#line::-webkit-scrollbar {
    display: none;
}



.zyyo-right {
    
    width: calc(100% - 230px);
    display: flex;
    padding: 20px;
    position: relative;
    padding-bottom: 50px;
    flex-direction: column;
}

.welcome {

    font-size: 65px;
    font-weight: 800;
    margin: 20px 0;
}

.index-logo {
    flex-shrink: 0;
    width: 40%;
    margin-top: 30px;
    position: relative;
    max-width: 200px;
    aspect-ratio: 1/1;
    background-size: cover;
    border-radius: 50%;
    border: 0.5px solid #ffffff;
}

.description {

    font-size: 20px;
    margin-top: 7px;
}

.gradientText1 {

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200%;
    background-position: 0%;
    font-family: "a";
    animation: backgroundSizeAnimation 10s ease-in-out infinite;
    background-image: var(--gradient);
}

.gradientText2 {

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200%;
    background-position: 0%;
    font-family: "c","a";
    animation: backgroundSizeAnimation 10s ease-in-out infinite;
    background-image: var(--gradient);
}
.gradientText3 {
    background-size: 200%;
    font-family: "c";
    color: var(--item_left_title_color);
}


.gradientText {

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200%;
    background-position: 0%;
    font-family: "title";
    animation: backgroundSizeAnimation 10s ease-in-out infinite;
    background-image: var(--gradient);
}

@keyframes backgroundSizeAnimation {
    0% {
        background-position: 100%;
    }

    25% {
        background-position: 50%;
    }

    50% {
        background-position: 0%;
    }

    75% {
        background-position: 50%;
    }

    100% {
        background-position: 100%;
    }

}


.textBackground {
    font-weight: 800;
    background: var(--text_bg_color);
    border-radius: 5px;
    font-size: 17px;
    margin: 0 3px;
    padding: 2px 4px;
}

.iconContainer {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    overflow-x: scroll;
    margin-top: 20px;

}

.iconContainer::-webkit-scrollbar {
    display: none;
}



.iconItem {
    cursor: pointer;
    width: 49px;
    height: 43px;
    box-sizing: border-box;
    border-radius: 7px;
    display: flex;
    margin-left: 10px;
    padding-left: 3px;
    backdrop-filter: blur(var(--card_filter));
    -webkit-backdrop-filter: blur(var(--card_filter));
    background: var(--item_bg_color);
    align-items: center;
    justify-content: center;
    transition: width 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.iconItem i,
.iconItem svg {
    width: 100%;
    height: 70%;
    fill: var(--fill);
    font-size: 22px;
    margin-right: 3px;
}

.ofnof {
    position: relative;
    
    height: 30px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch {
    position: relative;
    width: 38px;
    height: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    border-radius: 50px;
}

.onoffswitch-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200%;
    height: 100%;
    margin-left: -100%;
    transition: margin 0.2s ease-in 0s;
}

.onoffswitch-inner:before,
.onoffswitch-inner:after {
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    width: 50%;
    height: 100%;
    padding: 0;
    font-size: 12px;
    color: white;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}

.onoffswitch-inner:before {
    content: "";
    background-color: rgb(110 110 110 / 50%);
    color: #FFFFFF;
    text-align: left;
}

.onoffswitch-inner:after {
    content: "";
    background-color: #272727;
    color: #FAFAFA;
    text-align: right;
}

.onoffswitch-switch {
    display: block;
    height: 70%;
    aspect-ratio: 1/1;
    background: #FFFFFF;
    position: absolute;
    top: 12.5%;
    bottom: 12.5%;
    right: 5px;

    border-radius: 20px;
    transition: right 0.2s ease-in 0s;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
    right: 50%;
}

.switch {
    width: 55px;
    height: 43px;
    box-sizing: border-box;
    border-radius: 7px;
    display: flex;
    margin-left: 10px;
    backdrop-filter: blur(var(--card_filter));
    -webkit-backdrop-filter: blur(var(--card_filter));
    background: var(--item_bg_color);

    align-items: center;
    justify-content: center;
    transition: width 1s ease, opacity 1s ease, transform 1s ease;
    flex-shrink: 0;
}

.iconTip {
    white-space: nowrap;
    display: none;
    padding-right: 20px;
}





.iconItem:hover {
    width: 95px;
    transform: translateY(-2px);
    background: var(--item_hover_color);
}


.iconItem:hover .iconTip {
    display: block;
}

.switch:hover {
    width: 55px;
    /* transform: translateY(-2px); */
    background: var(--item_hover_color);
}

.tanChiShe {
    width: 85%;
}

.tanChiShe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 800;
    margin-top: 20px;
    transition: transform 0.4s ease;
}

.title i,
.title svg {
    margin-right: 8px;
    height: 26px;
    width: 26px;
    fill: var(--fill);
}

.title:hover {
    transform: translateY(-5px);
}

.projectList {
    display: flex;
    flex-wrap: wrap;
    
}

.projectItem {
    margin: 7px;
    display: flex;
    background-color: var(--item_bg_color);
    border-radius: 8px;
    padding: 15px;
    height: 95px;
    width: calc(25% - 15px);
    backdrop-filter: blur(var(--card_filter));
    -webkit-backdrop-filter: blur(var(--card_filter));
    -webkit-backdrop-filter: blur(var(--card_filter));
    -webkit-backdrop-filter: blur(var(--card_filter));
    transition: opacity 0.3s ease, background-color 0.3s ease, border 0.3s ease, transform 0.2s ease;


}

.projectItem {
    display: flex;
    background-color: var(--item_bg_color);
    border-radius: 8px;
    padding: 15px;
    height: 50%;
    width: calc(25% - 15px);
    backdrop-filter: blur(var(--card_filter));
    -webkit-backdrop-filter: blur(var(--card_filter));
    transition: opacity 0.5s ease, background-color 0.2s ease, border 0.2s ease, transform 0.3s ease;

}





.projectItemLeft p {
    font-size: 16px;
    margin-top: 8px;
    color: var(--item_left_text_color);
}


.projectItemLeft h1 {
    font-weight: normal;
    font-size: 24px;
    margin: 0px;
  
    transition: font-size 0.4s ease;
    color: var(--item_left_title_color);
}

.projectItemLeft {
    transition: width 0.4s ease;
    height: 100%;
    width: 80%;
    
}


.projectItemRight {
    overflow: hidden;
    transition: width 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 50%;
}



.skill {
    padding: 25px;
    width: 100%;
}

.skill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skill #skillWap {
    display: none;
}

footer {
    position: relative;
    
    text-align: center;
    width: 100%;
   
    backdrop-filter: blur(var(--card_filter));
    -webkit-backdrop-filter: blur(var(--card_filter));
    background: var(--item_bg_color);
    color: var(--footer_text_color);
    font-size: 13px;
    bottom: 0;
}

@media (min-width: 800px) {

    .index-logo {
        display: none;
    }
}

@media (max-width: 1150px) {
    .a {
        width: calc(50% - 20px);
    }

    .projectItem {
        margin: 10px;
    }

    .b {

        width: calc(50% - 20px);


    }
}

@media (max-width: 800px) {
    .zyyo-left {
        display: none;
    }

  
  

    .a .projectItemLeft {
        width: 100%;
    }

    .a {

        width: calc(38% - -4%);
        margin: 4%;

    }

    .b {
        height: 110px;
        margin: 8px 15px;
        width: calc(100% - 30px);
    }



    .zyyo-right {
        width: 100%;
    }

    .tanChiShe {
        width: 100%;
    }

    .description {
        font-size: 4vw;
    }

    .welcome {
        font-size: 210%;
        margin: 2vw 0;

    }

    .iconContainer {

        margin-top: 4vw;

    }

    .projectItem {
        padding: 3%;
        padding-bottom: 0px;
    }

    .projectItemLeft p {
        font-size: 75%;
    }

    .projectItemLeft h1 {

        font-size: 115%;
    }

   
    .skill #skillWap {
        display: block;
    }

    .skill #skillPc {
        display: none;
    }













}





.tc {
    position: fixed;
  

    display: flex;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(20, 20, 20, 0.5);
    z-index: 99999;
    align-items: center;
    top: 0;
    left: 0;
    justify-content: center;
    flex-direction: column;
}

.tc-main {
    z-index: 100000;

    width: 80%;
    max-width: 300px;
    min-height: 200px;
    background-color: #ffffff;
    border-radius: 15px;

    display: flex;
    
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: translateY(30%) scale(0.5);

}

.tc-img {
    width: 100%;
    height: 100%;
}

.tc.active {
    visibility: visible;
}

.tc-main.active {

    transform: translateY(0) scale(1);

}

.big {
    padding: 7px;
}

.big .small form {
    display: flex;
    justify-content:space-around;
    width: 100%;
    backdrop-filter: blur(var(--card_filter));
    -webkit-backdrop-filter: blur(var(--card_filter));
    
    border-radius: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 12px;
   
}


.big .small form input {
    background-color: transparent;
    border: none;
    color: #fff;
    outline-style: none;
    width: 100%;
    height: 100%;
    
}


.big .small form .ipt {
    flex: 1;
    
}

.big .small form .btns {
    display: flex;
    align-items: center;
    width: 100%;
    
    
}

.big .small form .btns input {
    margin-left: 10px;
    background-color: #20b9f5;
    border-radius: 4px;
    padding: 7px 20px;
    cursor: pointer;
    font-family: "a";
   
    
}

.big .small form .btns input:hover {
    background-color: #5c65ec;
    
    
}

.big .small form .btns input:last-child {
    background-color: #757ffc;
    
}

.big .small form .btns input:last-child:hover {
    background-color: #91770f;
}

.big #app-list {
    margin-top: 10px;
    backdrop-filter: blur(var(--card_filter));
    -webkit-backdrop-filter: blur(var(--card_filter));
    background: var(--item_bg_color);
    border-radius: 8px;
    padding: 10px 15px;
    display: none;
}

.big #app-list .app-container {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.big #app-list .app-container .app-icon {
    border-radius: 8px;
    overflow: hidden;
    width: 64px;
    height: 64px;
}

.big #app-list .app-container .app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.big #app-list .app-container .app-info {
    flex: 1;
    padding: 0 50px 0 15px;
}

.big #app-list .app-container .app-info .app-name {
    font-weight: bold;
}

.big #app-list .app-container .app-info .app-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    opacity: .8;
    font-size: 12px;
    margin: 4px 0;
    word-break: break-all;
    word-wrap: break-word;
}

.big #app-list .app-version {
    color: #e6e6e7;
    font-size: 14px;
    font-weight: bold;
}

.big #app-list .app-version span {
    margin-right: 10px;
}

.big #app-list .button-group {
    display: flex;
}

.big #app-list .button-group button {
    border: none;
    padding: 4px 15px;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 5px;
}

.big #app-list .button-group .install-button {
    background-color: #7683f9;

}

.big #app-list .button-group .copy-button {
    background-color: #a68c30;
}

.big .appListMore {
    width: 130px;
    margin: 15px auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    cursor: pointer;
}

.big .appListMore svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.dig_box {
    position: fixed;
    display: none;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, );
    z-index: 99999;
    align-items: center;
    top: 0;
    justify-content: center;
    flex-direction: column;
    left: 0px;
    
}

body .dig_box .dig_contact {
    padding: 20px;
    

    background-color: var(--item_bg_color); 
    backdrop-filter: blur(5px);
    border-radius: 10px;
    width: 95%;
    max-width: 500px;
    max-height:700px;
    height: auto;
}

body .dig_box #app-list {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    display: block;
    margin: 0;
    padding: 0;
    background-color: transparent !important;
    backdrop-filter: none;
}


body .dig_box #app-list .app-version {
    color: #217cfb;
}

.qsy {
    padding: 7px;
}
.aaap {
    font-family: "a";
}

.qsy .qsyForm {
    display: flex;
    width: 100%;
    backdrop-filter: blur(var(--card_filter));
    -webkit-backdrop-filter: blur(var(--card_filter));
    background: var(--item_bg_color);
    border-radius: 8px;
    padding: 8px 15px;
    
}

.qsy .qsyForm #url {
    background-color: transparent;
    border: none;
    color: #fff;
    outline-style: none;
    width: 100%;
}

.qsy .qsyForm .qsyBtn {
    margin-left: 10px;
    background-color: #757ffc;
    border-radius: 4px;
    padding: 7px 20px;
    cursor: pointer;
    color: #fff;
    border: none;
    outline-style: none;
     font-family: "a";
}

.qsy .qsyForm .qsyBtn:hover {
    background-color: #5c65ec;
}

.dig_box_qsy .dig_contact>.video_url {
    width: 100%;
    height: 85%;
    object-fit: cover;
    
}

.dig_box_qsy .dig_contact .btns {
    height: 15%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 15px 0 10px;
}

.dig_box_qsy .dig_contact .btns>* {
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    background-color: #757ffc;
    
}

.dig_box_qsy .dig_contact .btns .copy_video:hover {
    background-color: #5c65ec;
    
}

.dig_box_qsy .dig_contact .btns .down_video {
    background-color: #a78d25;
}

.dig_box_qsy .dig_contact .btns .down_video:hover {
    background-color: #91770f;
}

.wxAi {
    
    background-color: var(--item_bg_color);
    border-radius: 20px;
    margin: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 0px solid rgba(255, 255, 255, 0.05);
}



.wxAi .tutorial {
    color: var(--text-color) !important;
    line-height: 2;
    padding: 15px 0;
    position: relative;
    font-size: 15px;
}

.wxAi .tutorial h1,
.wxAi .tutorial h2,
.wxAi .tutorial h3,
.wxAi .tutorial h4,
.wxAi .tutorial h5,
.wxAi .tutorial h6 {
    margin: 1.5em 0 1em;
    font-weight: 600;
    color: var(--text-color) !important;
    position: relative;
    padding-left: 0;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.wxAi .tutorial h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wxAi .tutorial h3::before {
    content: '';
    flex-shrink: 0;
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, var(--purple_text_color), #f76cc6);
    border-radius: 2px;
    margin-right: 5px;
}

.wxAi .tutorial p {
    margin: 1em 0;
    line-height: 1.8;
    color: var(--text-color) !important;
    padding-left: 0;
    position: relative;
}

.wxAi .tutorial ul,
.wxAi .tutorial ol {
    padding-left: 1.2em;
    margin: 1.5em 0;
    list-style: none;
}

.wxAi .tutorial li {
    margin: 0.8em 0;
    position: relative;
    padding-left: 1.5em;
    line-height: 1.6;
}

.wxAi .tutorial li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--purple_text_color);
    border-radius: 50%;
    opacity: 0.8;
}

.wxAi .tutorial blockquote {
    margin: 2em 0;
    padding: 1.5em;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--purple_text_color);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.wxAi .tutorial code {
    background: rgba(119, 68, 255, 0.1);
    color: var(--purple_text_color);
    padding: 0.2em 0.5em;
    border-radius: 4px;
    font-family: 'Monaco', monospace;
    font-size: 0.9em;
}

.wxAi .tutorial img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5em 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 响应式优化 */
@media (max-width: 768px) {
    .wxAi {
        margin: 15px;
        padding: 25px;
        border-radius: 15px;
    }
    
    .wxAi::after {
        top: 15px;
        right: 15px;
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .wxAi .tutorial {
        padding: 10px 0;
        font-size: 14px;
    }
    
    .wxAi .tutorial h3 {
        font-size: 16px;
    }
}

/* 渐变文本效果 */
.wxAi .tutorial .highlight {
    background: linear-gradient(120deg, var(--purple_text_color), #f76cc6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wxAi {
    animation: fadeIn 0.5s ease-out;
}

/* 添加响应式设计 */
@media (max-width: 768px) {
    .wxAi {
        margin: 15px;
        padding: 20px;
    }
    
    .wxAi .tutorial {
        padding: 0px;
    }
    
    .wxAi::before {
        font-size: 20px;
        top: 12px;
        left: 12px;
    }
}

/* 对齐方式 */
.wxAi .tutorial .ql-align-center {
    text-align: center;
}

.wxAi .tutorial .ql-align-right {
    text-align: right;
}

.wxAi .tutorial .ql-align-justify {
    text-align: justify;
}

/* 字体大小 */
.wxAi .tutorial .ql-size-small {
    font-size: 0.875em;
}

.wxAi .tutorial .ql-size-large {
    font-size: 1.25em;
}

.wxAi .tutorial .ql-size-huge {
    font-size: 1.5em;
}

/* 颜色和背景色 */
.wxAi .tutorial [style*="color:"] {
    color: var(--text-color) !important;
}

.wxAi .tutorial [style*="background-color:"] {
    background: inherit !important;
}

/* 列表样式 */
.wxAi .tutorial .ql-indent-1 {
    padding-left: 3em;
}

.wxAi .tutorial .ql-indent-2 {
    padding-left: 6em;
}

/* 分割线 */
.wxAi .tutorial hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 1em 0;
}

/* 上标和下标 */
.wxAi .tutorial sup {
    vertical-align: super;
    font-size: smaller;
}

.wxAi .tutorial sub {
    vertical-align: sub;
    font-size: smaller;
}

/* 用户信息样式 */
.user-info {
    margin-bottom: 0px;
}

.location, .role {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.location i, .role i {
    margin-right: 8px;
}

/* 标签样式 */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.tag-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 12px;
    margin: 4px;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* 时间线样式 */
.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-item {
    margin: 10px 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.timeline-date {
    font-size: 0.9em;
    opacity: 0.8;
    margin-bottom: 6px;
    color: var(--main_text_color);
}

.timeline-content {
    color: var(--main_text_color);
}

.left-div.left-des .user-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.left-div.left-des .location,
.left-div.left-des .role {
    display: flex;
    align-items: center;
    gap: 8px;
}

.left-div.left-des .icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.left-div.left-des .location-text,
.left-div.left-des .role-text {
    font-size: 14px;
}

/* 标签样式统一 */
.preview-tag {
    display: inline-flex;
    align-items: center;
    background: var(--left_tag_item);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    margin: 4px;
    color: var(--main_text_color);
}

.left-div.left-des .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.left-div.left-des .tag-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--left_tag_item);
    width: 52px;        /* 固定宽度 */
    height: 28px;       /* 固定高度 */
    border-radius: 8px;
    font-size: 14px;
    line-height: 1;
    padding: 0;         /* 移除内边距，使用固定宽度 */
    margin: 4px;
    color: var(--main_text_color);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

/* 标签容器样式 */
.left-div.left-des .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

/* 预览区域标签样式 */
.preview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.preview-section .preview-tag {
    background: var(--left_tag_item);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--main_text_color);
}

/* 统一标签样式 */
.tag-item, .preview-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--left_tag_item);
    padding: 8px 15px;  /* 统一内边距 */
    border-radius: 8px;  /* 统一圆角 */
    font-size: 14px;
    line-height: 1;     /* 统一行高 */
    margin: 5px;        /* 统一外边距 */
    color: var(--main_text_color);
    min-width: 80px;    /* 设置最小宽度 */
    height: 32px;       /* 固定高度 */
    text-align: center;
    white-space: nowrap;/* 防止文字换行 */
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* 标签容器样式 */
.tags-container, .preview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;          /* 统一间距 */
    padding: 5px;
    align-items: center;
}

/* 移除之前可能冲突的样式 */
.left-div.left-des .tag-item,
.preview-section .preview-tag {
    margin: 0;          /* 使用gap来控制间距 */
    flex: 0 0 auto;     /* 防止标签被拉伸 */
}

.close-button {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--item_bg_color) !important;
    border: none;
    font-size: 20px !important;
    cursor: pointer;
    color: var(--main_text_color) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
    padding: 0 !important;
    line-height: 1;
    z-index: 10;
}

.close-button:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: rotate(90deg);
}

.dig_contact {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    padding-top: 25px; /* 为关闭按钮留出空间 */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.titll {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-right: 30px; /* 为关闭按钮留出空间 */
}

/* 移动端适配 */
@media (max-width: 768px) {
    .close-button {
        width: 25px;
        height: 25px;
        font-size: 18px !important;
    }
    
    .dig_contact {
        padding: 15px;
        padding-top: 20px;
    }
}

/* 针对移动设备的媒体查询 */
@media screen and (max-width: 768px) {
    .zyyo-filter {
        height: 100%; /* 移动端使用100%高度 */
        background-size: contain;
        background-position: center;
        background-attachment: fixed;
        transform: none;
    }
}

/* 针对高分辨率设备的优化 */
@media screen and (min-width: 2000px) {
    body::before {
        background-size: contain;
        background-position: center;
    }
}

/* ===== root.css ===== */
:root {--name: 黑色透明卡片+黑色svg;
    --main_bg_color: none;
    --main_text_color: #000000;
    --gradient: linear-gradient(120deg, #bd34fe, #e0321b 30%, #41d1ff 60%);
    --purple_text_color: #747bff;
    --text_bg_color: #00000040;
    --item_bg_color: #00000038;
    --item_hover_color: #33333338;
    --item_left_title_color: #000000;
    --item_left_text_color: #000000bd;
    --footer_text_color: #222222;
    --left_tag_item: #251c1c5e;
    --card_filter: 0px;
    --back_filter: 0px;
    --back_filter_color: #00000000;
     --fill:#000000;
    --background-blur: 0px;}

:root {--name: 黑色透明卡片+白色svg;
    --main_bg_color: none;
    --main_text_color: #eeeeee;
    --gradient: linear-gradient(120deg, #bd34fe, #e0321b 30%, #41d1ff 60%);
    --purple_text_color: #747bff;
    --text_bg_color: #00000040;
    --item_bg_color: #00000038;
    --item_hover_color: #33333338;
    --item_left_title_color: #ffffff;
    --item_left_text_color: #ffffff;
    --footer_text_color: #ffffff;
    --left_tag_item: #00000045;
    --card_filter: 0px;
    --back_filter: 0px;
    --back_filter_color: #00000030;
    --fill:#ffffff;
    --background-blur: 0px;}

:root {--name: 浅蓝卡片+黑色svg;
    --main_bg_color: none;
    --main_text_color: #000000;
    --gradient: linear-gradient(120deg, #bd34fe, #e0321b 30%, #41d1ff 60%);
    --purple_text_color: #747bff;
    --text_bg_color: rgb(196 217 251);
    --item_bg_color: rgba(249, 250, 251, 0.5);
    --item_hover_color: rgba(244, 245, 246, 0.8);
    --item_left_title_color: #000000;
    --item_left_text_color: #494949;
    --footer_text_color: #222222;
    --left_tag_item: linear-gradient(50deg, #a2d1ff, #ffffff);
    --card_filter: 0px;
    --back_filter: 0px;
    --back_filter_color: #00000000;
     --fill:#000000;
    --background-blur: 0px;}

:root {--name: 纯白卡片+黑色svg;
    --main_bg_color: none;
    --main_text_color: #000000;
    --gradient: linear-gradient(120deg, #bd34fe, #e0321b 30%, #41d1ff 60%);
    --purple_text_color: #747bff;
    --text_bg_color: rgb(240 243 247);
    --item_bg_color: rgb(247 247 247);
    --item_hover_color: rgba(244, 245, 246, 0.5);
    --item_left_title_color: #000000;
    --item_left_text_color: #494949;
    --footer_text_color: #222222;
    --left_tag_item: #ffffff;
    --card_filter: 0px;
    --back_filter: 0px;
    --back_filter_color: #00000000;
     --fill:#000000;
    --background-blur: 0px;}

:root {--name: 白色透明卡片+黑色svg1;
    --main_bg_color: none;
    --main_text_color: #000000;
    --gradient: linear-gradient(120deg, #bd34fe, #e0321b 30%, #41d1ff 60%);
    --purple_text_color: #747bff;
    --text_bg_color: rgb(121 163 231);
    --item_bg_color: rgba(249, 250, 251, 0.42);
    --item_hover_color: rgba(244, 245, 246, 0.8);
    --item_left_title_color: #000000;
    --item_left_text_color: #494949;
    --footer_text_color: #ffffff;
    --left_tag_item: #c7e1fa;
    --card_filter: 0px;
    --back_filter: 0px;
    --back_filter_color: #00000030;
     --fill:#000000;
    --background-blur: 0px;}

/* ===== aan.css ===== */
.close-button1 {
    top: 10px !important;
    right: 10px !important;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--item_bg_color);
    border: none;
    font-size: 20px !important;
    cursor: pointer;
    color: var(--main_text_color);
    border-radius: 50% !important;
    transition: all 0.3s ease;
    padding: 0 !important;
    line-height: 1;
    z-index: 10;
}

.close-button1:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: rotate(90deg);
}

.gradient {
    font-family: "a";
    min-width: 20%;
    height: 40px;
    color: var(--main_text_color);
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.1s ease;
    position: relative;
    display: inline-block;
    outline: none;
    border-radius: 5px;
    border: none;
    background-color: var(--item_bg_color);
    box-shadow: 0 3px 1px -2px #00000000, 0 0px 0px 0 #ccc, 0 1px 5px 0 #ccc;
    font-size: 17px;
    font-weight: 100;
    margin: 5px;
  }
  .gradient:active {
    box-shadow: 0 4px 2px -3px #00000027, 0 0px 5px 1px #ccc, 0 2px 7px 1px #ccc;
  }

  .imgko {
    display: block;
    margin: auto;
    width: 40%;
  
}
hr.style-one {/*透明渐变水平线*/
 width:95%;
 margin:0 auto;
 border: 0;
 height: 2px;
 background-image: linear-gradient(to right, rgba(78, 78, 78, 0), rgba(255, 255, 255, 0.75), rgba(0, 0, 0, 0));
}

.titll {
  display: flex;
  align-items: center;
  font-size: 300%;
  font-weight: 100;
  transition: transform 0.4s ease;
  margin-top: 20px;
  font-family: "a";
  align-items: center;
  justify-content: center;
}

.titll i,
.titll svg {
    margin-right: 10px;
    height: 50%;
    width: 20%;
    
    fill: var(--fill);
    
    
}

.titlk {
  display: flex;
  align-items: center;
  font-size: 60px;
  font-weight: 100;
  transition: transform 0.4s ease;
  margin-top: 5px;
  font-family: "a";
  align-items: center;
  justify-content: center;
  height:100%;
  width: 100%;

 
}

.titlk svg {
    height: 60px;
    width: 60px;
    fill: var(--fill);
    
}

.titll:hover {
    transform: translateY(-5px);
}




.zitb {
   display: flex;
    justify-content: center;
    height: 18%;
    margin:20px 0px 1% 0px;
    
}

.bofb {
	display: flex;
	 justify-content: center;
	 height: 18%;
	 margin:30px;
	 
 }





.Play {

width: 29px;
height: 10px;
transition: .5s;

}


.btns-bg2 {
  
  width: 100%;
  height: auto;
  
  
  }
  
.btns-bg {
display: flex;
justify-content: center;
align-items: center;

}

@keyframes Btn-bg {

  0%{transform:rotateZ(0deg);}
  100%{transform:rotateZ(360deg);}
}


		#modal {
		  position: fixed;
		  top: 0;
		  left: 0;
		  width: 100vw;
		  height: 100vh;
		  display: flex;
		  justify-content: center;
		  align-items: center;
		  z-index: 9999999;
		  background-position: center !important;
		  background-size: cover !important;
		  background-repeat: no-repeat !important;
		}
	
		/* 添加背景模糊遮罩层 */
		#modal::before {
		  content: '';
		  position: absolute;
		  top: 0;
		  left: 0;
		  right: 0;
		  bottom: 0;
		  backdrop-filter: blur(var(--background-blur));
		  -webkit-backdrop-filter: blur(var(--background-blur));
		  z-index: 0;
		}
	
		#modal-content {
		  position: relative;
		  z-index: 1;
		  padding: 20px;
		}

	.cccct {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    overflow: hidden;
	
	
  }


  .container {
    padding: 20px;
	padding-bottom: 10px;
	min-width:300px;
    width: auto;
    max-width: 600px;
    z-index: 5;
    border-radius: 30px;
    background: rgba(92, 92, 92, 0.151);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); 
    margin: 20px;
  }
	
	  .profile-pic {
		width: 30%;
		border-radius: 50%;
		object-fit: cover;
		border: 2px solid #fff;
		margin-top: 20px;
	  }
	
	  .name {
		font-size: 2.5em;
		font-weight: bold;
	  }
	
	  .subtitle {
		font-size: 1.2em;
		font-weight: 300;
		margin: 10px 0;
	  }
	  .navigation {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin: 8px 0;
	  }
	
	  .navigation button {
		font-size: 1em;
		margin: 5px;
		border-radius: 10px;
		background-color: rgba(92, 92, 92, 0.151);;
		cursor: pointer;
		
		max-width: calc(100% - 10px);
		
	  }
	
	  .navigation button:hover {
		
		color: black;
	  }
	
	  footer {
		margin-top: 20px;
		font-size: 0.8em;
	  }
	
	  @media (max-width: 600px) {
		.name {
		  font-size: 192%;
		}
		
		.subtitle {
		  font-size: 1em;
		}
		
		.navigation button {
		  font-size: 0.9em;
		 
		  max-width: calc(80% - 10px);
		}
	  }
	
	  .cherry-blossom {
		position: absolute;
		width: 12px;
		height: 12px;
		background: radial-gradient(circle, pink 35%, transparent 40%);
		border-radius: 50%;
		pointer-events: none;
		animation: fall linear infinite;
		opacity: 0.8;
	  }
	
	  @keyframes fall {
		0% {
		  transform: translateY(-100px) rotate(0deg);
		  opacity: 1;
		}
		100% {
		  transform: translateY(100vh) rotate(360deg);
		  opacity: 0;
		}
	  }


	 .gradient2 {
		font-family: "a";
		min-width: 40%;
		height: 40px;
		color: var(--fill);
		padding: 5px 10px;
		font-weight: bold;
		cursor: pointer;
		transition: all 0.1s ease;
		position: relative;
		display: inline-block;
		outline: none;
		border-radius: 5px;
		border: none;
		background-color: #fafafa00;
		box-shadow: 0 3px 1px -2px #00000000, 0px 0px 3px 0 #ccc, 0px 0px 3px 0 #ccc;
		font-size: 17px;
		font-weight: 100;
		margin: 5px;
	  }
	  .gradient2:active {
		box-shadow: 0 4px 2px -3px #00000027, 0 0px 5px 1px #ccc, 0 2px 7px 1px #ccc;
	  }

	  

	  
	  

	  .rotating-svg {
		animation: rotation 2s linear infinite;
        cursor: pointer;
	}
	
	@keyframes rotation {
		from {
			transform: rotate(0deg);
		}
		to {
			transform: rotate(360deg);
		}
	}
	
	/* 背景样式 */
body {
    background-image: var(--main_bg_color);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: background-image 0.3s ease;
    color: var(--main_text_color);
    position: relative;
    min-height: 100vh;
    z-index: 1;
}

/* 背景模糊效果 */
.zyyo-filter {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(var(--background-blur));
    -webkit-backdrop-filter: blur(var(--background-blur));
    background: var(--back_filter_color);
    z-index: 0;
    pointer-events: none;
    transition: backdrop-filter 0.3s ease;
}

/* 内容层级 */
.zyyo-main {
    position: relative;
    z-index: 2;
}

/* LOGO模糊效果 */
.logo, .index-logo {
    filter: blur(var(--logo-blur));
    -webkit-filter: blur(var(--logo-blur));
    transition: filter 0.3s ease;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* ===== bofan.css ===== */

.aplayer {
    
   
    margin: 5px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.07),0 1px 5px 0 rgba(0,0,0,.1);
    border-radius: 2px;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: normal;
    position: relative
    
}

.aplayer * {
    box-sizing: content-box
}

.aplayer svg {
    width: 100%;
    height: 100%
}

.aplayer svg circle,.aplayer svg path {
    fill: #fff
}

.aplayer.aplayer-withlist .aplayer-info {
    border-bottom: 1px solid #e9e9e9
}

.aplayer.aplayer-withlist .aplayer-list {
    display: block
}

.aplayer.aplayer-withlist .aplayer-icon-order,.aplayer.aplayer-withlist .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon.aplayer-icon-menu {
    display: inline
}

.aplayer.aplayer-withlrc .aplayer-pic {
    height: 90px;
    width: 90px
}

.aplayer.aplayer-withlrc .aplayer-info {
    margin-left: 90px;
    height: 90px;
    padding: 10px 7px 0
}

.aplayer.aplayer-withlrc .aplayer-lrc {
    display: block
}

.aplayer.aplayer-narrow {
    width: 66px
}

.aplayer.aplayer-narrow .aplayer-info,.aplayer.aplayer-narrow .aplayer-list {
    display: none
}

.aplayer.aplayer-narrow .aplayer-body,.aplayer.aplayer-narrow .aplayer-pic {
    height: 66px;
    width: 66px
}

.aplayer.aplayer-fixed {
   padding-bottom: 100px;
    bottom: 0%;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 0;
    overflow: visible;
    max-width: 500px;
    box-shadow: none
}

.aplayer.aplayer-fixed .aplayer-list {
    margin-bottom: 10px;
    border: 1px solid #eeeeee00;
    border-bottom: none
}

.aplayer.aplayer-fixed .aplayer-body {
    
    bottom: 30%;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 99;
    max-width: 500px;
   
}

.aplayer.aplayer-fixed .aplayer-lrc {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin:80px;
    z-index: 99;
    pointer-events: none;
    height: 90px;
    text-shadow: 0 0 20px #ffffff00,0 0 10px #000000
}

.aplayer.aplayer-fixed .aplayer-lrc:after,.aplayer.aplayer-fixed .aplayer-lrc:before {
    display: none
}

.aplayer.aplayer-fixed .aplayer-info {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    transition: all .3s ease;
    border-bottom: none;
  
}

.aplayer.aplayer-fixed .aplayer-info .aplayer-music {
    width: calc(100% - 105px)
}

.aplayer.aplayer-fixed  {
    display: block
}

.aplayer.aplayer-fixed.aplayer-narrow .aplayer-info {
    display: block;
    -webkit-transform: scaleX(0);
    transform: scaleX(0)
}

.aplayer.aplayer-fixed.aplayer-narrow .aplayer-body {
    width: 66px!important
}

.aplayer.aplayer-fixed.aplayer-narrow .aplayer-miniswitcher .aplayer-icon {
    -webkit-transform: rotateY(0);
    transform: rotateY(0)
}

.aplayer.aplayer-fixed .aplayer-icon-back,.aplayer.aplayer-fixed .aplayer-icon-forward,.aplayer.aplayer-fixed .aplayer-icon-lrc,.aplayer.aplayer-fixed .aplayer-icon-play {
    display: inline-block
}

.aplayer.aplayer-fixed .aplayer-icon-back,.aplayer.aplayer-fixed .aplayer-icon-forward,.aplayer.aplayer-fixed .aplayer-icon-menu,.aplayer.aplayer-fixed .aplayer-icon-play {
    position: absolute;
    bottom: 27px;
    width: 20px;
    height: 20px
}

.aplayer.aplayer-fixed .aplayer-icon-back {
    right: 75px
}

.aplayer.aplayer-fixed .aplayer-icon-play {
    right: 50px
}

.aplayer.aplayer-fixed .aplayer-icon-forward {
    right: 25px
}

.aplayer.aplayer-fixed .aplayer-icon-menu {
    right: 0
}

.aplayer.aplayer-arrow .aplayer-icon-loop,.aplayer.aplayer-arrow .aplayer-icon-order,.aplayer.aplayer-mobile .aplayer-icon-volume-down {
    display: none
}

.aplayer.aplayer-loading .aplayer-info .aplayer-controller .aplayer-loading-icon {
    display: block
}

.aplayer.aplayer-loading .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played .aplayer-thumb {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.aplayer .aplayer-body {
    position: relative
}

.aplayer .aplayer-icon {
    width: 15px;
    height: 15px;
    border: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    opacity: .8;
    vertical-align: middle;
    padding: 0;
    font-size: 12px;
    margin: 0;
    display: inline-block
}

.aplayer .aplayer-icon path {
    transition: all .2s ease-in-out
}

.aplayer .aplayer-icon-back,.aplayer .aplayer-icon-forward,.aplayer .aplayer-icon-lrc,.aplayer .aplayer-icon-order,.aplayer .aplayer-icon-play {
    display: none
}

.aplayer .aplayer-icon-lrc-inactivity svg {
    opacity: .4
}

.aplayer .aplayer-icon-forward {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.aplayer .aplayer-lrc-content {
    display: none
}

.aplayer .aplayer-pic {
    position: relative;
    float: left;
    height: 66px;
    width: 66px;
    background-size: cover;
    background-position: 50%;
    transition: all .3s ease;
    cursor: pointer
}

.aplayer .aplayer-pic:hover .aplayer-button {
    opacity: 1
}

.aplayer .aplayer-pic .aplayer-button {
    position: absolute;
    border-radius: 50%;
    opacity: .8;
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
    box-shadow: 0 1px 1px rgba(0,0,0,.2);
    background: rgba(0,0,0,.2);
    transition: all .1s ease
}

.aplayer .aplayer-pic .aplayer-button path {
    fill: #fff
}

.aplayer .aplayer-pic .aplayer-hide {
    display: none
}

.aplayer .aplayer-pic .aplayer-play {
    width: 26px;
    height: 26px;
    border: 2px solid #fff;
    bottom: 50%;
    right: 50%;
    margin: 0 -15px -15px 0
}

.aplayer .aplayer-pic .aplayer-play svg {
    position: absolute;
    top: 3px;
    left: 4px;
    height: 20px;
    width: 20px
}

.aplayer .aplayer-pic .aplayer-pause {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    bottom: 4px;
    right: 4px
}

.aplayer .aplayer-pic .aplayer-pause svg {
    position: absolute;
    top: 2px;
    left: 2px;
    height: 12px;
    width: 12px
}

.aplayer .aplayer-info {
    margin-left: 66px;
    padding: 14px 7px 0 10px;
    height: 66px;
    box-sizing: border-box
}

.aplayer .aplayer-info .aplayer-music {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0 0 13px 5px;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: default;
    padding-bottom: 2px
}

.aplayer .aplayer-info .aplayer-music .aplayer-title {
    font-size: 14px
    color: var(--main_text_color);
}

.aplayer .aplayer-info .aplayer-music .aplayer-author {
    font-size: 12px;
    color: var(--main_text_color);
}

.aplayer .aplayer-info .aplayer-controller {
    position: relative;
    display: flex
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap {
    margin: 0 0 0 5px;
    padding: 4px 0;
    cursor: pointer!important;
    flex: 1
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap:hover .aplayer-bar .aplayer-played .aplayer-thumb {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar {
    position: relative;
    height: 2px;
    width: 100%;
    background: #cdcdcd
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-loaded {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #aaa;
    height: 2px;
    transition: all .5s ease
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 2px
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played .aplayer-thumb {
    position: absolute;
    top: 0;
    right: 5px;
    margin-top: -4px;
    margin-right: -10px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-transform: scale(0);
    transform: scale(0)
}

.aplayer .aplayer-info .aplayer-controller .aplayer-time {
    position: relative;
    right: 0;
    bottom: 4px;
    height: 17px;
    color: var(--main_text_color);
    font-size: 11px;
    padding-left: 7px
}

.aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-time-inner {
    vertical-align: middle
}

.aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon {
    cursor: pointer;
    transition: all .2s ease
}

.aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon path {
    fill: var(--fill);
}

.aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon.aplayer-icon-loop {
    margin-right: 2px
}

.aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon:hover path {
    fill: #ffffff
}

.aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon.aplayer-icon-menu,.aplayer .aplayer-info .aplayer-controller .aplayer-time.aplayer-time-narrow .aplayer-icon-menu,.aplayer .aplayer-info .aplayer-controller .aplayer-time.aplayer-time-narrow .aplayer-icon-mode {
    display: none
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap {
    position: relative;
    display: inline-block;
    margin-left: 3px;
    cursor: pointer!important
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap:hover .aplayer-volume-bar-wrap {
    height: 40px
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap .aplayer-volume-bar-wrap {
    position: absolute;
    bottom: 15px;
    right: -3px;
    width: 25px;
    height: 0;
    z-index: 99;
    overflow: hidden;
    transition: all .2s ease-in-out
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap .aplayer-volume-bar-wrap.aplayer-volume-bar-wrap-active {
    height: 40px
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap .aplayer-volume-bar-wrap .aplayer-volume-bar {
    position: absolute;
    bottom: 0;
    right: 10px;
    width: 5px;
    height: 35px;
    background: #aaa;
    border-radius: 2.5px;
    overflow: hidden
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap .aplayer-volume-bar-wrap .aplayer-volume-bar .aplayer-volume {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 5px;
    transition: all .1s ease
}

.aplayer .aplayer-info .aplayer-controller .aplayer-loading-icon {
    display: none
}

.aplayer .aplayer-info .aplayer-controller .aplayer-loading-icon svg {
    position: absolute;
    -webkit-animation: rotate 1s linear infinite;
    animation: rotate 1s linear infinite
}

.aplayer .aplayer-lrc {
    display: none;
    position: relative;
    height: 30px;
    text-align: center;
    overflow: hidden;
    margin: -10px 0 7px
}

.aplayer .aplayer-lrc:before {
    top: 0;
    height: 10%;
    background: linear-gradient(180deg,#fff 0,hsla(0,0%,100%,0));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#00ffffff",GradientType=0)
}

.aplayer .aplayer-lrc:after,.aplayer .aplayer-lrc:before {
    position: absolute;
    z-index: 99;
    display: block;
    overflow: hidden;
    width: 100%;
    content: " "
}

.aplayer .aplayer-lrc:after {
    bottom: 0;
    height: 33%;
    background: linear-gradient(180deg,hsla(0,0%,100%,0) 0,hsla(0,0%,100%,.8));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff",endColorstr="#ccffffff",GradientType=0)
}

.aplayer .aplayer-lrc p {
    font-size: 16px;
   
    color: var(--main_text_color);
    line-height: 16px!important;
    height: 17px!important;
    padding: 0!important;
    margin: 0!important;
    transition: all .5s ease-out;
    opacity: .5;
    overflow: hidden
}

.aplayer .aplayer-lrc p.aplayer-lrc-current {
    opacity: 6;
    overflow: visible;
    height: auto!important;
    min-height: 30px
}

.aplayer .aplayer-lrc.aplayer-lrc-hide {
    display: none
}

.aplayer .aplayer-lrc .aplayer-lrc-contents {
    width: 100%;
    transition: all .5s ease-out;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: default
}

.aplayer .aplayer-list {
    overflow: auto;
    transition: all .5s ease;
    will-change: height;
    display: none;
    overflow: hidden
}

.aplayer .aplayer-list.aplayer-list-hide {
    max-height: 0!important
}

.aplayer .aplayer-list ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow-y: auto
}

.aplayer .aplayer-list ol::-webkit-scrollbar {
    width: 5px
}

.aplayer .aplayer-list ol::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: #eee
}

.aplayer .aplayer-list ol::-webkit-scrollbar-thumb:hover {
    background-color: #ccc
}

.aplayer .aplayer-list ol li {
    position: relative;
    height: 32px;
    line-height: 32px;
    padding: 0 15px;
    font-size: 12px;
    border-top: 1px solid #e9e9e900;
    cursor: pointer;
    transition: all .2s ease;
    overflow: hidden;
    margin: 0
}

.aplayer .aplayer-list ol li:first-child {
    border-top: none
}

.aplayer .aplayer-list ol li:hover {
    background: #efefef
}

.aplayer .aplayer-list ol li.aplayer-list-light {
    background: #e9e9e900
}

.aplayer .aplayer-list ol li.aplayer-list-light .aplayer-list-cur {
    display: inline-block
}

.aplayer .aplayer-list ol li .aplayer-list-cur {
    display: none;
    width: 3px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 5px;
    cursor: pointer
}

.aplayer .aplayer-list ol li .aplayer-list-index {
    color: var(--main_text_color);
    margin-right: 12px;
    cursor: pointer
}

.aplayer .aplayer-list ol li .aplayer-list-author {
    color: var(--main_text_color);
    float: right;
    cursor: pointer
}

.aplayer .aplayer-notice {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    font-size: 12px;
    border-radius: 4px;
    padding: 5px 10px;
    transition: all .3s ease-in-out;
    overflow: hidden;
    color: #fff;
    pointer-events: none;
    background-color: #f4f4f5;
    color: #909399
}

.aplayer .aplayer-miniswitcher {
    display: none;
    position: absolute;
    top: 0;
    right: -20px;
    bottom: 0;
    height: 100%;
    background: #e6e6e6;
    width: 18px;
    border-radius: 0 2px 2px 0
}

.aplayer .aplayer-miniswitcher .aplayer-icon {
    height: 100%;
    width: 100%;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    transition: all .3s ease
}

.aplayer .aplayer-miniswitcher .aplayer-icon path {
    fill: #666
}

.aplayer .aplayer-miniswitcher .aplayer-icon:hover path {
    fill: #000
}

@-webkit-keyframes aplayer-roll {
    0% {
        left: 0
    }

    to {
        left: -100%
    }
}

@keyframes aplayer-roll {
    0% {
        left: 0
    }

    to {
        left: -100%
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

/*# sourceMappingURL=APlayer.min.css.map*/

/* ===== apps.css ===== */
/* 基础样式 */
.page-container {
    background: var(--background-color);
    width: 100%;
    padding: 15px;
}

.content-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* 信息卡片样式 */
.info {
    background-color: var(--item_bg_color);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 统计卡片样式 */
.content {
    background-color: var(--item_bg_color);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* 应用列表样式 */
.index-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.box {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--item_bg_color);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    isolation: isolate;
}

.box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.platform {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.platform-a {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.platform-icon img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}

.platform-title {
    flex: 1;
    min-width: 0;
}

.platform-title-text {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.platform-title-intro2 {
    font-size: 12px;
    color: var(--item_left_title_color);
    margin-bottom: 2px;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .index-list {
        gap: 15px;
    }
    
    .box {
        flex: 0 0 calc(50% - 8px); /* 平板显示2列 */
    }
    
}

@media screen and (max-width: 768px) {
			.index-list {
				display: flex;
				flex-direction: column;
				gap: 15px;
			}
			.box {
				width: 100% !important;
				margin: 0 !important;
			}
			.platform {
				width: 100% !important;
			}
			.platform-a {
				display: flex;
				align-items: center;
				width: 100%;
			}
			.platform-icon {
				width: 60px;
				height: 60px;
				min-width: 60px;
				margin-right: 15px;
			}
			.platform-title {
				flex: 1;
			}
		}
		

@media (max-width: 768px) {
    .page-container {
        padding: 10px;
    }
    
    .index-list {
        gap: 12px;
        display: flex;
        flex-direction: column;
    }
    
    .box {
        width: 100%;
        margin: 0;
        padding: 12px;
        isolation: isolate;
    }

    /* 简化内部结构样式 */
    .platform {
        display: flex;
        flex-direction: column;
    }

    .platform-a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 20px 0px
    }

    .platform-icon img {
        width: 60px;
        height: 60px;
    }

    .platform-title-text {
        font-size: 15px;
    }

    .platform-title-intro2 {
        font-size: 12px;
        margin-bottom: 1px;
    }

    /* 展开内容样式 */
    .app-keywords {
        display: none;
        padding: 12px 0 0;
        font-size: 13px;
        line-height: 1.5;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background-color: transparent;
    }

    /* 展开按钮样式 */
    .expand-button {
        width: 100%;
        padding: 8px 0;
        margin-top: 8px;
        font-size: 13px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: transparent;
    }

    /* 展开状态样式 */
    .box.expanded {
        background-color: var(--item_bg_color);
    }

    .box.expanded .platform-a {
        display: none;
    }

    .box.expanded .app-keywords {
        display: block;
    }
}

/* 添加加载更多按钮样式 */
.load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.load-more-button {
    background-color: var(--item_bg_color);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 14px;
    color: var(--item_left_title_color);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.load-more-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.load-more-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 初始加载的内容动画 */
.box.initial {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.5s forwards;
}

/* 点击加载更多后新加载的内容动画 */
.box.new-loaded {
    opacity: 0;
    transform: translateX(100%);
    animation: slideInFromRight 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 添加左右翻页按钮样式 */
.page-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 0 20px;
}

.page-button {
    background-color: var(--item_bg_color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    will-change: transform;
}

.page-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.page-button svg {
    width: 20px;
    height: 20px;
    fill: var(--fill);
}

/* 添加左右滑动动画 */
.box.new-loaded {
    opacity: 0;
    transform: translateX(100%);
    animation: slideInFromRight 0.5s ease forwards;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 优化滑动动画 */
@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

.slide-right {
    animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-left {
    animation: slideInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 添加 app-keywords 相关样式 */
.app-keywords {
    display: none;
    padding: 10px;
    background-color: var(--item_bg_color);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
}

/* 展开状态的样式 */
.box.expanded {
    background-color: var(--item_bg_color);
}

.box.expanded .platform-a {
    display: none;
}

.box.expanded .app-keywords {
    display: block;
}

/* 添加展开按钮样式 */
.expand-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 5px;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 12px;
    opacity: 0.7;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.expand-button:hover {
    opacity: 1;
}

.expand-button svg {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.box.expanded .expand-button svg {
    transform: rotate(180deg);
}

/* 添加滑动相关样式 */
.content-wrap {
    position: relative;
    overflow: hidden;
}

.index-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 滑动动画类 */
.slide-left {
    animation: slideLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-right {
    animation: slideRight 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-100%);
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* ===== threebody-bg.css ===== */
#threebody-bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  background: #010307;
}
#threebody-clock {
  position: fixed;
  top: clamp(56px, 7vh, 92px);
  right: clamp(22px, 5vw, 80px);
  z-index: 1;
  width: min(360px, 34vw);
  min-width: 250px;
  pointer-events: none;
  color: rgba(224, 240, 248, .66);
  text-align: right;
  font-family: "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
  text-shadow: 0 0 22px rgba(67, 218, 255, .35);
}
#threebody-clock::before {
  content: "";
  position: absolute;
  inset: -18px -20px -18px -28px;
  border-right: 1px solid rgba(98, 230, 255, .34);
  border-top: 1px solid rgba(98, 230, 255, .18);
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(5,18,26,.26));
  box-shadow: 24px 0 38px rgba(46, 209, 255, .08);
}
#threebody-clock .tb-status,
#threebody-clock .tb-time,
#threebody-clock .tb-date-row,
#threebody-clock .tb-metrics,
#threebody-clock .tb-log-wrap { position: relative; }
#threebody-clock .tb-status {
  font-size: 11px;
  color: rgba(103, 226, 255, .66);
  margin-bottom: 8px;
}
#threebody-clock .tb-status span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #41ff9b;
  box-shadow: 0 0 12px #41ff9b;
  animation: tbPulse 1.6s infinite;
}
#threebody-clock .tb-time {
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: .9;
  font-weight: 200;
  color: rgba(231, 242, 248, .62);
}
#threebody-clock .tb-date-row {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  font-size: clamp(13px, 1.15vw, 18px);
  color: rgba(160, 210, 238, .70);
}
#threebody-clock .tb-date { color: rgba(93, 219, 255, .86); }
#threebody-clock .tb-metrics {
  height: 34px;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  gap: 5px;
  margin-top: 12px;
}
#threebody-clock .tb-metrics i {
  display: block;
  width: 5px;
  height: 30px;
  transform-origin: bottom;
  background: linear-gradient(180deg, #72f4ff, #39ff8c);
  box-shadow: 0 0 12px rgba(71, 235, 255, .45);
  transition: transform .6s ease;
}
#threebody-clock .tb-log-wrap {
  margin-top: 12px;
  min-height: 42px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  color: rgba(224, 232, 238, .47);
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.55;
}
#threebody-clock .tb-log {
  max-width: 100%;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .36s ease, transform .36s ease;
}
#threebody-clock .tb-log.is-visible { opacity: 1; transform: translateY(0); }
body.threebody-bg-active { background: #010307 !important; }
body.threebody-bg-active .zyyo-filter { background: rgba(0, 0, 0, .18) !important; backdrop-filter: none !important; }
body.threebody-bg-active .zyyo-filter::before { background: transparent !important; filter: none !important; }
body.threebody-bg-active .zyyo-filter::after { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
body.threebody-bg-active #modal { background: transparent !important; }
body.threebody-bg-active::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 62% 62%, rgba(0,0,0,0) 0, rgba(0,0,0,.14) 30%, rgba(0,0,0,.72) 100%),
    radial-gradient(circle at 50% 50%, rgba(35,170,255,.08), rgba(0,0,0,0) 36%),
    linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.02) 42%, rgba(0,0,0,.56));
}
body.threebody-bg-active::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .17;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.13) 0, rgba(255,255,255,.13) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: screen;
  animation: tbScanlines 6s linear infinite;
}
@keyframes tbPulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes tbScanlines { from { transform: translateY(0); } to { transform: translateY(12px); } }
@media (max-width: 900px) {
  #threebody-clock {
    top: 58px;
    right: 16px;
    width: 220px;
    min-width: 0;
    opacity: .74;
  }
  #threebody-clock .tb-time { font-size: 34px; }
  #threebody-clock .tb-status,
  #threebody-clock .tb-metrics,
  #threebody-clock .tb-log-wrap { display: none; }
}

body.popup-open .zyyo-main {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.popup-open #threebody-clock {
  opacity: .86;
}
body.threebody-bg-active #modal .container {
  background: rgba(6, 14, 22, .52);
  border: 1px solid rgba(93, 220, 255, .22);
  box-shadow: 0 0 55px rgba(49, 196, 255, .12), inset 0 0 38px rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.popup-closed .zyyo-main {
  opacity: 1;
  visibility: visible;
}

body.threebody-bg-active #modal {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.threebody-bg-active #modal .container {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  color: var(--main_text_color, #fff);
}
body.threebody-bg-active #modal .logo-1 {
  display: block;
  width: min(180px, 34vw);
  height: min(180px, 34vw);
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 14px;
}
body.threebody-bg-active #modal .navigation button,
body.threebody-bg-active #modal .gradient2 {
  pointer-events: auto;
  cursor: pointer;
}
