/* Google Fonts - Noto Sans SC */
@font-face {
    font-family: 'Noto Sans SC';
    font-style: normal;
    font-weight: 400;
    src: local('Noto Sans SC'), local('NotoSansSC-Regular'),
        url(data:font/woff2;base64,d09GMgABAAAAABLwAA4AAAAAIjQAABKZAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGhYbIByCHAZgAIEICghYCYM5EQwKgdY0gaZrC4MUAAE2AiQDhBQEIAWDOgcgDIFAG6MfI6OylMEf7ItZbG7qiPW/BQySTTRxjFHYeKZosYRLWCzqfv//X5N7Z+7M3Hk3s2uanZ2d9e7MzK67O9vtanq6bdu2Udu2sWaNbdu2bdu2bdt27bZtm03+a+re+9/v3Pu+85537vne8573POc5z3Oe87yve56r1wOA/wMADvgAQB8AAAAAAAAAAAAAAAAA) format('woff2');
}

@font-face {
    font-family: 'Noto Sans SC';
    font-style: normal;
    font-weight: 500;
    src: local('Noto Sans SC Medium'), local('NotoSansSC-Medium'),
        url(data:font/woff2;base64,d09GMgABAAAAABLwAA4AAAAAIjQAABKZAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGhYbIByCHAZgAIEICghYCYM5EQwKgdY0gaZrC4MUAAE2AiQDhBQEIAWDOgcgDIFAG6MfI6OylMEf7ItZbG7qiPW/BQySTTRxjFHYeKZosYRLWCzqfv//X5N7Z+7M3Hk3s2uanZ2d9e7MzK67O9vtanq6bdu2Udu2sWaNbdu2bdu2bdt27bZtm03+a+re+9/v3Pu+85537vne8573POc5z3Oe87yve56r1wOA/wMADvgAQB8AAAAAAAAAAAAAAAAA) format('woff2');
}

@font-face {
    font-family: 'Noto Sans SC';
    font-style: normal;
    font-weight: 700;
    src: local('Noto Sans SC Bold'), local('NotoSansSC-Bold'),
        url(data:font/woff2;base64,d09GMgABAAAAABLwAA4AAAAAIjQAABKZAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGhYbIByCHAZgAIEICghYCYM5EQwKgdY0gaZrC4MUAAE2AiQDhBQEIAWDOgcgDIFAG6MfI6OylMEf7ItZbG7qiPW/BQySTTRxjFHYeKZosYRLWCzqfv//X5N7Z+7M3Hk3s2uanZ2d9e7MzK67O9vtanq6bdu2Udu2sWaNbdu2bdu2bdt27bZtm03+a+re+9/v3Pu+85537vne8573POc5z3Oe87yve56r1wOA/wMADvgAQB8AAAAAAAAAAAAAAAAA) format('woff2');
}

@font-face {
    font-family: 'Hind';
    font-style: normal;
    font-weight: 300;
    src: local('Hind Light'), local('Hind-Light');
}

/* CSS变量定义 */
:root {
    /* 颜色变量 */
    --primary-color: #5e49d2;
    --primary-dark: #1b1b4f;
    --accent-color: #ffc117;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-light: #efefef;
    --bg-white: #ffffff;

    /* 字体变量 */
    --font-primary: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    --font-secondary: 'Hind', 'Arial', sans-serif;

    /* 尺寸变量 */
    --container-width: 100vw;
    --container-height: auto;
    --banner-height: 680px;

    /* 过渡变量 */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease-out;
    --sort-arrow-size: 30px;
}

/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 主体样式 */
body {
    font-family: var(--font-primary);
    background: var(--bg-white);
    overflow-x: hidden;
}

/* 页面容器 */
.page-container {
    position: relative;
    width: var(--container-width);
    height: var(--container-height);
    margin: 0 auto;
    background: var(--bg-white);
}

/* Banner轮播区域 */
.banner-section {
    position: relative;
    width: 100%;
    height: var(--banner-height);
    overflow: hidden;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 轮播控制按钮 */
.banner-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 20;
}

.banner-btn {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.banner-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* 轮播文字内容 */
.banner-content {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 15;
}

.banner-title {
    font-size: 66px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-200px);
    transition: all var(--transition-slow);
}

.category-banner-title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 1;
    /* transform: translateY(-200px); */
    transition: all var(--transition-slow);
}

.banner-subtitle {
    font-size: 44px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(-200px);
    transition: all var(--transition-slow);
    transition-delay: 0.2s;
}

.category-banner-subtitle {
    font-size: 28px;
    font-weight: 400;
    opacity: 0.8;
    word-spacing: 0.4em;
    /* transform: translateY(-200px); 
    transition: all var(--transition-slow);
    transition-delay: 0.2s; */
}

/* .banner-slide.active .banner-title,
.banner-slide.active .banner-subtitle {
    opacity: 1;
    transform: translateY(0);
} */

/* Logo样式 */
.logo {
    position: absolute;
    left: 102px;
    top: 39px;
    width: 172px;
    height: 54px;
    z-index: 10;
}

.logo svg {
    width: 100%;
    height: 100%;
}

/* 导航菜单 */
.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 90px;
}

.nav-item {
    position: relative;
    font-size: 28px;
    color: white;
    white-space: nowrap;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

/* 每个导航项自带下划线，随字号自适应 */
.nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.35em;
    height: 0.12em;
    background: var(--accent-color);
    border-radius: 2px;
    transform: scaleX(0);
    opacity: 0;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-item:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.nav-item.active::after,
.nav-item[aria-current="page"]::after {
    transform: scaleX(1);
    opacity: 1;
}

.nav-item:hover {
    transform: translateY(-2px);
}

/* 导航项等距由 nav-menu 的 gap 控制 */

/* 导航下划线 */
.nav-underline {
    position: absolute;
    left: 0;
    top: 36px;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    transition: left var(--transition-medium);
}

/* 默认首页为激活态，active 与 hover 保持一致视觉 */
.nav-item.active {
    color: var(--accent-color);
    font-weight: 700;
}

/* 导航悬停效果 - 简化为active状态 */
.nav-item:hover {
    color: var(--accent-color);
    font-weight: 700;
}

/* 二级标签激活态统一样式 */
.tags-container-cases .tag-item {
    text-decoration: none;
}

.tags-container-cases .tag-item.active,
.tags-container-cases .tag-item[aria-current="page"] {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 999px;
}

/* Hero区域 */
.hero-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 170px;
    font-size: 66px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    z-index: 10;
}

.hero-subtitle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 280px;
    font-size: 38px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    z-index: 10;
}

