/*
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;
}

/*
 * Logo 图片：等比例完整显示，不拉伸、不被盒子边缘裁切（原始大小）
 */
.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;
}

/* ================================================================
   数之微官网 · 轻量科技质感层
   仅增强视觉与交互反馈，不改变页面内容和信息结构。
   ================================================================ */
:root {
    --szw-premium-blue: #2288ff;
    --szw-premium-cyan: #56e5ff;
    --szw-premium-violet: #8b5cff;
    --szw-premium-ink: #071426;
    --szw-premium-glass: rgba(255, 255, 255, 0.72);
    --szw-premium-line: rgba(80, 158, 255, 0.22);
    --szw-premium-shadow: 0 24px 70px rgba(17, 63, 121, 0.12);
}

::selection {
    color: #fff;
    background: var(--szw-premium-blue);
}

/* 导航：滚动后呈现克制的玻璃质感 */
.sticky.header-1 {
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 16px 44px rgba(7, 35, 70, 0.1);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    backdrop-filter: blur(18px) saturate(150%);
}

.header-main .main-menu ul li > a {
    transition: color 0.25s ease, transform 0.25s ease;
}

.header-main .main-menu ul li:hover > a {
    transform: translateY(-1px);
}

/* 首屏：让呼吸光场融入背景，不占据内容空间 */
.hero-section.hero-1 {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--szw-premium-ink);
}

.hero-1 .slide-bg::before {
    z-index: 0;
    background:
        radial-gradient(circle at 76% 44%, rgba(43, 143, 255, 0.22), transparent 27%),
        linear-gradient(90deg, rgba(3, 14, 29, 0.9) 0%, rgba(4, 20, 40, 0.72) 48%, rgba(3, 13, 28, 0.45) 100%);
}

.hero-1 .slide-bg::after {
    position: absolute;
    inset: -14%;
    z-index: 1;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle 260px at var(--szw-glow-x, 78%) var(--szw-glow-y, 43%), rgba(80, 226, 255, 0.25), transparent 72%),
        radial-gradient(ellipse 34% 46% at 82% 38%, rgba(65, 125, 255, 0.28), transparent 72%),
        radial-gradient(ellipse 25% 34% at 65% 76%, rgba(132, 78, 255, 0.2), transparent 74%);
    filter: blur(10px) saturate(125%);
    opacity: 0.86;
    transform-origin: 76% 48%;
    animation: szw-ambient-breathe 8s ease-in-out infinite alternate;
}

.hero-1 .slide-bg .container {
    position: relative;
    z-index: 2;
}

.hero-1 .frame-shape {
    visibility: hidden;
    opacity: 0;
}

