/* =========================================================
   Highsea 内页信息页 - 高档风格样式表
   ========================================================= */

:root {
    --primary-color: #0b2a4a;
    --primary-light: #14406e;
    --secondary-color: #2b97d2;
    --secondary-dark: #1f7cb0;
    --accent-color: #2b97d2;
    --light-bg: #f7f8fa;
    --card-bg: #ffffff;
    --text-color: #2c3e50;
    --text-muted: #6b7a8d;
    --soft-border: #e8eaee;
    --shadow-sm: 0 2px 8px rgba(11, 42, 74, 0.06);
    --shadow-md: 0 8px 24px rgba(11, 42, 74, 0.08);
    --shadow-lg: 0 16px 40px rgba(11, 42, 74, 0.12);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

body {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

/* ---------- 全局 H 标签 ---------- */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
    line-height: 1.25;
}
h1 { font-size: 42px; line-height: 1.2; }
h2 { font-size: 36px; line-height: 1.2; }
h3 { font-size: 28px; line-height: 1.2; }
h4 { font-size: 24px; line-height: 1.2; }
h5 { font-size: 20px; line-height: 1.4; }
h6 { font-size: 18px; line-height: 1.6; }

p { font-size: 14px; line-height: 1.8; margin: 0 0 14px; color: var(--text-color); }

/* ---------- 智能链接：默认继承父级颜色 ---------- */
.about-wrap1 .right a,
.editor-module a,
.editor-module1 a,
.editor-module-service a,
.editor-module-faq a,
.editor-content-1 a,
.more-info a,
.smart-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .3s, border-color .3s;
}
.about-wrap1 .right a:hover,
.editor-module a:hover,
.editor-module1 a:hover,
.editor-module-service a:hover,
.editor-module-faq a:hover,
.editor-content-1 a:hover,
.smart-link:hover {
    color: #2b97d2;
    border-bottom-color: #2b97d2;
}

/* 白底容器：链接自动黑字 */
.on-light,
.on-light a,
.on-light .smart-link { color: #1a1a1a; }
.on-light a:hover { color: #2b97d2; }

/* 深底容器：链接自动白字 */
.on-dark,
.on-dark a,
.on-dark .smart-link { color: #ffffff; }
.on-dark a:hover { color: #2b97d2; }

/* ---------- 容器 ---------- */
.tag-page-container {
    max-width: 1430px;
    margin: 0 auto;
    padding: 30px 30px 80px;
    background-color: var(--light-bg);
}

/* =========================================================
   Hero 区
   ========================================================= */
.tag-hero-section {
    padding: 50px 0 40px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}
.tag-hero-section::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-dark));
    margin: 30px auto 0;
    border-radius: 2px;
}
.tag-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    text-align: center;
}
.tag-hero-section .hero-section-p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: var(--secondary-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.editor-content-1 {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    padding: 28px 32px;
    background: linear-gradient(135deg, #f0f4f9 0%, #e8eef6 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary-color);
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    box-shadow: var(--shadow-sm);
}
.editor-content-1 p { font-size: 16px; line-height: 1.6; color: #4a5568; }
.editor-content-1 strong { color: var(--primary-color); font-weight: 700; }

/* =========================================================
   产品列表
   ========================================================= */
.all-product-list {
    list-style: none;
    padding: 0;
    margin: 0 0 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.all-product-list > li {
    width: calc((100% - 60px) / 3);
    min-width: 260px;
    flex: 1 1 260px;
}
.all-product-list .box {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--soft-border);
}
.all-product-list .box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}
.all-product-list .img-box {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0f2f5;
}
.all-product-list .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.all-product-list .box:hover .img-box img { transform: scale(1.06); }
.all-product-list .title {
    display: block;
    padding: 18px 20px 8px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}
.all-product-list .title:hover { color: var(--secondary-dark); }
.all-product-list .category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 8px 20px 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    transition: var(--transition);
}
.all-product-list .category-btn:hover { background: var(--secondary-color); transform: translateX(4px); }
.all-product-list .category-btn img { width: 14px; filter: brightness(0) invert(1); }

/* =========================================================
   内容矩阵
   ========================================================= */
.content-matrix {
    display: grid;
    gap: 40px;
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
}
.main-content-column,
.sidebar-content-column { min-width: 0; }

/* ---------- 通用 editor 模块 ---------- */
.editor-module {
    background-color: var(--card-bg);
    padding: 32px 36px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--soft-border);
    transition: var(--transition);
    font-size: 14px;
    line-height: 1.8;
}
.editor-module:hover { box-shadow: var(--shadow-md); }

