﻿/* 走进凌讯模块 - 命名空间 .alx-* 避免冲突
   位于应用领域下方，背景色 #fff */

/* ===== 整体容器 ===== */
.about-lingxun-section {
    width: 100%;
    padding: 80px 0 90px;
    background: #fff;
    box-sizing: border-box;
}

.alx-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ===== 标题 ===== */
.alx-title-row {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0 0;
}

.alx-title-deco {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 110px;
    font-weight: 900;
    color: #ededed;
    font-style: italic;
    letter-spacing: 8px;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    font-family: "Arial Black", "Microsoft YaHei", sans-serif;
}

.alx-panel {
    display: none !important;
}

    .alx-panel.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
.alx-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    position: relative;
    display: inline-block;
    z-index: 2;
    letter-spacing: 1px;
}

    .alx-title .accent {
        color: #0074bc;
    }

.alx-subtitle {
    text-align: center;
    color: #999;
    font-size: 15px;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ===== 分类标签 ===== */
.alx-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 56px;
    padding: 20px 0 50px;
    list-style: none;
    margin: 0;
}

.alx-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    min-width: 80px;
}

    .alx-tab:hover,
    .alx-tab.active {
        color: #0b308e;
    }

.alx-tab-icon {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

    .alx-tab-icon svg {
        width: 100%;
        height: 100%;
        color: #c9ced6;
        transition: color 0.35s ease, transform 0.3s ease;
    }

.alx-tab:hover .alx-tab-icon svg,
.alx-tab.active .alx-tab-icon svg {
    color: #0b308e;
}

.alx-tab:hover .alx-tab-icon,
.alx-tab.active .alx-tab-icon {
    transform: translateY(-4px);
}

.alx-tab span {
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
    transition: color 0.25s ease;
}

/* ===== 内容面板 ===== */
.alx-content {
    position: relative;
}

.alx-panel {
    display: none;
    animation: alxFadeIn 0.4s ease;
}

    .alx-panel.active {
        display: block;
    }

@keyframes alxFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== 公司介绍面板（参考 about3 mfid11 Swiper 轮播 + 缩略图布局）===== */
.alx-intro-body {
    width: 100%;
}

.alx-swiper-main {
    padding-bottom: 20px;
    overflow: hidden;
}

/* ===== Swiper 容器 ===== */
.alx-swiper-box {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 35px 10px 0;
    width: 100%;
    height: 100%;
}

/* 浮动标题 - 参考 about3 titlebox（改为静态流式，作为 slide 上方段落标题，避免与文字重叠） */
.alx-swiper-titlebox {
    width: 100%;
    position: relative;
    z-index: 10;
    margin-bottom: 18px;
}

.alx-swiper-section-title {
    color: #0074bc;
    font-size: 26px;
    padding-top: 0;
}

    .alx-swiper-section-title strong {
        display: block;
        font-weight: normal;
        padding-bottom: 20px;
        border-bottom: 1px solid #ddd;
        margin-bottom: 10px;
        position: relative;
    }

        .alx-swiper-section-title strong::before {
            content: "";
            display: block;
            width: 100px;
            height: 5px;
            background: #4177b7;
            position: absolute;
            bottom: -3px;
            left: 0;
            border-radius: 10px;
        }

    .alx-swiper-section-title p {
        margin: 0;
        background-color: #1b1b1b;
        border-radius: 3px;
        text-align: center;
        font-size: 14px;
        line-height: 26px;
        color: #f4f4f4;
        padding: 0 15px;
        display: inline-block;
    }

/* ===== 主轮播区 ===== */
.alx-swiper-gallery {
    width: 100%;
    position: relative;
    min-height: 520px;
}

.alx-swiper-slide {
    display: none;
    width: 100%;
}

    .alx-swiper-slide.active {
        display: block;
        animation: alxFadeIn 0.5s ease;
    }

@keyframes alxFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Slide 内部布局 ===== */
.alx-slide {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

/* 左侧文字区 */
.alx-slide-text {
    width: 51%;
    color: #333;
    padding-top: 0;
    overflow: hidden;
    padding-right: 2%;
    flex-shrink: 0;
}

    .alx-slide-text h2 {
        margin: 0 0 18px;
        line-height: 46px;
    }

    .alx-slide-text .alx-s1 {
        font-size: 20px;
        line-height: 46px;
        font-weight: bold;
    }

    .alx-slide-text .alx-s2 {
        font-size: 14px;
        font-weight: normal;
        line-height: 46px;
        margin-left: 15px;
        text-transform: uppercase;
        color: #999;
    }

    .alx-slide-text .alx-s3 {
        float: right;
        font-size: 57px;
        line-height: 46px;
        color: #999;
    }

.alx-slide-p p {
    font-size: 14px;
    line-height: 30px;
    color: #666;
    margin: 0 0 12px;
}

/* ===== 公司介绍 - 核心数据统计（大气版：渐变背景 + 蓝色主调 + 悬浮交互） ===== */
.alx-intro-stats {
    display: flex;
    margin-top: 32px;
    padding: 30px 10px 28px;
    border-radius: 10px;
    background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
    border-top: 2px solid #0074bc;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 18px rgba(0, 116, 188, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    /* 顶部蓝色高亮条（增强大气感） */
    .alx-intro-stats::before {
        content: "";
        position: absolute;
        top: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, #0074bc 50%, transparent 100%);
    }

.alx-stat-item {
    flex: 1;
    text-align: center;
    padding: 4px 6px;
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
}

    /* 列间细分隔线 */
    .alx-stat-item + .alx-stat-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 60%;
        background: linear-gradient(180deg, transparent 0%, #d6e4f0 50%, transparent 100%);
    }

    .alx-stat-item:hover {
        transform: translateY(-4px);
    }

.alx-stat-num {
    font-size: 38px;
    font-weight: 800;
    color: #0074bc;
    line-height: 1;
    letter-spacing: 1px;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

.alx-stat-item:hover .alx-stat-num {
    text-shadow: 0 4px 14px rgba(0, 116, 188, 0.35);
}

/* 单位 / 后缀（小一号，保持视觉层级：数字大、单位小） */
.alx-stat-num .unit {
    font-size: 22px;
    font-weight: 800;
    margin-left: 2px;
}

.alx-stat-label {
    font-size: 15px;
    color: #666;
    margin-top: 12px;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.alx-stat-item:hover .alx-stat-label {
    color: #0074bc;
}

/* 右侧视频区 - 替代 about3 的 .img */
.alx-slide-video {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 0;
}

.alx-swiper-video {
    width: 100%;
    height: 370px;
    border-radius: 8px;
    display: block;
    min-height: 0;
    object-fit: cover;
    background: #1a1a2e;
}

/* ===== "了解更多概况" 按钮 - 悬浮动画 ===== */
.alx-intro-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 32px;
    background: #0074bc;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

    /* 按钮内光晕扫过层 */
    .alx-intro-more::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
        transition: left 0.6s ease;
    }

    .alx-intro-more:hover {
        background: #0b308e;
        transform: translateY(-3px);
        box-shadow: 0 8px 22px rgba(0, 116, 188, 0.4);
    }

        .alx-intro-more:hover::before {
            left: 120%;
        }

    /* 箭头悬停右移 */
    .alx-intro-more .alx-arrow {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .alx-intro-more:hover .alx-arrow {
        transform: translateX(4px);
    }
/* ===== 底部缩略图分类标签（参考 about3 mySwbox-thumbs）===== */
/* ===== 走进凌讯 - 分类标签（原 alx-swiper-thumbs，现挪到 alx-title-row 下方） ===== */
.alx-swiper-thumbs {
    margin-top: 0;
    padding: 0 20px;
}

/* 分类列表：4 列等宽居中 */
.alx-thumb-list {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0;
}

/* 每个分类项：垂直布局（图标在上，文字在下），胶囊形 hover */
.alx-thumb-item {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px 16px;
    border-radius: 12px;
    background: #f5f7fa;
    border: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

    .alx-thumb-item:hover,
    .alx-thumb-item.active {
        background: #0074bc;
        border-color: #0074bc;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(11, 48, 142, 0.2);
    }

/* 图标：默认蓝色，hover/选中变白 */
.alx-thumb-icon {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    color: #0074bc;
    transition: color 0.3s ease, transform 0.3s ease;
}

.alx-thumb-item:hover .alx-thumb-icon,
.alx-thumb-item.active .alx-thumb-icon {
    color: #fff;
    transform: scale(1.08);
}

.alx-thumb-icon svg {
    width: 48px;
    height: 48px;
    fill: currentColor;
}
/* img 图标：默认蓝色 #0074bc，hover/选中变白 */
.alx-thumb-icon img.icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(19%) sepia(96%) saturate(2576%) hue-rotate(188deg) brightness(94%) contrast(101%);
    transition: filter 0.3s ease;
}

.alx-thumb-item:hover .alx-thumb-icon img.icon,
.alx-thumb-item.active .alx-thumb-icon img.icon {
    filter: brightness(0) invert(1);
}

/* 文字：默认深灰，hover/选中变白 */
.alx-thumb-text {
    position: relative;
    z-index: 1;
    text-align: center;
}

    .alx-thumb-text h2 {
        font-size: 15px;
        margin: 0;
        line-height: 1.4;
        font-weight: 500;
        color: #1a1a1a;
        transition: color 0.3s ease;
    }

    .alx-thumb-text p {
        display: none;
    }

.alx-thumb-item:hover .alx-thumb-text h2,
.alx-thumb-item.active .alx-thumb-text h2 {
    color: #fff;
}

/* ===== 产品专利（专利证书 coverflow 轮播）面板 ===== */
.alx-patent-body,
.alx-factory-body {
    text-align: center;
}

.alx-patent-header,
.alx-factory-header {
    margin-bottom: 36px;
    margin-top: 40px;
}

.alx-patent-title,
.alx-factory-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    letter-spacing: 2px;
}

.alx-patent-subtitle,
.alx-factory-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0;
    color: #888;
    font-size: 14px;
    letter-spacing: 1px;
}

    .alx-patent-subtitle span,
    .alx-factory-subtitle span {
        width: 60px;
        height: 1px;
        background: #d0d4dc;
    }

/* ===== Swiper 通用样式 ===== */
.alx-cov {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0 20px;
    overflow: hidden;
}

    .alx-cov .swiper-wrapper {
        align-items: center;
    }

/* 单个 slide —— 白色边框 + 阴影 */
.alx-cov-slide {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* 导航按钮 —— 橙色方块（参考 #f8b823, 45x80px） */
.alx-cov-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 80px;
    background: #0074bc;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: margin 0.5s ease, background 0.3s ease;
}

    .alx-cov-btn::after {
        content: "";
        width: 14px;
        height: 14px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
    }

.alx-cov-prev {
    left: 2%;
}

    .alx-cov-prev::after {
        transform: rotate(-135deg);
        margin-left: 5px;
    }

.alx-cov-next {
    right: 2%;
}

    .alx-cov-next::after {
        transform: rotate(45deg);
        margin-right: 5px;
    }

.alx-cov-prev:hover {
    margin-left: -10px;
    background: #12699f;
}

.alx-cov-next:hover {
    margin-right: -10px;
    background: #12699f;
}

/* 分页器 —— 圆点 + 激活态长条（参考 swiper-pagination-bullet-active） */
.alx-cov-dots {
    position: relative !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    bottom: auto !important;
}

    .alx-cov-dots .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ccc;
        opacity: 1;
        transition: all 0.3s ease;
    }

    .alx-cov-dots .swiper-pagination-bullet-active {
        width: 25px;
        border-radius: 5px;
        background: #f8b823;
    }

/* 标题浮层 —— 所有 slide 默认显示 */
.alx-cov-title {
    width: 100%;
    padding: 0 10px;
    text-align: center;
    position: absolute;
    bottom: -5px;
    left: 0;
    line-height: 45px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== 产品专利 - 证书相框 ===== */
background: linear-gradient(135deg, #c9a05c 0%, #e8c97a 25%, #b88a44 50%, #e8c97a 75%, #c9a05c 100%);
padding: 8px;
border-radius: 4px;
box-shadow: 0 6px 20px rgba(184, 138, 68, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15);
transition: box-shadow 0.35s ease;
}

.alx-cov-slide.swiper-slide-active .alx-patent-frame {
    box-shadow: 0 12px 32px rgba(184, 138, 68, 0.55), 0 4px 10px rgba(0, 0, 0, 0.2);
}

.alx-patent-frame-inner {
    background: linear-gradient(180deg, #fdfdf8 0%, #f5f3e8 100%);
    border: 1px solid rgba(184, 138, 68, 0.4);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 240px;
}

.alx-patent-flag {
    font-size: 16px;
    font-weight: 700;
    color: #b88a44;
    letter-spacing: 2px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(184, 138, 68, 0.3);
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
}

.alx-patent-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    text-align: center;
    margin: 6px 0;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alx-patent-meta {
    font-size: 11px;
    color: #888;
    font-family: "Courier New", monospace;
}

.alx-patent-author {
    font-size: 12px;
    color: #555;
    margin-top: 4px;
}

.alx-patent-date {
    font-size: 11px;
    color: #999;
    margin-top: auto;
    padding-top: 8px;
}

/* ===== 封测工厂 - 图片卡片（hover 蒙层 + 放大镜，与 honor 共享 alx-honor-mask） ===== */
.alx-factory-item {
    text-align: center;
}

.alx-factory-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    background: #0b1a2e;
}

    .alx-factory-img > img,
    .alx-honor-img > img,
    .alx-culture-img > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .alx-factory-img:hover > img,
    .alx-honor-img:hover > img,
    .alx-culture-img:hover > img {
        transform: scale(1.05);
    }

.alx-factory-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 14px;
    text-align: center;
    position: relative;
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
    transition: transform 0.5s ease;
    color: #fff;
}

.alx-factory-img:hover .alx-factory-card {
    transform: scale(1.06);
}

/* 千级无尘车间 —— 冷蓝科技感 */
.alx-factory-card--clean {
    background: radial-gradient(circle at 30% 20%, rgba(120, 200, 255, 0.35) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(0, 180, 220, 0.25) 0%, transparent 50%), linear-gradient(135deg, #0a1a3a 0%, #0f2a55 50%, #1a4080 100%);
}

    .alx-factory-card--clean::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(120, 200, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(120, 200, 255, 0.08) 1px, transparent 1px);
        background-size: 22px 22px;
        pointer-events: none;
    }

/* 自动化产线 —— 暖橙工业感 */
.alx-factory-card--auto {
    background: radial-gradient(circle at 50% 0%, rgba(255, 180, 100, 0.3) 0%, transparent 50%), linear-gradient(160deg, #1a2540 0%, #2a3550 50%, #1a2030 100%);
}

    .alx-factory-card--auto::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient( 45deg, transparent 0px, transparent 12px, rgba(255, 180, 100, 0.06) 12px, rgba(255, 180, 100, 0.06) 13px );
        pointer-events: none;
    }

/* 质量检测中心 —— 紫蓝精密感 */
.alx-factory-card--qc {
    background: radial-gradient(circle at 50% 50%, rgba(180, 130, 255, 0.25) 0%, transparent 55%), linear-gradient(180deg, #16183a 0%, #20234a 50%, #181a3a 100%);
}

    .alx-factory-card--qc::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 1px 1px, rgba(180, 130, 255, 0.18) 1px, transparent 0);
        background-size: 14px 14px;
        pointer-events: none;
    }

.alx-factory-card-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(120, 200, 255, 0.4));
}

