/*
Theme Name: μInsight Tech
Author: ModinaTheme
Author URI: https://themeforest.net/user/modinatheme/
Description: IT Solution & Technology HTML Template
Version: 1.0.0
*/

/*
=================================
|***    Table of contents:   ***|
=================================

Main Style file-> assets/css/main.css 

All the SCSS File in SCSS Folder of Assets Folder. You can read the doc file also for better understand.

// BASIC
@import 'basic';

// MIXIN
@import 'variables';

// TYPOGRAPHY
@import 'typography';

// MIX
@import 'mix';

// HELPER
@import 'helper';

// ICON FONTS
@import 'icon';

// ANIMATION
@import 'animation';

// Button 
@import 'btn';

// Colors 
@import 'colors';

// Preloader 
@import 'preloader';

/* ----------------------------------
    Template Section Styles
 ------------------------------------*/

 /* // Menu - Header Section 
 @import 'header';
 
 // Hero Slide - Section 
 @import 'hero';
 
 // Section Title - Heading 
 @import 'section';
 
 // About - Section 
 @import 'about';
 
 // Features - Section 
 @import 'features';
 
 // services - Section 
 @import 'services';
 
 // testimonial - Section 
 @import 'testimonial';
 
 // Portfolio - Cases - Section 
 @import 'project';
 
 // Price Table - Section 
 @import 'price';
 
 // Call To Action - Section 
 @import 'cta';
 
 // Content Block - Section 
 @import 'contentblock';
 
 // team - Section 
 @import 'team';
 
 // funfact - Section 
 @import 'funfact';
 
 // Download - Section 
 @import 'carousel';
 
 // FAQ - Section 
 @import 'faq';
 
 // Blog - Section 
 @import 'blog';
 
 // Contact Us - Section 
 @import 'contact';
 
 // footer - Section 
 @import 'footer';n facts */

/*
 * ============================================================
 * 【内容图完整展示规范 — 2026-07 改动】
 * 需求：整图可见、等比例、适配父容器、不足居中留白、禁止裁切
 * 逻辑：
 *  1. 外层盒子：固定可视区 + flex 居中 + 浅色底作留白
 *  2. img：max-width/max-height:100% + object-fit:contain + object-position:center
 *  3. 禁止对内容图使用 object-fit:cover（会裁切边缘）
 *  例外：真正的全屏背景（hero / breadcrumb / cta）仍可用 background-size:cover
 * ============================================================
 */

/* 数之微 - 内容图默认：完整可见（不再默认 cover 裁切） */
.szw-img-slot {
    background-color: #eef2f6;
    object-fit: contain; /* 【改动】cover → contain，禁止裁切内容 */
    object-position: center center;
}

/* 通用内容图外层盒子（可复用到任意区） */
.szw-media-box {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, #f4f7fa 0%, #eef2f6 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    overflow: hidden; /* 仅裁圆角外轮廓，不裁图片内容（contain 保证内容在盒内） */
}

.szw-media-box > img,
.szw-media-box .szw-img-slot,
.szw-media-box .szw-case-infographic {
    display: block;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    background: transparent;
}

/* 背景图统一裁切（参考企业官网 hero 区最佳实践） */
.breadcrumb-wrapper.bg-cover,
.hero-section .slide-bg,
.cta-banner-section.bg-cover,
.service-image.bg-cover,
.news-image.bg-cover,
.about-image.bg-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/*
 * 【改动】客户信任区：左右分栏（不再用 50vw 负边距，避免蓝栏被 body overflow-x 裁掉）
 *
 * 结构：.szw-trusted-split > [.szw-trusted-visual | .szw-trusted-copy]
 * - 左侧大框贴页面左缘，占约一半宽度（对应红框）
 * - 蓝栏在框内最左，始终可见
 * - 配图随框变大，contain 铺满右侧区域
 */
.trusted-client-section {
    overflow: visible;
}

.szw-trusted-split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(28px, 3.5vw, 56px);
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
    /* 左侧贴齐页面，右侧留边给文案 */
    padding: 0 clamp(20px, 3vw, 48px) 0 0;
    box-sizing: border-box;
}

.szw-trusted-copy {
    min-width: 0;
    padding-right: 8px;
}

/* 右侧文案恢复主题原样式（依赖 .trusted-client-wrapper） */
.szw-trusted-split.trusted-client-wrapper .trusted-content {
    margin-left: 40px;
}

@media (max-width: 1199px) {
    .szw-trusted-split.trusted-client-wrapper .trusted-content {
        margin-left: 0;
    }
}

/* 左侧外框：占满左列，高度加大，图片区随之变大 */
.szw-trusted-split .trusted-client-image.szw-trusted-visual {
    position: relative;
    box-sizing: border-box;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    height: clamp(420px, 52vw, 640px) !important;
    min-height: 420px;
    padding: 0;
    border: 1px solid #e2e8f0;
    border-left: none;
    border-radius: 0 12px 12px 0;
    overflow: hidden;
    background: #eef2f6;
    display: flex !important;
    flex-direction: row;
    align-items: stretch;
}

.szw-trusted-split .szw-trusted-visual .counter-main-area {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    flex: 0 0 150px;
    width: 150px !important;
    min-width: 150px;
    height: auto !important;
    align-self: stretch;
    padding: 0 !important;
    margin: 0 !important;
    transform: none !important;
    -webkit-transform: none !important;
    z-index: 1;
    overflow: visible;
    box-sizing: border-box;
}

.szw-trusted-split .szw-trusted-visual .counter-main-area .counter-area {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: stretch !important;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 36px 14px !important;
    box-sizing: border-box;
    background-color: var(--theme, #086ad8);
}

.szw-trusted-split .szw-trusted-visual .counter-main-area .counter-area .counter-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 26px 0;
    gap: 12px;
    box-sizing: border-box;
}

.szw-trusted-split .szw-trusted-visual .counter-main-area .counter-area .counter-items:not(:last-child) {
    border-right: none !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.28);
    padding-bottom: 26px;
    /* 【改动】覆盖主题 padding-right:90px，避免「服务企业」被挤向左侧 */
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.szw-trusted-split .szw-trusted-visual .counter-main-area .counter-area .counter-items h2,
.szw-trusted-split .szw-trusted-visual .counter-main-area .counter-area .counter-items h3 {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}

.szw-trusted-split .szw-trusted-visual .counter-main-area .counter-area .counter-items h2 {
    font-size: 36px !important;
    line-height: 1.15 !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    -webkit-text-stroke-width: 0 !important;
    white-space: nowrap;
}

.szw-trusted-split .szw-trusted-visual .counter-main-area .counter-area .counter-items h3 {
    font-size: 18px !important;
    font-weight: 600;
    line-height: 1.35 !important;
    color: #fff !important;
    writing-mode: horizontal-tb !important;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

/* 配图区随外框变大而变大 */
.szw-trusted-split .szw-trusted-visual__media {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 12px 16px;
    background: #eef2f6;
}

.szw-trusted-split .szw-trusted-visual__img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    pointer-events: none;
}

.szw-trusted-split .szw-trusted-visual .icon-box {
    display: none !important;
}

@media (max-width: 1199px) {
    .szw-trusted-split {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 28px;
    }

    .szw-trusted-split .trusted-client-image.szw-trusted-visual {
        height: 400px !important;
        min-height: 400px;
        border-left: 1px solid #e2e8f0;
        border-radius: 12px;
    }
}

@media (max-width: 767px) {
    .szw-trusted-split .trusted-client-image.szw-trusted-visual {
        flex-direction: column;
        height: auto !important;
        min-height: 0;
    }

    .szw-trusted-split .szw-trusted-visual .counter-main-area {
        flex: none;
        width: 100% !important;
        min-width: 0;
        order: 2;
    }

    .szw-trusted-split .szw-trusted-visual__media {
        order: 1;
        height: 260px;
        flex: none;
    }

    .szw-trusted-split .szw-trusted-visual .counter-main-area .counter-area {
        flex-direction: row !important;
        justify-content: space-around !important;
        padding: 18px 20px !important;
    }

    .szw-trusted-split .szw-trusted-visual .counter-main-area .counter-area .counter-items:not(:last-child) {
        border-bottom: none !important;
        border-right: 2px solid rgba(255, 255, 255, 0.28) !important;
        padding: 0 16px 0 0;
    }
}

