.jiaozi-shop1 {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
    backdrop-filter: blur(10px);
}

.jiaozi-shop1 * {
    box-sizing: border-box;
}

.jiaozi-shop1 i,
.jiaozi-shop1 .fa,
.jiaozi-shop1 [class*="fa-"] {
    font-family: FontAwesome !important;
    font-style: normal !important;
    font-weight: normal !important;
    text-decoration: none !important;
    display: inline-block !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.jiaozi-shop1:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.jiaozi-unpaid-theme {
    background: linear-gradient(135deg, #f5f7ff 0%, #eef1fa 50%, #f8f6fc 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    animation: jiaozi-unpaid-gradient 8s ease infinite;
    background-size: 200% 200%;
}

.jiaozi-unpaid-theme::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #a8b5e8, #b8a5d8, #d8b5e8, #a8b5e8);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: 18px;
    animation: jiaozi-border-flow 6s linear infinite;
    opacity: 0.4;
}

@keyframes jiaozi-unpaid-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes jiaozi-border-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.jiaozi-unpaid-theme:hover {
    border-color: transparent;
    box-shadow: 0 12px 48px rgba(102, 126, 234, 0.2);
    animation-play-state: paused;
}

.jiaozi-paid-theme {
    background: linear-gradient(135deg, #f8f0ff 0%, #f0e6ff 50%, #f5f0ff 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    animation: jiaozi-paid-gradient 10s ease infinite;
    background-size: 200% 200%;
}

.jiaozi-paid-theme::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #a78bfa, #8b5cf6, #c4b5fd, #a78bfa);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: 18px;
    animation: jiaozi-border-flow 8s linear infinite;
    opacity: 0.35;
}

@keyframes jiaozi-paid-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.jiaozi-paid-theme:hover {
    border-color: transparent;
    box-shadow: 0 12px 48px rgba(167, 139, 250, 0.15);
    animation-play-state: paused;
}

.jiaozi-free-theme {
    background: linear-gradient(135deg, #f0fff4 0%, #e8f8e8 50%, #f5fff0 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    animation: jiaozi-free-gradient 10s ease infinite;
    background-size: 200% 200%;
}

.jiaozi-free-theme::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #70c870, #60b860, #80d880, #70c870);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: 18px;
    animation: jiaozi-border-flow 8s linear infinite;
    opacity: 0.35;
}

@keyframes jiaozi-free-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.jiaozi-free-theme:hover {
    border-color: transparent;
    box-shadow: 0 12px 48px rgba(112, 200, 112, 0.15);
    animation-play-state: paused;
}

.jiaozi-free-container,
.jiaozi-paid-container,
.jiaozi-unpaid-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    overflow: visible;
    padding: 20px;
}

.jiaozi-bannerL {
    width: 320px;
    min-width: 320px;
    position: relative;
    margin-right: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.jiaozi-course-img {
    position: relative;
    padding-bottom: 60%;
    overflow: hidden;
    border-radius: 10px;
}

.jiaozi-course-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.jiaozi-course-img:hover img {
    transform: scale(1.05);
}

.jiaozi-badge-free-download {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    animation: jiaozi-pulse 2s infinite;
}

.jiaozi-badge-sold-real {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    animation: jiaozi-pulse 2s infinite;
}

@keyframes jiaozi-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.jiaozi-main_info_top_b {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 15px;
    border-radius: 0 0 10px 10px;
}

.jiaozi-main_info_top_item,
.jiaozi-main_info_top_item2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px dashed #eee;
}

.jiaozi-main_info_top_item2 {
    border-bottom: none;
}

.jiaozi-item_titles {
    color: #999;
    font-size: 13px;
}

.jiaozi-item_content1,
.jiaozi-item_content2 {
    color: #333;
    font-size: 13px;
    font-weight: 500;
}

.jiaozi-notice-tip {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    animation: jiaozi-slideIn 0.5s ease;
}

.jiaozi-free-tip {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.jiaozi-notice-tip i {
    font-size: 16px;
}

@keyframes jiaozi-slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jiaozi-bannerMid {
    flex: 1;
    min-width: 0;
}

.jiaozi-midTitle h1 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.jiaozi-title-divider {
    display: inline-block;
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, #11998e, #38ef7d);
    margin: 0 10px;
    border-radius: 1px;
}

.jiaozi-pay-title {
    font-size: 18px;
    font-weight: 600;
    color: #475569;
    transition: color 0.3s ease;
}

.jiaozi-pay-title:hover {
    color: #11998e;
}

.jiaozi-article-tags-styled {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
    border-radius: 8px;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.jiaozi-tag-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    font-size: 12px;
    color: #64748b;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.jiaozi-tag-item:hover {
    background: rgba(17, 153, 142, 0.1);
    color: #11998e;
    border-color: rgba(17, 153, 142, 0.3);
    transform: translateY(-1px);
}

.jiaozi-tag-icon {
    display: inline-flex;
    align-items: center;
    color: #94a3b8;
    font-size: 13px;
}

.jiaozi-tag-item:hover .jiaozi-tag-icon {
    color: #11998e;
}

.jiaozi-main_info_price {
    margin-bottom: 15px;
}

.jiaozi-main_info_price_r {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    position: relative;
    overflow: hidden;
}

.jiaozi-main_info_price_r::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: jiaozi-shine 3s infinite;
}