.alx-factory-card--clean .alx-factory-card-icon {
    color: #78c8ff;
}

.alx-factory-card--auto .alx-factory-card-icon {
    color: #ffb464;
}

.alx-factory-card--qc .alx-factory-card-icon {
    color: #b482ff;
}

.alx-factory-card-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.alx-factory-card-name {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.alx-factory-card-meta {
    position: relative;
    z-index: 1;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: "Arial", sans-serif;
}

.alx-factory-card-tech {
    position: relative;
    z-index: 1;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* ===== 荣誉资质面板 ===== */
.alx-honor-body {
    text-align: center;
}

.alx-honor-header {
    margin-bottom: 40px;
    margin-top: 40px;
}

.alx-honor-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px;
}

.alx-honor-subtitle {
    font-size: 18px;
    color: #999;
    letter-spacing: 2px;
    margin: 0;
}

.alx-honor-item {
    text-align: center;
}

.alx-honor-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    background: #f0f2f5;
}

.alx-honor-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* ===== 荣誉资质 - 证书卡片样式（参考图三种风格：金色 / 白色 / 蓝色） ===== */
.alx-honor-frame {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    text-align: center;
    position: relative;
    font-family: "SimSun", "STSong", "FangSong", "Microsoft YaHei", serif;
    transition: transform 0.5s ease;
}