.about-image.szw-img-slot,
.contact-image.szw-img-slot,
.slide-bg.szw-img-slot {
    min-height: 320px;
}

/*
 * 【改动】案例/详情内容图：取消 cover + 强制宽高撑满导致的裁切
 * 原问题：aspect-ratio + object-fit:cover 会吃掉画面边缘
 * 新逻辑：由外层盒子定高，图片 contain 完整落入
 */
.project-image .szw-img-slot,
.details-image:not(.szw-solution-media) .szw-img-slot {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    min-height: 0;
    aspect-ratio: unset;
    object-fit: contain;
    object-position: center center;
}

/* 案例详情：非画廊单图（陆家嘴/延长等）同样走完整展示 */
.project-details-wrapper .project-details-image > .details-image,
.project-details-wrapper .project-details-image > .szw-case-detail-media {
    box-sizing: border-box;
    width: 100%;
    height: 400px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f4f7fa 0%, #eef2f6 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    overflow: hidden;
}

.project-details-wrapper .project-details-image > .details-image img,
.project-details-wrapper .project-details-image > .szw-case-detail-media img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
}

/* 案例详情画廊内的图片：不走上方 cover 规则 */
.szw-case-detail-gallery .details-image .szw-img-slot,
.szw-case-detail-gallery .szw-case-detail-media .szw-img-slot {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    min-height: 0 !important;
    aspect-ratio: unset !important;
    object-fit: contain !important;
    object-position: center center !important;
}