/* 标签云 */
.tags-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 368px;
    display: flex;
    gap: 20px;
    justify-content: center;
    /* flex-wrap: wrap; */
    z-index: 10;
}

.tags-container-cases {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 150px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 10;
}

.tag-item {
    background: rgba(255, 255, 255, 0.2);
    height: 48px;
    padding: 0 25px;
    border-radius: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    white-space: nowrap;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tag-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* CTA按钮 */
.cta-buttons {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 480px;
    display: flex;
    gap: 16px;
    justify-content: center;
    z-index: 10;
}

.cta-btn {
    width: 194px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cta-btn-primary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
}

.cta-btn-primary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn-secondary {
    background: rgba(94, 73, 210, 0.8);
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.cta-btn-secondary:hover {
    background: rgba(94, 73, 210, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(94, 73, 210, 0.4);
}

/* 数据展示区域 */
.stats-section {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 320px);
    justify-content: center;
    column-gap: 160px;
    row-gap: 30px;
    margin: 80px 0;
}

.stats-title {
    position: relative;
    grid-column: 1 / -1;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
}

.stat-box {
    position: relative;
    width: 320px;
    text-align: center;
    opacity: 1;
    transform: none;
    transition: all 0.6s ease;
}

/* 统计框入场动画 */
.stat-box.animated {
    animation: slideInUp 0.8s ease forwards;
}

.stat-box[data-position="1"].animated {
    animation-delay: 0.1s;
}

.stat-box[data-position="2"].animated {
    animation-delay: 0.3s;
}

.stat-box[data-position="3"].animated {
    animation-delay: 0.5s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

/* 移除数据位移，采用网格自动居中分布 */

.stat-number {
    font-family: var(--font-secondary);
    font-size: 110px;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 100px;
}

.stat-unit {
    font-family: var(--font-secondary);
    font-size: 60px;
    font-weight: 300;
    color: #78798d;
    line-height: 60px;
}

.stat-label {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 14px;
}

.stat-divider {
    width: 162px;
    height: 1px;
    background: var(--bg-light);
    margin: 27px auto 0;
}

/* 三大核心服务 */
.services-section {
    position: relative;
    width: 100%;
    margin: 80px 0;
}

.services-header {
    text-align: center;
}

.services-title {
    position: relative;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 16px;
}

.services-desc {
    position: relative;
    font-size: 32px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
}

.services-desc .highlight {
    font-weight: 700;
    color: var(--primary-color);
}

.service-cards {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(16px, 4vw, 30px);
    padding-inline: clamp(8px, 2.5vw, 40px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: clamp(8px, 2.5vw, 20px);
    /* 移动端滚动起止留白，不影响PC布局 */
    scrollbar-width: none;
    /* 隐藏滚动条（Firefox）*/
}

.service-cards::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.service-card {
    position: relative;
    width: min(var(--svc-w, 562px), 88vw);
    height: auto;
    aspect-ratio: 562 / 352;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    flex: 0 0 auto;
    scroll-snap-align: start;
    scroll-margin-inline: clamp(8px, 2.5vw, 20px);
    /* 移动端滚动吸附边距，不影响PC静态布局 */
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.service-card:hover img {
    transform: scale(1.1);
}

:root {
    --ind-cols: 4;
    --ind-card: 412px;
    --ind-gap: 31px;
    --content-rail: calc(var(--ind-cols) * var(--ind-card) + (var(--ind-cols) - 1) * var(--ind-gap));
    --svc-cols: 3;
    --svc-w: 562px;
    --svc-h: 352px;
    --svc-gap: calc((var(--content-rail) - var(--svc-cols) * var(--svc-w)) / (var(--svc-cols) - 1));
}

.content-rail {
    width: var(--content-rail);
    margin: 0 auto;
}

.content-rail .service-cards {
    width: 100%;
    padding-inline: 0;
    gap: var(--svc-gap);
}

.content-rail .industry-grid {
    width: var(--content-rail);
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .content-rail {
        width: 100%;
    }
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(90deg, rgba(94, 73, 210, 0.4) 0%, #5e49d2 63.462%);
    display: flex;
    align-items: center;
    /* padding-left: 48px; */
    justify-content: center;
}

.service-name {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

/* 服务行业 */
.industries-section {
    position: relative;
    width: 100%;
    margin: 80px 0;
    padding: 0 90px;
}

.industries-title {
    position: relative;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 24px;
}

.industry-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 412px);
    justify-content: center;
    gap: 31px;
    row-gap: 32px;
    width: max-content;
    margin: 0 auto;
    padding-inline: clamp(4px, 1.5vw, 20px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-inline-start: clamp(8px, 2vw, 16px);
    /* 减少左侧初始空白（滚动吸附） */
    scroll-padding-inline-end: clamp(8px, 2vw, 16px);
    /* 防止最右图片被裁剪（滚动吸附） */
    scrollbar-width: none;
    /* 隐藏滚动条（Firefox）*/
}

.industry-group-title {
    grid-column: 1 / -1;
    width: 100%;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
    margin: 60px 0 0 0;
}

.industry-grid::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.industry-item {
    position: relative;
    width: min(412px, 45vw);
    height: auto;
    aspect-ratio: 412 / 294;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    scroll-margin-inline: clamp(8px, 2vw, 16px);
}

/* 为行业网格首尾项提供滚动吸附边距，避免边缘裁剪（不影响PC静态布局） */
.industry-item:first-child {
    scroll-margin-left: 16px;
}

.industry-item:last-child {
    scroll-margin-right: 16px;
}

.industry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.industry-item:hover img {
    transform: scale(1.1);
}

.industry-card {
    position: relative;
    width: min(412px, 45vw);
    scroll-snap-align: start;
    scroll-margin-inline: clamp(8px, 2vw, 16px);
    will-change: opacity, transform;
}

.industry-card .industry-item {
    width: 100%;
    height: auto;
    aspect-ratio: 412 / 294;
}

.industry-card .self_media-industry-item {
    width: 100%;
    height: auto;
    aspect-ratio: 330 / 714;
}

.industry-card:first-child {
    scroll-margin-left: 16px;
}

.industry-card:last-child {
    scroll-margin-right: 16px;
}

.industry-caption {
    position: static;
    margin-top: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    white-space: nowrap;
    text-shadow: none;
}

.category-industry-caption {
    position: static;
    margin-top: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: calc(1.4em * 2);
    overflow-wrap: anywhere;
    white-space: normal;
    text-shadow: none;
}

.page-container.scaled .industry-card {
    width: 412px;
    height: auto;
    scroll-snap-align: unset;
    scroll-margin-inline: 0;
}

.industry-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 24px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.industry-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-image: url('../images/home/标题底部 2.png');
    background-size: cover;
    background-position: bottom left;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

/* 核心价值观 */
.values-section {
    position: relative;
    width: 100%;
    min-height: 384px;
    overflow: hidden;
    margin: 80px 0;
}

.values-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    /* opacity: 0.4; */
}

.values-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-content {
    position: relative;
    padding: 60px 294px;
    display: grid;
    grid-template-columns: repeat(3, minmax(420px, 1fr));
    column-gap: 60px;
    align-items: stretch;
    justify-content: center;
}

.value-column {
    padding: 0;
}

.values-content .value-column:nth-child(1) .value-title {
    text-align: right;
}

.values-content .value-column:nth-child(2) .value-title {
    text-align: left;
}

.values-content .value-column:nth-child(3) .value-title {
    text-align: left;
}

.values-content .value-column:nth-child(1) .value-item {
    justify-content: flex-end;
}

.values-content .value-column:nth-child(2) .value-item {
    justify-content: left;
}

.values-content .value-column:nth-child(3) .value-item {
    justify-content: flex-start;
}

.value-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-list {
    list-style: none;
}

.value-item {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 11px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.value-icon {
    width: 23px;
    height: 23px;
    display: flex;
    align-items: flex-end;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 案例展示 */
.cases-section {
    position: relative;
    width: 100%;
    margin: 80px 0;
}

.cases-title {
    position: relative;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
}

.cases-subtitle {
    position: relative;
    font-family: 'Microsoft YaHei', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #5E49D2;
    text-align: center;
    margin-top: 10px;
}

.cases-nav {
    position: relative;
    display: flex;
    gap: 50px;
    justify-content: center;
    margin: 30px auto 0;
}

.cases-nav-item {
    font-size: 28px;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    padding-bottom: 8px;
    min-width: fit-content;
    padding: 0 10px 8px 10px;
    text-align: center;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.cases-nav-item.active {
    font-weight: 700;
    color: var(--primary-color);
}

.cases-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: var(--underline-width, 100%);

    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* 案例导航悬停效果 - 包含下划线 */
.cases-nav-item:hover {
    font-weight: 700;
    color: var(--primary-color);
}

.cases-nav-item:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: var(--underline-width, 100%);
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.cases-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 419px);
    justify-content: center;
    gap: 21px;
    row-gap: 21px;
    margin-top: 30px;
}

.cases-grid.grid-5 {
    grid-template-columns: repeat(5, 336px);
}

.case-item {
    position: relative;
    width: 419px;
    height: auto;
    overflow: visible;
    cursor: pointer;
    display: block;
}

.cases-grid.grid-5 .case-item {
    width: 336px;
}

.case-item img {
    width: 100%;
    height: 303px;
    object-fit: cover;
    transition: transform var(--transition-medium);
    display: block;
}

/* .cases-grid.grid-5 .case-item img {
    height: auto;
    object-fit: contain;
} */

.case-item:hover img {
    transform: scale(1.1);
}

.cases-grid a.case-item {
    text-decoration: none;
    color: inherit;
}

.case-title {
    position: static;
    margin-top: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    z-index: 1;
    text-align: left;
}

.lightbox-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 9999;
}

.lightbox-overlay.lightbox-visible {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 80vw;
    max-height: 80vh;
    transform: scale(1);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.lightbox-overlay.lightbox-visible .lightbox-image {
    transform: scale(1.5);
    opacity: 1;
}

.lightbox-caption {
    margin-top: 16px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
}

/* 合作单位 */
.partners-section {
    position: relative;
    width: 100%;
    margin: 80px 0;
}

.partners-title {
    position: relative;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
}

.partners-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(8, 193.224px);
    justify-content: center;
    gap: 26.97px;
    row-gap: 26.76px;
    margin-top: 30px;
}

.partner-logo {
    width: 193.224px;
    height: 92.266px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 页脚 */
.footer-section {
    position: relative;
    width: 100%;
    background: #1c1c1c;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: var(--content-rail);
    margin: 0 auto;
    padding: 60px 40px 40px;
}

.footer-column {
    flex: 1;
    margin-right: 40px;
}

.footer-column:last-child {
    margin-right: 0;
}

.footer-column h4 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 20px;
}

.footer-column ul li a {
    font-size: 20px;
    color: #b9b9b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

/* 品牌列 */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.brand-name-cn {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.brand-name-en {
    font-size: 14px;
    color: #b9b9b9;
    margin: 0;
    letter-spacing: 1px;
}

/* 案例和行业场景双列布局 */
.footer-sublists {
    display: flex;
    gap: 30px;
}

.footer-sublist {
    flex: 1;
}

/* 仅提升“案例”列的子列宽度，减少24px字号换行 */
.footer-cases .footer-sublists {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    column-gap: 28px;
}

.footer-cases .footer-sublist {
    min-width: 300px;
}

/* 社交媒体和联系信息 */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.qr-codes {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.qr-item {
    text-align: center;
}

.qr-code {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.qr-item span {
    font-size: 20px;
    color: #ffffff;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item span {
    font-size: 20px;
    color: #ffffff;
}

.contact-divider {
    color: #ffffff;
    font-size: 14px;
}

.phone-icon::before {
    content: '📞';
    color: #ffffff;
    font-size: 14px;
}

.chat-icon::before {
    content: '💬';
    color: #ffffff;
    font-size: 14px;
}

/* 底部版权 */
.footer-divider {
    width: calc(100% - 80px);
    height: 1px;
    background: #2e2e2e;
    margin: 30px auto 20px;
}

.footer-bottom {
    text-align: center;
    padding: 0 40px 40px;
}

.footer-bottom p {
    font-size: 20px;
    color: #9a9a9a;
    margin: 0;
}


/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate-in {
    animation: fadeInUp var(--transition-slow) forwards;
}

/* 加载状态 */
.loading {
    opacity: 0;
    transform: translateY(30px);
}

/* 统计数字加载动画 */
.stat-box.loading {
    opacity: 1;
    transform: none;
}

.stat-box.loading .stat-number {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s ease;
}

.stat-box.loading.animated .stat-number {
    opacity: 1;
    transform: scale(1);
}

/* 数字计数动画 */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.stat-number.animated {
    animation: countUp 0.8s ease forwards;
}

/* 数字脉冲效果 */
@keyframes numberPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.stat-number.animated {
    animation: countUp 0.8s ease forwards, numberPulse 2s ease-in-out 1s;
}


/* 以下代码用于处理响应式文档流（比例缩放） */
:root {
    --design-width: 1920;
    --scale: 1;
}

.page-container.scaled {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1920px;
    transform: translateX(calc(-960px * var(--scale))) scale(var(--scale));
    transform-origin: top left;
}

.page-container.scaled .banner-section {
    width: 1920px;
    margin: 0 auto;
    padding: 0;
}

.page-container.scaled .services-section,
.page-container.scaled .industries-section,
.page-container.scaled .values-section,
.page-container.scaled .cases-section,
.page-container.scaled .partners-section,
.page-container.scaled .footer-section {
    width: 1920px;
    margin: 60px auto;
    padding: 90px 0px;
}

.page-container.scaled .industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 412px);
    justify-content: center;
    gap: 31px;
    row-gap: 32px;
    width: max-content;
    margin: 0 auto;
    overflow: visible;
    scroll-snap-type: none;
}

.page-container.scaled .industry-item {
    width: 412px;
    height: auto;
    aspect-ratio: 412 / 294;
    scroll-snap-align: unset;
    scroll-margin-inline: 0;
}

.page-container.scaled .self_media-industry-item {
    width: 412px;
    height: auto;
    aspect-ratio: 330 / 714;
    scroll-snap-align: unset;
    scroll-margin-inline: 0;
}

.page-container.scaled .service-cards {
    display: grid;
    grid-template-columns: repeat(3, var(--svc-w));
    justify-content: center;
    gap: var(--svc-gap);
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
}

.page-container.scaled .service-card {
    width: var(--svc-w);
    height: auto;
    aspect-ratio: 562 / 352;
    flex: 0 0 auto;
    scroll-snap-align: unset;
    scroll-margin-inline: 0;
}

.page-container.scaled .values-section {
    position: relative;
}

.page-container.scaled .values-content {
    position: absolute;
    top: 50%;
    left: 294px;
    right: 294px;
    transform: translateY(-50%);
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(320px, 1fr));
    column-gap: 60px;
    justify-items: center;
    align-items: center;
}

/* .page-container.scaled .values-content .value-column { width: 420px; text-align: left; } */
.page-container.scaled .values-content .value-column {
    text-align: left;
}

.page-container.scaled .values-content .value-title {
    text-align: left !important;
}

.page-container.scaled .values-content .value-item {
    justify-content: flex-start !important;
}

.page-container.scaled .cases-section {
    position: relative;
    text-align: center;
}

/* .page-container.scaled .cases-title { display: inline-block; margin: 0; } */
/* .page-container.scaled .cases-subtitle { display: inline-block; margin-left: 100px; margin-top: 0; vertical-align: bottom; } */
.page-container.scaled .nav-menu {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    z-index: 100;
}

@media (min-width: 1920px) {
    .logo {
        position: fixed;
        left: calc(50vw - 960px + 102px);
        top: 39px;
        z-index: 100;
    }
}

.filter-bar {
    position: relative;
    width: 1920px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    padding: 0 0 32px 0;
}

.filter-btn {
    appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    color: #2E2E2E;
    height: 40px;
    padding: 0 16px;
    border-radius: 3px;
    font-size: 20px;
    font-family: 'Microsoft YaHei UI', 'Microsoft YaHei', sans-serif;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
    border-color: rgba(0, 0, 0, 0.12);
}

.filter-btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.filter-btn.active {
    border-color: var(--accent-color);
    /* color: var(--primary-dark); */
    font-weight: 700;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: rgba(22, 22, 22, 0.9);
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    display: block;
    z-index: 200;
    width: 720px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

.dropdown.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-row {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.dropdown-sep {
    color: #ccc;
}

.dropdown-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.dropdown-btn {
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--accent-color);
    color: var(--primary-dark);
    font-size: 20px;
    font-family: 'Microsoft YaHei UI', 'Microsoft YaHei', sans-serif;
    cursor: pointer;
}

.dropdown-chip {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    cursor: pointer;
}

.dropdown-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 12px;
}

.dropdown-check {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 6px 2px;
    border-radius: 8px;
    background: transparent;
    color: #fff;
}

.dropdown-check input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 3px solid var(--accent-color);
    border-radius: 3px;
    background: transparent;
    display: inline-block;
}

.dropdown-check input[type="checkbox"]:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9.5 16.5L5 12l2-2 2.5 2.5L17 5l2 2-9.5 9.5z'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 120%;
}

.dropdown-check span {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

/* 全部时间设计稿样式 */
#dropdown-time {
    width: 100%;
    padding: 32px 24px;
    border-radius: 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(28, 28, 28, 0.75) 55%, rgba(238, 238, 238, 1) 100%);
    font-family: 'Microsoft YaHei UI', 'Microsoft YaHei', sans-serif;
}

#dropdown-sort {
    width: 100%;
    padding: 32px 24px;
    border-radius: 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(28, 28, 28, 0.75) 55%, rgba(238, 238, 238, 1) 100%);
    font-family: 'Microsoft YaHei UI', 'Microsoft YaHei', sans-serif;
}

#dropdown-sort .dropdown-row {
    margin-bottom: 20px;
}

