
        /* ... 样式代码保持不变 ... */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
            color: #e8edf5;
            line-height: 1.6;
            background-image: url('/assets/img/bg.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(6, 10, 16, 0.82);
            backdrop-filter: blur(3px);
            z-index: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* 导航 */
        .navbar {
            background: rgba(8, 11, 16, 0.85);
            backdrop-filter: blur(12px);
            padding: 16px 0;
            border-bottom: 1px solid rgba(38, 46, 58, 0.6);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f6d365, #fda085);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .logo i {
            margin-right: 10px;
            color: #f6d365;
        }

        .logo img {
            height: 34px;
            width: auto;
            vertical-align: middle;
            margin-right: 10px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            font-weight: 500;
        }

        .nav-links a {
            color: #b0b9c9;
            text-decoration: none;
            transition: 0.3s;
            font-size: 1rem;
        }

        .nav-links a:hover {
            color: #f6d365;
        }

        .btn-outline {
            border: 1px solid #f6d365;
            padding: 8px 22px;
            border-radius: 30px;
            color: #f6d365 !important;
            transition: 0.3s;
        }

        .btn-outline:hover {
            background: #f6d365;
            color: #080b10 !important;
        }

        /* 首页区域 */
        .home-section {
            padding: 40px 0 30px;
            text-align: center;
        }

        .home-section .home-image {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(38, 48, 62, 0.5);
            box-shadow: 0 8px 40px rgba(0,0,0,0.5);
        }

        .home-section .home-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .home-section .home-text {
            margin-top: 20px;
            font-size: 1.1rem;
            color: #c8d0e0;
            text-shadow: 0 2px 20px rgba(0,0,0,0.5);
        }

        /* 英雄区 */
        .hero {
            padding: 40px 0 30px;
            text-align: center;
            background: transparent;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
            text-shadow: 0 4px 30px rgba(0,0,0,0.5);
        }

        .hero h1 span {
            background: linear-gradient(135deg, #f6d365, #fda085);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero p {
            font-size: 1.2rem;
            color: #c8d0e0;
            max-width: 700px;
            margin: 15px auto 30px;
            text-shadow: 0 2px 20px rgba(0,0,0,0.6);
        }

        .badge-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin: 20px 0 10px;
        }

        .badge-item {
            background: rgba(22, 31, 43, 0.8);
            backdrop-filter: blur(6px);
            padding: 8px 22px;
            border-radius: 40px;
            border-left: 3px solid #f6d365;
            font-weight: 500;
            font-size: 0.9rem;
        }

        /* 通用标题 */
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            margin: 60px 0 30px;
            position: relative;
            text-shadow: 0 2px 20px rgba(0,0,0,0.5);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, #f6d365, #fda085);
            margin: 10px auto 0;
            border-radius: 4px;
        }

        /* 产品卡片 - 调整为4列 */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0 20px;
        }

        .product-card {
            background: rgba(18, 27, 38, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            border: 1px solid rgba(38, 48, 62, 0.5);
            overflow: hidden;
            transition: 0.3s ease;
            display: flex;
            flex-direction: column;
            box-shadow: 0 8px 40px rgba(0,0,0,0.4);
        }

        .product-card:hover {
            transform: translateY(-6px);
            border-color: #f6d365;
            box-shadow: 0 12px 40px rgba(246, 211, 101, 0.08);
        }

        .product-image {
            width: 100%;
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #f6d365;
            border-bottom: 1px solid rgba(31, 42, 57, 0.5);
            position: relative;
            overflow: hidden;
        }

        .product-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-image .img-label {
            position: absolute;
            bottom: 12px;
            right: 16px;
            background: rgba(0,0,0,0.7);
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.7rem;
            color: #b0b9c9;
            backdrop-filter: blur(4px);
        }

        .product-image i {
            filter: drop-shadow(0 0 30px rgba(246, 211, 101, 0.1));
        }

        .product-image.adsorb {
            background: rgba(14, 26, 43, 0.6);
        }
        .product-image.adsorb i {
            color: #7ec8e3;
        }

        .product-image.radar {
            background: rgba(26, 42, 31, 0.6);
        }
        .product-image.radar i {
            color: #6fcf97;
        }

        .product-image.esp {
            background: rgba(42, 26, 47, 0.6);
        }
        .product-image.esp i {
            color: #bb86fc;
        }

        /* 新增：范围产品配色 */
        .product-image.range {
            background: rgba(60, 30, 20, 0.6);
        }
        .product-image.range i {
            color: #ff8a65;
        }

        .product-header {
            padding: 16px 20px 12px;
            border-bottom: 1px solid rgba(31, 42, 57, 0.5);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .product-header h2 {
            font-size: 1.6rem;
            font-weight: 700;
        }

        .product-header .product-tag {
            background: rgba(246, 211, 101, 0.15);
            color: #f6d365;
            padding: 3px 14px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(246, 211, 101, 0.2);
        }

        .product-body {
            padding: 16px 20px 20px;
            flex: 1;
        }

        .product-body .sub-type {
            background: rgba(14, 22, 32, 0.7);
            backdrop-filter: blur(4px);
            border-radius: 12px;
            padding: 12px 16px;
            margin-bottom: 14px;
            border-left: 4px solid #f6d365;
        }

        .product-body .sub-type:last-child {
            margin-bottom: 0;
        }

        .product-body .sub-type h3 {
            font-size: 1.1rem;
            margin-bottom: 4px;
            color: #f6d365;
        }

        .product-body .sub-type .sub-badge {
            display: inline-block;
            background: rgba(31, 42, 57, 0.8);
            padding: 2px 10px;
            border-radius: 30px;
            font-size: 0.7rem;
            color: #b0b9c9;
            margin-bottom: 6px;
            border: 1px solid rgba(55, 66, 82, 0.5);
        }

        .product-body ul {
            list-style: none;
            margin-top: 4px;
        }

        .product-body ul li {
            padding: 2px 0;
            display: flex;
            align-items: baseline;
            gap: 8px;
            font-size: 0.9rem;
            color: #c8d0e0;
        }

        .product-body ul li i {
            color: #f6d365;
            font-size: 0.5rem;
            width: 14px;
            text-align: center;
        }

        .product-body .highlight-box {
            background: rgba(14, 22, 32, 0.7);
            border-radius: 12px;
            padding: 12px 16px;
            margin: 10px 0 4px;
            border: 1px solid rgba(31, 42, 57, 0.5);
            font-size: 0.9rem;
            color: #d0d8e8;
        }

        .product-body .highlight-box i {
            color: #f6d365;
            margin-right: 6px;
        }

        .product-body .warning-note {
            background: rgba(255, 107, 107, 0.1);
            border-left: 4px solid #ff6b6b;
            padding: 10px 14px;
            border-radius: 8px;
            margin-top: 10px;
            font-size: 0.85rem;
            color: #ffa8a8;
        }

        .product-body .warning-note i {
            margin-right: 8px;
            color: #ff6b6b;
        }

        .product-footer {
            padding: 14px 20px 20px;
            border-top: 1px solid rgba(31, 42, 57, 0.5);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .product-footer .price {
            font-size: 1.4rem;
            font-weight: 700;
            color: #f6d365;
        }

        .product-footer .price small {
            font-size: 0.8rem;
            color: #9aa5b9;
            font-weight: 400;
        }

        .btn-buy {
            background: linear-gradient(135deg, #f6d365, #fda085);
            border: none;
            padding: 8px 26px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 0.95rem;
            color: #080b10;
            cursor: pointer;
            transition: 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-buy:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(253, 160, 133, 0.3);
        }

        .about-section {
            background: rgba(16, 24, 34, 0.8);
            backdrop-filter: blur(10px);
            padding: 50px 30px;
            border-radius: 30px;
            margin: 40px 0;
            border: 1px solid rgba(38, 48, 62, 0.5);
            text-align: center;
            box-shadow: 0 8px 40px rgba(0,0,0,0.3);
        }

        .about-section p {
            max-width: 800px;
            margin: 12px auto;
            color: #d0d8e8;
        }

        .buy-bottom {
            text-align: center;
            padding: 20px 0 30px;
        }

        .footer {
            border-top: 1px solid rgba(31, 40, 53, 0.5);
            padding: 40px 0 25px;
            margin-top: 40px;
            text-align: center;
            color: #7a869c;
        }

        .footer a {
            color: #b0b9c9;
            text-decoration: none;
            margin: 0 15px;
        }

        .footer a:hover {
            color: #f6d365;
        }

        /* 新增：页脚立即咨询按钮样式 */
        .btn-consult {
            background: linear-gradient(135deg, #43b7f0, #2d8bcb);
            border: none;
            padding: 10px 32px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            cursor: pointer;
            transition: 0.3s;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 20px rgba(67, 183, 240, 0.3);
        }

        .btn-consult:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(67, 183, 240, 0.5);
        }

        .btn-consult i {
            margin-right: 8px;
        }

        .footer .footer-consult {
            margin: 16px 0 20px;
        }

        /* 页脚社交媒体分享按钮 */
        .share-row {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            margin: 18px 0 22px;
        }

        .share-row .share-label {
            color: #7a869c;
            font-size: 0.9rem;
            margin-right: 4px;
        }

        .share-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 1px solid rgba(122, 134, 156, 0.25);
            background: rgba(22, 31, 43, 0.7);
            color: #b0b9c9;
            font-size: 0.85rem;
            padding: 7px 14px;
            border-radius: 30px;
            cursor: pointer;
            transition: 0.3s ease;
            text-decoration: none;
        }

        .share-btn i {
            font-size: 1rem;
        }

        .share-btn:hover {
            transform: translateY(-2px);
            border-color: #f6d365;
            color: #f6d365;
        }

        .share-btn.wechat:hover {
            border-color: #07c160;
            color: #07c160;
        }
        .share-btn.qq:hover,
        .share-btn.qzone:hover {
            border-color: #12b7f5;
            color: #12b7f5;
        }
        .share-btn.weibo:hover {
            border-color: #e6162d;
            color: #e6162d;
        }
        .share-btn.telegram:hover {
            border-color: #2aa2e8;
            color: #2aa2e8;
        }

        /* 微信分享二维码弹层 */
        .wechat-mask {
            position: fixed;
            inset: 0;
            z-index: 99999;
            background: rgba(4, 6, 10, 0.75);
            backdrop-filter: blur(6px);
            display: none;
            align-items: center;
            justify-content: center;
        }

        .wechat-mask.show {
            display: flex;
        }

        .wechat-panel {
            background: #fff;
            color: #333;
            border-radius: 18px;
            padding: 28px 32px 24px;
            text-align: center;
            max-width: 92vw;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        .wechat-panel h4 {
            font-size: 1.1rem;
            margin-bottom: 16px;
            color: #222;
        }

        .wechat-panel #wechatQr {
            display: inline-block;
            padding: 10px;
            border: 1px solid #eee;
            border-radius: 10px;
            background: #fff;
            line-height: 0;
        }

        .wechat-panel p {
            font-size: 0.85rem;
            color: #888;
            margin: 14px 0 6px;
            line-height: 1.7;
        }

        .wechat-close {
            margin-top: 10px;
            border: none;
            background: #07c160;
            color: #fff;
            font-size: 0.9rem;
            padding: 8px 34px;
            border-radius: 30px;
            cursor: pointer;
            transition: 0.3s;
        }

        .wechat-close:hover {
            opacity: 0.85;
        }

        /* 右下角悬浮在线客服 */
        .float-qq {
            position: fixed;
            right: 24px;
            bottom: 36px;
            z-index: 9999;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .float-qq .float-qq-label {
            background: rgba(8, 11, 16, 0.9);
            border: 1px solid rgba(246, 211, 101, 0.3);
            color: #f6d365;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transform: translateX(8px);
            transition: 0.3s ease;
            box-shadow: 0 6px 24px rgba(0,0,0,0.4);
            pointer-events: none;
        }

        .float-qq:hover .float-qq-label {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .float-qq .float-qq-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #43b7f0, #2d8bcb);
            color: #fff;
            font-size: 1.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 8px 28px rgba(67, 183, 240, 0.45);
            animation: floatPulse 2s infinite;
        }

        .float-qq .float-qq-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 10px 34px rgba(67, 183, 240, 0.6);
        }

        @keyframes floatPulse {
            0% { box-shadow: 0 8px 28px rgba(67, 183, 240, 0.45), 0 0 0 0 rgba(67, 183, 240, 0.4); }
            70% { box-shadow: 0 8px 28px rgba(67, 183, 240, 0.45), 0 0 0 18px rgba(67, 183, 240, 0); }
            100% { box-shadow: 0 8px 28px rgba(67, 183, 240, 0.45), 0 0 0 0 rgba(67, 183, 240, 0); }
        }

        @media (max-width: 768px) {
            .float-qq {
                right: 14px;
                bottom: 20px;
            }
            .float-qq .float-qq-btn {
                width: 52px;
                height: 52px;
                font-size: 1.6rem;
            }
        }

        html {
            scroll-behavior: smooth;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            .navbar .container {
                flex-direction: column;
                gap: 12px;
            }
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px 18px;
            }
            .product-grid {
                grid-template-columns: 1fr;
            }
            .product-footer {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }
            .product-image {
                height: 130px;
                font-size: 2.5rem;
            }
            body {
                background-attachment: scroll;
            }
            .home-section .home-image {
                border-radius: 16px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* 辅助效果图展示区（每页4张轮播） */
        .gallery-carousel {
            position: relative;
            margin: 40px 0 20px;
        }

        .gallery-track {
            overflow: hidden;
        }

        .gallery-grid {
            display: flex;
            gap: 20px;
            transition: transform 0.5s ease;
        }

        .gallery-item {
            display: block;
            flex: 0 0 calc((100% - 60px) / 4);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(38, 48, 62, 0.5);
            box-shadow: 0 8px 30px rgba(0,0,0,0.4);
            aspect-ratio: 4 / 3;
            transition: 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-4px);
            border-color: #f6d365;
            box-shadow: 0 12px 40px rgba(246, 211, 101, 0.08);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            width: 46px;
            height: 46px;
            border: 1px solid rgba(246, 211, 101, 0.3);
            border-radius: 50%;
            background: rgba(8, 11, 16, 0.65);
            color: #f6d365;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            backdrop-filter: blur(4px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.4);
            transition: 0.3s ease;
        }

        .gallery-arrow.prev {
            left: 10px;
        }

        .gallery-arrow.next {
            right: 10px;
        }

        .gallery-arrow:hover:not(.disabled) {
            background: #f6d365;
            color: #080b10;
            border-color: #f6d365;
        }

        .gallery-arrow.disabled {
            opacity: 0.35;
            cursor: default;
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .gallery-arrow {
                width: 38px;
                height: 38px;
                font-size: 0.85rem;
            }
            .gallery-arrow.prev {
                left: 6px;
            }
            .gallery-arrow.next {
                right: 6px;
            }
        }

        /* 首页Banner轮播 */
        .home-slider {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        .home-slider .home-image {
            margin: 0;
        }
        .home-slider .gallery-arrow {
            top: 45%;
        }
        .home-slides {
            display: flex;
            transition: transform 0.6s ease;
        }
        .home-slide {
            flex: 0 0 100%;
            min-width: 0;
        }
        .home-slide img {
            width: 100%;
            height: auto;
            display: block;
        }
        .home-banner-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 12px;
        }
        .home-banner-dots button {
            width: 10px;
            height: 10px;
            padding: 0;
            border: none;
            border-radius: 50%;
            background: rgba(176, 185, 201, 0.35);
            cursor: pointer;
            transition: 0.3s;
        }
        .home-banner-dots button.active {
            background: #f6d365;
        }
        .home-banner-dots button:hover {
            background: rgba(246, 211, 101, 0.8);
        }
    
        /* 更新内容列表页 */
        .page-section {
            padding: 46px 0 40px;
            min-height: 60vh;
        }
        .page-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 8px;
            position: relative;
            text-shadow: 0 2px 20px rgba(0,0,0,0.5);
        }
        .page-title::after {
            content: '';
            display: block;
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, #f6d365, #fda085);
            margin: 10px auto 0;
            border-radius: 4px;
        }
        .page-sub {
            text-align: center;
            color: #7a869c;
            font-size: 0.9rem;
            margin: 12px 0 0;
        }
        .page-back {
            display: inline-block;
            color: #b0b9c9;
            text-decoration: none;
            font-size: 0.9rem;
            margin-bottom: 18px;
            transition: 0.3s;
        }
        .page-back:hover {
            color: #f6d365;
        }
        .update-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin: 26px 0 10px;
        }
        .update-item {
            display: block;
            background: rgba(18, 27, 38, 0.85);
            border: 1px solid rgba(38, 48, 62, 0.5);
            border-radius: 16px;
            padding: 18px 24px;
            text-decoration: none;
            transition: 0.3s ease;
            box-shadow: 0 6px 24px rgba(0,0,0,0.25);
        }
        .update-item:hover {
            border-color: #f6d365;
            transform: translateY(-2px);
            box-shadow: 0 12px 34px rgba(246, 211, 101, 0.08);
        }
        .update-item .u-title {
            color: #e8edf5;
            font-size: 1.15rem;
            font-weight: 600;
            line-height: 1.5;
            transition: 0.3s;
        }
        .update-item:hover .u-title {
            color: #f6d365;
        }
        .update-item .u-meta {
            color: #7a869c;
            font-size: 0.8rem;
            margin-top: 8px;
        }
        .update-empty {
            text-align: center;
            color: #7a869c;
            padding: 70px 0;
        }
        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            margin: 30px 0 10px;
        }
        .pagination a,
        .pagination span {
            padding: 6px 15px;
            border-radius: 30px;
            border: 1px solid rgba(38, 48, 62, 0.6);
            color: #b0b9c9;
            background: rgba(22, 31, 43, 0.7);
            text-decoration: none;
            font-size: 0.85rem;
            transition: 0.3s;
        }
        .pagination a:hover {
            color: #f6d365;
            border-color: #f6d365;
        }
        .pagination .current {
            background: #f6d365;
            color: #080b10;
            border-color: #f6d365;
        }
        .pagination .disabled {
            opacity: 0.4;
            pointer-events: none;
        }

        /* 文章详情页 */
        .article-wrap {
            max-width: 900px;
            margin: 0 auto;
        }
        .article-card {
            background: rgba(18, 27, 38, 0.85);
            border: 1px solid rgba(38, 48, 62, 0.5);
            border-radius: 24px;
            padding: 40px 36px;
            box-shadow: 0 8px 40px rgba(0,0,0,0.4);
        }
        .article-card .article-title {
            font-size: 1.7rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 12px;
            color: #e8edf5;
        }
        .article-card .article-meta {
            color: #7a869c;
            font-size: 0.85rem;
            padding-bottom: 18px;
            margin-bottom: 22px;
            border-bottom: 1px dashed rgba(55, 66, 82, 0.6);
        }
        .article-content {
            color: #d0d8e8;
            font-size: 1rem;
            line-height: 1.9;
            word-break: break-word;
        }
        .article-content p {
            margin: 0 0 14px;
        }
        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 8px 0;
        }
        .article-content h1,
        .article-content h2,
        .article-content h3,
        .article-content h4 {
            color: #f6d365;
            margin: 22px 0 10px;
        }
        .article-content a {
            color: #f6d365;
        }
        .article-content blockquote {
            border-left: 4px solid #f6d365;
            padding: 8px 16px;
            margin: 14px 0;
            background: rgba(14, 22, 32, 0.6);
            color: #b0b9c9;
            border-radius: 8px;
        }
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 14px 0;
        }
        .article-content th,
        .article-content td {
            border: 1px solid rgba(55, 66, 82, 0.6);
            padding: 8px 10px;
        }
        @media (max-width: 768px) {
            .article-card {
                padding: 24px 18px;
            }
            .article-card .article-title {
                font-size: 1.3rem;
            }
            .update-item {
                padding: 15px 18px;
            }
        }
