
     :root {
            --primary-color: #004a99;    
            --secondary-color: #007bff;     
            --light-bg: #f9f9fb;            
            --card-bg: white;              
            --text-color: #2c3e50;          
            --soft-border: #e6e6e9;        
            --shadow-elevation: 0 4px 12px rgba(0, 0, 0, 0.08); 
            --radius: 8px;             
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
            margin: 0;
            padding: 0;
        }
        


/* 容器基础样式 */
.tag-hero-section {
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); /* 浅灰色渐变背景 */
    border-radius: 16px;
    text-align: center;
    max-width: 1430px;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* 柔和阴影 */
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-top:120px;
}

/* 主标题 H1 */
.tag-title {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* 副标题 P (Steady & Reliable Manufacturer) */
.hero-section-p {
    font-size: 1.1rem;
    color: #0984e3; /* 企业蓝，彰显专业 */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 给副标题前后加小装饰线 */
.hero-section-p::before,
.hero-section-p::after {
    content: "";
    height: 1px;
    width: 30px;
    background-color: #0984e3;
    margin: 0 15px;
    opacity: 0.5;
}

/* 内容区域整体修饰 */
.editor-content-1 {
    text-align: left; /* 内容建议左对齐，方便阅读 */
    line-height: 1.8;
    color: #636e72;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
}

/* 内容区内的 H4 标签 */
.editor-content-1 h4 {
    font-size: 1.4rem;
    color: #2d3436;
    margin-top: 25px;
    margin-bottom: 12px;
    border-left: 4px solid #0984e3; /* 侧边装饰条 */
    padding-left: 15px;
    font-weight: bold;
}

/* 内容区内的 P 标签 */
.editor-content-1 p {
    margin-bottom: 15px;
    font-size: 1rem;
}


/* 容器基础设置 */
.product-page.inner-page {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.ui.container {
    max-width: 1430px !important; /* 强制锁定最大宽度 */
    margin: 0 auto;
    padding: 0 15px;
}

/* 标题样式 */
.Auxil-h1 {
    font-size: 28px;
    color: #333;
    
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

/* 产品网格布局 - 一行 3 个 */
ul.grid-box.three {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 -15px; /* 抵消列表项的内边距 */
}

.product_box {
    width: 33.333%; /* 关键：每行三个 */
    padding: 15px;
    box-sizing: border-box;
}

/* 产品卡片主体 */
.product_box .box {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product_box .box:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: #0984e3;
}

/* 图片区域 */
.product_box .img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1; /* 保持图片正方形，高度统一 */
}

.product_box .img img.product_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product_box .box:hover .product_img {
    transform: scale(1.08);
}

/* 悬浮按钮组 */
.product_box .btn {
    position: absolute;
    bottom: -50px; /* 默认隐藏 */
    left: 0;
    width: 100%;
    display: flex;
    background: rgba(9, 132, 227, 0.9);
    transition: bottom 0.3s ease;
}

.product_box .box:hover .btn {
    bottom: 0; /* 悬停滑入 */
}

.product_box .btn a {
    flex: 1;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_box .btn a:first-child {
    border-right: 1px solid rgba(255,255,255,0.3);
}

.product_box .btn img {
    width: 20px;
    filter: brightness(0) invert(1); /* 图标转白 */
}

/* 产品标题 */
.product_name {
    padding: 20px 15px;
    text-align: center;
    flex-grow: 1;
}

.product_name a {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.product_name a:hover {
    color: #0984e3;
}
.product-page .product-1 .top .right {
    width:100%!important;
    padding-left: 0!important;
}

/* 分页样式简修 */
.m-page {
    text-align: center;
    margin-top: 40px;
}

/* 响应式：平板一行2个，手机一行1个 */
@media (max-width: 992px) {
    .product_box { width: 50%; }
}
@media (max-width: 576px) {
    .product_box { width: 100%; }
}



/* 容器基础设置 */
.main-content-column {
    display: flex;
    flex-direction: column;
    gap: 50px; /* 板块间距 */
    padding: 20px;
    background-color: #f9f9f9;
}

/* --- Section 1: 极简卡片流 (Minimalist Card) --- */
.info-column1.editor-module {
    background: #ffffff;
    border-left: 5px solid #2ecc71;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-radius: 4px;
    font-size: 16px;
    line-height: 2;
}

.info-column1.editor-module h4{
    font-size: 20px;
    line-height: 1.8;
    font-weight: bold;
}
.table th{
    font-weight: bold!important;
}

/* --- Section 2: 渐变玻璃拟态 (Glassmorphism) --- */
.editor-module1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    line-height: 2;
}
.editor-module1 h4{
    font-size: 20px;
    line-height: 1.8;
    font-weight: bold;
}
.editor-module1::after {
    content: "";
    position: absolute;
    top: -20%; right: -10%;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

/* --- Section 3: 粗野主义/高对比度 (Neobrutalism) --- */
.editor-module:nth-child(3) {
    background: #fff3b0;
    border: 3px solid #000;
    padding: 30px;
    box-shadow: 8px 8px 0px #000;
    transform: rotate(-1deg); /* 轻微倾斜增加设计感 */
    font-size: 16px;
    line-height: 2;
}

.editor-module:nth-child(3) h4{
    font-size: 20px;
    line-height: 1.8;
    font-weight: bold;
}
.editor-module:nth-child(3) strong{
        font-weight: bold;
}

/* --- Section 4: 科技感暗色调 (Cyberpunk Dark) --- */
.editor-module-service.editor-module {
    background: #1a1a1a;
    color: #00ffcc;
    padding: 35px;
    border: 1px solid #333;
    position: relative;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    line-height: 2;
}

.editor-module-service.editor-module h4{
    font-size: 20px;
    line-height: 1.8;
    font-weight: bold;
}
.editor-module-service.editor-module strong{
        font-weight: bold;
}
.editor-module-service::before {
    content: "SERVICE BLOCK";
    position: absolute;
    top: -10px;
    left: 20px;
    background: #00ffcc;
    color: #000;
    font-size: 12px;
    padding: 2px 10px;
    font-weight: bold;
}

/* --- Section 5: 柔和软核设计 (Soft Claymorphism) --- */
.editor-module-faq {
    background: #f0f4f8;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 
        20px 20px 60px #d9dee3,
        -20px -20px 60px #ffffff;
    border: 1px solid rgba(255,255,255,0.5);
    font-size: 16px;
    line-height: 2;
}

.editor-module-faq h4{
    font-size: 20px;
    line-height: 1.8;
    font-weight: bold;
}
.editor-module-faq strong{
    font-size: 18px;
    line-height: 2;
    font-weight: bold;
}

.content-matrix{
    width: 1430px;
    margin: 0 auto;
    margin-top: -150px;
}

/* 外层容器：控制居中、最大宽度和布局方式 */
.more-info {
    max-width: 1430px;
    margin: 40px auto;       /* 整体水平居中 */
    padding: 0 10px;         /* 侧边留白防止贴边 */
    
    display: flex;           /* 使用弹性布局 */
    flex-wrap: nowrap;       /* 强制不换行，确保在同一行 */
    gap: 20px;               /* 标签之间的间距 */
    justify-content: space-between; /* 均匀分布在行内 */
}

/* A标签：卡片式设计 */
.more-info a {
    flex: 1;                 /* 4个标签平分宽度 */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    min-height: 60px;        /* 设定合适的高度 */
    padding: 10px 15px;
    background: #f8f9fa;     /* 浅灰色底色 */
    color: #2c3e50;          /* 深蓝灰色文字 */
    text-decoration: none;   /* 去掉默认下划线 */
    font-size: 15px;
    font-weight: 500;
    
    border-radius: 8px;      /* 轻微圆角 */
    border: 1px solid #eaeaea;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* 文本过长处理：显示省略号 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 鼠标经过时的交互效果 */
.more-info a:hover {
    background: #ffffff;
    border-color: #3498db;   /* 变成品牌蓝色 */
    color: #3498db;
    transform: translateY(-3px); /* 向上微浮动 */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08); /* 增加投影感 */
}

/* 响应式微调：当屏幕非常小时允许滚动或缩小文字 */
@media (max-width: 768px) {
    .more-info {
        gap: 10px;
    }
    .more-info a {
        font-size: 13px;
        padding: 8px;
    }
}