.alx-honor-img:hover .alx-honor-frame {
    transform: scale(1.06);
}

/* 金色牌匾 */
.alx-honor-frame--gold {
    background: radial-gradient(ellipse at 50% 35%, #f8e08e 0%, #e3bd52 45%, #b8892a 100%), #c89a2c;
    color: #5c3a0a;
    border: 5px solid #b8860b;
    box-shadow: inset 0 0 24px rgba(80, 40, 0, 0.3), inset 0 0 2px rgba(255, 240, 200, 0.6);
}

    .alx-honor-frame--gold::before {
        content: "";
        position: absolute;
        inset: 6px;
        border: 1px solid rgba(255, 240, 200, 0.55);
        pointer-events: none;
    }

    .alx-honor-frame--gold .alx-honor-frame-eyebrow {
        font-size: 13px;
        color: #8b0000;
        font-weight: 700;
        letter-spacing: 3px;
        margin-bottom: 10px;
        text-shadow: 0 1px 0 rgba(255, 230, 150, 0.6);
    }

    .alx-honor-frame--gold .alx-honor-frame-name {
        font-size: 16px;
        font-weight: 700;
        color: #2a1800;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .alx-honor-frame--gold .alx-honor-frame-meta,
    .alx-honor-frame--gold .alx-honor-frame-date {
        font-size: 11px;
        color: #4a2c00;
        margin-top: 3px;
        letter-spacing: 1px;
    }

/* 白色证书（红字/红印章） */
.alx-honor-frame--white {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    color: #b8302a;
    border: 3px solid #c0392b;
    padding: 16px 12px;
}

    .alx-honor-frame--white::before {
        content: "";
        position: absolute;
        inset: 6px;
        border: 1px solid #c0392b;
        pointer-events: none;
    }

    .alx-honor-frame--white .alx-honor-frame-flag {
        font-size: 22px;
        font-weight: 700;
        color: #c0392b;
        letter-spacing: 3px;
        margin-bottom: 12px;
        font-family: "STKaiti", "KaiTi", "Microsoft YaHei", serif;
        line-height: 1.3;
    }

    .alx-honor-frame--white .alx-honor-frame-name {
        font-size: 13px;
        color: #2c2c2c;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .alx-honor-frame--white .alx-honor-frame-meta,
    .alx-honor-frame--white .alx-honor-frame-date {
        font-size: 11px;
        color: #555;
        margin-top: 3px;
    }

/* 蓝色牌匾 */
.alx-honor-frame--blue {
    background: linear-gradient(180deg, #eef5fb 0%, #c8dceb 55%, #a8c8dc 100%);
    color: #1a3a5c;
    border: 5px solid #2c5f8d;
    box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.55), inset 0 0 2px rgba(44, 95, 141, 0.4);
}

    .alx-honor-frame--blue::before {
        content: "";
        position: absolute;
        inset: 6px;
        border: 1px solid rgba(44, 95, 141, 0.45);
        pointer-events: none;
    }

    .alx-honor-frame--blue .alx-honor-frame-flag--blue {
        font-size: 13px;
        font-weight: 700;
        color: #c0392b;
        letter-spacing: 3px;
        margin-bottom: 10px;
        background: #fff;
        padding: 3px 12px;
        border-radius: 3px;
        border: 1px solid #c0392b;
        display: inline-block;
    }

    .alx-honor-frame--blue .alx-honor-frame-name {
        font-size: 15px;
        font-weight: 700;
        color: #1a3a5c;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .alx-honor-frame--blue .alx-honor-frame-meta,
    .alx-honor-frame--blue .alx-honor-frame-date {
        font-size: 11px;
        color: #1a3a5c;
        margin-top: 3px;
        letter-spacing: 1px;
    }

/* ===== 荣誉资质 - 鼠标悬停遮罩 ===== */
.alx-honor-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 48, 142, 0.88) 0%, rgba(0, 116, 188, 0.94) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.alx-honor-img:hover .alx-honor-mask,
.alx-factory-img:hover .alx-honor-mask,
.alx-culture-img:hover .alx-honor-mask {
    opacity: 1;
    visibility: visible;
}

.alx-honor-mask-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #fff;
    transform: translateY(8px);
    transition: transform 0.4s ease 0.05s;
}

.alx-honor-mask-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 16px;
    line-height: 1.5;
    transform: translateY(8px);
    transition: transform 0.4s ease 0.1s;
}

.alx-honor-zoom {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0074bc;
    transform: translateY(8px) scale(0.9);
    transition: transform 0.4s ease 0.15s, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    padding: 0;
}

    .alx-honor-zoom svg {
        width: 22px;
        height: 22px;
        display: block;
    }

.alx-honor-img:hover .alx-honor-mask-title,
.alx-honor-img:hover .alx-honor-mask-desc,
.alx-honor-img:hover .alx-honor-zoom,
.alx-factory-img:hover .alx-honor-mask-title,
.alx-factory-img:hover .alx-honor-mask-desc,
.alx-factory-img:hover .alx-honor-zoom,
.alx-culture-img:hover .alx-honor-mask-title,
.alx-culture-img:hover .alx-honor-mask-desc,
.alx-culture-img:hover .alx-honor-zoom {
    transform: translateY(0) scale(1);
}

.alx-honor-zoom:hover {
    background: #0074bc;
    color: #fff;
    transform: translateY(0) scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 116, 188, 0.5);
}