.sort-time-toggle,
.sort-name-toggle {
    appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.25);
    background: var(--accent-color);
    color: #1a1a1a;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 300;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.sort-time-toggle::after,
.sort-name-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 3px;
    width: var(--sort-arrow-size);
    height: var(--sort-arrow-size);
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M12 4l6 6h-4v8H10V10H6z'/></svg>") center / contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M12 4l6 6h-4v8H10V10H6z'/></svg>") center / contain no-repeat;
    transform-origin: 50% 50%;
    flex: 0 0 var(--sort-arrow-size);
}

.sort-time-toggle[data-order="desc"]::after,
.sort-name-toggle[data-order="desc"]::after {
    transform: rotate(180deg);
}

.sort-name-toggle {
    margin-left: 12px;
}

.sort-time-toggle.is-inactive,
.sort-name-toggle.is-inactive {
    background: rgba(255, 255, 255, 0.08);
    color: #d0d0d0;
    border: 1px solid var(--accent-color);
    box-shadow: none;
}

#dropdown-industry {
    width: 100%;
    padding: 32px 24px;
    border-radius: 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(28, 28, 28, 0.75) 55%, rgba(238, 238, 238, 1) 100%);
    font-family: 'Microsoft YaHei UI', 'Microsoft YaHei', sans-serif;
}