.editor-module h2 {
    font-size: 28px;
    line-height: 1.2;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 12px;
    margin-bottom: 24px;
    font-weight: 700;
}
.editor-module h3,
.editor-module h4 {
    font-size: 24px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}
.editor-module h3::after,
.editor-module h4::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}
.editor-module h5 { font-size: 20px; line-height: 1.4; color: var(--primary-color); }
.editor-module h6 { font-size: 18px; line-height: 1.6; color: var(--primary-color); }
.editor-module p { font-size: 14px; line-height: 1.8; color: #4a5568; margin-bottom: 14px; }

.editor-module ul { list-style: none; padding-left: 0; margin: 0 0 16px; }
.editor-module li {
    padding: 8px 0 8px 26px;
    border-bottom: 1px dashed var(--soft-border);
    position: relative;
    font-size: 14px;
    line-height: 1.8;
    color: #4a5568;
}
.editor-module li:last-child { border-bottom: none; }
.editor-module li::before {
    content: '✓';
    color: var(--secondary-dark);
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 14px;
    line-height: 1.8;
}

/* ---------- det1 表格 ---------- */
.info-column1 table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
    line-height: 1.8;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.info-column1 table th,
.info-column1 table td {
    padding: 12px 16px;
    border: 1px solid var(--soft-border);
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    vertical-align: top;
}
.info-column1 table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}
.info-column1 table tbody tr:nth-child(even) { background: #fafbfc; }
.info-column1 table tbody tr:hover { background: #f0f4f9; }
.info-column1 table tbody tr td:first-of-type { font-weight: 700; color: var(--primary-color); }

/* ---------- det2 ---------- */
.editor-module1 {
    margin: 30px 0;
    padding: 32px 36px;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--soft-border);
    font-size: 14px;
    line-height: 1.8;
}
.editor-module1 h3,
.editor-module1 h4 {
    text-align: center;
    font-size: 24px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}
.editor-module1 h3::after,
.editor-module1 h4::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}
.editor-module1 h5 { font-size: 20px; line-height: 1.4; color: var(--primary-color); }
.editor-module1 h6 { font-size: 18px; line-height: 1.6; color: var(--primary-color); }
.editor-module1 p { font-size: 14px; line-height: 1.8; color: #4a5568; margin-bottom: 14px; }
.editor-module1 ul { list-style: none; padding: 0; margin: 0 0 16px; }
.editor-module1 li {
    padding: 8px 0 8px 26px;
    position: relative;
    font-size: 14px;
    line-height: 1.8;
    color: #4a5568;
    border-bottom: 1px dashed var(--soft-border);
}
.editor-module1 li:last-child { border-bottom: none; }
.editor-module1 li::before {
    content: '◆';
    color: var(--secondary-color);
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 9px;
    line-height: 1.8;
}

/* ---------- jinfeng-ul-1 ---------- */
.jinfeng-ul-1 {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.jinfeng-ul-1 li {
    flex: 1 1 auto;
    min-width: 200px;
    background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
    border: 1px solid var(--soft-border);
    border-radius: var(--radius);
    padding: 22px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1.8;
}
.jinfeng-ul-1 li:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}
.jinfeng-ul-1 li::before {
    content: '⭐';
    font-size: 28px;
    margin-right: 12px;
    line-height: 1;
}
.jinfeng-ul-1 li span { font-size: 16px; line-height: 1.6; color: var(--primary-color); font-weight: 600; }

/* ---------- det4 服务模块 ---------- */
.editor-module-service h3 {
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary-color);
    font-weight: 700;
    text-align: left;
}
.editor-module-service h3::after { display: none; }
.editor-module-service h4 { font-size: 20px; line-height: 1.4; color: var(--primary-color); }
.editor-module-service h5 { font-size: 18px; line-height: 1.6; color: var(--primary-color); }
.editor-module-service h6 { font-size: 16px; line-height: 1.6; color: var(--primary-color); }
.editor-module-service p { font-size: 14px; line-height: 1.8; color: #4a5568; }
.editor-module-service ul { list-style: none; padding: 0; }
.editor-module-service li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    line-height: 1.8;
    color: #4a5568;
    border-bottom: 1px dashed var(--soft-border);
}
.editor-module-service li:last-child { border-bottom: none; }
.editor-module-service li::before {
    content: '›';
    color: var(--secondary-dark);
    font-weight: 700;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 4px;
    line-height: 1.8;
}

