/* ========================================
 * Filez 文档中台 (ZOffice) 2.0 页面样式
 * 设计稿规范: 1440px宽度, 内容区1280px, 边距80px
 * 创建时间: 2026-01-13
 * ======================================== */

/* ========== Section 1: Banner 首屏 ========== */
.zoffice-banner {
    width: 100%;
    max-width: none;
    background: linear-gradient(135deg, #f8faff 0%, #eef3ff 50%, #f5f8ff 100%);
    position: relative;
    overflow: hidden;
}

.zoffice-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.zoffice-banner .product-banner-content .title {
    
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: #101C2F;
    letter-spacing: -0.02em;
}

.zoffice-banner .product-banner-content .desc {
    
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #5a6b8a;
    margin-top: 20px;
    white-space: pre-line;
}

/* 响应式 - Banner */
@media (max-width: 1024px) {
    .zoffice-banner .product-banner-content .title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .zoffice-banner .product-banner-content .title {
        font-size: 28px;
        line-height: 1.4;
    }
    
    .zoffice-banner .product-banner-content .desc {
        font-size: 14px;
        margin-top: 16px;
    }
}

/* ========== Section 2: 业务系统面临的问题和挑战 ========== */
/* 设计稿规范: 1440px宽度, 内容区1280px, 边距80px */
.zoffice-section1 {
    width: 100%;
    max-width: none;
    background: #FFFFFF;
    box-sizing: border-box;
}


/* Section1 卡片容器 */
.zoffice-section1 .section1-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.zoffice-section1 .section1-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

/* Section1 卡片样式 - 基于MasterGo设计稿 */
.zoffice-section1 .section1-card {
    flex: 1;
    position: relative;
    background: #EEF2FA;
    border-radius: 24px;
    padding: 32px 32px 40px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
}

/* 图标与内容区域之间的间距 */
.zoffice-section1 .section1-card .card-icon {
    margin-bottom: 19.5px;
}

/* 标题与描述之间的间距 */
.zoffice-section1 .section1-card .card-title {
    margin-bottom: 12px;
}

.zoffice-section1 .section1-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* 图标容器 - 48x48px */
.zoffice-section1 .card-icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
}

.zoffice-section1 .card-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.zoffice-section1 .card-title {
    position: relative;
    z-index: 1;
    
    font-size: 24px;
    font-weight: 600;
    color: #101C2F;
    line-height: 1.2;
}
.zoffice-section1 .card-desc {
    position: relative;
    z-index: 1;
    
    font-size: 16px;
    font-weight: 400;
    color: #101C2F;
    line-height: 28px;
    white-space: pre-line;
}

/* 响应式适配 - Section1 */
@media (max-width: 1320px) {
    .zoffice-section1 .section1-wrapper {
        width: 100%;
        padding: 0 40px;
    }
}