#dropdown-industry .dropdown-columns {
    margin-bottom: 20px;
}

#start-date,
#end-date {
    font-size: 20px;
    font-family: 'Microsoft YaHei UI', 'Microsoft YaHei', sans-serif;
}

#dropdown-time .dropdown-row {
    margin-bottom: 20px;
}

#dropdown-time .dropdown-sep {
    color: #ffffff;
    font-weight: 600;
}

.filter-bar input[type="date"] {
    appearance: none;
    background: #ffffff;
    color: #2E2E2E;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    height: 40px;
    padding: 0 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.filter-bar input[type="date"]:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 1px;
}

@media (max-width: 1024px) {
    .filter-bar {
        gap: 12px;
        padding: 0 0 32px 0;
        width: 100%;
    }

    .filter-btn {
        height: 36px;
        padding: 0 14px;
        font-size: 15px;
    }

    .dropdown {
        width: calc(100vw - 32px);
        left: 50%;
        transform: translateX(-50%);
    }
}


.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 96px;
    z-index: 20;
    background: linear-gradient(90deg, rgba(27, 11, 83, 0.65) 0%, rgba(94, 73, 210, 0.65) 60%, rgba(160, 102, 221, 0.45) 100%);
}

.detail-site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 96px;
    z-index: 20;
    background: var(--bg-white);
}