@keyframes jiaozi-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.jiaozi-main_info_price_r b {
    color: #333;
    font-weight: 600;
}

.jiaozi-shield-icon {
    color: #11998e !important;
    font-size: 18px !important;
    margin-right: 6px;
    animation: jiaozi-shield-pulse 2s infinite;
}

@keyframes jiaozi-shield-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.jiaozi-limit-tip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.jiaozi-limit-tip i {
    font-size: 16px;
    flex-shrink: 0;
}

.jiaozi-limit-tip b {
    font-weight: 700;
}

.jiaozi-admin-tip {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 50%, #fff8e1 100%);
    color: #e65100;
    border: 1px solid #ffcc80;
}

.jiaozi-admin-tip i {
    color: #ff6d00;
}

.jiaozi-admin-tip b {
    color: #bf360c;
}

.jiaozi-admin-tip:hover {
    box-shadow: 0 4px 16px rgba(255, 109, 0, 0.15);
    transform: translateY(-1px);
}

.jiaozi-stock-tip {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #e1f5fe 100%);
    color: #1565c0;
    border: 1px solid #90caf9;
}

.jiaozi-stock-tip i {
    color: #1976d2;
}

.jiaozi-stock-tip b {
    color: #0d47a1;
}

.jiaozi-stock-tip:hover {
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.15);
    transform: translateY(-1px);
}

.jiaozi-soldout-tip {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 50%, #fce4ec 100%);
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.jiaozi-soldout-tip i {
    color: #e53935;
}

.jiaozi-soldout-tip:hover {
    box-shadow: 0 4px 16px rgba(229, 57, 53, 0.15);
    transform: translateY(-1px);
}

body.dark-theme .jiaozi-admin-tip {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 183, 77, 0.15) 50%, rgba(255, 224, 130, 0.15) 100%);
    color: #ffcc80;
    border-color: rgba(255, 152, 0, 0.3);
}

body.dark-theme .jiaozi-admin-tip i {
    color: #ffa726;
}

body.dark-theme .jiaozi-admin-tip b {
    color: #ffe0b2;
}

body.dark-theme .jiaozi-stock-tip {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(66, 165, 245, 0.15) 50%, rgba(100, 181, 246, 0.15) 100%);
    color: #90caf9;
    border-color: rgba(33, 150, 243, 0.3);
}

body.dark-theme .jiaozi-stock-tip i {
    color: #42a5f5;
}

body.dark-theme .jiaozi-stock-tip b {
    color: #bbdefb;
}

body.dark-theme .jiaozi-soldout-tip {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15) 0%, rgba(229, 57, 53, 0.15) 50%, rgba(239, 83, 80, 0.15) 100%);
    color: #ef9a9a;
    border-color: rgba(244, 67, 54, 0.3);
}

body.dark-theme .jiaozi-soldout-tip i {
    color: #ef5350;
}

.jiaozi-main_info_tb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}

.jiaozi-main_info_tb_items {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.jiaozi-priceBtn {
    display: flex !important;
    align-items: stretch !important;
    gap: 15px !important;
    margin-top: 20px !important;
}

.jiaozi-mob {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
}

.jiaozi-sellP {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.jiaozi-sellP em {
    font-size: 12px;
    color: #999;
    font-style: normal;
}

.pay-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    vertical-align: middle;
}

.jiaozi-tese-free {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: #fff;
    animation: jiaozi-free-glow 2s infinite;
}

@keyframes jiaozi-free-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(17, 153, 142, 0.5); }
    50% { box-shadow: 0 0 15px rgba(17, 153, 142, 0.8); }
}

.jiaozi-tese-tuijian {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
    animation: jiaozi-glow 2s infinite;
}

@keyframes jiaozi-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 107, 107, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.8); }
}

.jiaozi-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    height: 48px;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}

.jiaozi-btn-group {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    width: 100% !important;
    min-height: 48px !important;
}

.jiaozi-btn-group .but,
.jiaozi-btn-group a.but,
.jiaozi-btn-group button.but,
.jiaozi-btn-group .jb-blue,
.jiaozi-btn-group .jb-yellow,
.jiaozi-btn-group .jb-vip1,
.jiaozi-btn-group .jb-vip2,
.jiaozi-btn-group .pay-vip {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    line-height: 48px !important;
    padding: 0 24px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    min-width: auto !important;
    text-align: center !important;
    vertical-align: middle !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    transform: none !important;
    border: none !important;
}

/* 确保资源下载按钮也有相同的高度 */
.jiaozi-btn-group .jb-blue {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%) !important;
    color: #fff !important;
}

.jiaozi-btn-group .jb-blue:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4) !important;
}

.jiaozi-btn-group .jb-yellow {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%) !important;
    color: #fff !important;
}

.jiaozi-btn-group .jb-yellow:hover {
    background: linear-gradient(135deg, #f57c00 0%, #ef6c00 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4) !important;
}

.jiaozi-btn-group .jiaozi-buy-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #fff !important;
    border: none !important;
}

.jiaozi-btn-group .jiaozi-buy-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.jiaozi-btn-group .pay-vip,
.jiaozi-btn-group .jb-vip1,
.jiaozi-btn-group .jb-vip2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    color: #fff !important;
    border: none !important;
}

