@charset "utf-8";
        :root {
            --primary-blue: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #dbeafe;
            --text-dark: #1e293b;
            --text-gray: #475569;
            --bg-light: #f8fafc;
            --border-light: #e2e8f0;
            --container-width: 1480px;
            --card-shadow: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
            --hover-shadow: 0 20px 30px -10px rgba(37,99,235,0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #ffffff;
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        /* ===== Banner 通用 - 水平布局 ===== */
        .banner-section {
            width: 100%;
            background-color: #0f172a; /* 深色背景 */
        }

        .vQrQB3-container {
            width: 100%;
            max-width: 100% !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        .vQrQB3-c-item {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
            max-height: 550px;
        }

        @media (max-width: 768px) {
            .vQrQB3-c-item {
                max-height: 250px;
            }
        }

        /* ===== 1480px 内容容器 ===== */
        .container-1480 {
            width: 100%;
            max-width: 1480px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* 内边距控制 */
        .section-padding-top {
            padding-top: 50px;
        }

        .section-padding-bottom {
            padding-bottom: 70px;
        }

        /* ===== 双栏 Flex 布局 ===== */
        .content-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        /* 左侧主栏 (占比 75%) */
        .main-col {
            flex: 0 0 75%;
            max-width: 75%;
            padding: 0 15px;
        }

        /* 右侧侧边栏 (占比 25%) */
        .side-col {
            flex: 0 0 25%;
            max-width: 25%;
            padding: 0 15px;
        }

        /* ===== 文章标题 ===== */
        h1.text-heading {
            font-size: 2.4rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin: 0 0 20px 0;
            color: var(--text-dark);
            line-height: 1.3;
        }

        /* 文章元数据（时间等） */
        .article-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-light);
        }

        .iconfonttime {
            color: var(--primary-blue);
            font-size: 1.1rem;
        }

        /* 社交分享区域 */
        .share-section {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-light);
        }
        .share-label {
            font-weight: 500;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .share-buttons {
            display: flex;
            gap: 12px;
        }
        .share-buttons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--bg-light);
            border-radius: 50%;
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.2s;
            font-size: 1.1rem;
        }
        .share-buttons a:hover {
            background: var(--primary-blue);
            color: #fff;
            transform: translateY(-2px);
        }

        /* 文章富文本内容 */
        .section-rich-text {
            font-size: 1.05rem;
            color: var(--text-gray);
            margin-bottom: 40px;
        }

        .section-rich-text img {
            max-width: 100%;
            height: auto;
            margin: 25px 0;
            border-radius: 8px;
        }

        /* ===== 上下篇文章 ===== */
        .pagelink-item {
            display: flex;
            align-items: center;
            gap: 5px;
            background: var(--bg-light);
            padding: 5px 10px;
            margin: 5px 0;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            border-radius: 0 12px 12px 0;
            box-shadow: var(--card-shadow);
        }

        .pagelink-item:hover {
            background: #f1f5f9;
            border-left-color: var(--primary-blue);
            transform: translateX(5px);
            box-shadow: var(--hover-shadow);
        }

        .pagelink-icon i {
            font-size: 2rem;
            color: var(--primary-blue);
            opacity: 0.8;
        }

        .link-intro {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-gray);
            margin: 0 0 6px;
            font-weight: 500;
        }

        .pagelink-info a {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            text-decoration: none;
            line-height: 1.4;
            transition: color 0.2s;
        }

        .pagelink-info a:hover {
            color: var(--primary-blue);
        }

        /* 图标缩小，防止撑开高度 */
        .pagelink-icon i {
            font-size: 1.4rem; 
            color: var(--primary-blue);
            opacity: 0.7;
        }

        .link-intro {
            font-size: 0.75rem; /* 稍微缩小 */
            text-transform: uppercase;
            letter-spacing: 0.03em;
            color: var(--text-gray);
            margin: 0 0 2px; /* 紧凑间距 */
            font-weight: 500;
        }

        .pagelink-info a {
            font-size: 1rem; /* 标题字号从1.2rem降到1rem，更协调 */
            font-weight: 600;
            color: var(--text-dark);
            text-decoration: none;
            line-height: 1.3;
        }

        /* ===== 移动端适配 (手机) ===== */
        @media (max-width: 768px) {
            .pagelink-container {
                grid-template-columns: 1fr; /* 手机端切回单列 */
                gap: 10px;
            }
            
            .pagelink-item {
                padding: 10px 15px; /* 进一步压缩手机端高度 */
            }

            .pagelink-info a {
                font-size: 0.95rem; /* 手机端字号微调 */
            }
        }

        /* ===== 产品展示区 (底部) ===== */
        .product-grid-section {
            margin-top: 60px;
            margin-bottom: 30px;
        }

        .product-grid-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 0 30px 0;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--border-light);
            color: var(--text-dark);
            position: relative;
        }

        .product-grid-section h2:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--primary-blue);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .product-grid li {
            background: #ffffff;
            border: 1px solid var(--border-light);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: var(--card-shadow);
        }

        .product-grid li:hover {
            transform: translateY(-6px);
            border-color: var(--primary-blue);
            box-shadow: var(--hover-shadow);
        }

        .product-grid .product-image {
            aspect-ratio: 1;
            width: 100%;
            overflow: hidden;
            background: var(--bg-light);
        }

        .product-grid .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-grid li:hover .product-image img {
            transform: scale(1.05);
        }

        .product-grid .product-title {
            padding: 16px 12px;
            text-align: center;
        }

        .product-grid .product-title h3 {
            margin: 0;
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.4;
            color: var(--text-dark);
        }

        .product-grid .product-title h3 a {
            color: inherit;
            text-decoration: none;
        }

        .product-grid .product-title h3 a:hover {
            color: var(--primary-blue);
        }

        /* ===== 右侧组件 ===== */
        /* 作者卡片 - 美化 */
        .author-card {
            background: linear-gradient(145deg, #ffffff, var(--bg-light));
            padding: 35px 25px 30px;
            margin-bottom: 30px;
            position: relative;
            border: none;
            border-radius: 20px;
            box-shadow: var(--card-shadow);
            text-align: center; /* 保留头像和姓名居中，但bio内容左对齐 */
        }

        .author-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), #7c3aed);
            border-radius: 20px 20px 0 0;
        }

        .author-avatar {
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
            border: 4px solid #ffffff;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            overflow: hidden;
            border-radius: 50%;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
            letter-spacing: -0.02em;
        }

        .author-bio {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.7;
            margin: 0 0 20px;
            padding: 0 5px;
            /* 以下三行将bio内容改为左对齐，并适当增加可读性 */
            text-align: left;
            max-width: 100%;        /* 确保宽度自适应 */
            word-break: break-word; /* 防止长单词溢出 */
        }

        /* 社交图标区域 - 新增 Facebook, YouTube, LinkedIn */
        .author-social {
            display: flex;
            justify-content: center;
            gap: 18px;
            margin-top: 20px;
        }

        .author-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: #ffffff;
            border-radius: 50%;
            color: var(--text-gray);
            font-size: 1.3rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
            border: 1px solid var(--border-light);
        }

        .author-social a:hover {
            transform: translateY(-5px) scale(1.1);
            color: #ffffff;
        }

        .author-social a[aria-label="Facebook"]:hover {
            background: #1877f2;
            border-color: #1877f2;
        }
        .author-social a[aria-label="YouTube"]:hover {
            background: #ff0000;
            border-color: #ff0000;
        }
        .author-social a[aria-label="LinkedIn"]:hover {
            background: #0a66c2;
            border-color: #0a66c2;
        }

        /* 询盘卡片 */
        .sidebar-inquiry {
            background: #ffffff;
            padding: 35px 28px;
            margin-bottom: 30px;
            position: relative;
            box-shadow: var(--card-shadow);
            border: none;
            border-radius: 20px;
        }

        .sidebar-inquiry:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), #7c3aed);
            border-radius: 20px 20px 0 0;
        }

        .sidebar-inquiry-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--text-dark);
            letter-spacing: -0.02em;
        }

        .inquiry-form-sidebar {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .inquiry-form-sidebar .form-control {
            width: 100%;
            padding: 14px 18px;
            background: var(--bg-light);
            border: 1px solid var(--border-light) !important;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            border-radius: 12px;
        }

        .inquiry-form-sidebar .form-control:focus {
            border-color: var(--primary-blue) !important;
            background: #ffffff;
            outline: none;
            box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
        }

        .inquiry-form-sidebar textarea.form-control {
            resize: vertical;
            min-height: 110px;
        }
        /* ----- 修改图片上传样式：去掉约束外框，无背景色，同时不影响其他表单控件 ----- */
        .inquiry-form-sidebar input[type="file"].form-control {
            border: none !important;               /* 移除边框 */
            background: transparent !important;     /* 移除背景色 */
            padding: 0;                             /* 移除内边距（可根据需要调整） */
            box-shadow: none !important;            /* 移除阴影 */
            outline: none !important;                /* 移除聚焦外框 */
        }
        /* 可选：如果需要更紧凑的布局，可以微调文件上传标签的样式，但不修改其他元素 */
        .inquiry-form-sidebar .form-label {
            /* 保持原有样式，或者根据需要调整，但不要影响其他控件 */
            display: block;           /* 确保标签占一行 */
            margin-bottom: 5px;        /* 添加一点间距（可选） */
            color: var(--text-gray);    /* 保持原有的文本颜色 */
            font-size: 0.95rem;         /* 保持字体大小一致 */
        }

        .sidebar-inquiry .btn-primary {
            background: var(--primary-blue);
            color: white;
            padding: 14px 24px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            border: none;
            transition: all 0.3s ease;
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 12px;
            box-shadow: 0 8px 18px rgba(37,99,235,0.2);
        }

        .sidebar-inquiry .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 25px -5px rgba(37,99,235,0.4);
        }

        /* 分页样式 */
        .fenye {
            margin-top: 50px;
            text-align: center;
        }

        .fenye a, .fenye span {
            display: inline-block;
            padding: 10px 18px;
            margin: 0 5px;
            background: transparent;
            color: var(--text-gray);
            font-weight: 500;
            text-decoration: none;
            border: 1px solid var(--border-light) !important;
            min-width: 44px;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .fenye a:hover {
            background: var(--bg-light);
            color: var(--primary-blue);
            border-color: var(--primary-blue) !important;
            transform: translateY(-2px);
        }

        .fenye .current {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue) !important;
        }

        /* 标签样式 */
        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 30px 0;
        }

        .tags-list a {
            background: var(--bg-light);
            padding: 6px 18px;
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid var(--border-light);
            border-radius: 30px;
            transition: all 0.2s;
        }

        .tags-list a:hover {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
            transform: translateY(-2px);
        }

        /* 响应式调整 */
        @media (max-width: 1200px) {
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .main-col, .side-col {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .main-col {
                margin-bottom: 40px;
            }
            
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .container-1480 {
                padding: 0 20px;
            }
            
            .section-padding-top {
                padding-top: 30px;
            }
            
            .section-padding-bottom {
                padding-bottom: 40px;
            }
            
            h1.text-heading {
                font-size: 2rem;
            }
            
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }

        /* 优化手机端：480px及以下仍保持一行两列，并适当缩小间距和文字 */
        @media (max-width: 480px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .product-grid .product-title {
                padding: 12px 8px;
            }
            .product-grid .product-title h3 {
                font-size: 0.9rem;
            }
            
            .author-card,
            .sidebar-inquiry {
                padding: 25px 20px;
            }
            
            .sidebar-inquiry-title {
                font-size: 1.4rem;
            }
            
            .author-social {
                gap: 12px;
            }
            
            .author-social a {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }

        /* 隐藏不需要的元素 */
        .recent-posts-widget,
        .common-inquiry {
            display: none;
        }



/******Table of Contents *******/

#content ul, #content li, #content ol {
    list-style: decimal;
}

.content ol, .content ul {
    margin: 0 0 10px 20px;
}


.ck-widget-toc ol {
    margin: 0 0 10px 20px;
}

.ck-widget-toc ol {
    visibility: hidden;
    opacity: 0;
	display: none;
}



.ck-widget-toc .activelan {
    visibility: visible;
    opacity: 1;  
	display: block;
}


.ck-widget-toc {
    background: #f9f9f9;
    border: 1px solid #aaa;
    padding: 10px;
    margin-bottom: 1em;
    width: auto;
    display: table;
    font-size: 95%;

}

.ck-widget-toc p.toc_title {
    text-align: center;
    font-weight: 700;
    margin: 0;
    padding: 0;
}
/* ===== 仅针对文章内容的表格进行最小化改动 ===== */

/* 1. 让表格支持水平滚动且不挤压内容 */
.section-rich-text table {
    display: block;            /* 必须：让表格具备容器属性以支持滚动 */
    width: 100% !important;    /* 宽度撑满 */
    overflow-x: auto;         /* 开启左右滑动 */
    border-collapse: collapse;
    -webkit-overflow-scrolling: touch; /* iOS 滑动优化 */
}

/* 2. 强制单元格内容不换行（防止在手机上被挤成一长条） */
.section-rich-text table th,
.section-rich-text table td {
    min-width: 120px;          /* 核心：设定每个单元格最小宽度，撑开表格触发滚动 */
    white-space: nowrap;       /* 强制内容不换行 */
    padding: 10px;
    border: 1px solid var(--border-light); /* 使用你已有的变量 */
}

/* 3. 美化底部滚动条，使其更明显 */
.section-rich-text table::-webkit-scrollbar {
    height: 8px;               /* 滚动条高度 */
    display: block;            /* 确保在移动端显示 */
}

.section-rich-text table::-webkit-scrollbar-track {
    background: #f1f1f1;       /* 滚动条轨道颜色 */
    border-radius: 4px;
}

.section-rich-text table::-webkit-scrollbar-thumb {
    background: var(--primary-blue); /* 使用你原有的蓝色变量 */
    border-radius: 4px;
}

/* 4. 仅在手机端添加视觉阴影（暗示右侧有内容） */
@media (max-width: 768px) {
    .section-rich-text table {
        background-image: linear-gradient(to right, white, white), 
                          linear-gradient(to right, white, white), 
                          linear-gradient(to right, rgba(0,0,0,0.1), rgba(255,255,255,0)), 
                          linear-gradient(to left, rgba(0,0,0,0.1), rgba(255,255,255,0));
        background-position: left center, right center, left center, right center;
        background-repeat: no-repeat;
        background-size: 20px 100%, 20px 100%, 10px 100%, 10px 100%;
        background-attachment: local, local, scroll, scroll;
    }
}