/* ---------- det5 FAQ ---------- */
.editor-module-faq {
    background: var(--card-bg);
    padding: 28px 30px;
    border: 1px solid var(--soft-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.8;
}
.editor-module-faq h3 {
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary-color);
    font-weight: 700;
    text-align: left;
}
.editor-module-faq h4 {
    color: var(--primary-color);
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
    text-align: center;
}
.editor-module-faq h5 { font-size: 20px; line-height: 1.4; color: var(--primary-color); }
.editor-module-faq h6 { font-size: 18px; line-height: 1.6; color: var(--primary-color); }
.editor-module-faq p { font-size: 14px; line-height: 1.8; color: #4a5568; margin-bottom: 12px; }
.editor-module-faq ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid var(--soft-border);
    border-radius: var(--radius);
    overflow: hidden;
}
.editor-module-faq li {
    padding: 16px 18px;
    transition: var(--transition);
    font-size: 14px;
    line-height: 1.8;
    color: #4a5568;
}
.editor-module-faq li:first-child {
    font-weight: 600;
    cursor: pointer;
    background: #f7f9fc;
    color: var(--primary-color);
    border-bottom: 1px solid var(--soft-border);
    position: relative;
    padding-right: 50px;
}
.editor-module-faq li:first-child:hover { background: #eef3f9; }
.editor-module-faq li:first-child::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 300;
    color: var(--secondary-dark);
    transition: var(--transition);
    line-height: 1;
}
.editor-module-faq li:first-child.expanded::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}
.editor-module-faq li:last-child {
    background: #ffffff;
    color: #555;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.45s ease, opacity 0.35s ease;
}
.editor-module-faq li:last-child.active {
    max-height: 600px;
    padding: 16px 18px;
    opacity: 1;
}

/* =========================================================
   more-info
   ========================================================= */
.more-info {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--soft-border);
    box-shadow: var(--shadow-sm);
    padding: 28px 32px;
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.8;
}
.more-info h2 { font-size: 24px; line-height: 1.2; color: var(--primary-color); margin-bottom: 14px; }
.more-info h3 { font-size: 20px; line-height: 1.4; color: var(--primary-color); }
.more-info h4 { font-size: 18px; line-height: 1.6; color: var(--primary-color); }
.more-info p { font-size: 14px; line-height: 1.8; color: var(--text-muted); margin-bottom: 16px; }
.more-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.more-info li { margin: 0; padding: 0; font-size: 14px; line-height: 1.8; }
.more-info a {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color);
    background: #f0f4f9;
    border: 1px solid var(--soft-border);
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
}
.more-info a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