/* 典型案例列表：完整展示信息图，不裁切 */
.project-section .project-image {
    height: auto;
    min-height: 0;
    background: linear-gradient(135deg, #f4f7fa 0%, #eef2f6 100%);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.project-section .project-image img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    object-position: center center;
    display: block;
    padding: 14px;
    box-sizing: border-box;
    background: transparent;
    position: relative;
    z-index: 0;
}

.project-section .project-image .szw-case-infographic,
.project-section .project-image .szw-case-placeholder {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: 360px !important;
    aspect-ratio: unset !important;
    object-fit: contain !important;
    object-position: center center;
    background: transparent !important;
    padding: 14px !important;
    display: block;
}

/* 全宽案例（OCR+LLM 等宽图）略增展示高度 */
.project-section .col-lg-12 .project-image img,
.project-section .col-lg-12 .project-image .szw-case-infographic {
    max-height: 420px !important;
}

/* 竖版流程图（col-lg-5） */
.project-section .col-lg-5 .project-image img,
.project-section .col-lg-5 .project-image .szw-case-infographic {
    max-height: 400px !important;
}

/* 上海烟草列表卡片：完整展示、等比例缩放（不裁切）
 * 改动说明：
 * 1. object-fit: contain — 保证整张图可见，按比例缩放，不拉伸
 * 2. width/height: 100% + max 约束 — 适配父容器，过大则缩小
 * 3. object-position: center — 小于容器时居中留白
 * 4. 去掉 cover 裁切与零内边距，避免被圆角盒子边缘遮挡
 */
.project-section .project-image .szw-case-tobacco-list {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 360px !important;
    object-fit: contain !important;
    object-position: center center !important;
    padding: 12px !important;
    background: linear-gradient(135deg, #f4f7fa 0%, #eef2f6 100%) !important;
    box-sizing: border-box !important;
}

/* 案例列表卡片：图片与文字区域可点击跳转详情 */
.project-section .project-image .szw-project-card-link {
    display: grid;
    position: relative;
    z-index: 3;
    width: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    isolation: isolate;
}

.project-section .project-image .szw-project-card-link > img,
.project-section .project-image .szw-project-card-link .szw-case-infographic {
    grid-area: 1 / 1;
    width: 100%;
}

.project-section .project-image .szw-project-card-link:hover,
.project-section .project-image .szw-project-card-link:focus-visible {
    color: inherit;
    text-decoration: none;
}

/* 卡片级渐变仅作底衬，置于链接下方，不遮挡文字 */
.project-section .project-image::before {
    background: linear-gradient(
        to top,
        rgba(4, 16, 45, 0.55) 0%,
        rgba(4, 16, 45, 0.22) 38%,
        transparent 72%
    ) !important;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.project-section .project-image:hover::before {
    opacity: 1;
    visibility: visible;
}

.project-section .project-image .project-content {
    grid-area: 1 / 1;
    align-self: end;
    justify-self: stretch;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    z-index: 2;
    width: 100%;
    padding: 18px 22px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    background: linear-gradient(
        to top,
        rgba(4, 18, 52, 0.98) 0%,
        rgba(4, 18, 52, 0.94) 55%,
        rgba(4, 18, 52, 0.72) 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.project-section .project-image:hover .project-content {
    bottom: 0 !important;
    left: 0 !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.project-section .project-image .szw-project-card-link .project-content h3 {
    color: #ffffff !important;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.4;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.project-section .project-image .szw-project-card-link .project-content p {
    color: rgba(255, 255, 255, 0.96) !important;
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.65;
    max-width: 52em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.project-section .project-image .icon.img-popup {
    z-index: 5;
    pointer-events: auto;
    cursor: zoom-in;
    font-size: 28px;
    top: 14px !important;
    right: 14px !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    background: rgba(4, 18, 52, 0.72);
    opacity: 0;
    visibility: hidden;
}

.project-section .project-image:hover .icon.img-popup {
    opacity: 1;
    visibility: visible;
}

/* 信息图 / 案例图表：完整展示不裁切（详情页、首页案例区等） */
.details-image .szw-case-infographic,
.case-studies-image .szw-case-infographic {
    object-fit: contain !important;
    background: linear-gradient(135deg, #f4f7fa 0%, #eef2f6 100%);
    padding: 8px;
    max-height: 420px;
}

.project-details-image .details-image .szw-case-infographic {
    min-height: 0;
    max-height: 100%;
}

/* 案例详情双图画廊：完整展示、等比例、居中留白 */
.szw-case-detail-gallery {
    position: relative;
    z-index: 2;
}

.szw-case-detail-gallery .szw-case-detail-figure {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/*
 * [改动] 外层盒子：flex 居中 + 固定展示区高度
 * 逻辑：图片在盒内用 contain 缩放；超出缩小，不足留白
 */
.szw-case-detail-gallery .szw-case-detail-media,
.project-details-wrapper .szw-case-detail-gallery .details-image {
    box-sizing: border-box;
    width: 100%;
    height: 360px !important;
    min-height: 360px !important;
    max-height: 360px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f4f7fa 0%, #eef2f6 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    overflow: hidden;
    flex: 1;
}

/*
 * [改动] 去掉 width:100% / height:auto 强行撑满
 * 逻辑：max-width + max-height + object-fit:contain = 完整等比例可见
 * （含 Ameco 四张界面截图：样本集 / 标签 / 策略编排 / 结果分析）
 */
/*
 * 【改动】画廊内图片：width/height 用 auto + max 约束
 * 说明：原先 width/height:100% 虽配合 contain 多数情况可用，
 * 但在部分浏览器/缩放包裹层下仍可能被父级 overflow 视觉裁切。
 * 现改为自然比例 + max-width/max-height，超出缩小、不足居中留白。
 */
.szw-case-detail-gallery .szw-case-detail-media img,
.project-details-wrapper .szw-case-detail-gallery .details-image img,
.szw-case-detail-gallery .szw-case-detail-media .szw-case-infographic,
.project-details-wrapper .szw-case-detail-gallery .details-image .szw-case-infographic {
    display: block !important;
    box-sizing: border-box;
    width: auto !important; /* 【改动】100% → auto */
    height: auto !important; /* 【改动】100% → auto */
    max-width: 100% !important;
    max-height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    aspect-ratio: unset !important;
    object-fit: contain !important; /* 【关键】整图可见、等比例、不拉伸 */
    object-position: center center !important; /* 【改动】小于容器时居中留白 */
    padding: 0 !important;
    background: transparent !important;
    transform: none !important;
}

.szw-case-detail-gallery .szw-case-detail-figure figcaption {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    text-align: center;
    line-height: 1.5;
}

/* 上海烟草详情：沿用同一套 contain 规则，列宽 4:8 区分竖图/横图 */
.szw-case-detail-gallery--tobacco .szw-case-detail-media,
.project-details-wrapper .szw-case-detail-gallery--tobacco .details-image {
    height: 380px !important;
    min-height: 380px !important;
    max-height: 380px !important;
    padding: 18px;
}

.project-details-wrapper .szw-case-detail-gallery--tobacco .szw-case-tobacco-chain-img,
.project-details-wrapper .szw-case-detail-gallery--tobacco .szw-case-tobacco-chart-img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
}

@media (max-width: 767px) {
    .szw-case-detail-gallery .szw-case-detail-media,
    .project-details-wrapper .szw-case-detail-gallery .details-image,
    .szw-case-detail-gallery--tobacco .szw-case-detail-media,
    .project-details-wrapper .szw-case-detail-gallery--tobacco .details-image {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
    }
}

/* 案例详情：点击放大图片 */
.szw-case-detail-media.szw-case-media--zoomable,
.project-details-image .szw-case-detail-media.szw-case-media--zoomable {
    position: relative;
    cursor: zoom-in;
}

.szw-case-detail-media .szw-case-img-zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    text-decoration: none;
    color: inherit;
}

.szw-case-detail-media .szw-case-img-zoom img {
    cursor: zoom-in;
}

.szw-case-zoom-hint {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(4, 18, 52, 0.72);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    transform: scale(0.92);
}

.szw-case-media--zoomable:hover .szw-case-zoom-hint,
.szw-case-media--zoomable:focus-within .szw-case-zoom-hint {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

@media (hover: none) {
    .szw-case-zoom-hint {
        opacity: 0.85;
        visibility: visible;
        transform: none;
    }
}

.szw-case-detail-placeholder.szw-img-hint-wrap {
    display: block;
    min-height: 260px;
}

.szw-more-cases-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.szw-more-cases-list li {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e2e8f0;
}

.szw-more-cases-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.szw-more-cases-list a {
    color: var(--header, #0f172a);
    text-decoration: none;
    display: block;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.szw-more-cases-list a:hover {
    color: var(--theme, #086ad8);
}

.szw-more-cases-list a:hover strong {
    color: var(--theme, #086ad8);
}

.szw-more-cases-list .szw-case-link-desc {
    color: #64748b;
    font-weight: 400;
}

/* 首页典型案例区：独立排版，图片不遮挡标题 */
.szw-case-studies-layout .case-studies-content-area {
    margin-right: 0 !important;
}

.szw-case-studies-header {
    max-width: 720px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.szw-case-studies-body {
    position: relative;
    z-index: 1;
    margin-top: -12px;
}

/* 蓝色案例列表：双列网格，左右列对齐 */
.szw-case-studies-layout .case-studies-items {
    margin-top: 0 !important;
    height: auto;
    padding: 40px 44px 44px !important;
    background-color: var(--theme, #086ad8) !important;
    position: relative;
    border-radius: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 48px;
    row-gap: 32px;
    align-items: start;
}

.szw-case-studies-layout .case-studies-items::before {
    display: block;
    width: 0;
    height: 0;
    border-top: 36px solid var(--theme, #086ad8);
    border-left: 120px solid transparent;
    content: "";
    right: 0;
    position: absolute;
    top: -34px;
    transform: rotate(-181deg);
}

.szw-case-studies-layout .case-studies-items .case-studies-content {
    display: contents;
}

.szw-case-studies-layout .case-studies-items .case-studies-content:not(:last-child) {
    margin-bottom: 0;
}

.szw-case-studies-layout .case-studies-items .case-studies-content .content {
    min-width: 0;
}

.szw-case-studies-layout .case-studies-items .case-studies-content .content h5 {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    margin-bottom: 6px !important;
}

.szw-case-studies-layout .case-studies-items .case-studies-content .content h3 {
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.35;
    margin: 0;
}

.szw-case-studies-layout .case-studies-items .case-studies-content .content h3 a {
    color: #fff !important;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.szw-case-studies-layout .case-studies-items .case-studies-content .content h3 a:hover,
.szw-case-studies-layout .case-studies-items .case-studies-content .content h3 a.clicked {
    opacity: 0.88;
}

@media (max-width: 1399px) {
    .szw-case-studies-layout .case-studies-items {
        padding: 36px 36px 40px !important;
        column-gap: 36px;
        row-gap: 28px;
    }
}

@media (max-width: 991px) {
    .szw-case-studies-layout .case-studies-items {
        padding: 32px 28px 36px !important;
        grid-template-columns: 1fr;
        row-gap: 24px;
    }
}

.szw-case-studies-body > .col-xl-5 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.szw-case-studies-layout .case-studies-wrapper .case-studies-image,
.szw-case-studies-layout .case-studies-image {
    z-index: 1;
    position: relative;
    height: auto !important;
    min-height: 0;
    align-self: stretch;
    max-height: none;
    width: 100% !important;
    margin-top: 0 !important;
    padding: 20px;
    background: #f4f7fa;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.szw-case-studies-visual img.szw-img-slot,
.szw-case-studies-visual img.szw-case-infographic {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: calc(100% - 8px) !important;
    min-height: 0 !important;
    aspect-ratio: unset !important;
    object-fit: contain !important;
    object-position: center center !important;
    padding: 0 !important;
    background: transparent !important;
    display: block;
    margin: 0 auto;
}

.szw-case-studies-layout .case-studies-image {
    overflow: visible;
}

/* 查看详情：右下角圆形按钮，默认隐藏，悬停图片区域时显示 */
.szw-case-studies-layout .case-studies-image .icon,
.szw-case-studies-link {
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
    top: auto !important;
    left: auto !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: var(--theme, #086ad8) !important;
    color: #fff !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    box-shadow: 0 4px 14px rgba(8, 106, 216, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 3;
}

.szw-case-studies-layout .case-studies-image:hover .icon,
.szw-case-studies-layout .case-studies-image:hover .szw-case-studies-link,
.szw-case-studies-layout .case-studies-image .icon:focus-visible,
.szw-case-studies-link:focus-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.szw-case-studies-layout .case-studies-image .icon i,
.szw-case-studies-link i {
    transform: rotate(-45deg);
    display: block;
    line-height: 1;
}

.szw-case-studies-layout .case-studies-image .icon:hover,
.szw-case-studies-link:hover {
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(8, 106, 216, 0.45);
}

@media (max-width: 1199px) {
    .szw-case-studies-layout .case-studies-image {
        margin-top: 0 !important;
        height: auto !important;
    }

    .szw-case-studies-header {
        margin-bottom: 32px;
    }

    .szw-case-studies-body.row {
        align-items: end;
    }
}

@media (max-width: 767px) {
    .szw-case-studies-layout .case-studies-items {
        padding: 28px 24px 32px !important;
    }

    .szw-case-studies-layout .case-studies-items::before {
        border-top-width: 28px;
        border-left-width: 80px;
        top: -26px;
    }

    .szw-case-studies-layout .case-studies-image {
        min-height: 240px;
        padding: 16px;
    }

    .szw-case-studies-body {
        margin-top: 0;
    }

    .szw-case-studies-body.row {
        align-items: stretch !important;
    }

    .szw-case-studies-body > .col-xl-5 {
        justify-content: flex-start;
    }
}

/* 旧版兼容（非 szw-case-studies-layout 页面） */
.case-studies-wrapper .case-studies-image {
    z-index: 12;
    position: relative;
    height: auto !important;
    min-height: 360px;
    max-height: none;
    width: 100% !important;
    margin-top: 0 !important;
    padding: 16px;
    background: #f4f7fa;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.case-studies-wrapper .case-studies-image img.szw-case-infographic {
    width: 100% !important;
    height: auto !important;
    max-height: 520px !important;
    min-height: 0 !important;
    aspect-ratio: unset !important;
    object-fit: contain !important;
    padding: 8px !important;
    background: transparent !important;
    display: block;
}

@media (min-width: 1200px) {
    .case-studies-wrapper:not(.szw-case-studies-layout) .case-studies-content-area {
        margin-right: -100px;
    }
}

@media (min-width: 1400px) {
    .case-studies-wrapper:not(.szw-case-studies-layout) .case-studies-content-area {
        margin-right: -140px;
    }
}

.case-studies-image:not(.szw-case-studies-visual) img.szw-img-slot {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    max-height: 480px;
}

/* 团队成员照片 - 统一容器比例与裁切 */
.single-team-items .team-image,
.team-card-items .team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f0f3f7;
}

.team-image .szw-img-slot,
.team-image .szw-team-photo {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: none;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: center 18%;
}

.team-image .szw-img-placeholder,
.author-image.szw-img-placeholder {
    object-fit: contain;
    object-position: center;
    padding: 24px;
    background: linear-gradient(135deg, #eef2f6 0%, #e2e8f0 100%);
}

/* 隐藏装饰性重复图片（PPT 素材不适合做装饰） */
.about-image-items .circle-shape,
.about-image-items .border-shape,
.about-image-items .award-img {
    display: none !important;
}

.about-image-2 img.szw-img-slot {
    max-width: 100%;
    max-height: 260px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-image.bg-cover {
    min-height: 180px;
}

.service-card-items .service-image.bg-cover {
    min-height: 200px;
}

.brand-carousel-active .brand-image img.szw-img-slot {
    max-height: 64px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.85;
}

/* 合作客户 Logo — 统一容器，完整可见、等比例、居中留白 */
.szw-partner-carousel .brand-image,
.szw-partner-carousel .brand-image.center {
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 6px 10px;
    height: auto;
    overflow: visible !important;
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
}

.szw-partner-carousel .slick-list,
.szw-partner-carousel .slick-track,
.szw-partner-carousel .slick-slide {
    overflow: visible !important;
}

.szw-partner-carousel .brand-image:hover {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
}

.szw-partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 176px;
    margin: 0 auto;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
}

.szw-partner-card:not(.szw-partner-card--static):hover {
    transform: translateY(-2px);
}

.szw-partner-card--static {
    cursor: default;
}

/*
 * [改动] Logo 外层白盒：固定尺寸 + flex 居中 + overflow:hidden
 * 逻辑：图片在盒内用 contain 缩放，超出自动缩小，不足则四周留白
 */
.szw-partner-logo-box {
    box-sizing: border-box;
    width: 168px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

/*
 * [改动] 去掉 transform:scale，改用 max-width/max-height + object-fit:contain
 * 逻辑：等比例完整显示，不拉伸、不被盒子边缘裁切
 */
.szw-partner-logo {
    display: block;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: none;
    filter: none;
    opacity: 1;
}

.szw-partner-name {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: #334155;
    text-align: center;
    white-space: normal;
    word-break: break-all;
    opacity: 1;
    max-width: 168px;
}

.szw-partner-card:not(.szw-partner-card--static):hover .szw-partner-name {
    color: var(--theme, #086ad8);
}

.contact-image > img.szw-img-slot,
.contact-content .contact-image img.szw-img-slot {
    width: 100%;
    max-height: 360px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

body {
    font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.szw-hero-title {
    line-height: 1.35;
}

.szw-qrcode {
    max-width: 140px;
    margin: 20px auto 0;
    display: block;
    border-radius: 8px;
}

.szw-qrcode-sm {
    max-width: 72px;
    border-radius: 6px;
}

.brand-carousel-active .brand-image img.szw-img-slot {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.85;
}

.brand-carousel-active .brand-image:hover img.szw-img-slot {
    filter: none;
    opacity: 1;
}

/* partner logos use .szw-partner-logo rules above */

.contact-image .shape-image-2 {
    display: none;
}

.header-logo.szw-img-slot,
.offcanvas__logo .szw-img-slot {
    min-height: 48px;
    width: auto;
    max-width: 200px;
}

/* Logo 占位 */
.szw-logo-placeholder {
    object-fit: contain;
    background: #eef2f6;
    padding: 6px 12px;
    min-height: 52px !important;
    max-height: 56px;
}

.szw-logo-real {
    object-fit: contain;
    background: transparent;
    padding: 4px 0;
    min-height: 44px !important;
    max-height: 52px;
}

/* 团队负责人卢天 - 适中尺寸 */
.szw-team-leader {
    width: 100%;
    max-width: 280px;
    max-height: 300px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
}

.about-author .author-image .szw-team-leader {
    max-width: 88px;
    max-height: 88px;
    border-radius: 50%;
}

.szw-team-leader-wrap .szw-team-leader {
    max-height: 320px;
}

.szw-team-avatar-sm {
    width: 100px;
    height: 100px;
    max-width: 100px;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 50%;
}

/* 典型案例配图占位 */
.szw-case-placeholder {
    object-fit: contain;
    background: linear-gradient(135deg, #eef2f6 0%, #e8edf2 100%);
    min-height: 280px;
    padding: 16px;
}

.case-studies-image .szw-case-placeholder {
    min-height: 320px;
    max-height: 420px;
}

.project-image .szw-case-placeholder {
    min-height: 0;
    max-height: 360px;
    object-fit: contain !important;
}

/* 行业洞察 / 新闻缩略图 */
.szw-news-thumb {
    min-height: 220px;
    max-height: 280px;
    background-size: cover !important;
    background-position: center center !important;
    background-color: #f4f7fa;
}

/* 信息图类新闻缩略图：完整展示流程图/示意图 */
.szw-news-thumb.szw-news-thumb-contain {
    background-size: contain !important;
    background-repeat: no-repeat;
}

/*
 * 【改动】新闻轮播卡片配图：完整可见、等比例、居中留白
 * 原问题：bg-cover 会裁切信息图/截图边缘
 * 逻辑：
 * 1. 外层固定高度作盒子，浅色底作留白
 * 2. img 用 object-fit:contain — 整图可见、不拉伸；超出缩小、不足居中
 * 3. 去掉 background-size:cover，改用真实 <img>
 */
.news-card-items .news-image.szw-news-card-media {
    height: 388px;
    max-width: 420px;
    width: 100%;
    box-sizing: border-box;
    padding: 12px; /* 【改动】内边距，避免贴边被圆角/阴影遮挡 */
    background: #f4f7fa !important; /* 【改动】留白底色 */
    background-image: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.news-card-items .news-image.szw-news-card-media .szw-news-card-img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* 【关键】完整展示、等比例缩放 */
    object-position: center center; /* 【改动】小于容器时居中留白 */
    box-sizing: border-box;
}

@media (max-width: 1199px) {
    .news-card-items .news-image.szw-news-card-media {
        max-width: 550px;
    }
}

@media (max-width: 767px) {
    .news-card-items .news-image.szw-news-card-media {
        height: 280px;
        margin: 0 auto;
    }
}

/* 推荐阅读：标题与缩略图链接可点击 */
.popular-posts .single-post-item .post-content h5 a {
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.popular-posts .single-post-item a.thumb {
    display: block;
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.popular-posts .single-post-item a.thumb:hover {
    opacity: 0.92;
}

/* 小尺寸信息图/案例缩略（成果卡片等） */
.szw-infographic-thumb {
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: center center !important;
    background-color: #f4f7fa;
}

.news-section .single-news-items .news-image {
    min-height: 220px;
    max-height: 280px;
}

.szw-news-detail-img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    background: #f4f7fa;
    border-radius: 8px;
}

.szw-news-detail-articles .szw-news-article {
    display: none;
}

.szw-news-detail-articles .szw-news-article#rubber-formula {
    display: block;
}

/* 语言切换 */
.header-top-section-3 {
    position: relative;
    z-index: 1000;
}

.szw-lang-wrap {
    position: relative;
    z-index: 1001;
}

.szw-lang-wrap .nice-select {
    position: relative;
    z-index: 1001;
}

.szw-lang-wrap .nice-select.open {
    z-index: 1002;
}

.szw-lang-wrap .nice-select .list {
    z-index: 1003;
}

.szw-lang-wrap .szw-lang-select {
    min-width: 110px;
}

.offcanvas-lang .nice-select {
    width: 100%;
    max-width: 200px;
}

.szw-page-contact .preloader.loaded {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}

/* 首页预览菜单：悬停显示，预览图统一裁切 */
.header-main .main-menu ul li .submenu.has-home-menu {
    display: none !important;
}

.header-main .main-menu ul li:hover > .submenu.has-home-menu {
    display: block !important;
}

.header-main .main-menu ul li .submenu.has-home-menu .home-menu-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    max-height: 160px;
}

.header-main .main-menu ul li .submenu.has-home-menu .home-menu-content small {
    font-size: 13px;
    color: #64748b;
}

/* 首页关于区 - 团队负责人头像 */
.about-author .author-image img.szw-team-leader-inline {
    width: 76px;
    height: 76px;
    min-width: 76px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* 团队详情页 - 负责人照片 */
.team-details-wrapper .team-image.szw-team-detail-photo-wrap {
    height: auto !important;
    background: none !important;
}

.szw-team-detail-photo {
    width: 100%;
    max-width: 380px;
    max-height: 480px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
}

/* 团队详情 - 信息卡片与职位头部 */
.szw-team-detail-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8edf2;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.szw-team-detail-header {
    background: linear-gradient(135deg, #eef4fc 0%, #f5f8fd 100%);
    padding: 22px 28px 26px;
    position: relative;
}

.szw-team-detail-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 18px;
    background: #fff;
    border-radius: 18px 18px 0 0;
}

.szw-team-detail-header h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 6px;
}

.team-details-wrapper .team-details-content .szw-role-badge {
    display: inline-block !important;
    position: relative;
    z-index: 1;
    padding: 6px 14px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: var(--theme, #086ad8);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(8, 106, 216, 0.18);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(8, 106, 216, 0.08);
}

.team-details-wrapper .team-details-content .szw-team-detail-subtitle {
    display: block !important;
    position: relative;
    z-index: 1;
    color: #64748b;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 0;
}

.szw-team-detail-body {
    padding: 4px 28px 28px;
}

.szw-team-detail-body > p {
    margin-top: 0;
}

.szw-team-meta li {
    margin-bottom: 8px;
    color: #475569;
}

.szw-team-meta a {
    color: inherit;
    text-decoration: none;
}

.szw-team-meta a:hover {
    color: var(--theme, #086ad8);
}

/* 案例详情轮播 */
.szw-case-detail-carousel-wrap {
    position: relative;
}

.szw-case-hash-anchors {
    position: relative;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.szw-case-hash-anchors span {
    display: block;
    height: 0;
    scroll-margin-top: 120px;
}

.project-details {
    scroll-margin-top: 120px;
}

.szw-case-detail-carousel .slick-slide {
    outline: none;
}

.szw-case-detail-dots-target {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.szw-case-detail-dots-target .szw-case-detail-dots {
    position: static;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    width: auto;
}

.szw-case-detail-dots-target .szw-case-detail-dots li {
    margin: 0;
    width: auto;
    height: auto;
}

.szw-case-detail-dots-target .szw-case-detail-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #cbd5e1;
    font-size: 0;
    line-height: 0;
    transition: all 0.25s ease;
}

.szw-case-detail-dots-target .szw-case-detail-dots li.slick-active button {
    width: 28px;
    border-radius: 999px;
    background: var(--theme, #086ad8);
}

/* 案例详情切换箭头：固定在外层容器，不随案例内容高度跳动 */
.szw-case-detail-carousel-wrap > .szw-case-detail-arrow {
    position: absolute;
    /* 对齐「项目概述 + 配图区」中部，切换案例时位置保持不变 */
    top: 360px;
    transform: none;
    z-index: 6;
    width: 44px;
    height: 44px;
    border: 1px solid #dbe4ef;
    border-radius: 50%;
    background: #fff;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.szw-case-detail-carousel-wrap > .szw-case-detail-arrow:hover {
    background: var(--theme, #086ad8);
    border-color: var(--theme, #086ad8);
    color: #fff;
    box-shadow: 0 4px 14px rgba(8, 106, 216, 0.25);
}

.szw-case-detail-carousel-wrap > .szw-case-detail-prev {
    left: -22px;
}

.szw-case-detail-carousel-wrap > .szw-case-detail-next {
    right: -22px;
}

/* 兼容旧选择器（若箭头仍在 slick 内部） */
.szw-case-detail-arrow {
    position: absolute;
    top: 360px;
    transform: none;
    z-index: 6;
    width: 44px;
    height: 44px;
    border: 1px solid #dbe4ef;
    border-radius: 50%;
    background: #fff;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.szw-case-detail-arrow:hover {
    background: var(--theme, #086ad8);
    border-color: var(--theme, #086ad8);
    color: #fff;
}

.szw-case-detail-prev {
    left: -22px;
}

.szw-case-detail-next {
    right: -22px;
}

@media (max-width: 1199px) {
    .szw-case-detail-carousel-wrap > .szw-case-detail-arrow,
    .szw-case-detail-arrow {
        top: 320px;
    }
}

@media (max-width: 991px) {
    .szw-case-detail-carousel-wrap > .szw-case-detail-arrow,
    .szw-case-detail-arrow {
        top: 280px;
    }

    .szw-case-detail-carousel-wrap > .szw-case-detail-prev,
    .szw-case-detail-prev {
        left: 4px;
    }

    .szw-case-detail-carousel-wrap > .szw-case-detail-next,
    .szw-case-detail-next {
        right: 4px;
    }
}

@media (max-width: 767px) {
    .szw-case-detail-carousel-wrap > .szw-case-detail-arrow,
    .szw-case-detail-arrow {
        top: 240px;
        width: 40px;
        height: 40px;
    }
}

/* 团队详情轮播 */
.szw-team-detail-carousel-wrap {
    position: relative;
}

.szw-team-detail-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.szw-team-detail-nav button {
    border: 1px solid #dbe4ef;
    background: #fff;
    color: #475569;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 999px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.szw-team-detail-nav button:hover,
.szw-team-detail-nav button.active {
    background: var(--theme, #086ad8);
    border-color: var(--theme, #086ad8);
    color: #fff;
}

.szw-team-detail-dots-target {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.szw-team-detail-dots-target .szw-team-detail-dots {
    position: static;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    width: auto;
}

.szw-team-detail-dots-target .szw-team-detail-dots li {
    margin: 0;
    width: auto;
    height: auto;
}

.szw-team-detail-dots-target .szw-team-detail-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #cbd5e1;
    font-size: 0;
    line-height: 0;
    transition: all 0.25s ease;
}

.szw-team-detail-dots-target .szw-team-detail-dots li.slick-active button {
    width: 28px;
    border-radius: 999px;
    background: var(--theme, #086ad8);
}

.szw-team-detail-carousel .slick-slide {
    outline: none;
}

.szw-team-detail-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--theme, #086ad8);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.szw-team-detail-arrow:hover {
    background: var(--theme, #086ad8);
    color: #fff;
}

.szw-team-detail-prev {
    left: -12px;
}

.szw-team-detail-next {
    right: -12px;
}

@media (max-width: 991px) {
    .szw-team-detail-prev {
        left: 4px;
    }

    .szw-team-detail-next {
        right: 4px;
    }

    .szw-team-detail-dots-target {
        justify-content: center;
    }
}

/* 新闻详情 - 侧栏右侧固定 */
@media (min-width: 992px) {
    .news-wrapper .row {
        align-items: flex-start;
    }

    .szw-news-sidebar {
        position: sticky;
        top: 110px;
    }
}

.szw-news-detail-img {
    background: linear-gradient(135deg, #eef2f6 0%, #e8edf2 100%);
}

/* 核心业务 - 卡片网格（替代旧轮播/窄条面板） */
.szw-service-grid-wrap {
    margin-top: 48px;
    padding-bottom: 8px;
}

.szw-service-card {
    height: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8edf2;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.szw-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(8, 106, 216, 0.14);
}

/*
 * 【改动】解决方案卡片配图容器
 * 逻辑：固定 16:9 可视区；浅色底作留白；不裁切图片内容。
 * overflow:hidden 仅用于圆角裁切外轮廓，图片本身用 contain 完整落入盒内。
 */
.szw-service-card__visual {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f4f7fa; /* 【改动】留白底色，小于容器时居中露出 */
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 10px; /* 【改动】内边距，避免贴边被圆角/边框遮挡 */
}

/* 方案详情 - 分类切换 */
.szw-solution-panel[hidden] {
    display: none !important;
}

/*
 * 【改动】方案详情页配图：完整可见、等比例、居中留白
 * 原问题：占位图 / cover 裁切导致画面被盒子边缘遮挡
 * 逻辑：
 * 1. 外层固定可视区 + 浅色底作留白
 * 2. img 用 object-fit:contain — 整图可见、不拉伸；超出缩小、不足居中
 * 3. 内边距避免贴边被圆角遮挡
 */
.szw-solution-panel .details-image.szw-solution-media {
    margin-bottom: 24px;
    box-sizing: border-box;
    width: 100%;
    min-height: 280px;
    max-height: 420px;
    aspect-ratio: 16 / 9;
    padding: 14px 16px; /* 【改动】内边距，避免贴边裁切 */
    background: #f4f7fa; /* 【改动】留白底色 */
    border: 1px solid #e8edf2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.szw-solution-panel .details-image.szw-solution-media .szw-solution-img,
.szw-solution-panel .details-image img {
    display: block;
    width: auto; /* 【改动】100% → auto，避免强制撑满后被误裁 */
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* 【关键】完整展示、等比例缩放 */
    object-position: center center; /* 【改动】小于容器时居中留白 */
    border-radius: 4px;
    box-sizing: border-box;
    background: transparent;
}

.szw-solution-panel .theme-btn {
    margin-top: 8px;
}

/* 方案详情：平台截图缩略条（完整 contain，不裁切） */
.szw-platform-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 24px;
}

.szw-platform-thumb {
    box-sizing: border-box;
    width: 100%;
    height: 96px;
    object-fit: contain;
    object-position: center center;
    background: #f4f7fa;
    border: 1px solid #e8edf2;
    border-radius: 8px;
    padding: 6px;
}

/* 方案详情：主图 / 缩略图可点击放大 */
.szw-solution-panel .szw-solution-media.szw-case-media--zoomable {
    position: relative;
    cursor: zoom-in;
}

.szw-solution-panel .szw-solution-img-zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    text-decoration: none;
    color: inherit;
    cursor: zoom-in;
}

.szw-solution-panel .szw-solution-img-zoom img {
    cursor: zoom-in;
}

.szw-platform-thumb-link {
    display: block;
    width: 100%;
    text-decoration: none;
    border-radius: 8px;
    cursor: zoom-in;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.szw-platform-thumb-link:hover {
    box-shadow: 0 6px 16px rgba(8, 106, 216, 0.16);
    transform: translateY(-2px);
}

.szw-platform-thumb-link .szw-platform-thumb {
    display: block;
    width: 100%;
}

@media (max-width: 767px) {
    .szw-platform-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

#szw-service-category a {
    cursor: pointer;
}

/*
 * 【改动】配图完整可见规则（满足：不裁切 / 等比例 / 适配容器 / 居中留白）
 * 1. object-fit: contain — 整图可见，超出则缩小，不拉伸
 * 2. object-position: center — 小于容器时居中
 * 3. width/height: 100% + max 约束 — 适配父容器
 * 4. 去掉 hover scale — 放大会被 overflow 裁掉边缘
 */
.szw-service-card__visual > img,
.szw-service-card__visual .szw-img-hint-wrap > img,
.szw-service-card__visual img.szw-service-screenshot {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important; /* 【关键改动】原 cover → contain，禁止裁切 */
    object-position: center center;
    display: block;
    box-sizing: border-box;
    background: transparent;
    transition: opacity 0.35s ease;
}

.szw-service-card__visual .szw-img-hint-wrap {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none !important;
    background: transparent !important;
    min-height: 0 !important;
}

.szw-service-card:hover .szw-service-card__visual img {
    transform: none; /* 【改动】取消放大，避免边缘被裁切 */
}

.szw-service-card__num {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(6px);
}

.szw-service-card__body {
    padding: 28px 28px 32px;
}

.szw-service-card__icon {
    font-size: 42px;
    color: var(--theme, #086ad8);
    line-height: 1;
    margin-bottom: 14px;
}

.szw-service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.szw-service-card h3 a {
    color: inherit;
    text-decoration: none;
}

.szw-service-card h3 a:hover {
    color: var(--theme, #086ad8);
}

.szw-service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 18px;
}

.szw-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme, #086ad8);
    text-decoration: none;
}

.szw-service-card__link:hover {
    gap: 12px;
}

@media (max-width: 767px) {
    .szw-service-grid-wrap {
        margin-top: 32px;
    }

    .szw-service-card__body {
        padding: 22px 20px 26px;
    }
}

/* 隐藏可能残留的旧轮播卡片（防止竖条错乱） */
.service-section .service-card-items,
.service-section .service-wrapper .service-carousel-active {
    display: none !important;
}

/* 方案详情 - 服务行业标签 */
.szw-industry-bar {
    background: #f8fafc;
}

.szw-industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 960px;
    margin: 0 auto;
}

.szw-industry-tags span {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    transition: all 0.25s ease;
}

.szw-industry-tags span:hover {
    border-color: var(--theme, #086ad8);
    color: var(--theme, #086ad8);
    background: rgba(8, 106, 216, 0.06);
}

.szw-industry-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.szw-industry-stats li {
    list-style: none;
    text-align: center;
}

.szw-industry-stats strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--theme, #086ad8);
    line-height: 1.2;
}

.szw-industry-stats span {
    font-size: 14px;
    color: #64748b;
}

/* 国内社交图标（微信 / QQ / 微博） */
.header-top-section-3 .social-icon a,
.offcanvas__contact .social-icon a,
.footer-section .social-icon a,
.news-area .main-sidebar .social-link.szw-social-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-left: 8px;
    font-size: 16px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-top-section-3 .social-icon a:first-child,
.offcanvas__contact .social-icon a:first-child,
.footer-section .social-icon a:first-child,
.news-area .main-sidebar .social-link.szw-social-link a:first-child {
    margin-left: 0;
}

.header-top-section-3 .social-icon a[title*="微信"],
.offcanvas__contact .social-icon a[title*="微信"],
.footer-section .social-icon a[title*="微信"],
.news-area .main-sidebar .social-link.szw-social-link a[title*="微信"] {
    background: #07c160;
    color: #fff !important;
}

.header-top-section-3 .social-icon a[title*="QQ"],
.offcanvas__contact .social-icon a[title*="QQ"],
.footer-section .social-icon a[title*="QQ"],
.news-area .main-sidebar .social-link.szw-social-link a[title*="QQ"] {
    background: #12b7f5;
    color: #fff !important;
}

.header-top-section-3 .social-icon a[title*="微博"],
.offcanvas__contact .social-icon a[title*="微博"],
.footer-section .social-icon a[title*="微博"],
.news-area .main-sidebar .social-link.szw-social-link a[title*="微博"] {
    background: #e6162d;
    color: #fff !important;
}

.header-top-section-3 .social-icon a:hover,
.offcanvas__contact .social-icon a:hover,
.footer-section .social-icon a:hover,
.news-area .main-sidebar .social-link.szw-social-link a:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

/* 覆盖主题模板默认的灰底/蓝色 hover */
.news-area .main-sidebar .single-sidebar-widget .social-link.szw-social-link a {
    width: 34px;
    height: 34px;
    line-height: 1;
    margin-right: 0;
    margin-bottom: 0;
}

.news-area .main-sidebar .single-sidebar-widget .social-link.szw-social-link a[title*="微信"]:hover {
    background: #07c160 !important;
    color: #fff !important;
}

.news-area .main-sidebar .single-sidebar-widget .social-link.szw-social-link a[title*="QQ"]:hover {
    background: #12b7f5 !important;
    color: #fff !important;
}

.news-area .main-sidebar .single-sidebar-widget .social-link.szw-social-link a[title*="微博"]:hover {
    background: #e6162d !important;
    color: #fff !important;
}

/* 新闻侧边栏 · 文章分类（分类名 + 右侧计数） */
.news-area .widget_categories ul li a {
    position: relative;
    display: block;
    padding: 17px 70px 17px 20px;
    margin-bottom: 12px;
    background: var(--bg, #f4f7fa);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--header, #1a1a2e);
}

.news-area .widget_categories ul li a:hover {
    color: var(--theme, #384bff);
}

/* 覆盖 main.css 中 .widget_categories ul li a span 对全部 span 的绝对定位 */
.news-area .widget_categories ul li a .szw-cat-label {
    position: static;
    display: inline;
    width: auto;
    height: auto;
    line-height: inherit;
    background: transparent;
    color: inherit;
    text-align: left;
}

.news-area .widget_categories ul li a .szw-cat-count {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    line-height: 55px;
    text-align: center;
    background-color: var(--theme, #384bff);
    color: var(--white, #fff);
}

.header-top-section-3 .contact-list .fab.fa-weixin {
    color: #07c160;
    margin-right: 6px;
}

.header-top-section-3 .contact-list li:not(:first-child) span {
    background: none;
    padding: 0;
    color: var(--header);
    letter-spacing: normal;
    text-transform: none;
    margin-right: 0;
    font-size: inherit;
}

/* 页脚：确保所有链接可点击（避免被叠层遮挡） */
.footer-section {
    position: relative;
    z-index: 1;
}

.footer-widgets-wrapper {
    position: relative;
    z-index: 30;
}

.footer-widgets-wrapper a,
.footer-section .footer-content a,
.footer-section .footer-apps-items a,
.footer-section .social-icon a,
.footer-section .widget-head a {
    position: relative;
    z-index: 31;
    pointer-events: auto;
    cursor: pointer;
}

/* 页脚底部导航：确保链接可点击 */
.footer-bottom {
    position: relative;
    z-index: 35;
}

.footer-bottom .container,
.footer-bottom .footer-wrapper {
    pointer-events: none;
}

.footer-bottom .footer-wrapper p,
.footer-bottom .footer-wrapper .footer-menu,
.footer-bottom .footer-wrapper .footer-menu li,
.footer-bottom .footer-wrapper .footer-menu li a {
    pointer-events: auto;
}

.footer-bottom .footer-wrapper .footer-menu {
    position: relative;
    z-index: 22;
}

.footer-bottom .footer-wrapper .footer-menu li a {
    position: relative;
    z-index: 22;
    pointer-events: auto;
    cursor: pointer;
}

/* 回到顶部：可点击区域与圆形按钮视觉一致 */
.footer-bottom .scroll-icon {
    z-index: 40;
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.footer-bottom .scroll-icon i {
    pointer-events: none;
    line-height: 1;
}

.footer-widgets-wrapper .list-items li a {
    pointer-events: auto;
    cursor: pointer;
}

/* ============================================================
   图片占位标注：虚线框 + 中文说明（data-szw-hint）
   ============================================================ */
.szw-img-hint-wrap {
    position: relative;
    display: block;
    box-sizing: border-box;
    border: 2px dashed #3b82f6 !important;
    background: rgba(59, 130, 246, 0.05) !important;
}

.szw-img-hint-wrap[data-szw-hint]::after {
    content: attr(data-szw-hint);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    padding: 10px 14px;
    max-width: min(92%, 420px);
    text-align: center;
    font-size: 13px;
    line-height: 1.55;
    color: #1e3a8a;
    font-weight: 600;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

/* 背景图 / 横幅类占位 */
.breadcrumb-wrapper.szw-img-hint-wrap,
.cta-banner-section.szw-img-hint-wrap,
.slide-bg.szw-img-hint-wrap,
.news-image.szw-img-hint-wrap,
.post-featured-thumb.szw-img-hint-wrap,
.about-image.szw-img-hint-wrap,
.contact-image.szw-img-hint-wrap,
.manage-image.szw-img-hint-wrap,
.trusted-client-image.szw-img-hint-wrap {
    min-height: 140px;
}

.breadcrumb-wrapper.szw-img-hint-wrap {
    min-height: 200px;
}

.cta-banner-section.szw-img-hint-wrap {
    min-height: 180px;
}

/* 深色背景区块：说明文字用浅色 */
.breadcrumb-wrapper.szw-img-hint-wrap[data-szw-hint]::after,
.cta-banner-section.szw-img-hint-wrap[data-szw-hint]::after,
.slide-bg.szw-img-hint-wrap[data-szw-hint]::after {
    color: #eff6ff;
    background: rgba(15, 23, 42, 0.78);
    border-color: rgba(147, 197, 253, 0.45);
}

/* img 占位：淡化底图，突出说明文字 */
.szw-img-hint-wrap > img {
    display: block;
    width: 100%;
    opacity: 0.28;
    filter: grayscale(30%);
}

/* 已替换真实图片：自动取消虚线框（保留 szw-case-detail-placeholder 等待补图位） */
.szw-img-hint-wrap:not(.szw-case-detail-placeholder):has(> img[src*=".jpg" i]),
.szw-img-hint-wrap:not(.szw-case-detail-placeholder):has(> img[src*=".jpeg" i]),
.szw-img-hint-wrap:not(.szw-case-detail-placeholder):has(> img[src*=".png" i]),
.szw-img-hint-wrap:not(.szw-case-detail-placeholder):has(> img[src*=".webp" i]) {
    border: none !important;
    background: transparent !important;
    min-height: 0 !important;
}

.szw-img-hint-wrap:not(.szw-case-detail-placeholder):has(> img[src*=".jpg" i])::after,
.szw-img-hint-wrap:not(.szw-case-detail-placeholder):has(> img[src*=".jpeg" i])::after,
.szw-img-hint-wrap:not(.szw-case-detail-placeholder):has(> img[src*=".png" i])::after,
.szw-img-hint-wrap:not(.szw-case-detail-placeholder):has(> img[src*=".webp" i])::after {
    content: none !important;
    display: none !important;
}

.szw-img-hint-wrap:not(.szw-case-detail-placeholder):has(> img[src*=".jpg" i]) > img,
.szw-img-hint-wrap:not(.szw-case-detail-placeholder):has(> img[src*=".jpeg" i]) > img,
.szw-img-hint-wrap:not(.szw-case-detail-placeholder):has(> img[src*=".png" i]) > img,
.szw-img-hint-wrap:not(.szw-case-detail-placeholder):has(> img[src*=".webp" i]) > img {
    opacity: 1 !important;
    filter: none !important;
}

/* 背景图已替换为真实照片 */
.szw-img-hint-wrap[style*=".jpg" i]:not(.szw-case-detail-placeholder),
.szw-img-hint-wrap[style*=".jpeg" i]:not(.szw-case-detail-placeholder),
.szw-img-hint-wrap[style*=".png" i]:not(.szw-case-detail-placeholder),
.szw-img-hint-wrap[style*=".webp" i]:not(.szw-case-detail-placeholder) {
    border: none !important;
    background: transparent !important;
}

.szw-img-hint-wrap[style*=".jpg" i]:not(.szw-case-detail-placeholder)::after,
.szw-img-hint-wrap[style*=".jpeg" i]:not(.szw-case-detail-placeholder)::after,
.szw-img-hint-wrap[style*=".png" i]:not(.szw-case-detail-placeholder)::after,
.szw-img-hint-wrap[style*=".webp" i]:not(.szw-case-detail-placeholder)::after {
    content: none !important;
    display: none !important;
}

.szw-img-hint-wrap > img.szw-case-placeholder {
    min-height: 120px;
}

.brand-image.szw-img-hint-wrap,
.brand-image .szw-img-hint-wrap {
    min-height: 72px;
    min-width: 140px;
}

.brand-carousel-active .brand-image .szw-img-hint-wrap > img {
    max-height: 56px;
    width: auto;
    margin: 0 auto;
}

/* 行内/小图 */
.about-image-2 .szw-img-hint-wrap,
.single-team-items .szw-img-hint-wrap {
    min-height: 80px;
}

/* 隐藏装饰性重复图（标注也不显示） */
.about-image-items .circle-shape.szw-img-hint-wrap,
.about-image-items .border-shape.szw-img-hint-wrap,
.about-image-items .award-img.szw-img-hint-wrap {
    display: none !important;
}

/* 关于我们页详细文案 */
.szw-about-lead {
    font-size: 17px;
    line-height: 1.85;
}

.szw-about-detail {
    color: var(--text2, #8A8C94);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* 姓名+职称同一行，避免「首席技术官」被拆行 */
.about-author .author-image .content p {
    white-space: nowrap;
}

.szw-about-team-link {
    color: var(--theme, #384bff);
    font-size: 14px;
    font-weight: 500;
}

.szw-about-team-link i {
    font-size: 12px;
    margin-left: 2px;
}

.about-author .author-image a:hover .szw-about-team-link {
    text-decoration: underline;
}

.manage-it-wrapper .single-tab-items .tab-content-items .szw-tab-desc {
    color: var(--text2, #8A8C94);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 0;
    visibility: visible !important;
    animation: none !important;
}

/* 隐私政策页 */
.szw-privacy-policy {
    color: var(--text, #565656);
    font-size: 16px;
    line-height: 1.85;
}

.szw-privacy-policy h2 {
    color: var(--header, #181818);
    font-size: 22px;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.szw-privacy-policy p,
.szw-privacy-policy ul,
.szw-privacy-policy ol {
    margin-bottom: 1rem;
}

.szw-privacy-policy ul,
.szw-privacy-policy ol {
    padding-left: 1.25rem;
}

.szw-privacy-updated {
    color: var(--theme, #384bff);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.szw-privacy-intro {
    font-size: 17px;
}

.szw-privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 14px;
}

.szw-privacy-table th,
.szw-privacy-table td {
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 14px;
    vertical-align: top;
}

.szw-privacy-table th {
    background: rgba(56, 75, 255, 0.06);
    color: var(--header, #181818);
    font-weight: 600;
    text-align: left;
}

.szw-privacy-note {
    margin-top: 2rem;
    padding: 14px 18px;
    background: rgba(56, 75, 255, 0.05);
    border-left: 3px solid var(--theme, #384bff);
    font-size: 14px;
    color: #666;
}

@media (max-width: 767px) {
    .szw-privacy-table {
        font-size: 13px;
    }

    .szw-privacy-table th,
    .szw-privacy-table td {
        padding: 8px 10px;
    }
}

/* 在线咨询 / 联系表单提交反馈 */
.szw-inquiry-alt {
    font-size: 13px;
    color: var(--text2, #8A8C94);
    line-height: 1.6;
}

.szw-inquiry-alt a {
    color: var(--theme, #384bff);
}

.form-message {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    min-height: 0;
}

.form-message.success {
    color: #1a7f4b;
}

.form-message.error {
    color: #c0392b;
}

.form-message.error a {
    color: var(--theme, #384bff);
    text-decoration: underline;
}

/* 团队详情 · 专业能力进度条 */
.team-skill-wrapper .progress-wrap .pro-items .progress {
    background: rgba(255, 255, 255, 0.28);
    overflow: hidden;
}

.team-skill-wrapper .progress-wrap .pro-items .progress-value.szw-skill-bar {
    animation: none;
    width: 0;
    background: #ffffff;
    box-shadow: none;
    transition: width 1.6s ease;
}

.team-skill-wrapper .progress-wrap .pro-items .progress-value.szw-skill-bar.is-active {
    width: var(--szw-skill-pct, 0%);
}

/* 卡片区块：取消 active 常驻高亮，仅鼠标悬停时生效 */
.service-box-items.active:not(:hover)::before {
    transform: scale(1, 0);
    transform-origin: bottom center;
}

.service-box-items.active:not(:hover)::after {
    bottom: -50px;
    visibility: hidden;
    opacity: 0;
}

.service-box-items.active:not(:hover) .icon {
    color: var(--theme);
    transform: none;
}

.service-box-items.active:not(:hover) .content h3 a,
.service-box-items.active:not(:hover) .content h3,
.service-box-items.active:not(:hover) .content p {
    color: inherit;
}

.service-box-items.active:not(:hover) .arrow-icon {
    color: var(--theme);
    transform: rotate(-50deg);
}

.service-box-items.style-2.active:not(:hover)::after {
    opacity: 0;
}

.service-box-items.style-2.active:not(:hover) .icon,
.service-box-items.style-2.active:not(:hover) .content h6 a {
    color: inherit;
}

.service-wrapper-2 .service-box-items-2.active:not(:hover) {
    border-color: transparent;
}

/* 首页特性卡片：右侧色条默认隐藏，悬停时显示 */
.single-feature-items::before {
    width: 0;
    opacity: 0;
}

.single-feature-items:hover::before,
.single-feature-items.active:hover::before {
    width: 20%;
    opacity: 1;
    background-color: #DCB49A;
}

.single-feature-items.active:not(:hover)::before {
    width: 0;
    opacity: 0;
}

.feature-icon-box-wrapper .icon-box-items.active:not(:hover)::before {
    opacity: 0;
}

/* 特性图标区块：悬停下划线固定在文字区域底部，各行对齐一致 */
.feature-icon-box-wrapper .row > [class*="col-"] {
    display: flex;
}

.feature-icon-box-wrapper .icon-box-items {
    width: 100%;
    align-items: flex-start !important;
    flex: 1;
}

.feature-icon-box-wrapper .icon-box-items::before {
    display: none !important;
}

.feature-icon-box-wrapper .icon-box-items .content {
    position: relative;
    flex: 1;
    padding-bottom: 16px;
}

.feature-icon-box-wrapper .icon-box-items .content::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--theme, #384bff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-icon-box-wrapper .icon-box-items:hover .content::after {
    opacity: 1;
}

.feature-icon-box-wrapper .icon-box-items.active:not(:hover) .content::after {
    opacity: 0;
}

.service-counter-wrapper .service-counter-items.active:not(:hover)::before {
    top: -50px;
    visibility: hidden;
    opacity: 0;
}

.service-counter-wrapper .service-counter-items.active:not(:hover) .icon {
    transform: none;
}

.single-news-items.active:not(:hover) .news-image .icon {
    visibility: hidden;
    opacity: 0;
}

/* 定价卡片：悬停时应用原 active 样式 */
.pricing-items:hover {
    background-color: var(--theme2);
    transform: translateY(-10px);
}

.pricing-items:hover .pricing-header {
    border-bottom: 1px solid #ffffff1a;
}

.pricing-items:hover .pricing-header h2,
.pricing-items:hover .pricing-header h2 sub,
.pricing-items:hover .pricing-header .offer-text-area h4,
.pricing-items:hover .pricing-header .offer-text-area .offer,
.pricing-items:hover .pricing-list li,
.pricing-items:hover .pricing-list li i {
    color: var(--white);
}

.pricing-items:hover .pricing-header .offer-text-area .offer {
    background: rgba(255, 255, 255, 0.15);
}

.pricing-items:hover .pricing-button {
    margin-top: 50px;
}

.pricing-items:hover .pricing-button .theme-btn {
    background-color: var(--white);
    color: var(--theme2);
    border-color: var(--white);
}

.pricing-items:hover .pricing-button .theme-btn i {
    color: var(--theme2);
}

.pricing-items.active:not(:hover) {
    background-color: transparent;
    transform: none;
}

.pricing-items.active:not(:hover) .pricing-header {
    border-bottom-color: var(--border, #eee);
}

.pricing-items.active:not(:hover) .pricing-header h2,
.pricing-items.active:not(:hover) .pricing-header h2 sub {
    color: var(--header);
}

.pricing-items.active:not(:hover) .pricing-header .offer-text-area h4 {
    color: var(--header);
}

.pricing-items.active:not(:hover) .pricing-header .offer-text-area .offer {
    color: var(--white);
    background-color: var(--theme2);
}

.pricing-items.active:not(:hover) .pricing-list li {
    color: #565463;
}

.pricing-items.active:not(:hover) .pricing-list li i {
    color: var(--theme2);
}

.pricing-items.active:not(:hover) .pricing-button .theme-btn {
    background-color: transparent;
    color: var(--black);
    border-color: #F2F2F2;
}

.pricing-items.active:not(:hover) .pricing-button .theme-btn i {
    color: var(--black);
}

/* 联系页：国内地图（百度 / 高德） */
.szw-contact-map-wrap {
    position: relative;
}

.szw-contact-map {
    width: 100%;
    height: 500px;
    background: #eef2f7;
    overflow: hidden;
}

.szw-contact-map iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
}

.szw-contact-map-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    padding: 14px 16px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.szw-map-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme, #086ad8);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.szw-map-nav-link:hover {
    opacity: 0.85;
    color: var(--theme, #086ad8);
}

.szw-map-info {
    padding: 4px 2px;
    line-height: 1.5;
    font-size: 14px;
}

.szw-map-info strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.szw-map-info p {
    margin: 0;
    color: #475569;
}

@media (max-width: 767px) {
    .szw-contact-map,
    .szw-contact-map iframe {
        height: 360px;
    }
}

/* 新闻搜索：无结果提示 */
.szw-news-search-empty {
    margin-top: 8px;
}

.szw-news-search-empty__inner {
    text-align: center;
    padding: 48px 28px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
}

.szw-news-search-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    font-size: 26px;
    color: var(--theme, #086ad8);
    background: rgba(8, 106, 216, 0.08);
    border-radius: 50%;
}

.szw-news-search-empty h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0f172a;
}

.szw-news-search-empty__query-wrap {
    margin-bottom: 10px;
    font-size: 16px;
    color: #475569;
}

.szw-news-search-empty__query-wrap strong {
    color: var(--theme, #086ad8);
    font-weight: 700;
}

.szw-news-search-empty__hint {
    max-width: 520px;
    margin: 0 auto 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
}

.szw-news-search-clear-btn {
    margin-top: 4px;
}
