﻿@charset "utf-8";

/* ===================== 企业实力展示 ===================== */
        /* 全局基础重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* 核心区域：保留原始尺寸 + 电影感背景调色 */
        .yh-trust-section {
            color: white;
            padding: 50px 0 30px 0;
            margin: 0 auto;
            width: 100vw !important;
            max-width: 100% !important;
            box-sizing: border-box;
            position: relative;
            left: 0 !important;
            /* 电影感背景：原图+暗调渐变叠加 */
            background-image: 
                url("/bg.jpg"),
               linear-gradient(rgba(30, 55, 70, 0.6), rgba(40, 45, 30, 0.8));
            background-blend-mode: overlay;
            /* 保留原始背景适配属性 */
            background-size: cover;          
            background-position: center;     
            background-repeat: no-repeat;    
            /* 保留原始PC端高度 */
            height: 440px;

        }

        /* 保留原始移动端尺寸（仅尺寸，无额外响应动效） */
        @media (max-width: 768px) {
            .yh-trust-section {
                height: auto;
                background-size: auto 100%;
                min-height: 200px;
            }
        }

        /* 保留原始容器尺寸 */
        .yh-trust-container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
            margin-bottom: 0;
            position: relative;
            z-index: 2;
        }

        /* 保留原始标题间距，优化电影感样式 */
        .yh-section-intro {
            text-align: center;
            margin-top: 20px;
            margin-bottom: 80px;
        }

        /* 电影感标题：保留原始字号，优化配色 */
        .yh-section-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 15px;
            color: #FFFFFF;
            line-height: 1.3;

            position: relative;
        }



        /* 保留原始网格布局，移除响应式动效 */
        .yh-trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 10px;
            justify-items: center;
            width: 100%;
        }

        /* 核心修改：移除背景框体 + 无任何响应/hover动效 */
        .yh-trust-badge {
            /* 完全移除背景、边框、圆角、内边距外的装饰 */
            border-radius: 0;
            padding: 25px 15px;
            text-align: center;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 220px;
            /* 移除所有框体/动效相关样式 */
            background: none;
            backdrop-filter: none;
            border: none;
            box-shadow: none;
            transition: none;
            transform: none;
        }


        /* 数字：电影感配色，保留原始尺寸 */
        .yh-badge-number {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 10px;
            color: #FFFFFF;
            font-family: 'Arial', sans-serif;
            line-height: 1;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
        }

        /* 标签：电影感配色，保留原始尺寸 */
        .yh-badge-label {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #ADBCBC;
            line-height: 1.3;
        }

        /* 描述：电影感配色，保留原始尺寸 */
        .yh-badge-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.4;
            max-width: 140px;
        }
/* ===================== 四图横排 ===================== */
.four-images-wrapper {
    padding: 10px 0 30px 0;
    width: 100%;
    max-width: 1300px;
    margin: 10px auto 30px auto;
    box-sizing: border-box;
}

.four-images-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.four-images-list .biz-card {
    flex: 1 1 calc(25% - 9px);
    max-width: calc(25% - 9px);
    min-width: 0;
    background: rgba(148, 163, 184, 0.1);
    border: 0px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 0 !important;
    padding: 0;
    box-sizing: border-box;
}

.biz-img {
    width: 100%;
    height: 157px;
    overflow: hidden;
}

.biz-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.biz-content {
    padding: 35px 25px;
    text-align: left;
    box-sizing: border-box;
}

