@font-face {
    font-family: "a";
    src: local("Microsoft YaHei"), local("PingFang SC"), local("Noto Sans SC"), local("sans-serif");
    font-display: swap;
}
@font-face {
    font-family: "b";
    src: local("Segoe UI"), local("Ubuntu"), local("Helvetica Neue"), local("Arial"), local("sans-serif");
    font-display: swap;
}
@font-face {
    font-family: "title";
    src: local("Pacifico"), local("Comic Sans MS"), local("cursive");
    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));
}

:root {
    --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: rgba(0, 0, 0, 0.3);
    --fill: #ffffff;
    --main_bg_color: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

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

.zyyo-filter {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--back_filter_color);
    backdrop-filter:  blur(var(--back_filter));
    -webkit-backdrop-filter: blur(var(--back_filter));
    z-index: -99999999;
}
.zyyo-main {
    width: 100%;
    transition: transform 0.5s ease;
    max-width: 1150px;
    position: relative;
    flex-direction: row;
}
.zyyo-left {
    overflow-y: scroll;
    width: 230px;
    height: 100vh;
    display: flex;
    padding: 0 15px;
    position: fixed;
    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;
    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);
    }
    
    @media (max-width: 800px) {
        .left-div {
            margin-top: 10px;
            padding: 15px;
        }
        
        .left-tag > div {
            width: 100% !important;
            max-width: 100% !important;
            min-width: 100% !important;
        }
    }
.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-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: 10px;
    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;
    float: right;
    padding-bottom: 80px;
    flex-direction: column;
}

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 10px;
    padding: 17px 20px;
    background: linear-gradient(135deg, rgba(19, 20, 24, 0.8) 0%, rgba(26, 4, 48, 0.6) 100%);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    width: 490px;
    box-sizing: border-box;
}

.category-filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 10px;
    padding: 17px 20px;
    background: linear-gradient(135deg, rgba(19, 20, 24, 0.8) 0%, rgba(26, 4, 48, 0.6) 100%);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    width: 490px;
    box-sizing: border-box;
}

.order-query-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 10px;
    padding: 17px 20px;
    background: linear-gradient(135deg, rgba(19, 20, 24, 0.8) 0%, rgba(26, 4, 48, 0.6) 100%);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    width: 490px;
    box-sizing: border-box;
}

.search-filter-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple_text_color), transparent);
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.search-box::before {
    content: '🔍';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--purple_text_color);
    z-index: 1;
}

.search-box input {
    width: 100%;
    padding: 12px 25px 12px 45px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(19, 20, 24, 0.8);
    color: var(--main_text_color);
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-box input:focus {
    border-color: var(--purple_text_color);
    box-shadow: 0 0 20px rgba(116, 123, 255, 0.3);
    background: rgba(19, 20, 24, 0.9);
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.category-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    width: 100%;
    max-width: 450px;
}

.category-filter::before {
    content: '📂';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--purple_text_color);
}

.category-label {
    color: var(--main_text_color);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.category-filter select {
    padding: 12px 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(19, 20, 24, 0.8);
    color: var(--main_text_color);
    font-size: 13px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 300px;
    max-width: 350px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23747bff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 50px;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-filter select:focus {
    border-color: var(--purple_text_color);
    box-shadow: 0 0 20px rgba(116, 123, 255, 0.3);
    background: rgba(19, 20, 24, 0.9);
}

.category-filter select:hover {
    border-color: rgba(116, 123, 255, 0.5);
    transform: translateY(-1px);
}

.category-filter select option {
    background: var(--item_bg_color);
    color: var(--main_text_color);
    padding: 10px;
}

.order-query-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(116, 123, 255, 0.1);
    border: 2px solid rgba(116, 123, 255, 0.3);
    border-radius: 12px;
    color: var(--main_text_color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
}

.order-query-btn:hover {
    background: rgba(116, 123, 255, 0.2);
    border-color: rgba(116, 123, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(116, 123, 255, 0.2);
}

.order-query-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--purple_text_color);
}

.projectItem.hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}
.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;
}
.announcement-btn {
    font-size: 16px;
    margin-top: 15px;
    padding: 10px 25px;
    background: var(--item_bg_color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--main_text_color);
    font-weight: 500;
}