/* =========================================================
   公司介绍文字优化
   ========================================================= */
.about-wrap1 {
    background: linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
    border-radius: var(--radius-lg);
    padding: 60px 0;
    margin-top: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--soft-border);
}
.about-wrap1 .left .public-title {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-color);
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.about-wrap1 .right {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    letter-spacing: 0.2px;
}
.about-wrap1 .right p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 18px;
    text-align: justify;
}
.about-wrap1 .right a {
    color: inherit;
    border-bottom: 1px solid transparent;
    transition: color .3s, border-color .3s;
}
.about-wrap1 .right a:hover {
    color: #2b97d2;
    border-bottom-color: #2b97d2;
}

/* =========================================================
   数据统计条
   ========================================================= */
.about-wrap2-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.about-wrap2-list > li {
    flex: 1 1 220px;
    min-width: 200px;
}
.about-wrap2-list .box {
    position: relative;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 36px 24px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--soft-border);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.about-wrap2-list .box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}
.about-wrap2-list .cover {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    z-index: 0;
    transition: opacity .4s;
}
.about-wrap2-list .box:hover .cover { opacity: 0.12; }
.about-wrap2-list .icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eaf4fc 0%, #d7ebf9 100%);
    border-radius: 50%;
    transition: var(--transition);
}
.about-wrap2-list .box:hover .icon {
    background: linear-gradient(135deg, #2b97d2 0%, #1f7cb0 100%);
    transform: scale(1.08);
}
.about-wrap2-list .icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: var(--transition);
}
.about-wrap2-list .box:hover .icon img { filter: brightness(0) invert(1); }
.about-wrap2-list .number {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 800;
}
.about-wrap2-list .number em {
    font-style: normal;
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary-color);
    letter-spacing: -1px;
}
.about-wrap2-list .number span {
    font-size: 18px;
    line-height: 1.6;
    color: var(--secondary-dark);
    font-weight: 700;
}
.about-wrap2-list .title {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* =========================================================
   响应式
   ========================================================= */
@media (max-width: 1100px) {
    .all-product-list > li { width: calc((100% - 30px) / 2); }
    .content-matrix { grid-template-columns: 1fr; gap: 30px; }
    .about-wrap1 .left .public-title { font-size: 48px; }
}

@media (max-width: 900px) {
    .tag-page-container { padding: 20px 18px 60px; }
    .tag-title { font-size: 28px; line-height: 1.2; }
    .tag-hero-section .hero-section-p { font-size: 14px; line-height: 1.8; }
    .editor-content-1 { padding: 20px 22px; font-size: 14px; line-height: 1.8; }
    .editor-content-1 p { font-size: 14px; line-height: 1.8; }

    .editor-module,
    .editor-module1,
    .editor-module-faq,
    .editor-module-service { padding: 22px 20px; }

    h1 { font-size: 28px; line-height: 1.2; }
    h2 { font-size: 24px; line-height: 1.2; }
    h3 { font-size: 22px; line-height: 1.2; }
    h4 { font-size: 20px; line-height: 1.4; }
    h5 { font-size: 18px; line-height: 1.6; }
    h6 { font-size: 16px; line-height: 1.6; }

    .editor-module h2, .editor-module1 h2 { font-size: 24px; line-height: 1.2; }
    .editor-module h3, .editor-module h4,
    .editor-module1 h3, .editor-module1 h4 { font-size: 22px; line-height: 1.2; }
    .editor-module p, .editor-module li,
    .editor-module1 p, .editor-module1 li { font-size: 14px; line-height: 1.8; }

    .about-wrap1 { padding: 40px 20px; }
    .about-wrap1 .left .public-title { font-size: 36px; line-height: 1.2; }
    .about-wrap1 .right p { font-size: 14px; line-height: 1.8; }

    .about-wrap2-list { gap: 16px; }
    .about-wrap2-list .number em { font-size: 32px; line-height: 1.2; }
    .about-wrap2-list .number span { font-size: 16px; line-height: 1.6; }
    .about-wrap2-list .title { font-size: 14px; line-height: 1.8; }
}

@media (max-width: 768px) {
    .all-product-list { gap: 20px; }
    .all-product-list > li { width: 100%; flex: 1 1 100%; }

    .jinfeng-ul-1 { flex-direction: column; gap: 14px; }
    .jinfeng-ul-1 li { width: 100%; min-width: unset; justify-content: flex-start; padding: 16px; }
    .jinfeng-ul-1 li span { font-size: 14px; line-height: 1.8; }

    .info-column1 table th,
    .info-column1 table td { padding: 10px 12px; font-size: 13px; line-height: 1.8; }

    .more-info { padding: 20px 18px; }

    .about-wrap2-list > li { flex: 1 1 100%; }
}
/* ===== GET IN TOUCH 板块高度压缩 ===== */
.contact-page .contact-information {
    padding-top: 40px !important;
    padding-bottom: 20px !important;
}
.contact-page .contact-information.pt-100 {
    padding-top: 40px !important;
}
.contact-page .contact-information .ui.container {
    align-items: flex-start;
}
.contact-page .contact-information .left .public-title {
    margin-bottom: 12px;
}
.contact-page .contact-information .left .intro {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.7;
}
.contact-page .contact-information .qr {
    margin-top: 6px;
}
.contact-page .contact-information .qr li {
    line-height: 0;
}
.contact-page .contact-information .qr #ewm1,
.contact-page .contact-information .qr canvas,
.contact-page .contact-information .qr img {
    width: 130px !important;
    height: 130px !important;
    display: block;
}
.contact-page .contact-information .information-list li {
    padding: 14px 0;
}
.contact-page .contact-information .information-list li .title {
    margin-bottom: 4px;
}
/* =========================================================
   证书板块
   ========================================================= */
.cert-section {
    margin: 60px 0 40px;
    padding: 50px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--soft-border);
    box-shadow: var(--shadow-sm);
}
.cert-head {
    text-align: center;
    margin-bottom: 40px;
}
.cert-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}
.cert-sub {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    letter-spacing: 0.5px;
}
.cert-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
}
.cert-item {
    flex: 0 1 260px;
    max-width: 280px;
}
.cert-item a {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--soft-border);
    box-shadow: var(--shadow-sm);
    padding: 18px;
    transition: var(--transition);
    text-align: center;
}
.cert-item a:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}
.cert-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 6px;
    background: #f7f9fc;
    margin-bottom: 14px;
}
.cert-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.cert-item a:hover .cert-img img {
    transform: scale(1.05);
}
.cert-name {
    font-size: 14px;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.3px;
}
.cert-more {
    text-align: center;
    margin-top: 36px;
}
.cert-more-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary-color);
    color: #fff !important;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
}
.cert-more-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* 响应式 */
@media (max-width: 900px) {
    .cert-section { padding: 36px 18px; margin: 40px 0 30px; }
    .cert-title { font-size: 26px; line-height: 1.2; }
    .cert-sub { font-size: 14px; line-height: 1.8; }
    .cert-list { gap: 18px; }
    .cert-item { flex: 1 1 45%; max-width: none; }
}
@media (max-width: 500px) {
    .cert-item { flex: 1 1 100%; }
}
/* =========================================================
   Related Products 相关产品（蓝色主题 #2b97d2）
   ========================================================= */
