
     :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-page-container a {
            text-decoration: none;
            color: var(--secondary-color);
            transition: color 0.3s;
        }
        .tag-page-container a:hover {
            color: var(--primary-color);
        }

        .tag-page-container {
            max-width: 1620px; 
            margin: 0 auto;
            padding: 20px 30px 60px 30px;
        }
        
        header {
            background-color: var(--primary-color); 
            color: white; 
            padding: 20px 30px; 
            text-align: left; 
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .breadcrumb {
            background-color: var(--card-bg);
            padding: 15px 30px;
            font-size: 0.9em;
            border-bottom: 1px solid var(--soft-border);
        }

        .tag-hero-section {
            padding: 40px 0;
            margin-bottom: 30px;
        }


        :root{
  --brand: #024da0;
  --brand-dark: #013a78;
  --brand-light: #e8f1fb;
}

/* ================= HERO SECTION ================= */
.tag-hero-section{
  position:relative;
  background: linear-gradient(120deg, rgba(2,77,160,0.94) 0%, rgba(1,58,120,0.96) 55%, rgba(2,77,160,0.9) 100%);
  color:#ffffff;
  padding: 72px 24px 64px;
  text-align:center;
  overflow:hidden;
}
/* 细密斜纹装饰，增加工业质感 */
.tag-hero-section::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.035) 0px,
    rgba(255,255,255,0.035) 2px,
    transparent 2px,
    transparent 26px
  );
  pointer-events:none;
}
/* 底部装饰短线 */
.tag-hero-section::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:120px;
  height:4px;
  background:#ffffff;
  border-radius:4px;
  opacity:0.85;
}