.announcement-btn:hover {
    background: var(--item_hover_color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.purpleText {
    color: var(--purple_text_color);
    font-weight: 800;
}
.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 {
    width: 49px;
    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 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
}
.iconItem i,.iconItem svg{
    width: 22px;
    height: 22px;
    fill:var(--fill);
    font-size: 22px;
     margin-right: 3px;
}

.iconTip {
    white-space: nowrap;
    display: none;
}
.iconItem:hover {
    width: 95px;
    transform: translateY(-2px);
    background: var(--item_hover_color);
}
.iconItem:hover .iconTip {
    display: block;
}


.title {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 800;
    margin: 10px 0 5px 0;
    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;
    margin-top: 5px;
}
.projectItem {
    margin: 10px;
    display: flex;
    flex-direction: column;
    background-color: var(--item_bg_color);
    border-radius: 8px;
    padding: 15px;
    height: 120px;
    width: calc(25% - 20px);
    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;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.projectItem.product-hot {
    border: 1px solid rgba(255, 110, 130, 0.8) !important;
    box-shadow: 0 0 14px rgba(255, 70, 100, 0.38), inset 0 0 0 1px rgba(255, 140, 160, 0.2);
    background: linear-gradient(160deg, rgba(255, 70, 90, 0.1) 0%, var(--item_bg_color) 50%) !important;
}
.projectItem.product-hot .projectItemLeft h1 {
    background: linear-gradient(90deg, #f5e6b8, #ffd666, #ffb347, #f5e6b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}
.projectItem.product-hot .price {
    background: linear-gradient(90deg, #f5e6b8, #ffd666, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}
.stock.stock-hot {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    padding: 3px 10px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(90deg, #ff8c42, #ff4d4d, #ff6b8a);
    box-shadow: 0 2px 8px rgba(255, 70, 70, 0.45);
    animation: hotTagBreathe 2.2s ease-in-out infinite;
    flex-shrink: 0;
}
.stock-hot-icon {
    font-size: 11px;
    line-height: 1;
}
@keyframes hotTagBreathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 70, 70, 0.45);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 2px 14px rgba(255, 90, 60, 0.7);
    }
}

/* 确保电脑端一行显示4个商品 */
@media (min-width: 1200px) {
    .projectItem {
        width: calc(25% - 20px) !important;
        height: 120px !important;
        flex: 0 0 calc(25% - 20px);
    }
}

/* 中等屏幕（平板）一行显示3个商品 */
@media (min-width: 900px) and (max-width: 1199px) {
    .projectItem {
        width: calc(33.333% - 20px) !important;
        flex: 0 0 calc(33.333% - 20px);
    }
}

/* 小屏幕（手机）一行显示2个商品 */
@media (max-width: 899px) {
    .projectItem {
        width: calc(50% - 20px) !important;
        flex: 0 0 calc(50% - 20px);
    }
}
.projectItem:hover {
    box-shadow: 0 8px 16px -4px #2c2d300c;
    transform: translateY(-2px);
}
.projectItem.pressed {
    transform: scale(0.9);
    /* 缩小到原来的0.9倍 */
    background-color: var(--item_hover_color);
}
.projectItem:hover .projectItemLeft {
    width: 100%;
}
.projectItem:hover h1 {
    font-size: 18px;
}
.projectItemLeft p {
    font-size: 12px;
    margin: 0px;
    color: var(--item_left_text_color);
    line-height: 1.3;
    flex: 1;
}

.price {
    font-size: 16px;
    font-weight: bold;
    color: #ff6b6b;
    text-shadow: 0 1px 2px rgba(255, 107, 107, 0.3);
}

.price-stock-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.stock {
    font-size: 12px;
    color: #51cf66;
    font-weight: 600;
    padding: 2px 6px;
    background: rgba(81, 207, 102, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(81, 207, 102, 0.2);
}
.projectItemLeft h1 {
    font-weight: normal;
    font-size: 16px;
    margin: 0px 0px 8px 0px;
    line-height: 1.2;
    transition: font-size 0.4s ease;
    color: var(--item_left_title_color);
}
.projectItemLeft {
    transition: width 0.4s ease;
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
}

footer {
    position: fixed;
    padding: 15px;
    width: 100%;
    backdrop-filter: blur(var(--card_filter));
    -webkit-backdrop-filter: blur(var(--card_filter));
    background: var(--item_bg_color);
    bottom: 0;
    left: 0;
    z-index: 1000;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-btn {
    padding: 8px 16px;
    background: var(--item_bg_color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--main_text_color);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: var(--item_hover_color);
    transform: translateY(-2px);
}
@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-main {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .zyyo-left {
        display: flex !important;
        width: 100% !important;
        position: relative !important;
        height: auto !important;
        padding: 10px !important;
        overflow-y: visible !important;
        left: auto !important;
        top: auto !important;
        margin: 0 !important;
        z-index: auto !important;
        order: 1 !important;
    }
    .a .projectItemRight {
        display: none;
    }
    .a .projectItemRight img {
        display: none;
    }
    .a .projectItemLeft {
        width: 100%;
    }
    .projectItem {
        width: calc(50% - 20px);
        margin: 10px;
        height: 120px;
    }
    .b {
        height: 110px;
        margin: 8px 15px;
        width: calc(100% - 30px);
    }
    .zyyo-right {
        width: 100%;
        padding: 10px;
        float: none;
        order: 2 !important;
    }

    .announcement-btn {
        font-size: 14px;
        padding: 6px 15px;
    }
    .welcome {
        font-size: 10vw;
        margin: 2vw 0;
    }
    .iconContainer {
     margin-top: 4vw;
}
.projectItem{
    padding: 10px;
}
    .projectItemLeft p {
        font-size: 13px;
    }
    .projectItemLeft h1 {
        font-size: 18px;
    }
    .projectItem:hover h1 {
        font-size: 20px;
    }

    
    .footer-buttons {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .footer-btn {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .search-container {
        margin-left: 5px;
        margin-right: 5px;
        padding: 15px 10px;
        border-radius: 12px;
        width: calc(100% - 10px);
        margin-bottom: 15px;
    }
    
    .category-filter-container {
        margin-left: 5px;
        margin-right: 5px;
        padding: 15px 10px;
        border-radius: 12px;
        width: calc(100% - 10px);
        margin-bottom: 15px;
    }
    
    .order-query-container {
        margin-left: 5px;
        margin-right: 5px;
        padding: 15px 10px;
        border-radius: 12px;
        width: calc(100% - 10px);
        margin-bottom: 20px;
    }
    
    .order-query-btn {
        font-size: 12px;
        padding: 8px 15px;
        gap: 6px;
    }
    
    .order-query-btn svg {
        width: 14px;
        height: 14px;
    }
    

    
    .search-box {
        width: 100%;
    }
    
    .category-filter {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }
    
    .search-box::before {
        left: 12px;
        font-size: 14px;
    }
    
    .search-box input {
        font-size: 14px;
        padding: 8px 12px 8px 35px;
        border-radius: 10px;
    }
    
    .category-filter {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }
    
    .category-filter::before {
        left: -20px;
        font-size: 14px;
    }
    
    .category-label {
        font-size: 14px;
    }
    
    .category-filter select {
        flex: 1;
        font-size: 12px;
        padding: 10px 20px;
        min-width: auto;
        max-width: none;
        border-radius: 10px;
        padding-right: 40px;
        letter-spacing: 0.1px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
.tc {
    position: fixed;
    display: flex;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(10px);
    background: rgba(20, 20, 20, 0.5);
    z-index: 99999;
    align-items: center;
    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;
    flex-direction: column;
    cursor: pointer;
}
.tc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Layer.js — 暗色主题见 layer-dark.css */

/* 商品简介：正文与链接分色 */
.zyyo-product-desc {
    width: 100%;
    padding: 12px;
    color: rgba(255, 255, 255, 0.88) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.88) !important;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    text-align: left;
    user-select: text;
    -webkit-user-select: text;
    background: rgba(19, 20, 24, 0.6);
    border-radius: 6px;
    border: 1px solid rgba(116, 123, 255, 0.2);
    backdrop-filter: blur(10px);
    min-height: 20px;
    cursor: text;
}

.zyyo-product-desc a,
.zyyo-product-desc a.zyyo-desc-link,
.zyyo-product-desc .zyyo-desc-link {
    color: #4dabf7 !important;
    -webkit-text-fill-color: #4dabf7 !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
    word-break: break-all;
}

.zyyo-product-desc a:hover,
.zyyo-product-desc a.zyyo-desc-link:hover,
.zyyo-product-desc .zyyo-desc-link:hover {
    color: #74c0fc !important;
    -webkit-text-fill-color: #74c0fc !important;
    text-decoration: none !important;
}

/* 商品直链购买页 */
.zyyo-buy-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px 40px;
}

.zyyo-buy-card {
    width: 100%;
    max-width: 560px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(19, 20, 24, 0.95) 0%, rgba(26, 4, 48, 0.9) 100%);
    border-radius: 12px;
    color: #fff;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(116, 123, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.zyyo-buy-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    margin-bottom: 16px;
    background: rgba(116, 123, 255, 0.1);
    border: 1px solid rgba(116, 123, 255, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.zyyo-buy-back:hover {
    background: rgba(116, 123, 255, 0.22);
    color: #fff;
}

.zyyo-buy-title {
    text-align: center;
    margin-bottom: 22px;
}

.zyyo-buy-title h1 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
}

.zyyo-buy-row {
    display: flex;
    align-items: stretch;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 16px;
}

.zyyo-buy-row-label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 12px 14px;
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    text-align: center;
    flex-shrink: 0;
}

.zyyo-buy-row-label.price { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.zyyo-buy-row-label.stock { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
.zyyo-buy-row-label.qty { background: linear-gradient(135deg, #f39c12, #e67e22); }
.zyyo-buy-row-label.input { background: linear-gradient(135deg, #007bff, #0056b3); }

.zyyo-buy-row-value {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}

.zyyo-buy-row-value input,
.zyyo-buy-row-value select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(116, 123, 255, 0.3);
    background: rgba(19, 20, 24, 0.8);
    color: #fff;
    outline: none;
    font-size: 14px;
    border-radius: 0 8px 8px 0;
    box-sizing: border-box;
}

.zyyo-buy-row-value input.price-val {
    color: #e74c3c !important;
    font-weight: 700;
    text-align: center;
}

.zyyo-buy-row-value input.stock-val {
    color: #9b59b6 !important;
    text-align: center;
}

.zyyo-buy-qty-wrap {
    display: flex;
    flex: 1;
    align-items: stretch;
}

.zyyo-buy-qty-btn {
    border: 1px solid rgba(116, 123, 255, 0.3);
    padding: 12px 14px;
    background: rgba(116, 123, 255, 0.2);
    color: #fff;
    cursor: pointer;
}

.zyyo-buy-qty-btn.minus { border-right: none; }
.zyyo-buy-qty-btn.plus { border-left: none; }

.zyyo-buy-qty-wrap input {
    flex: 1;
    text-align: center;
    border-left: none;
    border-right: none;
    border-radius: 0;
}

.zyyo-buy-desc-box {
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(116, 123, 255, 0.1), rgba(247, 108, 198, 0.1));
    border: 1px solid rgba(116, 123, 255, 0.3);
    border-radius: 8px;
    padding: 14px;
}

.zyyo-buy-desc-box h4 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.zyyo-buy-total {
    text-align: right;
    margin: 4px 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: #f76cc6;
}

.zyyo-buy-submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.zyyo-buy-submit:disabled {
    background: rgba(108, 117, 125, 0.6);
    box-shadow: none;
    cursor: not-allowed;
}

.zyyo-buy-msg-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.zyyo-buy-msg-card {
    width: 100%;
    max-width: 480px;
    padding: 28px 24px;
    text-align: center;
    background: linear-gradient(135deg, rgba(19, 20, 24, 0.95) 0%, rgba(26, 4, 48, 0.9) 100%);
    border-radius: 12px;
    border: 1px solid rgba(116, 123, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.zyyo-buy-msg-card h2 {
    margin: 0 0 12px;
    font-size: 18px;
    color: #fff;
}

.zyyo-buy-msg-card p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .zyyo-buy-row { flex-direction: column; }
    .zyyo-buy-row-label { min-width: 100%; }
}