.jiaozi-btn-group .pay-vip:hover,
.jiaozi-btn-group .jb-vip1:hover,
.jiaozi-btn-group .jb-vip2:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.4);
}

.jiaozi-vip-privilege {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(245, 87, 108, 0.1) 100%);
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #f5576c;
    white-space: nowrap;
    animation: jiaozi-vip-pulse 2s infinite;
    transition: all 0.3s ease;
}

.jiaozi-vip-privilege:hover {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2) 0%, rgba(245, 87, 108, 0.2) 100%);
    border-color: rgba(240, 147, 251, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(240, 147, 251, 0.3);
}

.jiaozi-vip-privilege i {
    font-size: 14px;
    animation: jiaozi-diamond-sparkle 1.5s infinite;
}

@keyframes jiaozi-vip-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes jiaozi-diamond-sparkle {
    0%, 100% { opacity: 1; transform: rotate(0deg); }
    50% { opacity: 0.7; transform: rotate(15deg); }
}

.jiaozi-login-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.jiaozi-login-btn:hover::before {
    width: 300px;
    height: 300px;
}

.jiaozi-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.jiaozi-login-disabled {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ccc;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    cursor: not-allowed;
}

.jiaozi-paid-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    border-radius: 10px;
    padding: 10px 15px;
    margin: 10px 0;
    border-left: 4px solid #11998e;
    animation: jiaozi-fadeIn 0.5s ease;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jiaozi-paid-box:hover {
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.15);
    border-left-color: #38ef7d;
}

@keyframes jiaozi-fadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.jiaozi-paid-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.jiaozi-paid-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #11998e, #38ef7d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.jiaozi-vip-paid .jiaozi-paid-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.jiaozi-paid-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.jiaozi-paid-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.jiaozi-paid-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 13px;
}

.jiaozi-paid-row-main {
    border-bottom: 1px dashed #ddd;
}

.jiaozi-paid-row-hover {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    border-bottom: none;
    transition: all 0.3s ease;
}

.jiaozi-paid-box:hover .jiaozi-paid-row-hover {
    max-height: 40px;
    opacity: 1;
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
}

.jiaozi-paid-row:last-child {
    border-bottom: none;
}