.alx-honor-zoom:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* 触摸设备（无 hover）始终显示蒙层，保证放大镜按钮可点 */
@media (hover: none) {
    .alx-honor-mask {
        opacity: 1;
        visibility: visible;
        background: linear-gradient(180deg, rgba(11, 48, 142, 0.62) 0%, rgba(0, 116, 188, 0.78) 100%);
    }

    .alx-honor-mask-title,
    .alx-honor-mask-desc,
    .alx-honor-zoom {
        transform: translateY(0) scale(1);
    }
}

/* ===== 图片预览灯箱（封测工厂 / 荣誉资质 / 企业文化 共用） ===== */
.alx-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

    .alx-lightbox.open {
        display: flex;
    }

.alx-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    animation: alxLbFadeIn 0.3s ease;
}

.alx-lightbox-content {
    position: relative;
    z-index: 2;
    width: min(640px, 86vw);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: alxLbZoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 浅蓝渐变卡片（与原 frame 风格区分：light blue 渐变 + 蓝色描边） */
.alx-lightbox-stage {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 30, 80, 0.5), 0 0 0 6px rgba(255, 255, 255, 0.95), 0 0 0 7px rgba(120, 180, 220, 0.4);
    background: linear-gradient(180deg, #e9f4fb 0%, #c2dcef 60%, #a8c8dc 100%);
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    .alx-lightbox-stage > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .alx-lightbox-stage.is-switching {
        opacity: 0;
        transform: scale(0.96);
    }

    /* 灯箱中复制的 frame —— 还原为浅蓝渐变卡片样式，覆盖原 honor frame 的颜色 */
    .alx-lightbox-stage .alx-honor-frame,
    .alx-lightbox-stage .alx-factory-card,
    .alx-lightbox-stage .alx-culture-card {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 24px 20px;
        text-align: center;
        position: relative;
        font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
        transform: none;
        /* 浅蓝渐变背景（与原 honor frame 的金色 / 白色 / 蓝色区分） */
        background: radial-gradient(ellipse at 50% 25%, rgba(255, 255, 255, 0.6) 0%, transparent 55%), linear-gradient(180deg, #e6f3fc 0%, #c2dcef 55%, #a0c4dc 100%);
        color: #1a3a5c;
        border: 4px solid #6ba3cc;
        box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.5), inset 0 0 2px rgba(44, 95, 141, 0.4);
    }

        .alx-lightbox-stage .alx-honor-frame::before,
        .alx-lightbox-stage .alx-factory-card::after,
        .alx-lightbox-stage .alx-culture-card::after {
            content: "";
            position: absolute;
            inset: 8px;
            border: 1px solid rgba(44, 95, 141, 0.45);
            pointer-events: none;
        }

    /* 灯箱中的 frame 文字 —— 加大 */
    .alx-lightbox-stage .alx-honor-frame-eyebrow,
    .alx-lightbox-stage .alx-factory-card-name,
    .alx-lightbox-stage .alx-culture-card-name {
        font-size: 22px !important;
        font-weight: 700;
        margin-bottom: 12px;
        letter-spacing: 3px;
        color: #1a3a5c;
        text-shadow: none;
    }

    .alx-lightbox-stage .alx-honor-frame-name,
    .alx-lightbox-stage .alx-factory-card-tech,
    .alx-lightbox-stage .alx-culture-card-desc {
        font-size: 16px !important;
        font-weight: 600;
        color: #1a3a5c;
        margin-bottom: 14px;
        line-height: 1.5;
        background: none;
        border: none;
        padding: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .alx-lightbox-stage .alx-honor-frame-meta,
    .alx-lightbox-stage .alx-factory-card-meta,
    .alx-lightbox-stage .alx-culture-card-meta {
        font-size: 14px !important;
        color: #2c5f8d;
        margin-top: 8px;
        letter-spacing: 2px;
        text-transform: none;
    }

    .alx-lightbox-stage .alx-honor-frame-date {
        font-size: 14px !important;
        color: #2c5f8d;
        margin-top: 6px;
    }

    .alx-lightbox-stage .alx-honor-frame-flag,
    .alx-lightbox-stage .alx-honor-frame-flag--blue {
        font-size: 18px !important;
        padding: 0;
        background: none;
        border: none;
        color: #c0392b;
        margin-bottom: 14px;
        font-family: "STKaiti", "KaiTi", "Microsoft YaHei", serif;
    }

    .alx-lightbox-stage .alx-honor-frame-flag--blue {
        display: inline-block;
        padding: 4px 18px;
        background: #fff;
        border: 1px solid #c0392b;
        border-radius: 3px;
    }

/* ===== 灯箱信息区（标签 + 标题 + 介绍） ===== */
.alx-lightbox-info {
    position: relative;
    margin-top: 28px;
    text-align: center;
    color: #fff;
    max-width: 100%;
}

/* 橙色"标签"—— 智能制造 / 荣誉资质 等 */
.alx-lightbox-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #f8b823;
    padding: 5px 16px;
    background: rgba(248, 184, 35, 0.12);
    border: 1px solid #f8b823;
    border-radius: 3px;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.alx-lightbox.open .alx-lightbox-tag {
    opacity: 1;
    transform: translateY(0);
}

.alx-lightbox-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}

.alx-lightbox.open .alx-lightbox-title {
    opacity: 1;
    transform: translateY(0);
}

.alx-lightbox-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    line-height: 1.7;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.alx-lightbox.open .alx-lightbox-desc {
    opacity: 1;
    transform: translateY(0);
}

.alx-lightbox-counter {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -42px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 2px;
    white-space: nowrap;
}

    .alx-lightbox-counter span {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
    }

/* ===== 关闭 / 上一张 / 下一张 按钮 ===== */
.alx-lightbox-close,
.alx-lightbox-prev,
.alx-lightbox-next {
    position: absolute;
    z-index: 3;
    background: rgba(20, 30, 50, 0.55);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    line-height: 1;
    border-radius: 50%;
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.alx-lightbox-close {
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    font-size: 26px;
    font-weight: 300;
}

.alx-lightbox-prev,
.alx-lightbox-next {
    top: calc(28px + (100% - 28px) * 0.32);
    width: 52px;
    height: 52px;
}

.alx-lightbox-prev {
    left: -76px;
}

.alx-lightbox-next {
    right: -76px;
}

    .alx-lightbox-prev svg,
    .alx-lightbox-next svg {
        width: 24px;
        height: 24px;
        display: block;
    }

    .alx-lightbox-close:hover,
    .alx-lightbox-prev:hover,
    .alx-lightbox-next:hover {
        background: rgba(0, 116, 188, 0.85);
        border-color: #0074bc;
        transform: scale(1.06);
    }

    .alx-lightbox-prev:hover,
    .alx-lightbox-next:hover {
        background: #0074bc;
        border-color: #0074bc;
    }

.alx-lightbox-close:hover {
    transform: scale(1.08) rotate(90deg);
}

.alx-lightbox-prev:focus-visible,
.alx-lightbox-next:focus-visible,
.alx-lightbox-close:focus-visible {
    outline: 2px solid #f8b823;
    outline-offset: 3px;
}

@keyframes alxLbFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes alxLbZoomIn {
    from {
        opacity: 0;
        transform: scale(0.86);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

body.alx-lightbox-open {
    overflow: hidden;
}

@media (max-width: 1200px) {
    .alx-lightbox-prev {
        left: 8px;
    }

    .alx-lightbox-next {
        right: 8px;
    }
}

@media (max-width: 768px) {
    .alx-lightbox-content {
        width: 92vw;
    }

    .alx-lightbox-stage {
        aspect-ratio: 4 / 3;
    }

    .alx-lightbox-prev,
    .alx-lightbox-next {
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
    }

    .alx-lightbox-prev {
        left: -6px;
    }

    .alx-lightbox-next {
        right: -6px;
    }

        .alx-lightbox-prev svg,
        .alx-lightbox-next svg {
            width: 20px;
            height: 20px;
        }

    .alx-lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .alx-lightbox-title {
        font-size: 18px;
    }

    .alx-lightbox-desc {
        font-size: 13px;
    }

    .alx-lightbox-tag {
        font-size: 12px;
        padding: 4px 12px;
    }

    .alx-lightbox-counter {
        bottom: -36px;
        font-size: 12px;
    }

    .alx-honor-mask-title {
        font-size: 16px;
    }

    .alx-honor-mask-desc {
        font-size: 11px;
        margin-bottom: 12px;
    }
}

/* ===== 企业文化面板 ===== */
.alx-culture-body {
    text-align: center;
}

.alx-culture-header {
    margin-bottom: 36px;
    margin-top: 40px;
}

.alx-culture-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    letter-spacing: 2px;
}

.alx-culture-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0;
    color: #888;
    font-size: 14px;
    letter-spacing: 1px;
}

    .alx-culture-subtitle span {
        width: 60px;
        height: 1px;
        background: #d0d4dc;
    }

/* ===== 企业文化 - 图片卡片（hover 蒙层 + 放大镜，与 honor 共享 alx-honor-mask） ===== */
.alx-culture-item {
    text-align: center;
}

.alx-culture-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    background: #1a2540;
}

.alx-culture-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 14px;
    text-align: center;
    position: relative;
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
    transition: transform 0.5s ease;
    color: #fff;
}

.alx-culture-img:hover .alx-culture-card {
    transform: scale(1.06);
}

/* 使命 —— 蓝色科技 */
.alx-culture-card--mission {
    background: radial-gradient(circle at 30% 30%, rgba(100, 180, 255, 0.35) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(50, 120, 220, 0.3) 0%, transparent 50%), linear-gradient(135deg, #0a1f4a 0%, #1a3a7a 50%, #0e2050 100%);
}

    .alx-culture-card--mission::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient( -45deg, transparent 0px, transparent 18px, rgba(100, 180, 255, 0.06) 18px, rgba(100, 180, 255, 0.06) 19px );
        pointer-events: none;
    }

/* 愿景 —— 紫色未来 */
.alx-culture-card--vision {
    background: radial-gradient(circle at 50% 0%, rgba(200, 150, 255, 0.3) 0%, transparent 55%), linear-gradient(180deg, #2a1a4a 0%, #3a2060 50%, #1a1240 100%);
}

    .alx-culture-card--vision::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 1px 1px, rgba(200, 150, 255, 0.15) 1px, transparent 0);
        background-size: 18px 18px;
        pointer-events: none;
    }