.tag-title{
  position:relative;
  z-index:1;
  margin:0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight:800;
  letter-spacing:0.5px;
  line-height:1.25;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.hero-section-p{
  position:relative;
  z-index:1;
  margin: 14px 0 0;
  font-size: 14px;
  font-weight:600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #bcd8f5;
}
.hero-section-p::before,
.hero-section-p::after{
  content:"";
  display:inline-block;
  width:28px;
  height:1px;
  background:#7fa8d6;
  vertical-align:middle;
  margin: 0 12px;
}

/* ================= EDITOR CONTENT 1 (白色卡片) ================= */
.editor-content-1{
  position:relative;
  z-index:1;
    margin: 40px auto 0;
  text-align:left;
  background:#ffffff;
  color:#3d4b58;
  border-radius: 10px;
  padding: 32px 36px;
  box-shadow: 0 18px 40px rgba(1,40,90,0.18);
}

.editor-content-1 h4{
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 19px;
  font-weight:700;
  padding-left: 14px;
  border-left: 4px solid var(--brand);
}
.editor-content-1 h4:not(:first-child){
  margin-top: 26px;
}

.editor-content-1 p{
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.85;
}
.editor-content-1 p:last-child{
  margin-bottom:0;
}

.editor-content-1 b{
  color: var(--brand-dark);
  background: var(--brand-light);
  padding: 1px 5px;
  border-radius: 3px;
  font-weight:700;
}

/* 移动端适配 */
@media (max-width: 640px){
  .tag-hero-section{ padding: 52px 16px 44px; }
  .editor-content-1{ padding: 22px 20px; margin-top: 28px; }
  .hero-section-p::before,
  .hero-section-p::after{ width:16px; margin:0 8px; }
}
.product-page2 .sideRight{
    width:100% !important;
    padding-left:0px!important;
}
.relatedpr{
    font-size: 28px;
    line-height: 1.6;
    font-weight: bold;
    color:#024da0;
    margin-bottom: 20px;
}


 :root{
  --brand: #024da0;
  --brand-dark: #013a78;
  --brand-light: #e8f1fb;
  --brand-lighter: #f4f9ff;
  --border-soft:#e1e8f0;
}

/* ===== 布局 ===== */
.content-matrix{
  display:grid;
  grid-template-columns: 2.15fr 1fr;
  gap:32px;
  
  margin:24px auto 60px;
  padding:0 20px;
  align-items:start;
}
.main-content-column{ display:flex; flex-direction:column; gap:30px; }
.sidebar-content-column{ display:flex; flex-direction:column; gap:24px; position:sticky; top:24px; }

@media (max-width: 900px){
  .content-matrix{ grid-template-columns: 1fr; }
  .sidebar-content-column{ position:static; }
}

/* ===== 通用卡片基础 ===== */
.editor-module{
  background:#ffffff;
  border-radius:12px;
  padding:30px 32px;
  box-shadow: 0 10px 28px rgba(2,44,92,0.08);
  border:1px solid var(--border-soft);
}
.editor-module h4{ margin:0 0 14px; font-size:19px; color:var(--brand-dark); }
.editor-module p{ margin:0 0 14px; font-size:16px; line-height:2; color:#3d4b58; }
.editor-module p:last-child{ margin-bottom:0; }


/* ===== det1 → 编辑器2 技术参数：banner表头 + 表格 + 提示条 ===== */
.info-column1.editor-module{ padding:0; overflow:hidden; }
.info-column1 h4{
  margin:0; background:linear-gradient(100deg,var(--brand),var(--brand-dark));
  color:#fff; padding:20px 32px; font-size:19px; display:flex; align-items:center; gap:10px;
}
.info-column1 h4::before{ content:"⚙"; font-size:20px; }
.info-column1 p{ padding:0 32px; }
.info-column1 p:first-of-type{ margin-top:22px; }
.info-column1 table{
  width:calc(100% - 64px);border-collapse:collapse;
  font-size:13.5px; border-radius:8px; box-shadow:0 0 0 1px var(--border-soft);
}
.info-column1 table tr:first-child td{ background:var(--brand-dark); color:#fff; font-weight:700; padding:12px 14px; }
.info-column1 table tr:not(:first-child) td{ padding:11px 14px; border-bottom:1px solid var(--border-soft); }
.info-column1 table tr:not(:first-child):nth-child(even){ background:var(--brand-lighter); }
.info-column1 table tr:last-child td{ border-bottom:none; }
.info-column1 p:last-of-type{
  margin:0 32px 26px; background:#fff8e6; border-left:4px solid #e8a900;
  padding:14px 18px; border-radius:6px; font-size:14px; color:#6b5a12;
}


/* ===== det2 → 编辑器3 方案匹配：竖向编号流程 ===== */
.editor-module1{ position:relative; counter-reset: step; }
.editor-module1 h4{ padding-left:14px; font-size:19px;line-height: 1.8; margin-bottom: 20px; font-weight: bold; border-left:4px solid var(--brand); }
.editor-module1 p{ position:relative; padding:2px 0 18px 46px; margin-bottom:0; line-height:2; font-size:16px; }
.editor-module1 p:not(:last-child)::after{
  content:""; position:absolute; left:15px; top:32px; bottom:-6px; width:2px; background:var(--brand-light);
}
.editor-module1 p::before{
  counter-increment: step; content: counter(step);
  position:absolute; left:0; top:0; width:32px; height:32px; border-radius:50%;
  background:var(--brand); color:#fff; font-weight:700; font-size:14px;
  display:flex; align-items:center; justify-content:center; box-shadow:0 4px 10px rgba(2,77,160,0.3);
}

/* ===== det3 → 编辑器4 品控认证：打勾清单（主内容区第3个section）===== */
.main-content-column > section:nth-of-type(3) h4{ display:flex; align-items:center; gap:8px; }
.main-content-column > section:nth-of-type(3) h4::before{
  content:"✓"; background:var(--brand); color:#fff; width:26px;height:26px;border-radius:6px;
  display:inline-flex;align-items:center;justify-content:center; font-size:15px;
}
.main-content-column > section:nth-of-type(3) p{
  position:relative; padding:14px 18px 14px 42px; background:var(--brand-lighter); border-radius:8px; margin-bottom:12px;
}
.main-content-column > section:nth-of-type(3) p::before{position:absolute; left:14px; top:14px; color:var(--brand); font-weight:900;
}

/* ===== det7 → 编辑器7 工厂实力：深色数据展示块 ===== */
.fsffwefwg{
  background: var(--brand-dark); color:#eef4fb; border-radius:12px; padding:34px 36px;
  background-image: radial-gradient(circle at 90% 10%, rgba(255,255,255,0.06), transparent 45%);
}
.fsffwefwg h4{ color:#ffffff; font-size:20px; margin-bottom:18px; }
.fsffwefwg h4::after{ content:""; display:block; width:52px; height:3px; background:#5fa2e8; margin-top:10px; border-radius:2px; }
.fsffwefwg p{ color:#cfe0f4; font-size:16px; line-height:2; }
.fsffwefwg b{ color:#ffffff; background:rgba(255,255,255,0.12); padding:2px 8px; border-radius:5px; font-weight:700; }

/* ===== det8 → 编辑器8 FAQ：编号问答卡片 ===== */
.faqfdfdf{ counter-reset: faq; }
.faqfdfdf h4{ border-left:4px solid var(--brand); font-size:19px; line-height: 1.8; padding-left:14px; }
.faqfdfdf p{
  counter-increment: faq; position:relative; background:#fff; border:1px solid var(--border-soft);
  border-radius:10px; padding:16px 20px 16px 58px; margin-bottom:14px; font-size:16px; line-height:2; box-shadow:0 4px 12px rgba(2,44,92,0.05);
}
.faqfdfdf p::before{
  content: "Q" counter(faq); position:absolute; left:14px; top:16px; background:var(--brand); color:#fff;
  font-size:12px; font-weight:700; padding:4px 8px; border-radius:6px;
}
.faqfdfdf p b{ color:var(--brand-dark); }

/* ===== det4 → 编辑器5 售后服务：侧栏高亮卡（浅蓝底）===== */
.editor-module-service.editor-module{ background:var(--brand-light); border:none; }
.editor-module-service h4{ display:flex; align-items:center; gap:8px; color:var(--brand-dark); }
.editor-module-service h4::before{font-size:19px; }
.editor-module-service p{ font-size:16px; color:#2c4560; }
.editor-module-service::after{
  content:"1 Business Day Response"; display:inline-block; margin-top:6px; background:var(--brand);
  color:#fff; font-size:12px; font-weight:700; padding:6px 12px; border-radius:20px;
}

/* ===== det5 → 编辑器6 交期产能：侧栏虚线分隔小卡 ===== */
.editor-module-edsxc{
  background:#ffffff; border:1px solid var(--border-soft); border-radius:12px; padding:26px 26px 22px;
  box-shadow:0 10px 28px rgba(2,44,92,0.06);
}
.editor-module-edsxc h4{ margin:0 0 6px; font-size:19px; color:var(--brand-dark); }
.editor-module-edsxc::before{
  content:"⏱ LEAD TIME & CAPACITY"; display:block; font-size:19px; letter-spacing:1.5px;
  color:var(--brand); font-weight:700; margin-bottom:10px;
}
.editor-module-edsxc p{
  font-size:16px; line-height:2; padding-bottom:12px; border-bottom:1px dashed var(--border-soft); margin-bottom:12px;
}
.editor-module-edsxc p:last-child{ border-bottom:none; margin-bottom:0; padding-bottom:0; }

/* ===== det6 → 编辑器9 价格报价：CTA渐变卡 ===== */
.edscfgk{
  background:linear-gradient(160deg,var(--brand) 0%, var(--brand-dark) 100%); color:#fff;
  border-radius:12px; padding:26px 26px; position:relative; overflow:hidden;
}
.edscfgk::before{
  content:"GET A QUOTE"; display:inline-block; background:rgba(255,255,255,0.15); font-size:11px;
  letter-spacing:1.5px; font-weight:700; padding:5px 10px; border-radius:5px; margin-bottom:12px;
}
.edscfgk h4{ color:#fff; margin:0 0 10px; font-size:19px; }
.edscfgk p{ color:#dce8f7; font-size:16px; line-height:2; }
.edscfgk b{ color:#fff; background:rgba(255,255,255,0.18); padding:1px 6px; border-radius:4px; }

/* ===== det9 → 编辑器10 客户/地区：标签云侧栏 ===== */
.rdfcvgk{ background:#ffffff; border:1px solid var(--border-soft); border-radius:12px; padding:24px 26px; }
.rdfcvgk h4{ font-size:17px; color:var(--brand-dark); margin-bottom:10px; }
.rdfcvgk p{ font-size:13.5px; line-height:1.75; color:#3d4b58; }
.rdfcvgk b{
  display:inline-block; background:var(--brand-light); color:var(--brand-dark);
  padding:2px 9px; border-radius:20px; font-size:12.5px; font-weight:700; margin:2px 2px 2px 0;
}       


:root{
  --brand:#024da0;
  --brand-dark:#013a78;
  --brand-light:#e8f1fb;
}

.more-info{
  margin-top:40px;
  margin:0 auto;
  background:#ffffff;
  border:1px solid #e1e8f0;
  border-radius:14px;
  padding:32px 36px 34px;
  box-shadow:0 12px 30px rgba(2,44,92,0.08);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
}

.vfdvdgdfg{
  flex-basis:100%;
  margin:0 0 20px;
  font-size:21px;
  font-weight:800;
  color:var(--brand-dark);
  position:relative;
  padding-left:16px;
  display:flex;
  align-items:center;
  gap:8px;
}
.vfdvdgdfg::before{
  content:"";
  position:absolute;
  left:0; top:2px; bottom:2px;
  width:5px;
  border-radius:3px;
  background:linear-gradient(180deg,var(--brand),var(--brand-dark));
}
.vfdvdgdfg::after{
 
  font-size:16px;
  opacity:0.7;
}

.more-info a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:var(--brand-light);
  color:var(--brand-dark);
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  padding:9px 18px;
  border-radius:999px;
  border:1px solid transparent;
  transition: all 0.22s ease;
  white-space:nowrap;
}
.more-info a::before{
  content:"#";
  color:var(--brand);
  font-weight:800;
  opacity:0.85;
}
.more-info a:hover{
  background:var(--brand);
  color:#ffffff;
  border-color:var(--brand-dark);
  transform:translateY(-2px);
  box-shadow:0 8px 16px rgba(2,77,160,0.28);
}
.more-info a:hover::before{
  color:#ffffff;
}
.more-info a:active{
  transform:translateY(0);
  box-shadow:none;
}

@media (max-width:640px){
  .more-info{ padding:24px 20px 26px; gap:10px; }
  .vfdvdgdfg{ font-size:18px; }
  .more-info a{ font-size:13px; padding:8px 14px; }
}