.site-header .nav-menu {
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
}

.detail-site-header .nav-menu {
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
}

.detail-site-header .nav-item,
.detail-site-header .nav-item:link,
.detail-site-header .nav-item:visited {
    color: var(--text-primary);
    text-decoration: none;
}

.site-header .nav-item,
.site-header .nav-item:link,
.site-header .nav-item:visited {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.site-header .nav-item.active {
    color: var(--accent-color);
    font-weight: 700;
}

.detail-site-header .nav-item.active {
    color: var(--primary-dark);
    font-weight: 700;
}

.banner-section {
    position: relative;
}

.banner-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    bottom: 60px;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

.banner-content .banner-title,
.banner-content .banner-subtitle {
    /* opacity: 1;
    transform: none; */
    margin: 0;
    line-height: 2;
}

.tags-container-cases {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: inherit;
}

.tags-container-cases .tag-item {
    /* display: inline-block;
            padding: 8px 16px; */
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    text-decoration: none;
}

.tags-container-cases .tag-item:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* 详情页样式 */
.detail-page {
    font-family: 'Microsoft YaHei UI', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
}

.detail-container {
    width: 1352px;
    margin: 0 auto;
    /* padding: var(--detail-padding-top, 0px) 0 40px; */
    padding: var(--detail-padding-top, 160px) 0 40px;
}

.detail-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: left;
    margin-bottom: 30px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 28px;
    row-gap: 40px;
}

