@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;
    }
}