.related-products-section {
    margin: 60px 0 40px;
    padding: 50px 0;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--soft-border);
    box-shadow: var(--shadow-sm);
}
.rp-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 36px;
}
.rp-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
    white-space: nowrap;
}
.rp-line {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: #2b97d2;      /* 主题蓝 */
    border-radius: 2px;
}

.rp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.rp-item { min-width: 0; }

.rp-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fbfbfd;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all .35s cubic-bezier(.22,.61,.36,1);
    border: 1px solid #eef0f3;
}
.rp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(11,42,74,.12);
    border-color: #2b97d2;    /* 悬停边框变蓝 */
}

.rp-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0f2f5;
}
.rp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.rp-card:hover .rp-img img { transform: scale(1.05); }

.rp-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.rp-name {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}
.rp-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #6b7a8d;
    margin: 0 0 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rp-view {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 600;
    color: #2b97d2;           /* View Product → 蓝色 */
    letter-spacing: .3px;
    transition: color .3s;
}
.rp-card:hover .rp-view { color: #1f7cb0; }

.rp-more { text-align: center; }
.rp-more-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #1a1a1a;
    color: #fff !important;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: .5px;
    transition: all .35s;
}
.rp-more-btn:hover {
    background: #2b97d2;      /* 按钮悬停蓝 */
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(43,151,210,.35);
}

