        :root {
            --bg-color: #ffffff;
            --text-color: #333333;
            --accent-color: #c12026;
            --secondary-color: #f5f5f5;
            --border-color: #e0e0e0;
            --card-bg: #ffffff;
            --transition: all 0.3s ease;
        }

        [data-theme="dark"] {
            --bg-color: #121212;
            --text-color: #e0e0e0;
            --accent-color: #ff454a;
            --secondary-color: #1e1e1e;
            --border-color: #2d2d2d;
            --card-bg: #1e1e1e;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            transition: var(--transition);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            background-color: var(--bg-color);
            z-index: 100;
            transition: var(--transition);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 18px;
        }

        .logo-icon {
            color: var(--accent-color);
            font-size: 24px;
        }

        /* 桌面端导航 */
        .desktop-nav {
            display: block;
        }

        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 24px;
        }

        .desktop-nav a {
            font-size: 14px;
            font-weight: 500;
        }

        .desktop-nav a:hover {
            color: var(--accent-color);
        }

        /* 移动端汉堡菜单 */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 24px;
            cursor: pointer;
            z-index: 102;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 250px;
            height: 100vh;
            background-color: var(--card-bg);
            border-left: 1px solid var(--border-color);
            transform: translateX(100%);
            transition: transform 0.3s ease;
            z-index: 101;
            padding: 80px 20px 20px;
        }

        .mobile-nav.active {
            transform: translateX(0);
        }

        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .mobile-nav a {
            font-size: 16px;
            font-weight: 500;
            display: block;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-nav a:hover {
            color: var(--accent-color);
        }

        /* 遮罩层 */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 100;
            display: none;
        }

        .overlay.active {
            display: block;
        }

        .theme-toggle {
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 18px;
            cursor: pointer;
            transition: var(--transition);
            margin-left: 16px;
        }

        .theme-toggle:hover {
            color: var(--accent-color);
        }

        /* Hero Section */
        .hero {
            padding: 60px 0;
            text-align: center;
        }

        .hero-badge {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--accent-color);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            margin-bottom: 16px;
        }

        .hero h1 {
            font-size: 28px;
            margin-bottom: 12px;
        }

        .hero p {
            max-width: 800px;
            margin: 0 auto 24px;
            font-size: 14px;
            color: #666;
        }

        [data-theme="dark"] .hero p {
            color: #aaa;
        }

        .btn {
            display: inline-block;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

        .btn-primary {
            background-color: var(--accent-color);
            color: #fff;
        }

        .btn-primary:hover {
            background-color: #a01a20;
        }

        [data-theme="dark"] .btn-primary:hover {
            background-color: #e03035;
        }

        /* Section Common */
        section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 22px;
            text-align: center;
            margin-bottom: 12px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 14px;
            color: #666;
            margin-bottom: 32px;
        }

        [data-theme="dark"] .section-subtitle {
            color: #aaa;
        }

        /* Features Tabs */
        .features-tabs {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 48px;
        }

        .tab {
            padding: 8px 16px;
            border-radius: 20px;
            background-color: var(--secondary-color);
            font-size: 13px;
            cursor: pointer;
            transition: var(--transition);
        }

        .tab.active {
            background-color: var(--accent-color);
            color: #fff;
        }

        /* Tab Content - 关键修复：默认全部隐藏，只有active才显示 */
        .tab-content {
            display: none !important; /* 强制隐藏，优先级更高 */
        }

        .tab-content.active {
            display: grid !important; /* 只有激活的内容才显示 */
        }

        /* Data Security Section */
        .data-security {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .security-content h2 {
            font-size: 24px;
            margin-bottom: 16px;
        }

        .security-content p {
            font-size: 14px;
            margin-bottom: 20px;
        }

        .security-image {
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
        }

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

        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 48px;
        }

        .feature-card {
            padding: 20px;
            background-color: var(--card-bg);
            border-radius: 8px;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .feature-card:hover {
            border-color: var(--accent-color);
            transform: translateY(-4px);
        }

        .feature-icon {
            color: var(--accent-color);
            margin-bottom: 12px;
            font-size: 18px;
        }

        .feature-card h3 {
            font-size: 16px;
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 13px;
            color: #666;
        }

        [data-theme="dark"] .feature-card p {
            color: #aaa;
        }

        /* Deployment Steps */
        .deployment-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 48px;
        }

        .deployment-steps::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 10%;
            right: 10%;
            height: 2px;
            background-color: var(--border-color);
            z-index: -1;
        }

        .step {
            text-align: center;
            flex: 1;
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--accent-color);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-weight: 700;
        }

        .step h4 {
            font-size: 14px;
            margin-bottom: 8px;
        }

        .step p {
            font-size: 12px;
            color: #666;
        }

        [data-theme="dark"] .step p {
            color: #aaa;
        }

        .step-arrow {
            position: absolute;
            top: 20px;
            color: var(--accent-color);
            font-size: 16px;
        }

        .step-arrow-1 { left: 25%; }
        .step-arrow-2 { left: 50%; }
        .step-arrow-3 { left: 75%; }

        /* Skills Grid */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 32px;
        }

        .skill-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
        }

        .skill-card:hover {
            border-color: var(--accent-color);
        }

        .skill-image {
            width: 100%;
            height: 140px;
            object-fit: cover;
        }

        .skill-content {
            padding: 16px;
        }

        .skill-content h3 {
            font-size: 14px;
            margin-bottom: 8px;
        }

        .skill-content p {
            font-size: 12px;
            color: #666;
            margin-bottom: 16px;
        }

        [data-theme="dark"] .skill-content p {
            color: #aaa;
        }

        .skill-actions {
            display: flex;
            gap: 8px;
        }

        .btn-sm {
            padding: 6px 12px;
            font-size: 12px;
        }

        .btn-outline {
            border: 1px solid var(--border-color);
            background: none;
            color: var(--text-color);
        }

        .btn-outline:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
        }

        .more-skills {
            text-align: center;
            margin-top: 32px;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            padding: 16px 20px;
            background-color: var(--secondary-color);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer.active {
            padding: 16px 20px;
            max-height: 500px;
        }

        .faq-answer p {
            font-size: 13px;
            color: #666;
        }

        [data-theme="dark"] .faq-answer p {
            color: #aaa;
        }

        /* CTA Section */
        .cta {
            text-align: center;
            padding: 60px 0;
        }

        .cta h2 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .cta p {
            font-size: 14px;
            color: #666;
            margin-bottom: 24px;
        }

        [data-theme="dark"] .cta p {
            color: #aaa;
        }

        /* Footer */
        footer {
            padding: 30px 0;
            border-top: 1px solid var(--border-color);
            text-align: center;
            font-size: 12px;
            color: #666;
        }

        [data-theme="dark"] footer {
            color: #aaa;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 16px;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .data-security {
                grid-template-columns: 1fr;
            }

            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .skills-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            /* 隐藏桌面导航，显示汉堡菜单 */
            .desktop-nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .deployment-steps {
                flex-direction: column;
                gap: 24px;
            }

            .deployment-steps::before {
                display: none;
            }

            .step-arrow {
                display: none;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .skills-grid {
                grid-template-columns: 1fr;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .blog-hero h1 {
                font-size: 28px;
            }
        }

        /* Blog Hero */
        .blog-hero {
            padding: 40px 0;
            text-align: center;
        }

        .blog-hero h1 {
            font-size: 36px;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .blog-hero .subtitle {
            font-size: 14px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        [data-theme="dark"] .blog-hero .subtitle {
            color: #aaa;
        }

        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
            padding: 20px 0 60px;
        }

        .blog-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        [data-theme="dark"] .blog-card:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .blog-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .blog-content {
            padding: 20px;
        }

        .blog-date {
            font-size: 12px;
            color: #999;
            margin-bottom: 8px;
            display: block;
        }

        [data-theme="dark"] .blog-date {
            color: #777;
        }

        .blog-title {
            font-size: 16px;
            margin-bottom: 12px;
            font-weight: 600;
            line-height: 1.4;
            height: 65px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .blog-excerpt {
            font-size: 13px;
            color: #666;
            margin-bottom: 16px;
            height: 60px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        [data-theme="dark"] .blog-excerpt {
            color: #aaa;
        }

        .read-more {
            font-size: 12px;
            color: var(--accent-color);
            font-weight: 500;
            display: inline-block;
        }

        .read-more:hover {
            text-decoration: underline;
        }


        /* Blog Detail Wrapper */
        .blog-detail-wrapper {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 40px;
            padding: 30px 0 60px;
        }

        /* Blog Content */
        .blog-content {
            max-width: 800px;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
            font-size: 12px;
            color: #999;
        }

        [data-theme="dark"] .blog-meta {
            color: #777;
        }

        .blog-meta .category {
            background-color: var(--secondary-color);
            color: var(--accent-color);
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 11px;
        }

        .blog-title {
            font-size: 24px;
            margin-bottom: 24px;
            line-height: 1.4;
            font-weight: 600;
        }

        .blog-cover {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 32px;
        }

        .blog-body h2 {
            font-size: 18px;
            margin: 36px 0 16px;
            color: var(--accent-color);
            font-weight: 600;
        }

        .blog-body p {
            font-size: 14px;
            margin-bottom: 16px;
            color: #555;
            text-align: justify;
        }

        [data-theme="dark"] .blog-body p {
            color: #ddd;
        }

        /* Sidebar */
        .blog-sidebar {
            position: sticky;
            top: 90px;
            align-self: start;
            height: fit-content;
            padding: 0 10px;
        }

        .sidebar-title {
            font-size: 14px;
            margin-bottom: 16px;
            font-weight: 600;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border-color);
        }

        .sidebar-toc ul {
            list-style: none;
        }

        .sidebar-toc li {
            margin-bottom: 12px;
        }

        .sidebar-toc a {
            font-size: 12px;
            color: #666;
            display: block;
            transition: all 0.2s ease;
        }

        [data-theme="dark"] .sidebar-toc a {
            color: #aaa;
        }

        .sidebar-toc a:hover {
            color: var(--accent-color);
            padding-left: 4px;
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 40px;
            height: 40px;
            background-color: var(--accent-color);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }


        /* Responsive */
        @media (max-width: 992px) {
            .blog-detail-wrapper {
                grid-template-columns: 1fr;
            }

            .blog-sidebar {
                display: none;
            }
        }

        @media (max-width: 768px) {
            /* 隐藏桌面导航，显示汉堡菜单 */
            .desktop-nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .blog-title {
                font-size: 20px;
            }
        }


        /* Hero Section */
        .intro-hero {
            padding: 40px 0;
        }

        .intro-hero h1 {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .intro-hero p {
            font-size: 14px;
            color: #666;
            margin-bottom: 24px;
        }

        [data-theme="dark"] .intro-hero p {
            color: #aaa;
        }

        /* Introduction Content */
        .intro-content {
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        /* TOC */
        .toc {
            position: sticky;
            top: 80px;
            align-self: start;
        }

        .toc h3 {
            font-size: 14px;
            margin-bottom: 16px;
            color: var(--accent-color);
        }

        .toc ul {
            list-style: none;
        }

        .toc li {
            margin-bottom: 8px;
        }

        .toc a {
            font-size: 12px;
            color: #666;
            padding: 4px 8px;
            border-radius: 4px;
            display: block;
        }

        .toc a:hover,
        .toc a.active {
            background-color: var(--secondary-color);
            color: var(--accent-color);
        }

        [data-theme="dark"] .toc a {
            color: #aaa;
        }

        /* Main Content */
        .main-content {
            max-width: 800px;
        }

        .section {
            margin-bottom: 48px;
        }

        .section h2 {
            font-size: 18px;
            margin-bottom: 16px;
            color: var(--accent-color);
        }

        .section h3 {
            font-size: 16px;
            margin: 24px 0 12px;
        }

        .section p {
            font-size: 14px;
            margin-bottom: 12px;
            color: #666;
        }

        [data-theme="dark"] .section p {
            color: #aaa;
        }

        .section ul,
        .section ol {
            margin: 16px 0;
            padding-left: 24px;
        }

        .section li {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
        }

        [data-theme="dark"] .section li {
            color: #aaa;
        }

        /* Code Block */
        .code-block {
            background-color: var(--secondary-color);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 16px;
            margin: 16px 0;
            font-family: 'Courier New', Courier, monospace;
            font-size: 12px;
            color: #333;
            overflow-x: auto;
        }

        [data-theme="dark"] .code-block {
            color: #e0e0e0;
        }

        /* Feature List */
        .feature-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin: 24px 0;
        }

        .feature-item {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 16px;
        }

        .feature-item h4 {
            font-size: 14px;
            margin-bottom: 8px;
        }

        .feature-item p {
            font-size: 12px;
            color: #666;
        }

        [data-theme="dark"] .feature-item p {
            color: #aaa;
        }

        /* CTA Section */
        .cta {
            text-align: center;
            padding: 60px 0;
        }

        .cta h2 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .cta p {
            font-size: 14px;
            color: #666;
            margin-bottom: 24px;
        }

        [data-theme="dark"] .cta p {
            color: #aaa;
        }

        .btn {
            display: inline-block;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

        .btn-primary {
            background-color: var(--accent-color);
            color: #fff;
        }

        .btn-primary:hover {
            background-color: #a01a20;
        }

        [data-theme="dark"] .btn-primary:hover {
            background-color: #e03035;
        }
        /* Responsive */
        @media (max-width: 992px) {
            .intro-content {
                grid-template-columns: 1fr;
            }

            .toc {
                position: static;
                margin-bottom: 32px;
            }

            .feature-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            /* 隐藏桌面导航，显示汉堡菜单 */
            .desktop-nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }
        }


        /* Hero Section */
        .about-hero {
            padding: 40px 0;
            text-align: center;
        }

        .hero-badge {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--accent-color);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            margin-bottom: 16px;
        }

        .about-hero h1 {
            font-size: 24px;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .about-hero .subtitle {
            font-size: 14px;
            color: #666;
            max-width: 600px;
            margin: 0 auto 32px;
        }

        [data-theme="dark"] .about-hero .subtitle {
            color: #aaa;
        }

        .hero-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 24px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

        .btn-primary {
            background-color: var(--accent-color);
            color: #fff;
        }

        .btn-primary:hover {
            background-color: #a01a20;
        }

        [data-theme="dark"] .btn-primary:hover {
            background-color: #e03035;
        }

        .btn-secondary {
            background-color: var(--card-bg);
            color: var(--text-color);
            border: 1px solid var(--border-color);
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .btn-secondary:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
        }

        /* Core Beliefs Section */
        .core-beliefs-section {
            padding: 40px 0;
            border-top: 1px solid var(--border-color);
        }

        .core-beliefs-section h2 {
            font-size: 20px;
            margin-bottom: 32px;
            font-weight: 600;
        }

        .core-beliefs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-bottom: 40px;
        }

        .belief-item {
            display: flex;
            gap: 16px;
        }

        .belief-icon {
            color: var(--accent-color);
            font-size: 20px;
            margin-top: 2px;
        }

        .belief-content h3 {
            font-size: 16px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .belief-content p {
            font-size: 13px;
            color: #666;
            line-height: 1.7;
        }

        [data-theme="dark"] .belief-content p {
            color: #aaa;
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 40px;
            height: 40px;
            background-color: var(--accent-color);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .core-beliefs-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            /* 隐藏桌面导航，显示汉堡菜单 */
            .desktop-nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .about-hero h1 {
                font-size: 20px;
            }
        }
        
        .pagination-wrap {padding: 20px 10px;margin-top: 20px;background: #fff;border-radius: 8px;}
        .pagination-wrap .paging-cls {text-align: center;}
        .pagination-wrap .paging-cls li {display: inline-block;margin: 0 5px;list-style: none;}
        .pagination-wrap .paging-cls span, .pagination-wrap .paging-cls a {display: inline-block;border: 1px solid #eef3f8;border-radius: 5px;height: 44px;line-height: 44px;width: 44px;margin: 0 3px;font-size: 14px;color: #000000;text-decoration: none;}