/* 价值观 —— 橙金能量 */
.alx-culture-card--values {
    background: radial-gradient(circle at 70% 30%, rgba(255, 200, 100, 0.32) 0%, transparent 50%), radial-gradient(circle at 30% 80%, rgba(255, 150, 80, 0.25) 0%, transparent 55%), linear-gradient(135deg, #3a1f10 0%, #5a2a18 50%, #2a1810 100%);
}

    .alx-culture-card--values::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient( 0deg, transparent 0px, transparent 14px, rgba(255, 200, 100, 0.06) 14px, rgba(255, 200, 100, 0.06) 15px );
        pointer-events: none;
    }

.alx-culture-card-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.alx-culture-card--mission .alx-culture-card-icon {
    color: #78c8ff;
}

.alx-culture-card--vision .alx-culture-card-icon {
    color: #c896ff;
}

.alx-culture-card--values .alx-culture-card-icon {
    color: #ffc864;
}

.alx-culture-card-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.alx-culture-card-name {
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.alx-culture-card-meta {
    position: relative;
    z-index: 1;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    margin-bottom: 14px;
    font-family: "Arial", sans-serif;
    text-transform: uppercase;
}

.alx-culture-card-desc {
    position: relative;
    z-index: 1;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* ===== 响应式 ===== */
@media (max-width: 1200px) {
    .alx-tabs {
        gap: 20px 40px;
    }

    .alx-swiper-section-title strong {
        font-size: 22px;
    }

    .alx-slide-text .alx-s3 {
        font-size: 48px;
    }

    .alx-swiper-video {
        min-height: 0;
    }

    .alx-thumb-icon svg,
    .alx-thumb-icon img.icon {
        width: 40px;
        height: 40px;
    }

    .alx-thumb-text h2 {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .about-lingxun-section {
        padding: 60px 0 70px;
    }

    .alx-title {
        font-size: 26px;
    }

    .alx-thumb-list {
        gap: 14px;
    }

    .alx-thumb-item {
        padding: 14px 8px;
    }

    .alx-thumb-icon {
        width: 40px;
        height: 40px;
    }

        .alx-thumb-icon svg,
        .alx-thumb-icon img.icon {
            width: 36px;
            height: 36px;
        }

    .alx-thumb-text h2 {
        font-size: 14px;
    }

    .alx-swiper-section-title strong {
        font-size: 22px;
    }

    .alx-culture-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-lingxun-section {
        padding: 50px 0 60px;
    }

    .alx-title {
        font-size: 24px;
    }

    .alx-title-deco {
        font-size: 70px;
    }

    .alx-tabs {
        gap: 16px 24px;
        padding: 16px 0 36px;
    }

    .alx-tab-icon {
        width: 48px;
        height: 48px;
    }

    .alx-tab span {
        font-size: 14px;
    }

    .alx-swiper-main {
        padding: 5px 0 30px 0;
    }

    .alx-swiper-box {
        padding-top: 15px;
    }

    .alx-swiper-titlebox {
        width: 100%;
        position: relative;
        margin-bottom: 12px;
    }

    .alx-swiper-section-title strong {
        font-size: 20px;
        padding-bottom: 14px;
    }

    .alx-swiper-section-title p {
        font-size: 12px;
        line-height: 24px;
    }

    .alx-slide {
        flex-direction: column;
    }

    .alx-slide-text {
        width: 100%;
        padding-top: 20px;
        padding-right: 0;
        margin-bottom: 10px;
    }

        .alx-slide-text .alx-s3 {
            display: none;
        }

    .alx-slide-video {
        width: 100%;
        margin-top: 10px;
    }

    .alx-swiper-video {
        min-height: 200px;
    }

    .alx-swiper-gallery {
        min-height: auto;
    }

    .alx-thumb-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .alx-thumb-item {
        flex-direction: row;
        padding: 12px;
        gap: 10px;
    }

    .alx-thumb-icon {
        margin-bottom: 0;
    }

    .alx-thumb-text h2 {
        font-size: 14px;
    }

    .alx-patent-title {
        font-size: 22px;
    }

    .alx-cov-slide {
        width: 260px;
    }

    .alx-cov-btn {
        width: 36px;
        height: 60px;
    }

    .alx-honor-title {
        font-size: 26px;
    }

    .alx-culture-grid {
        grid-template-columns: 1fr;
    }

    /* 移动端数据统计 - 改为多列网格，避免 squeezed 导致文字竖排 */
    .alx-intro-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px 6px;
        margin-top: 18px;
        padding: 18px 8px 16px;
    }

    .alx-stat-item {
        padding: 8px 4px;
    }

        /* 隐藏列间竖线分隔 */
        .alx-stat-item + .alx-stat-item::before {
            display: none;
        }

    .alx-stat-num {
        font-size: 22px;
        white-space: nowrap;
    }

        .alx-stat-num .unit {
            font-size: 13px;
            margin-left: 1px;
        }

    .alx-stat-label {
        font-size: 12px;
        margin-top: 8px;
        letter-spacing: 0.5px;
        line-height: 1.4;
    }
}

/* 超小屏再收敛为 2 列，保证可读性 */
@media (max-width: 480px) {
    .alx-intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 6px;
    }

    .alx-stat-num {
        font-size: 20px;
    }

        .alx-stat-num .unit {
            font-size: 12px;
        }

    .alx-stat-label {
        font-size: 11px;
    }
}