.hero-1 .hero-content h4 {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 28px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(8, 27, 52, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.hero-1 .hero-content h4::before {
    display: inline-block;
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    margin-right: 10px;
    content: "";
    border-radius: 50%;
    background: #7cecff;
    box-shadow: 0 0 0 5px rgba(86, 229, 255, 0.1), 0 0 22px rgba(86, 229, 255, 0.85);
    animation: szw-energy-dot 3s ease-in-out infinite;
}

.hero-1 .hero-content h1 {
    max-width: 820px;
    font-size: clamp(50px, 4.45vw, 68px);
    line-height: 1.13;
    letter-spacing: -0.045em;
    text-wrap: balance;
    text-shadow: 0 10px 38px rgba(0, 0, 0, 0.32);
}

.hero-1 .theme-btn {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: linear-gradient(120deg, #1178ee 0%, #4b8dff 38%, #735cff 68%, #19bfe6 100%);
    background-size: 220% 100%;
    box-shadow: 0 14px 38px rgba(30, 116, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    animation: szw-gradient-flow 7s ease-in-out infinite alternate;
}

.hero-1 .theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(30, 116, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

/* 呼吸光随鼠标落在有实际信息的卡片上，成为内容反馈而非独立装饰 */
.single-feature-items,
.szw-service-card {
    --szw-card-x: 72%;
    --szw-card-y: 26%;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.single-feature-items::after,
.szw-service-card::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    background: radial-gradient(circle 180px at var(--szw-card-x) var(--szw-card-y), rgba(63, 188, 255, 0.18), rgba(126, 91, 255, 0.08) 42%, transparent 72%);
    opacity: 0.38;
    transition: opacity 0.35s ease;
}

.single-feature-items:hover::after,
.szw-service-card:hover::after {
    opacity: 1;
}

.single-feature-items > *,
.szw-service-card > * {
    position: relative;
    z-index: 1;
}

.single-feature-items .icon {
    border: 1px solid rgba(99, 194, 255, 0.24);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(230, 246, 255, 0.88));
    animation: szw-icon-breathe 5.5s ease-in-out infinite;
}

.szw-service-card__icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(79, 178, 255, 0.2);
    border-radius: 17px;
    background: linear-gradient(145deg, rgba(235, 249, 255, 0.96), rgba(238, 235, 255, 0.86));
    box-shadow: inset 0 1px 0 #fff;
    animation: szw-icon-breathe 5.5s ease-in-out infinite;
}

/* 卡片与图片：统一圆角、轻玻璃边框和克制的悬停抬升 */
.single-feature-items,
.service-box-items,
.service-wrapper-2 .service-box-items-2,
.pricing-items,
.szw-service-card,
.szw-news-search-empty__inner {
    border: 1px solid var(--szw-premium-line);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(18, 58, 108, 0.08);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.single-feature-items:hover,
.service-box-items:hover,
.service-wrapper-2 .service-box-items-2:hover,
.pricing-items:hover,
.szw-service-card:hover {
    border-color: rgba(50, 151, 255, 0.44);
    box-shadow: var(--szw-premium-shadow), 0 0 0 1px rgba(98, 205, 255, 0.08);
    transform: translateY(-8px);
}

.single-team-items .team-image,
.single-news-items .news-image,
.project-section .project-image,
.szw-partner-card,
.about-image,
.contact-image {
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(11, 43, 84, 0.11);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s ease;
}

.single-team-items:hover .team-image,
.single-news-items:hover .news-image,
.project-section .project-image:hover,
.szw-partner-card:hover {
    box-shadow: 0 28px 72px rgba(11, 58, 117, 0.17);
    transform: translateY(-7px);
}

.section-title > span {
    letter-spacing: 0.12em;
    text-shadow: 0 0 22px rgba(43, 143, 255, 0.22);
    animation: szw-label-breathe 5s ease-in-out infinite;
}

.section-title h2 {
    letter-spacing: -0.025em;
    text-wrap: balance;
}

@keyframes szw-ambient-breathe {
    0% { opacity: 0.64; transform: translate3d(-1.5%, 1%, 0) scale(0.94); }
    100% { opacity: 0.96; transform: translate3d(1.5%, -1%, 0) scale(1.06); }
}

@keyframes szw-energy-dot {
    0%, 100% { opacity: 0.62; transform: scale(0.84); }
    50% { opacity: 1; transform: scale(1.12); }
}

@keyframes szw-gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes szw-icon-breathe {
    0%, 100% { box-shadow: 0 10px 32px rgba(37, 139, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9); }
    50% { box-shadow: 0 13px 40px rgba(37, 139, 255, 0.2), 0 0 30px rgba(102, 106, 255, 0.09), inset 0 1px 0 rgba(255, 255, 255, 1); }
}

@keyframes szw-label-breathe {
    0%, 100% { text-shadow: 0 0 14px rgba(43, 143, 255, 0.1); }
    50% { text-shadow: 0 0 26px rgba(43, 143, 255, 0.3); }
}

@media (max-width: 1399px) {
    .hero-1 .hero-content h1 {
        max-width: 700px;
        font-size: clamp(48px, 4.35vw, 60px);
    }
}

@media (max-width: 991px) {
    .hero-1 .hero-content h1 {
        max-width: 640px;
        font-size: clamp(40px, 7vw, 56px);
    }
}

@media (max-width: 575px) {
    .hero-1 .hero-content h4 {
        display: inline-block;
        padding: 8px 12px;
        font-size: 15px;
        line-height: 1.5;
    }

    .hero-1 .hero-content h1 {
        font-size: clamp(31px, 10vw, 42px);
        letter-spacing: -0.035em;
    }

    .single-feature-items,
    .service-box-items,
    .service-wrapper-2 .service-box-items-2,
    .pricing-items {
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-1 .slide-bg::after,
    .hero-1 .hero-content h4::before,
    .hero-1 .theme-btn,
    .single-feature-items .icon,
    .szw-service-card__icon,
    .section-title > span {
        animation: none !important;
    }

    .single-feature-items,
    .service-box-items,
    .service-wrapper-2 .service-box-items-2,
    .single-team-items .team-image,
    .single-news-items .news-image,
    .project-section .project-image,
    .szw-partner-card,
    .theme-btn {
        transition-duration: 0.01ms !important;
    }
}

/* ==================================================================
   数之微官网 3.0 · Industrial Intelligence System
   数据场、Bento 信息架构与深浅界面节奏，仅作用于 index3.0.html。
   ================================================================== */
body.szw-v3 {
    --szw-v3-ink: #04080f;
    --szw-v3-panel: #081120;
    --szw-v3-panel-soft: #0c1828;
    --szw-v3-blue: #1e7ff0;
    --szw-v3-cyan: #58c3eb;
    --szw-v3-violet: #8677f8;
    --szw-v3-paper: #f4f6f9;
    --szw-v3-line: rgba(130, 190, 230, 0.16);
    overflow-x: clip;
    color: #111827;
    background: var(--szw-v3-paper);
}

.szw-v3-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 2px;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.08);
}

.szw-v3-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #1e7ff0, #58c3eb);
    box-shadow: 0 0 12px rgba(40, 140, 255, 0.45);
    transform: scaleX(var(--szw-v3-progress, 0));
    transform-origin: left center;
}

/* 滚动条加宽（右侧拖拽条），深海军蓝主题 */
html {
    scrollbar-width: auto;
    scrollbar-color: #1e4f8a #eef1f6;
}

html::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

html::-webkit-scrollbar-track {
    background: #eef1f6;
}

html::-webkit-scrollbar-thumb {
    background: #1e4f8a;
    border: 3px solid #eef1f6;
    border-radius: 8px;
}

html::-webkit-scrollbar-thumb:hover {
    background: #2f7fd8;
}

html::-webkit-scrollbar-corner {
    background: #eef1f6;
}

/* 顶部信息条：与 index.html 一致的模板样式（浅色底 + 深色字），下滑时不固定 */
.szw-v3 .header-top-section-3 {
    position: relative;
    z-index: 1000;
}

.szw-v3 .header-top-section-3 .container-fluid {
    padding: 0 clamp(18px, 3vw, 54px);
}

.szw-v3 .header-top-wrapper.style-3 {
    min-height: 38px;
    padding: 0;
}

.szw-v3 .header-section-1 {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 120;
}

.szw-v3 .header-1,
.szw-v3 .sticky.header-1 {
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.szw-v3 .header-1 .mega-menu-wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 clamp(18px, 2.4vw, 48px);
    border: 0;
    border-bottom: 1px solid #e6ebf1;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 30px rgba(18, 48, 88, 0.08);
    backdrop-filter: blur(18px);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* 通栏导航：去掉模板容器的 50px 留白 */
.szw-v3 .header-1 .container-fluid {
    padding: 0;
}

.szw-v3 .sticky.header-1 .mega-menu-wrapper {
    margin-top: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 10px 26px rgba(18, 48, 88, 0.12);
}

.szw-v3 .header-main {
    min-height: 72px;
}

/* 保证任意桌面宽度下导航始终单行，不换行遮挡首屏 */
.szw-v3 .header-1 .mega-menu-wrapper .header-main .header-left {
    gap: clamp(26px, 3vw, 62px);
}

.szw-v3 .header-1 .mega-menu-wrapper .header-main .header-right {
    gap: clamp(14px, 1.5vw, 32px);
}

.szw-v3 .header-main .main-menu ul li {
    margin-inline-end: clamp(10px, 1.3vw, 26px);
}

/* 菜单改为 flex：消除 inline-block 空白字符占宽导致的意外换行 */
.szw-v3 .header-main .main-menu > nav > ul {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.szw-v3 .header-main .main-menu > nav > ul > li {
    flex: 0 0 auto;
}

.szw-v3 .header-1 .logo {
    display: grid;
    width: auto;
    height: auto;
    min-height: 44px;
    padding: 4px 0;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.szw-v3 .header-1 .logo img {
    width: 156px !important;
    height: auto !important;
    min-height: 0 !important;
    max-width: 156px !important;
    max-height: 58px !important;
    padding: 0 !important;
    object-fit: contain !important;
}

.szw-v3 .header-main .main-menu ul li > a,
.szw-v3 .sticky .header-main .main-menu ul li > a {
    position: relative;
    color: #333d4c;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.szw-v3 .header-main .main-menu ul li > a::before {
    position: absolute;
    right: 0;
    bottom: 19px;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--szw-v3-blue), transparent);
    opacity: 0;
    transform: scaleX(0.35);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.szw-v3 .header-main .main-menu ul li:hover > a,
.szw-v3 .header-main .main-menu ul li.active > a {
    color: var(--szw-v3-blue);
}

.szw-v3 .header-main .main-menu ul li:hover > a::before,
.szw-v3 .header-main .main-menu ul li.active > a::before {
    opacity: 1;
    transform: scaleX(1);
}

.szw-v3 .header-main .main-menu ul li .submenu {
    border: 1px solid #e6ebf1;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 24px 54px rgba(18, 48, 88, 0.14);
    overflow: hidden;
}

.szw-v3 .header-main .main-menu ul li .submenu li a {
    color: #3c4657;
}

.szw-v3 .header-main .main-menu ul li .submenu li a:hover {
    color: var(--szw-v3-blue);
}

.szw-v3 .header-main .main-menu ul li .submenu li a::before {
    display: none;
}

.szw-v3 .header-main .header-right .link-btn,
.szw-v3 .header-main .header-right .search-icon,
.szw-v3 .header-main .header-right .sidebar__toggle {
    color: #333d4c !important;
}

.szw-v3 .header-main .header-right .header-button {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.szw-v3 .header-main .header-right .header-button .link-btn {
    color: #333d4c;
    font-weight: 600;
}

.szw-v3 .header-main .header-right .header-button .link-btn:hover {
    color: var(--szw-v3-blue);
}

.szw-v3 .header-main .header-right .contact-info .content p,
.szw-v3 .header-main .header-right .contact-info .content h6 a {
    color: #333d4c;
}

.szw-v3 .header-main .header-right .contact-info .icon img {
    filter: none;
}

/* 导航手动收起/展开控制（首页遮挡内容时可折叠菜单分组） */
.szw-v3-nav-fold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #dbe3ec;
    border-radius: 11px;
    color: #3c4657;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.szw-v3-nav-fold:hover {
    border-color: rgba(30, 127, 240, 0.45);
    color: var(--szw-v3-blue);
    background: rgba(30, 127, 240, 0.08);
}

.szw-v3-nav-fold i {
    font-size: 15px;
    line-height: 1;
}

@media (min-width: 992px) {
    .szw-v3-nav-folded .header-main .main-menu,
    .szw-v3-nav-folded .header-main .header-right .header-button,
    .szw-v3-nav-folded .header-main .header-right .search-icon {
        display: none !important;
    }

    .szw-v3-nav-folded .mega-menu-wrapper,
    .szw-v3-nav-folded .sticky.header-1 .mega-menu-wrapper {
        width: 100%;
        max-width: none;
        margin-top: 0;
        border-radius: 0;
    }

    .szw-v3-nav-folded .header-main {
        min-height: 62px;
    }

    .szw-v3-nav-folded .header-main .header-right {
        gap: 12px;
    }
}

@media (max-width: 991px) {
    .szw-v3-nav-fold {
        display: none !important;
    }
}

/* 首屏：数据网络承担视觉主体，不使用独立发光物体 */
.szw-v3 .hero-section.hero-1 {
    min-height: min(860px, 100svh);
    background: var(--szw-v3-ink);
}

.szw-v3 .hero-1 .hero-slider-active,
.szw-v3 .hero-1 .slick-list,
.szw-v3 .hero-1 .slick-track,
.szw-v3 .hero-1 .slide-bg {
    min-height: min(860px, 100svh);
}

.szw-v3 .hero-1 .slide-bg {
    position: relative;
    display: flex !important;
    align-items: center;
    padding: 150px 0 72px;
}

.szw-v3 .hero-1 .slide-bg::before {
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(3, 9, 21, 0.98) 0%, rgba(4, 13, 29, 0.9) 42%, rgba(5, 15, 31, 0.5) 76%, rgba(3, 9, 20, 0.68) 100%),
        linear-gradient(0deg, rgba(3, 9, 20, 0.86) 0%, transparent 42%);
}

.szw-v3 .hero-1 .slide-bg::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
    background-image:
        linear-gradient(rgba(91, 189, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 189, 255, 0.055) 1px, transparent 1px),
        linear-gradient(110deg, transparent 42%, rgba(65, 172, 255, 0.11) 49.8%, transparent 50.2%);
    background-size: 68px 68px, 68px 68px, 220% 100%;
    filter: none;
    opacity: 0.72;
    transform: none;
    animation: szw-v3-grid-drift 18s linear infinite;
}

.szw-v3 .hero-1 .slide-bg .container {
    position: relative;
    z-index: 4;
}

.szw-v3-data-field,
.szw-v3-scan {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.szw-v3-data-field {
    opacity: 0.9;
    mix-blend-mode: screen;
}

.szw-v3-scan {
    z-index: 3;
    height: 30%;
    background: linear-gradient(180deg, transparent, rgba(83, 200, 255, 0.05) 86%, rgba(100, 214, 255, 0.24) 100%);
    opacity: 0.62;
    animation: szw-v3-scan 8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.szw-v3 .hero-1 .hero-content {
    position: relative;
    max-width: 900px;
}

.szw-v3 .hero-1 .hero-content::before {
    position: absolute;
    top: -28px;
    left: -28px;
    width: 76px;
    height: 76px;
    content: "";
    border-top: 1px solid rgba(104, 214, 255, 0.48);
    border-left: 1px solid rgba(104, 214, 255, 0.48);
    pointer-events: none;
}

.szw-v3 .hero-1 .hero-content h4 {
    margin-bottom: 24px;
    padding: 9px 13px;
    border-color: rgba(94, 207, 255, 0.25);
    border-radius: 6px;
    color: rgba(212, 241, 255, 0.9);
    background: rgba(7, 24, 47, 0.58);
    box-shadow: inset 3px 0 0 var(--szw-v3-cyan);
    backdrop-filter: blur(14px);
    font-family: Consolas, "SFMono-Regular", monospace;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.szw-v3 .hero-1 .hero-content h4::before {
    display: none;
    animation: none;
}

.szw-v3 .hero-1 .hero-content h1 {
    max-width: 900px;
    margin-bottom: 38px;
    color: #f7fbff;
    font-size: clamp(56px, 5.4vw, 82px);
    font-weight: 750;
    line-height: 1.04;
    letter-spacing: -0.055em;
    text-shadow: 0 20px 60px rgba(0, 0, 0, 0.48);
}

/* 首屏按钮统一为全页默认特效（与「了解更多」同款：实心蓝底圆角，悬停两侧填充上扫 + 箭头位移） */
.szw-v3 .hero-1 .theme-btn {
    min-width: 196px;
    border: 0;
    border-radius: 7px;
    background: var(--theme);
    background-size: auto;
    box-shadow: none;
    clip-path: none;
    animation: none;
}

.szw-v3 .hero-1 .theme-btn:hover {
    transform: none;
    box-shadow: none;
}

.szw-v3 .hero-1 .slick-arrow {
    z-index: 8;
    border-color: rgba(126, 214, 255, 0.28);
    color: #dff7ff;
    background: rgba(5, 16, 34, 0.54);
    backdrop-filter: blur(12px);
}

/* 统一标题，不再持续呼吸发光 */
.szw-v3 .section-title > span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #1681ed;
    font-family: Consolas, "SFMono-Regular", monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-shadow: none;
    animation: none;
}

.szw-v3 .section-title > span::before {
    width: 18px;
    height: 1px;
    content: "";
    background: currentColor;
    box-shadow: 7px 0 12px currentColor;
}

.szw-v3 .section-title h2 {
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

/* 核心能力：真正的 Bento 层级 */
.szw-v3 .feature-section {
    position: relative;
    z-index: 10;
    margin-top: -62px;
    padding: 0 0 120px;
    background: transparent;
}

.szw-v3 .feature-section .shape-image {
    display: none;
}

.szw-v3 .feature-section .row {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(166px, auto));
    gap: 18px;
}

.szw-v3 .feature-section .row > [class*="col-"] {
    width: auto;
    max-width: none;
    padding: 0;
}

.szw-v3 .feature-section .row > :nth-child(1) {
    grid-row: 1 / span 2;
    grid-column: 1 / span 7;
}

.szw-v3 .feature-section .row > :nth-child(2),
.szw-v3 .feature-section .row > :nth-child(3) {
    grid-column: 8 / -1;
}

.szw-v3 .single-feature-items {
    --szw-v3-rx: 0deg;
    --szw-v3-ry: 0deg;
    height: 100%;
    min-height: 166px;
    padding: clamp(28px, 3vw, 46px);
    border: 1px solid rgba(111, 205, 255, 0.16);
    border-radius: 24px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(19, 46, 85, 0.95), rgba(7, 17, 35, 0.98)),
        var(--szw-v3-panel);
    box-shadow: 0 28px 80px rgba(5, 20, 47, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transform: perspective(900px) rotateX(var(--szw-v3-rx)) rotateY(var(--szw-v3-ry));
    transform-style: preserve-3d;
    transition: transform 0.18s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.szw-v3 .feature-section .row > :nth-child(1) .single-feature-items {
    min-height: 350px;
    align-items: flex-end;
    background:
        radial-gradient(circle at 82% 18%, rgba(66, 183, 255, 0.28), transparent 30%),
        linear-gradient(135deg, #0c2f58, #071425 68%);
}

.szw-v3 .feature-section .row > :nth-child(1) .single-feature-items .content::before {
    position: absolute;
    bottom: calc(100% + 34px);
    left: 0;
    width: min(58%, 380px);
    height: 145px;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 7% 72%, #9fe4ff 0 3px, rgba(88, 195, 235, 0.22) 4px 10px, transparent 11px),
        radial-gradient(circle at 39% 28%, #9fe4ff 0 3px, rgba(88, 195, 235, 0.2) 4px 9px, transparent 10px),
        radial-gradient(circle at 72% 58%, #c9bfff 0 3px, rgba(134, 119, 248, 0.2) 4px 10px, transparent 11px),
        radial-gradient(circle at 96% 17%, #9fe4ff 0 3px, rgba(88, 195, 235, 0.2) 4px 9px, transparent 10px),
        linear-gradient(157deg, transparent 20%, rgba(88, 195, 235, 0.32) 20.4% 20.8%, transparent 21.2%),
        linear-gradient(17deg, transparent 49%, rgba(70, 165, 255, 0.26) 49.4% 49.8%, transparent 50.2%);
    opacity: 0.82;
    filter: drop-shadow(0 0 10px rgba(74, 197, 255, 0.2));
}

.szw-v3 .single-feature-items::before {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    content: "";
    pointer-events: none;
    background-image:
        linear-gradient(rgba(102, 199, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 199, 255, 0.055) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.58;
}

.szw-v3 .single-feature-items::after,
.szw-v3 .szw-service-card::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: auto;
    height: auto;
    content: "";
    pointer-events: none;
    background: radial-gradient(circle 210px at var(--szw-v3-px, 72%) var(--szw-v3-py, 24%), rgba(71, 199, 255, 0.16), transparent 72%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.szw-v3 .single-feature-items:hover::after,
.szw-v3 .szw-service-card:hover::after {
    opacity: 1;
}

.szw-v3 .single-feature-items:hover {
    border-color: rgba(99, 213, 255, 0.38);
    box-shadow: 0 34px 90px rgba(5, 20, 47, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(900px) rotateX(var(--szw-v3-rx)) rotateY(var(--szw-v3-ry)) translateY(-4px);
}

.szw-v3 .single-feature-items .content span {
    color: var(--szw-v3-cyan);
    font-family: Consolas, "SFMono-Regular", monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
}

.szw-v3 .single-feature-items .content h3 {
    max-width: 560px;
    margin-top: 8px;
    color: #f5f9ff;
    font-size: clamp(24px, 2.15vw, 36px);
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.szw-v3 .single-feature-items .icon {
    border: 1px solid rgba(105, 213, 255, 0.18);
    color: var(--szw-v3-cyan);
    background: rgba(143, 219, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 50px rgba(0, 8, 25, 0.34);
    animation: none;
}

/* 解决方案：深色 12 栏 Bento，图片成为数据模块 */
.szw-v3 .service-section {
    position: relative;
    isolation: isolate;
    padding: 128px 0;
    color: #fff;
    background:
        radial-gradient(circle at 14% 10%, rgba(36, 129, 255, 0.16), transparent 28%),
        radial-gradient(circle at 88% 74%, rgba(30, 127, 240, 0.1), transparent 25%),
        #04080f;
}

.szw-v3 .service-section::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    pointer-events: none;
    background-image:
        linear-gradient(rgba(88, 173, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 173, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.szw-v3 .service-section .shape-image,
.szw-v3 .service-section .bottom-shape {
    display: none;
}

.szw-v3 .service-section .section-title h2,
.szw-v3 .service-section .section-title > span {
    color: #f3f8ff;
}

.szw-v3 .service-section .section-title > span {
    color: var(--szw-v3-cyan);
}

.szw-v3 .service-section .title-section-area {
    align-items: flex-end;
}

.szw-v3 .szw-service-grid-wrap {
    margin-top: 58px;
}

.szw-v3 .szw-service-grid-wrap .row {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.szw-v3 .szw-service-grid-wrap .row > [class*="col-"] {
    width: auto;
    max-width: none;
    padding: 0;
}

.szw-v3 .szw-service-grid-wrap .row > :nth-child(1) { grid-column: span 7; }
.szw-v3 .szw-service-grid-wrap .row > :nth-child(2) { grid-column: span 5; }
.szw-v3 .szw-service-grid-wrap .row > :nth-child(n + 3) { grid-column: span 4; }

.szw-v3 .szw-service-card {
    --szw-v3-rx: 0deg;
    --szw-v3-ry: 0deg;
    border: 1px solid rgba(112, 202, 255, 0.14);
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(145deg, rgba(14, 29, 51, 0.96), rgba(7, 16, 31, 0.98));
    box-shadow: 0 28px 70px rgba(0, 5, 18, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: perspective(1000px) rotateX(var(--szw-v3-rx)) rotateY(var(--szw-v3-ry));
    transform-style: preserve-3d;
    transition: transform 0.18s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.szw-v3 .szw-service-card:hover {
    border-color: rgba(92, 210, 255, 0.34);
    box-shadow: 0 38px 86px rgba(0, 5, 18, 0.4), 0 0 0 1px rgba(85, 198, 255, 0.06);
    transform: perspective(1000px) rotateX(var(--szw-v3-rx)) rotateY(var(--szw-v3-ry)) translateY(-5px);
}

.szw-v3 .szw-service-card__visual {
    height: 230px;
    aspect-ratio: auto;
    padding: 16px;
    border-bottom: 1px solid rgba(111, 201, 255, 0.12);
    background:
        linear-gradient(rgba(59, 142, 211, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 142, 211, 0.05) 1px, transparent 1px),
        #eaf0f6;
    background-size: 24px 24px;
}

.szw-v3 .szw-service-grid-wrap .row > :nth-child(-n + 2) .szw-service-card__visual {
    height: 300px;
}

.szw-v3 .szw-service-card__visual img {
    filter: saturate(0.82) contrast(1.03);
    transition: filter 0.35s ease, transform 0.35s ease !important;
}

.szw-v3 .szw-service-card:hover .szw-service-card__visual img {
    filter: saturate(1) contrast(1.06);
    transform: scale(1.018) !important;
}

.szw-v3 .szw-service-card__num {
    border: 1px solid rgba(130, 218, 255, 0.2);
    border-radius: 5px;
    color: #dff8ff;
    background: rgba(4, 16, 34, 0.76);
    font-family: Consolas, "SFMono-Regular", monospace;
}

.szw-v3 .szw-service-card__body {
    min-height: 260px;
    padding: 30px;
}

.szw-v3 .szw-service-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border: 1px solid rgba(91, 208, 255, 0.18);
    border-radius: 12px;
    color: var(--szw-v3-cyan);
    background: rgba(84, 194, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    font-size: 26px;
    animation: none;
}

.szw-v3 .szw-service-card h3,
.szw-v3 .szw-service-card h3 a {
    color: #f5f9ff;
}

.szw-v3 .szw-service-card p {
    color: rgba(210, 226, 242, 0.64);
}

.szw-v3 .szw-service-card__link {
    color: var(--szw-v3-cyan);
}

/* 中段视觉节奏：浅色可信区与规整图片 */
.szw-v3 .about-section,
.szw-v3 .trusted-client-section,
.szw-v3 .team-section,
.szw-v3 .news-section {
    background: var(--szw-v3-paper);
}

.szw-v3 .about-wrapper,
.szw-v3 .contact-wrapper {
    position: relative;
}

.szw-v3 .about-image,
.szw-v3 .single-team-items .team-image,
.szw-v3 .single-news-items .news-image {
    border-radius: 26px;
    box-shadow: 0 28px 80px rgba(17, 43, 75, 0.13);
}

/* 案例：深色交互控制面板 */
.szw-v3 .case-studies-1 {
    padding: 128px 0;
    background: #eef1f6;
}

.szw-v3 .szw-case-studies-layout {
    padding: clamp(34px, 5vw, 72px);
    border: 1px solid rgba(103, 198, 255, 0.16);
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 84% 18%, rgba(40, 142, 255, 0.15), transparent 28%),
        linear-gradient(145deg, #0b182b, #050c18 72%);
    box-shadow: 0 38px 100px rgba(10, 34, 67, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.szw-v3 .szw-case-studies-layout::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background-image:
        linear-gradient(rgba(91, 185, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 185, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.szw-v3 .szw-case-studies-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 54px;
    align-items: end;
    width: 100%;
    max-width: none;
    margin-bottom: 52px;
}

.szw-v3 .szw-case-studies-header .section-title h2 {
    color: #f5f9ff;
}

.szw-v3 .szw-case-studies-header .section-title > span {
    color: var(--szw-v3-cyan);
}

.szw-v3 .szw-case-studies-header > p {
    max-width: 460px;
    color: rgba(211, 226, 241, 0.66);
    line-height: 1.85;
}

.szw-v3 .szw-case-studies-body {
    position: relative;
    z-index: 1;
    align-items: stretch !important;
}

.szw-v3 .szw-case-studies-layout .case-studies-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 100%;
    padding: 0 !important;
    border: 1px solid rgba(109, 199, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.025) !important;
    background-color: rgba(255, 255, 255, 0.025) !important;
    overflow: hidden;
}

.szw-v3 .szw-case-studies-layout .case-studies-items::before {
    display: none;
}

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

.szw-v3 .szw-case-studies-layout .case-studies-items .content {
    position: relative;
    padding: 25px 24px;
    border-right: 1px solid rgba(109, 199, 255, 0.1);
    border-bottom: 1px solid rgba(109, 199, 255, 0.1);
    transition: background 0.25s ease, transform 0.25s ease;
}

.szw-v3 .szw-case-studies-layout .case-studies-items .content:hover {
    background: rgba(69, 177, 255, 0.08);
}

.szw-v3 .szw-case-studies-layout .case-studies-items .content h5 {
    color: var(--szw-v3-cyan);
    font-family: Consolas, "SFMono-Regular", monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
}

.szw-v3 .szw-case-studies-layout .case-studies-items .content h3 a {
    color: rgba(239, 247, 255, 0.74) !important;
    font-size: 17px;
    transition: color 0.25s ease, padding 0.25s ease, opacity 0.25s ease;
}

.szw-v3 .szw-case-studies-layout .case-studies-items .content h3 a:hover,
.szw-v3 .szw-case-studies-layout .case-studies-items .content h3 a.clicked {
    padding-left: 7px;
    color: #fff !important;
    opacity: 1;
}

.szw-v3 .szw-case-studies-layout .case-studies-image {
    height: 100% !important;
    min-height: 440px;
    padding: 26px;
    border: 1px solid rgba(113, 204, 255, 0.13);
    border-radius: 20px;
    background:
        linear-gradient(rgba(41, 111, 168, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(41, 111, 168, 0.06) 1px, transparent 1px),
        rgba(235, 242, 248, 0.96);
    background-size: 24px 24px;
    overflow: hidden;
}

.szw-v3 .szw-case-studies-layout .case-studies-image .icon,
.szw-v3 .szw-case-studies-link {
    border: 1px solid rgba(132, 224, 255, 0.25) !important;
    border-radius: 12px !important;
    background: rgba(6, 21, 43, 0.86) !important;
    backdrop-filter: blur(12px);
}

/* 数据指标和成果组件 */
.szw-v3 .counter-section {
    padding: 0 0 128px;
    background: #eef1f6;
}

.szw-v3 .counter-section .line-shape {
    display: none;
}

.szw-v3 .counter-wrapper {
    padding: 22px;
    border: 1px solid rgba(32, 115, 202, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 28px 80px rgba(20, 53, 91, 0.08);
    backdrop-filter: blur(18px);
}

.szw-v3 .counter-items {
    min-height: 180px;
    padding: 28px 20px;
    border: 1px solid rgba(38, 125, 215, 0.1);
    border-radius: 20px;
    background: linear-gradient(145deg, #fff, #f0f4f8);
}

/* 可信区（延长石油天然气储气调峰）左侧计数器：恢复蓝色面板 + 白字，避免白字白底看不清 */
.szw-v3 .szw-trusted-visual .counter-area .counter-items {
    min-height: 0;
    padding: 26px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.szw-v3 .counter-items .content h2 {
    color: #0a3768;
    font-size: clamp(42px, 4vw, 62px);
    letter-spacing: -0.06em;
}

.szw-v3 .testimonial-section {
    overflow-x: clip;
    background:
        radial-gradient(circle at 50% 0%, rgba(30, 127, 240, 0.09), transparent 32%),
        var(--szw-v3-paper);
}

.szw-v3 .testimonial-card-items {
    border: 1px solid rgba(39, 126, 214, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 70px rgba(18, 53, 92, 0.08);
}

/* 联系区成为页面末端的深色系统面板 */
.szw-v3 .contact-section {
    position: relative;
    overflow: hidden;
    background: #04080f;
}

/* 覆盖模板自带 .contact-section::before 浅色覆盖层（会导致白字看不清） */
.szw-v3 .contact-section::before,
.szw-v3 .contact-section::after {
    display: none;
}

.szw-v3-contact-orb-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.szw-v3-contact-orb-wrap .section-title h2 {
    color: #f7fbff;
}

.szw-v3-contact-orb-wrap .section-title > span {
    color: #7fd4f7;
}

.szw-v3-contact-orb-sub {
    max-width: 560px;
    margin: 20px auto 0;
    color: rgba(232, 242, 251, 0.88);
    font-size: 15px;
    line-height: 1.8;
}

.szw-v3-contact-orb {
    position: relative;
    display: grid;
    place-items: center;
    width: 176px;
    height: 176px;
    margin: 40px auto 26px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.szw-v3-contact-orb__ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(88, 195, 235, 0.34);
    border-radius: 50%;
    opacity: 0;
    animation: szw-v3-orb-ring 3.6s cubic-bezier(0.2, 0.6, 0.35, 1) infinite;
}

.szw-v3-contact-orb__ring--2 { animation-delay: 1.2s; }
.szw-v3-contact-orb__ring--3 { animation-delay: 2.4s; }

.szw-v3-contact-orb__core {
    position: relative;
    display: grid;
    place-items: center;
    width: 112px;
    height: 112px;
    border: 1px solid rgba(120, 210, 255, 0.3);
    border-radius: 50%;
    color: #e6f8ff;
    font-size: 42px;
    background:
        radial-gradient(circle at 32% 26%, rgba(120, 210, 255, 0.26), transparent 44%),
        linear-gradient(145deg, #123055, #060d1c 70%);
    box-shadow:
        0 30px 70px rgba(0, 4, 14, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -18px 40px rgba(30, 127, 240, 0.16);
    animation: szw-v3-orb-breathe 2.8s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.szw-v3-contact-orb:hover .szw-v3-contact-orb__core,
.szw-v3-contact-orb.is-open .szw-v3-contact-orb__core {
    animation-play-state: paused;
}

.szw-v3-contact-orb:hover .szw-v3-contact-orb__core {
    transform: scale(1.05);
    border-color: rgba(120, 210, 255, 0.5);
    box-shadow:
        0 34px 80px rgba(0, 4, 14, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -18px 40px rgba(30, 127, 240, 0.26),
        0 0 46px rgba(60, 170, 255, 0.16);
}

.szw-v3-contact-orb:active .szw-v3-contact-orb__core {
    transform: scale(0.97);
}

.szw-v3-contact-orb.is-open .szw-v3-contact-orb__ring {
    animation-play-state: paused;
    opacity: 0.22;
}

.szw-v3-contact-orb.is-open .szw-v3-contact-orb__core {
    border-color: rgba(120, 210, 255, 0.42);
    box-shadow:
        0 30px 70px rgba(0, 4, 14, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 40px rgba(60, 170, 255, 0.16);
}

.szw-v3-contact-orb__label {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(238, 247, 255, 0.9);
    font-family: Consolas, "SFMono-Regular", monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    white-space: nowrap;
}

@keyframes szw-v3-orb-ring {
    0% { transform: scale(0.72); opacity: 0.5; }
    70% { opacity: 0.12; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes szw-v3-orb-breathe {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 30px 70px rgba(0, 4, 14, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.12),
            inset 0 -18px 40px rgba(30, 127, 240, 0.16),
            0 0 22px rgba(60, 170, 255, 0.22);
    }
    50% {
        transform: scale(1.08);
        box-shadow:
            0 34px 84px rgba(0, 4, 14, 0.55),
            inset 0 1px 0 rgba(255, 255, 255, 0.16),
            inset 0 -18px 40px rgba(30, 127, 240, 0.26),
            0 0 52px rgba(60, 170, 255, 0.38);
    }
}

.szw-v3-contact-orb-panel {
    display: grid;
    grid-template-rows: 0fr;
    width: 100%;
    max-width: 820px;
    opacity: 0;
    transition: grid-template-rows 0.5s cubic-bezier(0.25, 0.8, 0.3, 1), opacity 0.4s ease;
}

.szw-v3-contact-orb-panel.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
}

.szw-v3-contact-orb-panel__inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 6px;
}

.szw-v3-contact-orb-form-card {
    padding: clamp(26px, 4vw, 46px);
    margin-top: 18px;
    border: 1px solid rgba(120, 205, 255, 0.2);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(20, 42, 72, 0.94), rgba(8, 17, 33, 0.97));
    box-shadow: 0 34px 100px rgba(0, 4, 16, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    text-align: left;
}

.szw-v3-contact-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    max-width: 720px;
    margin-top: 40px;
    text-align: left;
}

.szw-v3-contact-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 74px;
    padding: 15px 18px;
    border: 1px solid rgba(120, 205, 255, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    transition: border-color 0.25s ease, background 0.25s ease;
}

a.szw-v3-contact-chip:hover {
    border-color: rgba(140, 220, 255, 0.5);
    background: rgba(88, 195, 235, 0.12);
}

.szw-v3-contact-chip > i {
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(120, 205, 255, 0.28);
    border-radius: 12px;
    color: #8fd8ff;
    font-size: 18px;
    background: rgba(88, 195, 235, 0.1);
}

.szw-v3-contact-chip > span {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.szw-v3-contact-chip em {
    color: rgba(206, 222, 238, 0.8);
    font-family: Consolas, "SFMono-Regular", monospace;
    font-size: 11px;
    font-style: normal;
    letter-spacing: 0.16em;
}

.szw-v3-contact-chip strong {
    color: #f4faff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    word-break: break-all;
}

/* ===== 右下角悬浮留言球（智能客服式） ===== */
.szw-v3-float-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.szw-v3-float-orb {
    position: relative;
    width: 64px;
    height: 64px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.szw-v3-float-orb__ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(88, 195, 235, 0.34);
    border-radius: 50%;
    opacity: 0;
    animation: szw-v3-orb-ring 3.6s cubic-bezier(0.2, 0.6, 0.35, 1) infinite;
}

.szw-v3-float-orb__ring--2 { animation-delay: 1.2s; }

.szw-v3-float-orb__core {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(120, 210, 255, 0.35);
    border-radius: 50%;
    color: #e6f8ff;
    font-size: 26px;
    background:
        radial-gradient(circle at 32% 26%, rgba(120, 210, 255, 0.26), transparent 44%),
        linear-gradient(145deg, #123055, #060d1c 70%);
    box-shadow:
        0 14px 34px rgba(0, 4, 14, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    animation: szw-v3-orb-breathe 2.8s ease-in-out infinite;
}

.szw-v3-float-orb:hover .szw-v3-float-orb__core {
    animation-play-state: paused;
    transform: scale(1.06);
}

.szw-v3-float-panel {
    width: 330px;
    max-width: calc(100vw - 44px);
    padding: 0;
    border: 1px solid rgba(120, 205, 255, 0.22);
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(13, 29, 52, 0.98), rgba(5, 12, 24, 0.99));
    box-shadow: 0 30px 80px rgba(0, 4, 16, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateY(14px) scale(0.96);
    transform-origin: bottom right;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.szw-v3-float-widget.is-open .szw-v3-float-panel {
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
}

.szw-v3-float-panel__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(120, 205, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 17px 17px 0 0;
}

.szw-v3-float-panel__head > i {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(120, 210, 255, 0.28);
    border-radius: 12px;
    color: #8fd8ff;
    font-size: 19px;
    background: rgba(88, 195, 235, 0.1);
}

.szw-v3-float-panel__head > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    text-align: left;
}

.szw-v3-float-panel__head strong {
    color: #f4faff;
    font-size: 15px;
    font-weight: 600;
}

.szw-v3-float-panel__head span {
    color: rgba(206, 222, 238, 0.75);
    font-size: 12px;
}

.szw-v3-float-panel__close {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(120, 205, 255, 0.2);
    border-radius: 9px;
    color: rgba(220, 236, 250, 0.85);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.szw-v3-float-panel__close:hover {
    color: #fff;
    background: rgba(88, 195, 235, 0.16);
}

.szw-v3-float-panel form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px 18px;
}

.szw-v3-float-panel .form-clt input,
.szw-v3-float-panel .form-clt textarea {
    width: 100%;
    border: 1px solid rgba(130, 208, 255, 0.24);
    border-radius: 11px;
    color: #f2f9ff;
    background: rgba(255, 255, 255, 0.07);
    padding: 12px 14px;
    font-size: 14px;
    box-sizing: border-box;
}

.szw-v3-float-panel .form-clt textarea {
    min-height: 92px;
    resize: vertical;
}

.szw-v3-float-panel .form-clt input::placeholder,
.szw-v3-float-panel .form-clt textarea::placeholder {
    color: rgba(222, 236, 249, 0.55);
}

.szw-v3-float-panel .form-message {
    font-size: 13px;
    line-height: 1.6;
}

.szw-v3-float-panel .form-message.success {
    color: #7fe0a8;
}

.szw-v3-float-panel .form-message.error {
    color: #ff9d9d;
}

.szw-v3-float-panel .theme-btn {
    width: 100%;
    padding: 15px 20px;
    text-align: center;
}

@media (max-width: 575px) {
    .szw-v3-float-widget {
        right: 14px;
        bottom: 14px;
    }

    .szw-v3-float-orb {
        width: 56px;
        height: 56px;
    }

    .szw-v3-float-orb__core {
        font-size: 22px;
    }

    .szw-v3-float-panel {
        width: calc(100vw - 28px);
    }
}

.szw-v3 .contact-section .section-title h2 {
    color: #f5f9ff;
}

.szw-v3 .contact-section .section-title > span {
    color: var(--szw-v3-cyan);
}

.szw-v3 .contact-section .form-clt input,
.szw-v3 .contact-section .form-clt textarea {
    border: 1px solid rgba(130, 208, 255, 0.24);
    border-radius: 12px;
    color: #f2f9ff;
    background: rgba(255, 255, 255, 0.07);
}

.szw-v3 .contact-section .form-clt input:focus,
.szw-v3 .contact-section .form-clt textarea:focus {
    border-color: rgba(130, 208, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.szw-v3 .contact-section .form-clt input::placeholder,
.szw-v3 .contact-section .form-clt textarea::placeholder {
    color: rgba(222, 236, 249, 0.58);
}

.szw-v3 .footer-section {
    background: #02060e !important;
}

/* 页脚顶部联系方式条（原顶部信息行移至页面最下方） */
.szw-v3-bottom-contact {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 40px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(109, 204, 255, 0.12);
}

.szw-v3-bottom-contact__item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.szw-v3-bottom-contact__item > i {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(120, 205, 255, 0.25);
    border-radius: 11px;
    color: #8fd8ff;
    font-size: 16px;
    background: rgba(88, 195, 235, 0.1);
}

.szw-v3-bottom-contact__item > span {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    text-align: left;
}

.szw-v3-bottom-contact__item em {
    color: rgba(206, 222, 238, 0.72);
    font-family: Consolas, "SFMono-Regular", monospace;
    font-size: 11px;
    font-style: normal;
    letter-spacing: 0.14em;
}

.szw-v3-bottom-contact__item strong,
.szw-v3-bottom-contact__item strong a {
    color: #eaf4fd;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    word-break: break-all;
}

.szw-v3-bottom-contact__item strong a:hover {
    color: #8fd8ff;
}

@media (max-width: 991px) {
    .szw-v3-bottom-contact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
    }
}

@media (max-width: 575px) {
    .szw-v3-bottom-contact {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* 页脚底部语言切换（深色适配） */
.szw-v3 .footer-lang,
.szw-v3 .footer-lang .nice-select,
.szw-v3 .footer-lang .nice-select .list,
.szw-v3 .footer-lang .nice-select .option {
    pointer-events: auto;
}

.szw-v3 .footer-lang .nice-select,
.szw-v3 .footer-lang .nice-select .current {
    color: rgba(214, 230, 244, 0.85);
    font-size: 13px;
    padding: 6px 26px 6px 12px;
    min-width: 88px;
    border-color: rgba(120, 205, 255, 0.18);
}

.szw-v3 .footer-lang .nice-select::after {
    border-bottom-color: rgba(214, 230, 244, 0.7) !important;
    border-right-color: rgba(214, 230, 244, 0.7) !important;
}

/* 进入动画有明确方向，不做循环呼吸 */
.szw-v3-motion .szw-v3-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease var(--szw-v3-delay, 0ms), transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1) var(--szw-v3-delay, 0ms);
}

.szw-v3-motion .szw-v3-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes szw-v3-grid-drift {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 68px 68px, 68px 68px, 100% 0; }
}

@keyframes szw-v3-scan {
    0%, 8% { transform: translateY(-110%); opacity: 0; }
    18% { opacity: 0.6; }
    72% { opacity: 0.34; }
    90%, 100% { transform: translateY(330%); opacity: 0; }
}

@media (max-width: 1199px) {
    .szw-v3 .header-1 .mega-menu-wrapper {
        width: 100%;
        max-width: none;
    }

    .szw-v3 .header-main .main-menu ul li > a {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 13px;
    }

    .szw-v3 .szw-service-grid-wrap .row > :nth-child(1),
    .szw-v3 .szw-service-grid-wrap .row > :nth-child(2) {
        grid-column: span 6;
    }

    .szw-v3 .szw-service-grid-wrap .row > :nth-child(n + 3) {
        grid-column: span 6;
    }

    .szw-v3 .szw-case-studies-header {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 991px) {
    .szw-v3 .header-top-section-3 {
        display: none;
    }

    .szw-v3 .header-section-1 {
        top: 0;
    }

    .szw-v3 .header-main {
        min-height: 66px;
    }

    .szw-v3 .hero-section.hero-1,
    .szw-v3 .hero-1 .hero-slider-active,
    .szw-v3 .hero-1 .slick-list,
    .szw-v3 .hero-1 .slick-track,
    .szw-v3 .hero-1 .slide-bg {
        min-height: 760px;
    }

    .szw-v3 .hero-1 .slide-bg {
        padding: 132px 0 66px;
    }

    .szw-v3 .hero-1 .hero-content h1 {
        font-size: clamp(46px, 8vw, 68px);
    }

    .szw-v3 .feature-section {
        margin-top: -42px;
    }

    .szw-v3 .feature-section .row {
        grid-template-rows: auto;
    }

    .szw-v3 .feature-section .row > :nth-child(1),
    .szw-v3 .feature-section .row > :nth-child(2),
    .szw-v3 .feature-section .row > :nth-child(3) {
        grid-row: auto;
        grid-column: span 12;
    }

    .szw-v3 .feature-section .row > :nth-child(1) .single-feature-items {
        min-height: 250px;
    }

    .szw-v3 .szw-case-studies-layout .case-studies-image {
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .szw-v3 .header-1 .mega-menu-wrapper,
    .szw-v3 .sticky.header-1 .mega-menu-wrapper {
        width: 100%;
        max-width: none;
        margin-top: 0;
        padding: 0 16px;
        border-radius: 0;
    }

    .szw-v3 .header-1 .logo {
        width: auto;
        height: auto;
        min-height: 40px;
        border-radius: 0;
    }

    .szw-v3 .header-1 .logo img {
        width: 112px !important;
        max-width: 112px !important;
        max-height: 42px !important;
    }

    .szw-v3 .header-main .header-right .header-button,
    .szw-v3 .header-main .header-right .search-icon {
        display: none;
    }

    .szw-v3 .hero-section.hero-1,
    .szw-v3 .hero-1 .hero-slider-active,
    .szw-v3 .hero-1 .slick-list,
    .szw-v3 .hero-1 .slick-track,
    .szw-v3 .hero-1 .slide-bg {
        min-height: 700px;
    }

    .szw-v3 .hero-1 .slide-bg {
        align-items: flex-end;
        padding: 126px 0 92px;
    }

    .szw-v3 .hero-1 .slide-bg::before {
        background: linear-gradient(0deg, rgba(3, 9, 21, 0.98) 4%, rgba(3, 10, 23, 0.88) 58%, rgba(3, 10, 23, 0.58) 100%);
    }

    .szw-v3 .hero-1 .hero-content::before {
        top: -16px;
        left: -10px;
        width: 48px;
        height: 48px;
    }

    .szw-v3 .hero-1 .hero-content {
        padding: 0 12px;
        text-align: left !important;
    }

    .szw-v3 .hero-1 .hero-button {
        text-align: left;
    }

    .szw-v3 .hero-1 .hero-content h4 {
        display: inline-block;
        margin-bottom: 18px;
        padding: 8px 10px;
        font-size: 11px;
        line-height: 1.45;
    }

    .szw-v3 .hero-1 .hero-content h1 {
        margin-bottom: 28px;
        font-size: clamp(38px, 11.5vw, 52px);
        line-height: 1.06;
    }

    .szw-v3 .hero-1 .theme-btn {
        min-width: 174px;
    }

    .szw-v3 .section-title h2 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .szw-v3 .feature-section {
        margin-top: -32px;
        padding-bottom: 88px;
    }

    .szw-v3 .single-feature-items,
    .szw-v3 .feature-section .row > :nth-child(1) .single-feature-items {
        min-height: 210px;
        padding: 28px 24px;
        border-radius: 20px;
    }

    .szw-v3 .single-feature-items .content h3 {
        font-size: 25px;
    }

    .szw-v3 .single-feature-items .icon {
        width: 76px;
        height: 76px;
        line-height: 76px;
    }

    .szw-v3 .service-section,
    .szw-v3 .case-studies-1 {
        padding: 92px 0;
    }

    .szw-v3 .service-section .title-section-area {
        align-items: flex-start;
    }

    .szw-v3 .szw-service-grid-wrap .row > :nth-child(1),
    .szw-v3 .szw-service-grid-wrap .row > :nth-child(2),
    .szw-v3 .szw-service-grid-wrap .row > :nth-child(n + 3) {
        grid-column: span 12;
    }

    .szw-v3 .szw-service-grid-wrap .row > :nth-child(-n + 2) .szw-service-card__visual,
    .szw-v3 .szw-service-card__visual {
        height: 220px;
    }

    .szw-v3 .szw-service-card__body {
        min-height: 0;
        padding: 26px 22px;
    }

    .szw-v3 .szw-case-studies-layout {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .szw-v3 .szw-case-studies-layout .case-studies-items {
        grid-template-columns: 1fr;
    }

    .szw-v3 .szw-case-studies-layout .case-studies-image {
        min-height: 260px;
    }

    .szw-v3 .counter-section {
        padding-bottom: 92px;
    }

    .szw-v3 .contact-wrapper {
        border-radius: 24px;
    }

    .szw-v3-contact-orb {
        width: 148px;
        height: 148px;
        margin: 34px auto 22px;
    }

    .szw-v3-contact-orb__core {
        width: 96px;
        height: 96px;
        font-size: 28px;
    }

    .szw-v3-contact-orb-panel__inner {
        padding: 0;
    }

    .szw-v3-contact-orb-form-card {
        border-radius: 22px;
    }

    .szw-v3-contact-chips {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 32px;
    }

    .szw-v3-contact-chip {
        min-height: 64px;
        padding: 12px 14px;
        gap: 12px;
    }

    .szw-v3-contact-chip > i {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .szw-v3-contact-chip strong {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .szw-v3 .hero-1 .slide-bg::after,
    .szw-v3-scan,
    .szw-v3-contact-orb__ring,
    .szw-v3-contact-orb__core,
    .szw-v3-float-orb__ring,
    .szw-v3-float-orb__core {
        animation: none !important;
    }

    .szw-v3-contact-orb__ring,
    .szw-v3-float-orb__ring {
        opacity: 0.14;
    }

    .szw-v3-motion .szw-v3-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