.biz-content h3 {
    font-size: 20px;
    color: #ff0000;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.biz-desc {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    margin: 0 0 30px 0;
    height: 68px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.biz-links {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.four-images-wrapper .fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    margin-right: 5px !important;
    color: inherit !important;
}

.link-case {
    padding: 8px 30px;
    background: rgba(0, 0, 0, 1);
    color: #fff !important;
    text-decoration: none;
    font-size: 14px !important;
    transition: opacity 0.3s ease;
    display: inline-block;
    border-radius: 2px;
}

.link-price {
    padding: 8px 30px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff !important;
    text-decoration: none;
    font-size: 14px !important;
    transition: opacity 0.3s ease;
    display: inline-block;
    border-radius: 2px;
}

.four-images-list .biz-card:hover {
    transform: translateY(-5px);
}

/* ===================== 视频案例模块通用样式（两个模块共用基础样式） ===================== */
.video-case-module,
.video-case-module2 {
    background: #F9F9F9;
    width: 100%;
    max-width: 1300px;
    margin: 30px auto 20px auto;
    padding: 20px 0 30px 0 !important;
    font-family: "Microsoft Yahei", sans-serif;
    color: white;
}

/* 通用重置：两个模块内的所有元素统一样式 */
.video-case-module *,
.video-case-module2 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

/* 标签栏容器：两个模块一致 */
.video-case-module .tab-nav-wrapper,
.video-case-module2 .tab-nav-wrapper {
    text-align: center;
    margin: 0 0 15px;
    padding-top: 0;
    width: 100%;
}

/* 标签列表：两个模块一致 */
.video-case-module .tab-nav,
.video-case-module2 .tab-nav {
    display: inline-flex;
    border-radius: 16px;
    padding: 8px;
    gap: 12px;
    border: none;
}

/* 标签项基础样式：两个模块一致 */
.video-case-module .tab-nav li,
.video-case-module2 .tab-nav li {
    padding: 10px 32px;
    cursor: pointer;
    color: #444444;
    font-size: 16px;
    border-radius: 3px;
    transition: all .2s ease;
    background: rgba(148, 163, 184, 0.2);
    /* 新增：让li成为a的容器基准 */
    position: relative;
}

/* 关键：重置标签内链接样式，完全继承li样式 */
.video-case-module .tab-nav li a,
.video-case-module2 .tab-nav li a {
    color: inherit !important; /* 强制继承li的文字颜色 */
    text-decoration: none !important; /* 去除链接下划线 */
    display: block; /* 让链接铺满整个li，不影响点击 */
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1; /* 确保链接在交互层，但不影响样式 */
}

/* 标签激活态：两个模块一致 */
.video-case-module .tab-nav li.on,
.video-case-module2 .tab-nav li.on {
    color: #ffffff;
    background: #000000;
    font-weight: 600;
}

/* 标签悬浮态（非激活）：两个模块一致 */
.video-case-module .tab-nav li:hover:not(.on),
.video-case-module2 .tab-nav li:hover:not(.on) {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

/* 兜底：链接的hover/active/focus状态完全继承li，无额外样式 */
.video-case-module .tab-nav li a:hover,
.video-case-module .tab-nav li a:active,
.video-case-module .tab-nav li a:focus,
.video-case-module2 .tab-nav li a:hover,
.video-case-module2 .tab-nav li a:active,
.video-case-module2 .tab-nav li a:focus {
    color: inherit !important;
    text-decoration: none !important;
    background: transparent !important; /* 清除链接默认背景 */
}

/* 内容网格布局：两个模块一致 */
.video-case-module .case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
.video-case-module2 .case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px 15px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

/* 内容项容器：两个模块一致 */
.video-case-module .case-item, 
.video-case-module2 .case-item {
    background: rgba(148, 163, 184, 0.1);
    border-radius: 3px;
    overflow: hidden;
    transition: transform .2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 内容项悬浮效果：两个模块一致 */
.video-case-module .case-item:hover {
    transform: translateY(-4px);
}
.video-case-module2 .case-item:hover {
    transform: translateY(-2px);
}

/* 图片样式：两个模块一致（仅前3条显示） */
.video-case-module .case-item img,
.video-case-module2 .case-item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    border-radius: 3px;
    transition: opacity .2s ease;
}

/* 图片悬浮透明度：两个模块一致 */
.video-case-module .case-item:hover img,
.video-case-module2 .case-item:hover img {
    opacity: 0.95;
}

/* ===================== 差异化样式（区分两个模块的文字排版） ===================== */
/* 第一个模块：文字居中（case-title） */
.video-case-module .case-title {
    padding: 12px 15px;
    color: #000;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 第二个模块：文字居中（case-title） */
.video-case-module2 .case-title {
    padding: 12px 15px;
    color: #000;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 第二个模块：文字居左（case-title2）+ 补充▪符号间距 */
.video-case-module2 .case-title2 {
    padding: 12px 15px;
    color: #000;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left; /* 文字左对齐 */
    flex: 1;
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: flex-start; /* 水平靠左 */
    gap: 4px; /* 补充：▪符号和文字的间距，更美观 */
}

/* ===================== 更多按钮样式：两个模块一致 ===================== */
.video-case-module .more-case-container,
.video-case-module2 .more-case-container {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0 !important;
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.video-case-module .more-case-link,
.video-case-module2 .more-case-link {
    display: inline-block;
    width: 390px;
    padding: 12px 24px;
    background: #0088cc;
    color: #ffffff;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all .2s ease;
}

.video-case-module .more-case-link:hover,
.video-case-module2 .more-case-link:hover {
    transform: translateY(-2px);
    background: #006699; /* 补充：悬浮时按钮加深，提升交互反馈 */
}

/* ===================== 面板显隐：两个模块一致（核心！确保切换生效） ===================== */
.video-case-module .case-panel,
.video-case-module2 .case-panel {
    display: none !important;
}

.video-case-module .case-panel.active,
.video-case-module2 .case-panel.active {
    display: block !important;
}
/* ===================== 花絮区域 ===================== */
.huaxu-container {
    display: flex;
    width: 1300px;
    margin: 0 auto;
    padding: 0;
    gap: 14px;
    align-items: stretch;
}

#process-section-wrapper {
    color: #333;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.process-container {
    width: 1300px;
    padding: 30px 40px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}

.process-header h2 {
    font-size: 24px;
    font-weight: bold;
    color: #ff0000;
    margin: 30px 0;
    padding: 0;
    letter-spacing: 1px;
    line-height: 1.2;
    text-align: center;
}

.huaxu-video-wrapper {
    width: 880px;
    height: 444px;
    background-color: #000;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.huaxu-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}

.huaxu-client-wrapper {
    width: 420px;
    height: 444px;
    background: transparent;
    border-radius: 5px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.03) !important;
    overflow: hidden;
}

.huaxu-client-inner {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
}

.huaxu-client-wrapper .yh-client-tagline {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    background: transparent;
    position: relative;
    z-index: 1;
}

.huaxu-client-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    justify-items: center;
    width: 100%;
    flex: 1;
    align-items: flex-start;
    padding: 0 5px;
}

.huaxu-client-wrapper .yh-logo-text {
    font-size: 14px;
    font-weight: 500;
    color: #555555;
    padding: 8px 15px;
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    transition: all 0.25s ease-in-out;
    cursor: default;
    width: 85%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* ===================== 服务板块 ===================== */
.service-section {
    width: 1300px;
    background: rgba(0, 0, 0, 0.03);
    margin: 0 auto;
    padding: 20px 0 40px 0 !important;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-nav {
    width: 180px;
    display: flex;
    flex-direction: column;
}

.service-nav .nav-item {
    height: 70px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    text-decoration: none;
}

.service-nav .nav-item.active,
.service-nav .nav-item:hover {
    background: #0088cc;
    transform: translateY(-1px);
}

.service-content {
    flex: 1;
    height: 254px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 0 10px;
    position: relative;
}

.panel-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    flex-shrink: 0;
    text-align: center;
}

.content-panel {
    display: none;
    height: 100%;
    padding-right: 140px;
}

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

.panel-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-left: 10px;
}

.panel-img {
    width: 330px;
    flex-shrink: 0;
}

.panel-img img {
    width: 100%;
    height: 172px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.panel-text {
    flex: 1;
    color: #222222;
    max-width: 450px;
}

.panel-text h2 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #111;
}

.panel-text li {
    font-size: 15px;
    line-height: 1.5;
    padding: 6px 10px;
    background: rgba(0, 173, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 6px;
    list-style: none;
}

.panel-text li::before {
    content: "●";
    color: #0088cc;
    font-size: 6px;
    margin-right: 12px;
}

.more-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0088cc;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    margin: 8px 0;
    transition: background 0.3s ease;
    text-decoration: none;
}

.more-btn:hover {
    background: #0099e6;
}

.panel-btn ul {
    list-style: none;
}

/* ===================== 文章列表样式 ===================== */
.content-list-wrapper {
    width: 100%;
    margin: 30px auto;
    padding: 0;
    box-sizing: border-box;
}

.content-list-container {
    width: 1300px;
    margin: 0 auto;
    padding: 0;
    border-radius: 4px;
    box-sizing: border-box;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
}

.content-card {
    padding: 0;
    border-radius: 3px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.05) !important;
    overflow: hidden;
}

.card-title {
    margin: 0;
    padding: 10px 0;
    box-sizing: border-box;
    background: rgba(0, 173, 255, 0.2) !important;
    text-align: center;
}

.card-title-link {
    color: #333 !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    display: inline-block;
}

.content-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 20px !important;
    width: 100%;
    box-sizing: border-box;
}

.content-list li {
    padding: 8px 0 !important;
    display: flex !important;
    align-items: center !important;
    box-sizing: border-box;
    border-bottom: none !important;
}

.content-list li::before {
    content: "·" !important;
    color: #333 !important;
    font-size: 15px !important;
    margin-right: 8px !important;
    flex-shrink: 0;
}

.content-item-link {
    color: #555 !important;
    text-decoration: none !important;
    font-size: 15px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 90% !important;
    flex: 1;
}

.content-item-link:hover {
    color: #ff0000 !important;
}

.article-top-item {
    text-align: center;
    margin-bottom: 5px;
}

.article-top-img {
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 8px;
}

.article-img {
    width: auto;
    height: 180px;
    object-fit: cover;
    border: none;
    display: block;
}

.article-top-title {
    margin: 0 !important; /* 先清空原有margin，避免冲突 */
    margin-bottom: 10px !important; /* 强制设置底部10px间距，!important提升优先级 */
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.article-top-title a {
    color: #333;
    text-decoration: none;
}

.article-top-desc {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    text-align: justify;
    padding: 0 20px;
}

.article-top-more {
    font-size: 13px;
    color: #00a7b2;
    text-decoration: none;
    display: inline-block;
    text-align: right;
    margin-right: 20px;
}

/* ===================== 视频样式 ===================== */
video.edui-faked-video {
    border: none;
    outline: none;
    border-radius: 5px;
    max-width: 100%;
}