.detail-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 32px;
}

.detail-section-title {
    display: inline-flex;
    align-items: flex-end;
    gap: 12px;
}

.detail-section-title .detail-index {
    font-size: 56px;
    font-weight: 800;
    color: #5e49d2;
    line-height: 1;
}

.detail-section-title .detail-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    position: relative;
}

.detail-section-title .detail-heading::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: #D9D9D9;
    border-radius: 3px;
    margin-top: 6px;
}

.detail-subtitle::after {
    content: '';
    display: block;
    width: 90px;
    height: 6px;
    background-image: url('/images/cases/detail-heading.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    margin-top: 6px;
}


.detail-subcolumns {
    display: flex;
    flex-direction: initial;
    gap: 120px;
    align-items: flex-start;
}

.detail-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-primary);
}

.detail-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 2;
    text-indent: 2em;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    row-gap: 12px;
}

.detail-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 500;
}

.detail-list li::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(135deg, #5e49d2 0%, #2b9df6 100%);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6) inset;
}

.detail-media {
    width: 100%;
}

.detail-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-medium);
    cursor: zoom-in;
}

.detail-img:hover {
    transform: scale(1.02);
}

.detail-gallery {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.detail-gallery-item {
    overflow: hidden;
    border-radius: 12px;
    background: #F5F7FB;
}

.detail-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-gallery-item.span-2 {
    grid-column: 1 / -1;
}

.detail-flow {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.flow-row {
    display: flex;
    align-items: stretch;
    gap: 16px;
}

.flow-step {
    flex: 1;
    background: #F5F7FB;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flow-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
}

.flow-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    color: var(--text-primary);
    font-size: 14px;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5e49d2;
    font-size: 48px;
    padding: 0 8px;
    opacity: 0.35;
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.flow-arrow.is-active {
    opacity: 1;
    transform: scale(1.2);
    color: #5e49d2;
    text-shadow: 0 0 8px rgba(94, 73, 210, 0.4);
}

.flow-step.is-highlight {
    background: #ECEFFF;
    box-shadow: 0 0 0 2px #5e49d2 inset, 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

@media (max-width: 1024px) {
    .flow-row {
        flex-direction: column;
    }
    .flow-arrow {
        display: none;
    }
}

/* 图片点击放大 Lightbox */
.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.image-lightbox.active {
    display: flex;
}

.image-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1440px) {

    /* .detail-container { padding-top: 140px; } */
    .detail-container {
        padding-top: var(--detail-padding-top, 160px);
        /* padding-top: var(--detail-padding-top, 0px); */
    }

}

@media (max-width: 1024px) {
    .detail-container {
        /* padding-top: var(--detail-padding-top, 0px); */
        padding-top: var(--detail-padding-top, 160px);
    }

    /* .detail-grid { grid-template-columns: 1fr; row-gap: 28px; }
  .detail-gallery-grid { grid-template-columns: 1fr; }
  .detail-gallery-item.span-2 { grid-column: auto; } */
}

.detail-page .detail-column {
    position: relative;
    z-index: 0;
}

.detail-page .detail-column>* {
    position: relative;
    z-index: 1;
}

.detail-page .detail-column:nth-child(1)::before     {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: max(100vw, 1920px);
    height: 100%;
    background: linear-gradient(to bottom, #E1E6FF 0%, #FFFFFF 100%);
    z-index: 0;
    pointer-events: none;
}

.detail-page .detail-column:nth-child(1)::before {
    background: linear-gradient(to bottom, #C8D1FF 0%, #FFFFFF 100%);
}

.industry-card.card-fade-out {
    animation: industryCardFadeOut 0.3s ease forwards;
}

.industry-card.card-fade-in {
    animation: industryCardFadeIn 1s ease-out forwards;
}

@keyframes industryCardFadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

@keyframes industryCardFadeIn {
    from {
        opacity: 0;
        transform: scale(0.6);
    }

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