/* 响应式 */
@media (max-width: 1100px) {
    .rp-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .related-products-section { padding: 30px 18px; margin: 40px 0 30px; }
    .rp-title { font-size: 26px; line-height: 1.2; }
    .rp-line { width: 40px; height: 2px; }
    .rp-list { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .rp-name { font-size: 15px; line-height: 1.6; }
    .rp-desc { font-size: 13px; line-height: 1.8; }
}
@media (max-width: 500px) {
    .rp-list { grid-template-columns: 1fr; }
    .rp-more-btn { padding: 12px 28px; font-size: 14px; }
}
/* =========================================================
   Related Products（fuzzy_search 版，蓝色主题 #2b97d2）
   ========================================================= */
.related-products-wrapper {
    margin: 60px 0 40px;
    padding: 50px 0;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--soft-border);
    box-shadow: var(--shadow-sm);
}
.related-products-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 36px;
    padding: 0 30px;
}
.related-products-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
    white-space: nowrap;
}
.related-products-line {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: #2b97d2;
    border-radius: 2px;
}
.related-products-grid {
    list-style: none;
    padding: 0 30px;
    margin: 0 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.related-products-item { min-width: 0; }
.related-products-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fbfbfd;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all .35s cubic-bezier(.22,.61,.36,1);
    border: 1px solid #eef0f3;
}
.related-products-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(11,42,74,.12);
    border-color: #2b97d2;
}
.related-products-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0f2f5;
}
.related-products-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.related-products-link:hover .related-products-image img { transform: scale(1.05); }
.related-products-content {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.related-products-name {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}
.related-products-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #6b7a8d;
    margin: 0 0 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-products-btn {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 600;
    color: #2b97d2;
    letter-spacing: .3px;
    transition: color .3s;
}
.related-products-link:hover .related-products-btn { color: #1f7cb0; }

.related-products-footer { text-align: center; }
.related-products-viewall {
    display: inline-block;
    padding: 14px 40px;
    background: #1a1a1a;
    color: #fff !important;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: .5px;
    transition: all .35s;
}
.related-products-viewall:hover {
    background: #2b97d2;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(43,151,210,.35);
}
.related-products-empty {
    text-align: center;
    color: #6b7a8d;
    font-size: 14px;
    line-height: 1.8;
    padding: 20px 0;
}

/* 响应式 */
@media (max-width: 1100px) {
    .related-products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .related-products-wrapper { padding: 30px 0; margin: 40px 0 30px; }
    .related-products-header { padding: 0 18px; }
    .related-products-title { font-size: 26px; line-height: 1.2; }
    .related-products-line { width: 40px; height: 2px; }
    .related-products-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 0 18px; }
    .related-products-name { font-size: 15px; line-height: 1.6; }
    .related-products-desc { font-size: 13px; line-height: 1.8; }
}
@media (max-width: 500px) {
    .related-products-grid { grid-template-columns: 1fr; }
    .related-products-viewall { padding: 12px 28px; font-size: 14px; }
}