@media (max-width: 1024px) {
    .zoffice-section1 .section1-cards {
        flex-wrap: wrap;
    }
    
    .zoffice-section1 .section1-card {
        flex: 1 1 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
    
    .zoffice-section1 .section-title {
        font-size: 36px;
    }
    
    .zoffice-section1 .section-desc {
        font-size: 18px;
        line-height: 28px;
    }
    
    .zoffice-section1 .card-title {
        font-size: 20px;
    }
    
    .zoffice-section1 .card-desc {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .zoffice-section1 .section1-wrapper {
        padding: 0 20px;
    }
    
    .zoffice-section1 .section1-cards {
        flex-direction: column;
    }
    
    .zoffice-section1 .section1-card {
        flex: 1 1 100%;
        min-width: 100%;
        padding: 24px;
    }
    
    .zoffice-section1 .section-title {
        font-size: 28px;
    }
    
    .zoffice-section1 .section-desc {
        font-size: 16px;
        line-height: 24px;
    }
    
    .zoffice-section1 .card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }
    
    .zoffice-section1 .card-icon img {
        width: 40px;
        height: 40px;
    }
    
    .zoffice-section1 .card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .zoffice-section1 .card-desc {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ========== Section 3: 集成Filez文档中台，您的业务系统即刻拥有 ========== */
/* 设计稿规范: 1440px宽度, 内部圆角容器, 深色渐变背景 */
.zoffice-section2 {
    width: 100%;
    max-width: none;
    /* padding: 16px; */
    box-sizing: border-box;
}


/* 标题样式 - 在 .section2-inner 内部 */
.zoffice-section2 .section2-inner .section-title {
    color: #FFFFFF;
}

/* 描述样式 - 在 .section2-inner 内部 */
.zoffice-section2 .section2-inner .section-desc {
    color: #FFFFFF;
}


/* Section2 内容容器 */
.zoffice-section2 .section2-wrapper {
    width: 100%;
    max-width: 1280px;
    /* margin: 0 auto; */
    position: relative;
    z-index: 1;
}

/* 按钮区域 */
.zoffice-section2 .section2-header {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.zoffice-section2 .section2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 11px 24px;
    background: #FCFCFC;
    
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    /* 多层阴影效果 */
    box-shadow: 
        inset 0px -5px 4px -3.5px rgba(71, 136, 255, 0.3),
        0px 10px 10px -3.75px rgba(0, 0, 0, 0.063);
}

/* 按钮文字渐变色 */
.zoffice-section2 .section2-btn .btn-text {
    background: linear-gradient(0deg, #0034AD, #0034AD), linear-gradient(180deg, #1890FF 0%, #145AFF 100%), linear-gradient(179deg, #145AFF -5%, #023F78 125%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05);
}

/* 按钮箭头图标 */
.zoffice-section2 .section2-btn .btn-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.zoffice-section2 .section2-btn .btn-icon svg {
    width: 14px;
    height: 14px;
}

.zoffice-section2 .section2-btn .btn-icon svg path {
    fill: url(#btn-gradient);
}

.zoffice-section2 .section2-btn:hover {
    box-shadow: 
        inset 0px -5px 4px -3.5px rgba(71, 136, 255, 0.4),
        0px 16px 20px -3.75px rgba(0, 0, 0, 0.12);
}

.zoffice-section2 .section2-btn:hover .btn-icon {
    transform: translate(3px, -3px);
}

/* 卡片容器 */
.zoffice-section2 .section2-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

/* 单个卡片 - 使用背景图 */
.zoffice-section2 .section2-card {
    flex: 1;
    position: relative;
    background: rgba(16, 28, 47, 0.8);
 background-blend-mode: hard-light;

    /* background: url('/product/images/zoffice/2.0/section2-item-bg.png') center center / cover no-repeat; */
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
}

/* 图标与内容间距 */
.zoffice-section2 .section2-card .card-icon {
    margin-bottom: 16px;
}

/* 标题与描述间距 */
.zoffice-section2 .section2-card .card-title {
    margin-bottom: 8px;
}


/* 卡片图标 - 40x40px */
.zoffice-section2 .section2-card .card-icon {
    width: 40px;
    height: 40px;
}

.zoffice-section2 .section2-card .card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.zoffice-section2 .section2-card .card-title {
    
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
}

.zoffice-section2 .section2-card .card-desc {
    
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 28px;
}

/* 响应式适配 - Section2 */
@media (max-width: 1440px) {
    .zoffice-section2 .section2-inner {
        padding: 80px 40px 60px;
    }
}

@media (max-width: 1024px) {
    .zoffice-section2 .section-title {
        font-size: 36px;
    }
    
    .zoffice-section2 .section-desc {
        font-size: 18px;
        line-height: 28px;
    }
    
    .zoffice-section2 .section2-header {
        margin-bottom: 48px;
    }
    
    .zoffice-section2 .section2-cards {
        flex-wrap: wrap;
    }
    
    .zoffice-section2 .section2-card {
        flex: 1 1 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
    
    .zoffice-section2 .section2-card:last-child {
        flex: 1 1 calc(50% - 12px);
        max-width: calc(50% - 12px);
        margin: 0 auto;
    }
    
    .zoffice-section2 .section2-card .card-title {
        font-size: 20px;
    }
    
    .zoffice-section2 .section2-card .card-desc {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .zoffice-section2 {
        padding: 12px;
    }
    
    .zoffice-section2 .section2-inner {
        padding: 48px 20px 40px;
        border-radius: 16px;
    }
    
    .zoffice-section2 .section-title {
        font-size: 28px;
    }
    
    .zoffice-section2 .section-desc {
        font-size: 16px;
        line-height: 24px;
    }
    
    .zoffice-section2 .section2-header {
        margin-bottom: 32px;
    }
    
    .zoffice-section2 .section2-btn {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .zoffice-section2 .section2-cards {
        flex-direction: column;
    }
    
    .zoffice-section2 .section2-card {
        flex: 1 1 100%;
        min-width: 100%;
        padding: 24px;
    }
    
    .zoffice-section2 .section2-card:last-child {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .zoffice-section2 .section2-card .card-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 16px;
    }
    
    .zoffice-section2 .section2-card .card-icon img {
        width: 36px;
        height: 36px;
    }
    
    .zoffice-section2 .section2-card .card-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .zoffice-section2 .section2-card .card-desc {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ========== Section 4: 深入核心业务场景，全面提升企业运营效能 ========== */
.zoffice-section3 {
    width: 100%;
    max-width: none;
    background: #FFFFFF;
    box-sizing: border-box;
}

.zoffice-section3 .section-title { 
    text-align: left;
}

.zoffice-section3 .section-desc {
    text-align: left;
}

/* 响应式适配 - Section3 */
@media (max-width: 1024px) {
    .zoffice-section3 .section-title {
        font-size: 36px;
    }
    
    .zoffice-section3 .section-desc {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .zoffice-section3 .section-title {
        font-size: 28px;
    }
    
    .zoffice-section3 .section-desc {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ========== Section 5: 五大核心产品能力 ========== */
/* 设计稿规范: 1440px宽度, tabs-top 水平标签布局 */
.zoffice-section4 {
    width: 100%;
    max-width: none;
    background: #FFFFFF;
    box-sizing: border-box;
}

.zoffice-section4 .section-title {
    text-align: left;
}

.zoffice-section4 .section-desc {
    text-align: left;
}

/* ===== tabs-top 布局样式 ===== */
.media-list-tabs-top {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* 标签导航栏 - 设计稿: 水平排列，带下划线指示器 */
.media-list-tabs-bar {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 8px 0;
}

/* 单个标签 */
.media-list-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: auto;
}
.media-list-tab-text {
    
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    color: rgba(16, 28, 47, 0.65);
    text-align: center;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* 标签下划线 - 设计稿: 2px 高度，激活时蓝色渐变 */
.media-list-tab-line {
    width: 100%;
    height: 2px;
    background: #E4E4E4;
    border-radius: 1px;
    transition: background 0.3s ease;
}

/* 激活状态 - 设计稿: 文字颜色 #101C2F，下划线蓝色渐变 */
.media-list-tab.is-active .media-list-tab-text {
    color: #101C2F;
}

.media-list-tab.is-active .media-list-tab-line {
    background: linear-gradient(90deg, #0034AD 0%, #0034AD 100%);
}

/* 悬停效果 */
.media-list-tab:hover .media-list-tab-text {
    color: #101C2F;
}

/* 内容区域 - 设计稿: 左侧文字560px + 右侧图片600px */
.media-list-content-area {
    display: flex;
    gap: 160px;
    align-items: center;
    min-height: 400px;
}

/* 左侧文字面板 - 设计稿: 560px 宽度 */
.media-list-text-panel {
    flex: 0 0 560px;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #FFFFFF;
    border-radius: 24px;
    /* 阴影效果 - 设计稿 effect_1332:88805 */
    box-shadow: 
        0px 40px 32px 0px rgba(12, 18, 55, 0.05),
        0px 10px 8px 0px rgba(12, 18, 55, 0.03),
        0px 2px 4px 0px rgba(12, 18, 55, 0.02),
        0px 120px 100px 0px rgba(0, 0, 0, 0.07),
        0px 80px 60px 0px rgba(0, 0, 0, 0.06),
        0px 10px 16px 0px rgba(0, 0, 0, 0.08);
}

/* 内容图标 - 设计稿: 24x24 渐变背景 */
.media-list-content-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: linear-gradient(137deg, #2DD4BF -9%, #2563EB 50%, #F43F5E 109%);
    box-shadow: 0px 8.75px 26.25px 0px rgba(1, 26, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.media-list-content-title {
    
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    color: #101C2F;
}
.media-list-content-desc {
    
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #101C2F;
}

.media-list-content-desc ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.media-list-content-desc li {
    position: relative;
    padding-left: 0;
    line-height: 28px;
}

.media-list-content-desc li::before {
    content: none;
}

/* 右侧图片区 - 设计稿: 600px 宽度 */
.media-list-media-panel {
    flex: 1;
    max-width: 600px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.media-list-content-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* 响应式适配 - Section4 */
@media (max-width: 1280px) {
    .media-list-content-area {
        gap: 80px;
    }
    
    .media-list-text-panel {
        flex: 0 0 480px;
        max-width: 480px;
    }
}

@media (max-width: 1024px) {
    .zoffice-section4 .section-title {
        font-size: 36px;
    }
    
    .zoffice-section4 .section-desc {
        font-size: 18px;
        line-height: 28px;
    }
    
    .media-list-tabs-bar {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .media-list-tab-text {
        font-size: 18px;
    }
    
    .media-list-content-area {
        flex-direction: column;
        gap: 40px;
    }
    
    .media-list-text-panel {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    
    .media-list-media-panel {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .zoffice-section4 .section-title {
        font-size: 28px;
    }
    
    .zoffice-section4 .section-desc {
        font-size: 16px;
        line-height: 24px;
    }
    
    .media-list-tabs-bar {
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    
    .media-list-tab-text {
        font-size: 16px;
        white-space: nowrap;
    }
    
    .media-list-content-title {
        font-size: 18px;
        line-height: 28px;
    }
    
    .media-list-content-desc {
        font-size: 14px;
        line-height: 24px;
    }
}

/* ========== Section 6: Filez文档中台助力企业实现数智化转型 ========== */
.zoffice-section5 {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}

/* 内容图片容器 */
.zoffice-section5 .section5-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    /* padding: 40px; */
    border-radius: 24px;
    box-sizing: border-box;
}

.zoffice-section5 .section5-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* 响应式适配 - Section5 */
@media (max-width: 1320px) {
    .zoffice-section5 .section5-content {
        margin: 0 40px;
        max-width: calc(100% - 80px);
    }
}

@media (max-width: 1024px) {
    .zoffice-section5 .section-title {
        font-size: 36px;
    }
    
    .zoffice-section5 .section-desc {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .zoffice-section5 .section5-content {
        margin: 0 20px;
        max-width: calc(100% - 40px);
        padding: 24px;
    }
    
    .zoffice-section5 .section-title {
        font-size: 28px;
    }
    
    .zoffice-section5 .section-desc {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ========== Section 7: 携手千行百业领先企业共成长 ========== */
.zoffice-section6 {
    width: 100%;
    max-width: none;
    background: #FFFFFF;
    box-sizing: border-box;
}

.zoffice-section6 .section-title {
    text-align: left;   
}

.zoffice-section6 .section-desc {
    text-align: left;
}

/* 响应式适配 - Section6 */
@media (max-width: 1024px) {
    .zoffice-section6 .section-title {
        font-size: 36px;
    }
    
    .zoffice-section6 .section-desc {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .zoffice-section6 .section-title {
        font-size: 28px;
    }
    
    .zoffice-section6 .section-desc {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ========== Section 8: CTA Footer ========== */
.zoffice-cta {
    width: 100%;
    max-width: none;
    /* background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 35%, #8b5cf6 65%, #d946ef 100%); */
    position: relative;
    overflow: hidden;
}

/* Shimmer 动画效果 */
.zoffice-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.12) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* ========== 通用动画类 ========== */
.zoffice-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoffice-fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 延迟动画 */
.zoffice-delay-1 { transition-delay: 0.1s; }
.zoffice-delay-2 { transition-delay: 0.2s; }
.zoffice-delay-3 { transition-delay: 0.3s; }
.zoffice-delay-4 { transition-delay: 0.4s; }
.zoffice-delay-5 { transition-delay: 0.5s; }

/* ========== 渐变边框通用样式 ========== */
.zoffice-gradient-border {
    border: 1.5px solid transparent;
    background-image: 
        linear-gradient(#fff, #fff),
        linear-gradient(297deg, #7CC4FF 0%, #3BD9A2 48%, #747BFD 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0px 10px 30px 0px rgba(38, 102, 181, 0.08);
}

.zoffice-gradient-border:hover {
    box-shadow: 0px 10px 30px 0px rgba(38, 102, 181, 0.15), 0px 0px 6px 1px rgba(10, 127, 223, 0.44);
}

/* ========== 磨砂玻璃效果 ========== */
.zoffice-glass {
    background: rgba(238, 242, 250, 0.8);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
}

/* ========== 打印样式 ========== */
@media print {
    .zoffice-section2 {
        background: #2563eb !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .zoffice-cta {
        background: #3b82f6 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