.jiaozi-paid-label {
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.jiaozi-paid-value {
    color: #333;
    font-weight: 500;
}

.jiaozi-paid-price {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b6b;
    margin-top: 10px;
}

.jiaozi-paid-info-hover {
    margin: 10px 0;
}

.jiaozi_app_shop {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 15px 0;
}

.jiaozi_app_shop_mk {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.jiaozi-free-mobile-bg {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.jiaozi-paid-mobile-bg {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.jiaozi_app_shop_img {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.jiaozi_app_shop_title {
    color: #fff;
}

.jiaozi_app_shop_title_h1 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #fff;
}

.jiaozi_app_shop_box {
    padding: 15px;
    background: #fff;
}

.jiaozi_app_shop_jg {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.jiaozi_app_shop_jg_se {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b6b;
}

.jiaozi-discount {
    font-size: 14px;
    color: #666;
}

.jiaozi_app_shop_an {
    margin-bottom: 15px;
}

.jiaozi-xz {
    display: flex;
    gap: 10px;
}

.jiaozi-hont {
    background: #f5f7fa;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.jiaozi_app_mother {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    padding-top: 12px;
    border-top: 1px dashed #eee;
}

.jiaozi-paid-mobile-info {
    margin-bottom: 15px;
}

.jiaozi-c-red { color: #ff6b6b !important; }
.jiaozi-c-blue { color: #667eea !important; }
.jiaozi-c-green { color: #11998e !important; }
.jiaozi-ml10 { margin-left: 10px; }
.jiaozi-mr6 { margin-right: 6px; }
.jiaozi-mt10 { margin-top: 10px; }
.jiaozi-mb6 { margin-bottom: 6px; }
.jiaozi-px12 { font-size: 12px; }
.jiaozi-em12 { font-size: 12px; }
.jiaozi-opacity8 { opacity: 0.8; }
.jiaozi-text-right { text-align: right; }
.jiaozi-text-center { text-align: center; }
.jiaozi-flex { display: flex; }
.jiaozi-ac { align-items: center; }
.jiaozi-hh { flex-wrap: wrap; }
.jiaozi-padding-6 { padding: 6px; }
.jiaozi-ml3 { margin-left: 3px; }
.jiaozi-mt3 { margin-top: 3px; }
.jiaozi-mt20 { margin-top: 20px; }
.jiaozi-mb10 { margin-bottom: 10px; }
.jiaozi-mr3 { margin-right: 3px; }
.jiaozi-em09 { font-size: 0.9em; }
.jiaozi-em16 { font-size: 16px; }
.jiaozi-muted-color { color: #999; }
.jiaozi-muted-2-color { color: #666; }
.jiaozi-relative { position: relative; }
.jiaozi-absolute { position: absolute; }
.jiaozi-abs-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.jiaozi-fit-cover { object-fit: cover; }
.jiaozi-lazyload {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.jiaozi-lazyload.loaded { opacity: 1; }
.jiaozi-graphic-mask {
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}
.jiaozi-badg {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}
.jiaozi-badg-sm {
    font-size: 11px;
    padding: 1px 6px;
}
.jiaozi-b-theme {
    background: #667eea;
    color: #fff;
}
.jiaozi-but {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}
.jiaozi-but:hover { transform: translateY(-1px); }
.jiaozi-jb-blue { background: #667eea; color: #fff; }
.jiaozi-jb-yellow { background: #f9ca24; color: #fff; }
.jiaozi-jb-vip2 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: #fff;
}
.jiaozi-jb-pink { background: #f5576c; color: #fff; }
.jiaozi-jb-red { background: #ff6b6b; color: #fff; }
.jiaozi-padding-lg { padding: 12px 24px; }
.jiaozi-btn-block {
    display: block;
    width: 100%;
}
.jiaozi-hidden-box {
    border: 1px dashed #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}
.jiaozi-hidden-text {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}
.jiaozi-but-group {
    display: flex;
    gap: 10px;
}
.jiaozi-paid-down-group { margin-top: 10px; }
.jiaozi-visible-xs-block { display: none; }
@media (max-width: 768px) {
    .jiaozi-visible-xs-block { display: block; }
}
.jiaozi-zib-widget {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
}
.jiaozi-pay-vip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.jiaozi-pay-vip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}
.jiaozi-cashier-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.jiaozi-vip-price {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    list-style: none;
}
.jiaozi-vip-price:hover { background: #f5f7fa; }
.jiaozi-discount-box {
    position: relative;
    display: inline-block;
}
.jiaozi-discount-box .box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 15px;
    min-width: 200px;
    z-index: 100;
}
.jiaozi-discount-box:hover .box {
    display: block;
    animation: jiaozi-dropdown 0.3s ease;
}
@keyframes jiaozi-dropdown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.jiaozi-discount-box .box .title {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #eee;
}
.jiaozi-discount-box .box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.jiaozi-vip-pay {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.jiaozi-vip-pay:hover { color: #764ba2; }

@media (max-width: 768px) {
    .jiaozi-free-container,
    .jiaozi-paid-container,
    .jiaozi-unpaid-container {
        flex-direction: column;
    }
    
    .jiaozi-bannerL {
        width: 100%;
        min-width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
}

body.dark-theme .jiaozi-main_info_top_b {
    background: rgba(30, 41, 59, 0.95);
}

body.dark-theme .jiaozi-item_titles {
    color: #94a3b8;
}

body.dark-theme .jiaozi-item_content1,
body.dark-theme .jiaozi-item_content2 {
    color: #e2e8f0;
}

body.dark-theme .jiaozi-midTitle h1 {
    color: #e2e8f0;
}

body.dark-theme .jiaozi-pay-title {
    color: #cbd5e1;
}

body.dark-theme .jiaozi-pay-title:hover {
    color: #38ef7d;
}

body.dark-theme .jiaozi-article-tags-styled {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
    border-color: rgba(51, 65, 85, 0.6);
}

body.dark-theme .jiaozi-tag-item {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(51, 65, 85, 0.5);
    color: #94a3b8;
}

body.dark-theme .jiaozi-tag-item:hover {
    background: rgba(17, 153, 142, 0.2);
    color: #38ef7d;
    border-color: rgba(17, 153, 142, 0.4);
}

body.dark-theme .jiaozi-tag-icon {
    color: #64748b;
}

body.dark-theme .jiaozi-tag-item:hover .jiaozi-tag-icon {
    color: #38ef7d;
}

body.dark-theme .jiaozi-main_info_price_r {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
    color: #94a3b8;
}

body.dark-theme .jiaozi-main_info_price_r b {
    color: #e2e8f0;
}

body.dark-theme .jiaozi-main_info_tb {
    color: #94a3b8;
}

body.dark-theme .jiaozi-sellP em {
    color: #94a3b8;
}

body.dark-theme .jiaozi-paid-box {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
    border-left-color: #11998e;
}

body.dark-theme .jiaozi-paid-box:hover {
    border-left-color: #38ef7d;
}

body.dark-theme .jiaozi-paid-title {
    color: #e2e8f0;
}

body.dark-theme .jiaozi-paid-row {
    border-bottom-color: rgba(51, 65, 85, 0.5);
}

body.dark-theme .jiaozi-paid-label {
    color: #94a3b8;
}

body.dark-theme .jiaozi-paid-value {
    color: #e2e8f0;
}

body.dark-theme .jiaozi-hont {
    background: rgba(30, 41, 59, 0.8);
    color: #94a3b8;
}

body.dark-theme .jiaozi_app_mother {
    border-top-color: rgba(51, 65, 85, 0.5);
    color: #94a3b8;
}

body.dark-theme .jiaozi_app_shop_box {
    background: rgba(30, 41, 59, 0.95);
}

body.dark-theme .jiaozi_app_shop_jg_se {
    color: #ff6b6b;
}

body.dark-theme .jiaozi-discount {
    color: #94a3b8;
}

body.dark-theme .jiaozi-vip-privilege {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.15) 0%, rgba(245, 87, 108, 0.15) 100%);
    border-color: rgba(240, 147, 251, 0.4);
    color: #f093fb;
}

body.dark-theme .jiaozi-vip-privilege:hover {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.25) 0%, rgba(245, 87, 108, 0.25) 100%);
    border-color: rgba(240, 147, 251, 0.6);
}

body.dark-theme .jiaozi-unpaid-theme {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 50%, rgba(240, 147, 251, 0.15) 100%);
    border: 2px solid transparent;
}

body.dark-theme .jiaozi-unpaid-theme:hover {
    border-color: transparent;
    box-shadow: 0 12px 48px rgba(102, 126, 234, 0.25);
}

body.dark-theme .jiaozi-paid-theme {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.12) 0%, rgba(139, 92, 246, 0.12) 50%, rgba(196, 181, 253, 0.12) 100%);
    border: 2px solid transparent;
}

body.dark-theme .jiaozi-paid-theme:hover {
    border-color: transparent;
    box-shadow: 0 12px 48px rgba(167, 139, 250, 0.2);
}

body.dark-theme .jiaozi-free-theme {
    background: linear-gradient(135deg, rgba(112, 200, 112, 0.12) 0%, rgba(96, 184, 96, 0.12) 50%, rgba(128, 216, 128, 0.12) 100%);
    border: 2px solid transparent;
}

body.dark-theme .jiaozi-free-theme:hover {
    border-color: transparent;
    box-shadow: 0 12px 48px rgba(112, 200, 112, 0.2);
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-item_titles,
body.dark-theme .jiaozi-paid-theme .jiaozi-item_titles,
body.dark-theme .jiaozi-free-theme .jiaozi-item_titles {
    color: #64748b;
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-item_content1,
body.dark-theme .jiaozi-unpaid-theme .jiaozi-item_content2,
body.dark-theme .jiaozi-paid-theme .jiaozi-item_content1,
body.dark-theme .jiaozi-paid-theme .jiaozi-item_content2,
body.dark-theme .jiaozi-free-theme .jiaozi-item_content1,
body.dark-theme .jiaozi-free-theme .jiaozi-item_content2 {
    color: #334155;
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-main_info_top_b,
body.dark-theme .jiaozi-paid-theme .jiaozi-main_info_top_b,
body.dark-theme .jiaozi-free-theme .jiaozi-main_info_top_b {
    background: rgba(255, 255, 255, 0.7);
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-main_info_price_r,
body.dark-theme .jiaozi-paid-theme .jiaozi-main_info_price_r,
body.dark-theme .jiaozi-free-theme .jiaozi-main_info_price_r {
    background: rgba(255, 255, 255, 0.6);
    color: #475569;
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-main_info_price_r b,
body.dark-theme .jiaozi-paid-theme .jiaozi-main_info_price_r b,
body.dark-theme .jiaozi-free-theme .jiaozi-main_info_price_r b {
    color: #1e293b;
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-main_info_tb,
body.dark-theme .jiaozi-paid-theme .jiaozi-main_info_tb,
body.dark-theme .jiaozi-free-theme .jiaozi-main_info_tb {
    color: #475569;
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-article-tags-styled,
body.dark-theme .jiaozi-paid-theme .jiaozi-article-tags-styled,
body.dark-theme .jiaozi-free-theme .jiaozi-article-tags-styled {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(203, 213, 225, 0.5);
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-tag-item,
body.dark-theme .jiaozi-paid-theme .jiaozi-tag-item,
body.dark-theme .jiaozi-free-theme .jiaozi-tag-item {
    background: rgba(255, 255, 255, 0.6);
    color: #475569;
    border-color: rgba(203, 213, 225, 0.4);
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-tag-icon,
body.dark-theme .jiaozi-paid-theme .jiaozi-tag-icon,
body.dark-theme .jiaozi-free-theme .jiaozi-tag-icon {
    color: #64748b;
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-notice-tip,
body.dark-theme .jiaozi-paid-theme .jiaozi-notice-tip,
body.dark-theme .jiaozi-free-theme .jiaozi-notice-tip {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-free-tip,
body.dark-theme .jiaozi-paid-theme .jiaozi-free-tip,
body.dark-theme .jiaozi-free-theme .jiaozi-free-tip {
    background: linear-gradient(135deg, rgba(17, 153, 142, 0.8) 0%, rgba(56, 239, 125, 0.8) 100%);
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-paid-box,
body.dark-theme .jiaozi-paid-theme .jiaozi-paid-box,
body.dark-theme .jiaozi-free-theme .jiaozi-paid-box {
    background: rgba(255, 255, 255, 0.7);
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-paid-title,
body.dark-theme .jiaozi-paid-theme .jiaozi-paid-title,
body.dark-theme .jiaozi-free-theme .jiaozi-paid-title {
    color: #1e293b;
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-paid-label,
body.dark-theme .jiaozi-paid-theme .jiaozi-paid-label,
body.dark-theme .jiaozi-free-theme .jiaozi-paid-label {
    color: #475569;
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-paid-value,
body.dark-theme .jiaozi-paid-theme .jiaozi-paid-value,
body.dark-theme .jiaozi-free-theme .jiaozi-paid-value {
    color: #1e293b;
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-paid-row,
body.dark-theme .jiaozi-paid-theme .jiaozi-paid-row,
body.dark-theme .jiaozi-free-theme .jiaozi-paid-row {
    border-bottom-color: rgba(203, 213, 225, 0.5);
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-hont,
body.dark-theme .jiaozi-paid-theme .jiaozi-hont,
body.dark-theme .jiaozi-free-theme .jiaozi-hont {
    background: rgba(255, 255, 255, 0.6);
    color: #475569;
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi_app_shop_box,
body.dark-theme .jiaozi-paid-theme .jiaozi_app_shop_box,
body.dark-theme .jiaozi-free-theme .jiaozi_app_shop_box {
    background: rgba(255, 255, 255, 0.9);
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi_app_mother,
body.dark-theme .jiaozi-paid-theme .jiaozi_app_mother,
body.dark-theme .jiaozi-free-theme .jiaozi_app_mother {
    color: #475569;
    border-top-color: rgba(203, 213, 225, 0.5);
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-sellP em,
body.dark-theme .jiaozi-paid-theme .jiaozi-sellP em,
body.dark-theme .jiaozi-free-theme .jiaozi-sellP em {
    color: #64748b;
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-discount,
body.dark-theme .jiaozi-paid-theme .jiaozi-discount,
body.dark-theme .jiaozi-free-theme .jiaozi-discount {
    color: #64748b;
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-midTitle h1,
body.dark-theme .jiaozi-paid-theme .jiaozi-midTitle h1,
body.dark-theme .jiaozi-free-theme .jiaozi-midTitle h1 {
    color: #1e293b;
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-pay-title,
body.dark-theme .jiaozi-paid-theme .jiaozi-pay-title,
body.dark-theme .jiaozi-free-theme .jiaozi-pay-title {
    color: #334155;
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-pay-title:hover,
body.dark-theme .jiaozi-paid-theme .jiaozi-pay-title:hover,
body.dark-theme .jiaozi-free-theme .jiaozi-pay-title:hover {
    color: #11998e;
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-particle,
body.dark-theme .jiaozi-paid-theme .jiaozi-particle,
body.dark-theme .jiaozi-free-theme .jiaozi-particle {
    background: rgba(102, 126, 234, 0.4);
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-glow-effect,
body.dark-theme .jiaozi-paid-theme .jiaozi-glow-effect,
body.dark-theme .jiaozi-free-theme .jiaozi-glow-effect {
    opacity: 0.3;
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-ripple-effect,
body.dark-theme .jiaozi-paid-theme .jiaozi-ripple-effect,
body.dark-theme .jiaozi-free-theme .jiaozi-ripple-effect {
    border-color: rgba(102, 126, 234, 0.2);
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-sparkle,
body.dark-theme .jiaozi-paid-theme .jiaozi-sparkle,
body.dark-theme .jiaozi-free-theme .jiaozi-sparkle {
    background: rgba(102, 126, 234, 0.5);
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-sparkle::before,
body.dark-theme .jiaozi-unpaid-theme .jiaozi-sparkle::after,
body.dark-theme .jiaozi-paid-theme .jiaozi-sparkle::before,
body.dark-theme .jiaozi-paid-theme .jiaozi-sparkle::after,
body.dark-theme .jiaozi-free-theme .jiaozi-sparkle::before,
body.dark-theme .jiaozi-free-theme .jiaozi-sparkle::after {
    background: rgba(102, 126, 234, 0.5);
}

body.dark-theme .jiaozi-unpaid-theme .jiaozi-floating-badge,
body.dark-theme .jiaozi-paid-theme .jiaozi-floating-badge,
body.dark-theme .jiaozi-free-theme .jiaozi-floating-badge {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

body.dark-theme .jiaozi-notice-tip {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
}

body.dark-theme .jiaozi-free-tip {
    background: linear-gradient(135deg, rgba(17, 153, 142, 0.9) 0%, rgba(56, 239, 125, 0.9) 100%);
}

body.dark-theme .jiaozi-main_info_price_r::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.jiaozi-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.jiaozi-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: jiaozi-float-particle 10s infinite;
}

.jiaozi-particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.jiaozi-particle:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 1s;
    animation-duration: 10s;
}

.jiaozi-particle:nth-child(3) {
    left: 50%;
    top: 30%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.jiaozi-particle:nth-child(4) {
    left: 70%;
    top: 70%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.jiaozi-particle:nth-child(5) {
    left: 90%;
    top: 40%;
    animation-delay: 4s;
    animation-duration: 11s;
}

@keyframes jiaozi-float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(20px, -30px) scale(1.5);
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
}

.jiaozi-unpaid-theme .jiaozi-particle {
    background: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 8px rgba(102, 126, 234, 0.4);
}

.jiaozi-paid-theme .jiaozi-particle {
    background: rgba(240, 160, 112, 0.5);
    box-shadow: 0 0 8px rgba(240, 160, 112, 0.4);
}

.jiaozi-free-theme .jiaozi-particle {
    background: rgba(112, 200, 112, 0.5);
    box-shadow: 0 0 8px rgba(112, 200, 112, 0.4);
}

.jiaozi-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: jiaozi-glow-move 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes jiaozi-glow-move {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-30%, -40%) scale(1.2);
        opacity: 0.8;
    }
}

.jiaozi-unpaid-theme .jiaozi-glow-effect {
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
}

.jiaozi-paid-theme .jiaozi-glow-effect {
    background: radial-gradient(circle, rgba(240, 160, 112, 0.15) 0%, transparent 70%);
}

.jiaozi-free-theme .jiaozi-glow-effect {
    background: radial-gradient(circle, rgba(112, 200, 112, 0.15) 0%, transparent 70%);
}

.jiaozi-ripple-effect {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: jiaozi-ripple 3s ease-out infinite;
    pointer-events: none;
    z-index: 0;
}

.jiaozi-ripple-effect:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.jiaozi-ripple-effect:nth-child(2) {
    top: 60%;
    left: 75%;
    animation-delay: 1s;
}

.jiaozi-ripple-effect:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes jiaozi-ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    100% {
        width: 150px;
        height: 150px;
        opacity: 0;
    }
}

.jiaozi-unpaid-theme .jiaozi-ripple-effect {
    border-color: rgba(102, 126, 234, 0.2);
}

.jiaozi-paid-theme .jiaozi-ripple-effect {
    border-color: rgba(240, 160, 112, 0.2);
}

.jiaozi-free-theme .jiaozi-ripple-effect {
    border-color: rgba(112, 200, 112, 0.2);
}

.jiaozi-sparkle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation: jiaozi-sparkle-anim 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.jiaozi-sparkle::before,
.jiaozi-sparkle::after {
    content: '';
    position: absolute;
    background: #fff;
}

.jiaozi-sparkle::before {
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.jiaozi-sparkle::after {
    width: 2px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes jiaozi-sparkle-anim {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

.jiaozi-sparkle:nth-child(1) {
    top: 15%;
    left: 25%;
    animation-delay: 0s;
}

.jiaozi-sparkle:nth-child(2) {
    top: 75%;
    left: 65%;
    animation-delay: 0.5s;
}

.jiaozi-sparkle:nth-child(3) {
    top: 35%;
    left: 85%;
    animation-delay: 1s;
}

.jiaozi-sparkle:nth-child(4) {
    top: 55%;
    left: 35%;
    animation-delay: 1.5s;
}

.jiaozi-floating-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
    animation: jiaozi-float-badge 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

@keyframes jiaozi-float-badge {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(2deg);
    }
}

.jiaozi-unpaid-theme .jiaozi-floating-badge {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
}

.jiaozi-paid-theme .jiaozi-floating-badge {
    background: linear-gradient(135deg, rgba(17, 153, 142, 0.9), rgba(56, 239, 125, 0.9));
}

.jiaozi-free-theme .jiaozi-floating-badge {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.9), rgba(245, 87, 108, 0.9));
}

.jiaozi-container-content {
    position: relative;
    z-index: 1;
}

body.dark-theme .jiaozi-particle {
    background: rgba(255, 255, 255, 0.8);
}

body.dark-theme .jiaozi-glow-effect {
    opacity: 0.6;
}

body.dark-theme .jiaozi-ripple-effect {
    border-color: rgba(255, 255, 255, 0.3);
}

body.dark-theme .jiaozi-sparkle {
    background: rgba(255, 255, 255, 0.9);
}

body.dark-theme .jiaozi-sparkle::before,
body.dark-theme .jiaozi-sparkle::after {
    background: rgba(255, 255, 255, 0.9);
}

body.dark-theme .jiaozi-floating-badge {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.jiaozi-wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.jiaozi-wave-bg::before,
.jiaozi-wave-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 C200,120 400,0 600,60 C800,120 1000,0 1200,60 L1200,120 L0,120 Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E") repeat-x;
    background-size: 50% 100%;
    animation: jiaozi-wave 8s linear infinite;
}

.jiaozi-wave-bg::after {
    animation: jiaozi-wave 12s linear infinite reverse;
    opacity: 0.5;
}

@keyframes jiaozi-wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.jiaozi-fish {
    position: absolute;
    bottom: 15px;
    width: 20px;
    height: 12px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.jiaozi-fish::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 18'%3E%3Cpath d='M2,9 Q5,2 12,2 Q18,2 22,6 L28,3 L26,9 L28,15 L22,12 Q18,16 12,16 Q5,16 2,9 Z' fill='%2388b5d4'/%3E%3Ccircle cx='20' cy='8' r='1.2' fill='%23fff'/%3E%3Ccircle cx='20' cy='8' r='0.6' fill='%23333'/%3E%3Cpath d='M10,6 Q12,9 10,12' fill='none' stroke='%237aa3c4' stroke-width='0.5'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    animation: jiaozi-fish-swim 15s linear infinite;
}

.jiaozi-fish:nth-child(1) {
    bottom: 20px;
    animation: jiaozi-fish-float 3s ease-in-out infinite;
}

.jiaozi-fish:nth-child(1)::before {
    animation-delay: 0s;
    animation-duration: 18s;
}

.jiaozi-fish:nth-child(2) {
    bottom: 30px;
    animation: jiaozi-fish-float 3.5s ease-in-out infinite 1s;
}

.jiaozi-fish:nth-child(2)::before {
    animation-delay: -6s;
    animation-duration: 22s;
}

.jiaozi-fish:nth-child(3) {
    bottom: 25px;
    animation: jiaozi-fish-float 4s ease-in-out infinite 2s;
}

.jiaozi-fish:nth-child(3)::before {
    animation-delay: -12s;
    animation-duration: 20s;
}

@keyframes jiaozi-fish-swim {
    0% {
        transform: translateX(-30px) scaleX(1);
        opacity: 0;
    }
    5% {
        opacity: 0.7;
    }
    45% {
        transform: translateX(calc(100vw - 30px)) scaleX(1);
        opacity: 0.7;
    }
    50% {
        transform: translateX(calc(100vw - 30px)) scaleX(-1);
        opacity: 0.7;
    }
    95% {
        opacity: 0.7;
    }
    100% {
        transform: translateX(-30px) scaleX(-1);
        opacity: 0;
    }
}

@keyframes jiaozi-fish-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.jiaozi-unpaid-theme .jiaozi-fish::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 18'%3E%3Cpath d='M2,9 Q5,2 12,2 Q18,2 22,6 L28,3 L26,9 L28,15 L22,12 Q18,16 12,16 Q5,16 2,9 Z' fill='%23a8b5e8'/%3E%3Ccircle cx='20' cy='8' r='1.2' fill='%23fff'/%3E%3Ccircle cx='20' cy='8' r='0.6' fill='%23333'/%3E%3Cpath d='M10,6 Q12,9 10,12' fill='none' stroke='%2398a5d8' stroke-width='0.5'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.jiaozi-paid-theme .jiaozi-fish::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 18'%3E%3Cpath d='M2,9 Q5,2 12,2 Q18,2 22,6 L28,3 L26,9 L28,15 L22,12 Q18,16 12,16 Q5,16 2,9 Z' fill='%23f0a070'/%3E%3Ccircle cx='20' cy='8' r='1.2' fill='%23fff'/%3E%3Ccircle cx='20' cy='8' r='0.6' fill='%23333'/%3E%3Cpath d='M10,6 Q12,9 10,12' fill='none' stroke='%23e88860' stroke-width='0.5'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.jiaozi-free-theme .jiaozi-fish::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 18'%3E%3Cpath d='M2,9 Q5,2 12,2 Q18,2 22,6 L28,3 L26,9 L28,15 L22,12 Q18,16 12,16 Q5,16 2,9 Z' fill='%2370c870'/%3E%3Ccircle cx='20' cy='8' r='1.2' fill='%23fff'/%3E%3Ccircle cx='20' cy='8' r='0.6' fill='%23333'/%3E%3Cpath d='M10,6 Q12,9 10,12' fill='none' stroke='%2360b860' stroke-width='0.5'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    animation: jiaozi-fish-swim-free 25s linear infinite;
}

.jiaozi-free-theme .jiaozi-fish:nth-child(1)::before {
    animation-delay: 0s;
    animation-duration: 28s;
}

.jiaozi-free-theme .jiaozi-fish:nth-child(2)::before {
    animation-delay: -9s;
    animation-duration: 32s;
}

.jiaozi-free-theme .jiaozi-fish:nth-child(3)::before {
    animation-delay: -18s;
    animation-duration: 30s;
}

@keyframes jiaozi-fish-swim-free {
    0% {
        transform: translateX(-30px) scaleX(1);
        opacity: 0;
    }
    5% {
        opacity: 0.7;
    }
    45% {
        transform: translateX(calc(100vw - 30px)) scaleX(1);
        opacity: 0.7;
    }
    50% {
        transform: translateX(calc(100vw + 30px)) scaleX(1);
        opacity: 0;
    }
    100% {
        transform: translateX(-30px) scaleX(1);
        opacity: 0;
    }
}

.jiaozi-unpaid-theme .jiaozi-wave-bg::before,
.jiaozi-unpaid-theme .jiaozi-wave-bg::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 C200,120 400,0 600,60 C800,120 1000,0 1200,60 L1200,120 L0,120 Z' fill='rgba(102,126,234,0.15)'/%3E%3C/svg%3E") repeat-x;
}

.jiaozi-paid-theme .jiaozi-wave-bg::before,
.jiaozi-paid-theme .jiaozi-wave-bg::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 C200,120 400,0 600,60 C800,120 1000,0 1200,60 L1200,120 L0,120 Z' fill='rgba(240,160,112,0.15)'/%3E%3C/svg%3E") repeat-x;
}

.jiaozi-free-theme .jiaozi-wave-bg::before,
.jiaozi-free-theme .jiaozi-wave-bg::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 C200,120 400,0 600,60 C800,120 1000,0 1200,60 L1200,120 L0,120 Z' fill='rgba(112,200,112,0.15)'/%3E%3C/svg%3E") repeat-x;
}

.jiaozi-shimmer {
    position: relative;
    overflow: hidden;
}

.jiaozi-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: jiaozi-shimmer 3s infinite;
    pointer-events: none;
}

@keyframes jiaozi-shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.jiaozi-badge-pulse {
    animation: jiaozi-badge-pulse-anim 2s ease-in-out infinite;
}

@keyframes jiaozi-badge-pulse-anim {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    }
}

.jiaozi-container-content .jiaozi-bannerMid,
.jiaozi-container-content .jiaozi-bannerL,
.jiaozi-container-content .jiaozi-priceBtn,
.jiaozi-container-content .jiaozi-main_info_price,
.jiaozi-container-content .jiaozi-main_info_tb,
.jiaozi-container-content .jiaozi-midTitle,
.jiaozi-container-content .jiaozi-article-tags-styled,
.jiaozi-container-content .jiaozi-paid-info-hover,
.jiaozi-container-content .jiaozi-notice-tip {
    position: relative;
    z-index: 1;
}
