/**
 * 抖音营销页面样式
 * 特点：通屏设计、现代感强、动效丰富、抖音品牌色调
 */

/* 全局变量 */
:root {
    /* 抖音品牌色 */
    --dy-black: #000000;
    --dy-pink: #FE2C55;
    --dy-blue: #25F4EE;

    /* 辅助色 */
    --dy-dark: #111111;
    --dy-gray: #999999;
    --dy-light-gray: #f5f5f5;
    --dy-white: #FFFFFF;
    
    /* 字体 */
    --dy-font-main: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
}

/* 基础样式重置 - 仅作用于抖音营销页面的组件 */
.douyin-page *, .douyin-page *::before, .douyin-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 隔离抖音页面样式，防止影响全局导航 */
.douyin-page {
    overflow-x: hidden;
    width: 100%;
    font-family: var(--dy-font-main);
    color: var(--dy-dark);
    line-height: 1.6;
    font-size: 16px; /* 增加基础字体大小 */
}

@media (min-width: 768px) {
    .douyin-page {
        font-size: 17px; /* 在大屏幕上进一步增加字体大小 */
    }
}

.douyin-page img {
    max-width: 100%;
    height: auto;
}

.douyin-page a {
    text-decoration: none;
    color: var(--dy-pink);
    transition: all 0.3s ease;
}

.douyin-page ul, .douyin-page ol {
    list-style: none;
}

.douyin-page h1, .douyin-page h2, .douyin-page h3, .douyin-page h4, .douyin-page h5, .douyin-page h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* 通用布局 */
.dy-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dy-section {
    padding: 80px 0;
    position: relative;
}

.dy-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.dy-section-title {
    font-size: 2.6rem; /* 增加section标题大小 */
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.dy-section-subtitle {
    font-size: 1.3rem; /* 增加副标题大小 */
    color: var(--dy-gray);
    max-width: 700px;
    margin: 0 auto 20px;
}

.dy-title-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--dy-blue), var(--dy-pink));
    margin: 0 auto;
    border-radius: 2px;
}

.dy-section-header.light {
    color: var(--dy-white);
}

.dy-section-header.light .dy-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* 按钮样式 */
.dy-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.dy-btn-primary {
    background: var(--dy-pink);
    color: var(--dy-white);
    box-shadow: 0 8px 15px rgba(254, 44, 85, 0.2);
}

.dy-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(254, 44, 85, 0.3);
    color: var(--dy-white);
}

.dy-btn-outline {
    background: transparent;
    color: var(--dy-white);
    border: 2px solid var(--dy-blue);
    padding: 12px 30px;
}

.dy-btn-outline:hover {
    background-color: var(--dy-blue);
    color: var(--dy-black);
}

/* 修复与导航冲突的样式 - 确保z-index不会高于导航 */
.dy-hero {
    position: relative;
    height: 800px; /* 固定高度 */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    background: var(--dy-black);
    color: var(--dy-white);
    z-index: 10; /* 确保低于导航的z-index */
}

/* 视频背景 */
.dy-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dy-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.dy-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
}

.dy-bg-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, var(--dy-black), #222222);
    z-index: 0;
}

/* 粒子动画层 */
.dy-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

/* Hero内容区域 */
.dy-hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .dy-hero-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* 左侧文本内容 */
.dy-hero-left {
    margin-bottom: 40px;
    text-align: center;
}

@media (min-width: 992px) {
    .dy-hero-left {
        text-align: left;
        margin-bottom: 0;
        flex: 0 0 46%;
    }
}

.dy-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.dy-title-line {
    display: block;
    margin-bottom: 10px;
}

.dy-accent {
    color: var(--dy-pink);
}

.dy-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.dy-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

/* 数据标签样式 */
.dy-data-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    justify-content: center;
}

@media (min-width: 992px) {
    .dy-data-tags {
        justify-content: flex-start;
    }
}

.dy-data-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dy-data-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.dy-data-tag i, 
.dy-data-tag svg {
    color: var(--dy-blue);
    font-size: 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
}

.dy-data-tag strong {
    color: var(--dy-pink);
    font-weight: 700;
    margin-left: 5px;
    font-size: 1.15rem;
}

@media (min-width: 992px) {
    .dy-hero-title {
        font-size: 3.2rem;
    }
    
    .dy-hero-btns {
        justify-content: flex-start;
    }
}

/* 右侧数据展示 */
.dy-hero-right {
    width: 100%;
}

@media (min-width: 992px) {
    .dy-hero-right {
        flex: 0 0 48%;
    }
}

/* 数据展示区整体容器 */
.dy-data-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 数据圆环行 */
.dy-stats-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* 数据圆环卡片 */
.dy-data-circle {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.dy-data-circle:hover {
    transform: translateY(-5px);
}

@media (min-width: 768px) {
    .dy-data-circle {
        width: 150px;
        height: 150px;
    }
}

.dy-circle-content {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.dy-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dy-white);
}

.dy-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-pink);
    margin-left: 3px;
}

.dy-circle-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.dy-circle-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.dy-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.dy-circle-fill {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transform-origin: center;
    stroke-dasharray: 534;
    stroke-dashoffset: 534;
}

.dy-data-circle:nth-child(1) .dy-circle-fill {
    stroke: var(--dy-blue);
    animation: circle-animation 2s ease forwards 0.5s;
}

.dy-data-circle:nth-child(2) .dy-circle-fill {
    stroke: var(--dy-pink);
    animation: circle-animation 2s ease forwards 0.8s;
}

.dy-data-circle:nth-child(3) .dy-circle-fill {
    stroke: #FFC107;
    animation: circle-animation 2s ease forwards 1.1s;
}

@keyframes circle-animation {
    to {
        stroke-dashoffset: 100;
    }
}

/* 迷你数据卡片 */
.dy-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.dy-mini-stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dy-mini-stat:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.dy-mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
}

.dy-mini-stat:nth-child(1) .dy-mini-icon {
    color: var(--dy-pink);
}

.dy-mini-stat:nth-child(2) .dy-mini-icon {
    color: var(--dy-blue);
}

.dy-mini-stat:nth-child(3) .dy-mini-icon {
    color: #FFC107;
}

.dy-mini-data {
    display: flex;
    flex-direction: column;
}

.dy-mini-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dy-white);
}

.dy-mini-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* 趋势图表 */
.dy-trend-graph {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.dy-graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dy-graph-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dy-white);
}

.dy-graph-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.dy-graph-bars {
    display: flex;
    align-items: flex-end;
    height: 180px;
    gap: 15px;
}

.dy-bar {
    flex: 1;
    background: linear-gradient(to top, var(--dy-blue), #5cb1e0);
    border-radius: 6px 6px 0 0;
    height: 0;
    position: relative;
    transition: height 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dy-bar.highlight {
    background: linear-gradient(to top, var(--dy-pink), #FF758C);
}

.dy-bar::before {
    content: attr(data-label);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.dy-bar::after {
    content: attr(data-height) '%';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.dy-bar.animate::after {
    opacity: 1;
}

/* 浮动装饰元素 */
.dy-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.dy-float-item {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: 24px;
    animation: floating 15s infinite ease-in-out;
}

.dy-float-item:nth-child(1) {
    top: 20%;
    left: 15%;
    font-size: 28px;
    animation-duration: 25s;
}

.dy-float-item:nth-child(2) {
    top: 30%;
    left: 80%;
    font-size: 20px;
    animation-duration: 18s;
}

.dy-float-item:nth-child(3) {
    top: 70%;
    left: 25%;
    font-size: 26px;
    animation-duration: 22s;
}

.dy-float-item:nth-child(4) {
    top: 60%;
    left: 75%;
    font-size: 22px;
    animation-duration: 20s;
}

.dy-float-item:nth-child(5) {
    top: 85%;
    left: 60%;
    font-size: 24px;
    animation-duration: 23s;
}

@keyframes floating {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 40px) rotate(-10deg);
    }
    75% {
        transform: translate(-40px, -20px) rotate(8deg);
    }
}

/* Hero底部曲线 */
.dy-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 6;
}

.dy-hero-wave svg {
    width: 100%;
    height: 100%;
    fill: var(--dy-white);
}

@media (max-width: 768px) {
    .dy-mini-stats {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .dy-stats-row {
        justify-content: center;
    }
}

/* 解决方案卡片 */
.dy-solutions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-solutions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .dy-solutions {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dy-solution-card {
    background: var(--dy-white);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dy-solution-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--dy-blue), var(--dy-pink));
    transition: height 0.3s ease;
    z-index: -1;
}

.dy-solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.dy-solution-card:hover::before {
    height: 6px;
}

.dy-solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--dy-white);
}

.dy-solution-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.dy-solution-desc {
    color: var(--dy-gray);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.dy-solution-features {
    margin-bottom: 25px;
}

.dy-solution-features li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.dy-solution-features li i {
    color: var(--dy-pink);
    margin-right: 10px;
    font-size: 0.8rem;
}

.dy-solution-link {
    display: inline-flex;
    align-items: center;
    color: var(--dy-pink);
    font-weight: 600;
    font-size: 1rem;
}

.dy-solution-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.dy-solution-link:hover i {
    transform: translateX(5px);
}

/* 客户案例 */
.dy-cases {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .dy-cases {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dy-case-card {
    background: var(--dy-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dy-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dy-case-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.dy-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dy-case-card:hover .dy-case-image img {
    transform: scale(1.1);
}

.dy-case-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--dy-pink);
    color: var(--dy-white);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dy-case-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dy-case-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.dy-case-desc {
    font-size: 1.1rem;
    color: var(--dy-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.dy-case-results {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-result {
    text-align: center;
    flex: 1;
}

.dy-result-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dy-pink);
    margin-bottom: 5px;
}

.dy-result-label {
    font-size: 0.95rem;
    color: var(--dy-gray);
}

.dy-cases-more {
    text-align: center;
}

/* 服务流程 */
.dy-process-section {
    background: linear-gradient(135deg, var(--dy-black), #222);
    color: var(--dy-white);
    position: relative;
    overflow: hidden;
}

.dy-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .dy-process {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .dy-process {
        grid-template-columns: repeat(5, 1fr);
    }
}

.dy-process::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    display: none;
}

@media (min-width: 992px) {
    .dy-process::before {
        display: block;
    }
}

.dy-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.dy-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dy-white);
    margin: 0 auto 20px;
    position: relative;
}

.dy-step-number {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--dy-white);
    color: var(--dy-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.dy-step-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dy-white);
}

.dy-step-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* 联系区域 */
.dy-contact {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
}

@media (min-width: 992px) {
    .dy-contact {
        flex-direction: row;
        align-items: flex-start;
    }

    .dy-contact-form-wrapper {
        flex: 0 0 60%;
    }

    .dy-contact-info {
        flex: 0 0 35%;
        margin-left: 5%;
    }
}

.dy-contact-form {
    background: var(--dy-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-form-group {
    margin-bottom: 25px;
}

.dy-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.dy-form-row .dy-form-group {
    flex: 1;
    min-width: 200px;
}

.dy-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.dy-form-group label .required {
    color: var(--dy-pink);
    margin-left: 3px;
}

.dy-form-group input,
.dy-form-group select,
.dy-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: var(--dy-white);
}

.dy-form-group input:focus,
.dy-form-group select:focus,
.dy-form-group textarea:focus {
    border-color: var(--dy-pink);
    outline: none;
    box-shadow: 0 0 0 3px rgba(254, 44, 85, 0.1);
}

.dy-form-submit {
    margin-top: 30px;
    text-align: center;
}

.dy-form-submit .dy-btn {
    min-width: 200px;
}

.dy-contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-contact-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dy-info-card {
    background: var(--dy-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.dy-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dy-white);
    margin: 0 auto 20px;
}

.dy-info-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.dy-info-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-pink);
}

.dy-info-subtext {
    font-size: 1rem;
    color: var(--dy-gray);
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .dy-section-title {
        font-size: 2.2rem;
    }
    
    .dy-hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 991px) {
    .dy-section {
        padding: 60px 0;
    }
    
    .dy-section-title {
        font-size: 2.1rem;
    }
    
    .dy-section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .dy-hero {
        height: auto;
        min-height: 800px;
    }
    
    .dy-section {
        padding: 50px 0;
    }
    
    .dy-section-title {
        font-size: 2rem;
    }
    
    .dy-section-subtitle {
        font-size: 1.05rem;
    }
    
    .dy-hero-title {
        font-size: 2.4rem;
    }
    
    .dy-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .dy-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .dy-hero-title {
        font-size: 2rem;
    }
    
    .dy-hero-subtitle {
        font-size: 1rem;
    }
    
    .dy-hero-btns {
        flex-direction: column;
    }
    
    .dy-kpi-grid {
        grid-template-columns: 1fr;
    }
}

/* 数据驱动增长区块 - 全新命名空间 */
.dy-data-drive-section {
    background: linear-gradient(150deg, #000000, #181818);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.dy-data-drive-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="30" cy="40" r="20" fill="%23FE2C55" opacity="0.05"/><circle cx="70" cy="70" r="30" fill="%2325F4EE" opacity="0.05"/></svg>');
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
}

/* 数据驱动内容容器 */
.dy-data-drive-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 992px) {
    .dy-data-drive-container {
        flex-direction: row;
    }

    .dy-data-drive-left {
        flex: 0 0 55%;
        padding-right: 30px;
    }

    .dy-data-drive-right {
        flex: 0 0 45%;
        padding-left: 30px;
    }
}

/* 图表容器样式 */
.dy-data-drive-chart-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dy-data-drive-chart-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dy-data-drive-chart-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* KPI指标卡片网格 */
.dy-data-drive-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.dy-data-drive-kpi-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dy-data-drive-kpi-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.dy-data-drive-kpi-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.dy-data-drive-kpi-card:nth-child(1) .dy-data-drive-kpi-icon {
    color: var(--dy-blue);
}

.dy-data-drive-kpi-card:nth-child(2) .dy-data-drive-kpi-icon {
    color: var(--dy-pink);
}

.dy-data-drive-kpi-card:nth-child(3) .dy-data-drive-kpi-icon {
    color: #FFC107;
}

.dy-data-drive-kpi-card:nth-child(4) .dy-data-drive-kpi-icon {
    color: #4CAF50;
}

.dy-data-drive-kpi-data {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.dy-data-drive-kpi-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.dy-data-drive-kpi-unit {
    font-size: 1.1rem;
    color: var(--dy-pink);
    margin-left: 3px;
    font-weight: 600;
}

.dy-data-drive-kpi-label {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 576px) {
    .dy-data-drive-kpi-grid {
        grid-template-columns: 1fr;
    }
    
    .dy-data-drive-kpi-value {
        font-size: 2.2rem;
    }
}

/* 全域营销解决方案区域 */
.dy-marketing-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.dy-marketing-nav-item {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-marketing-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dy-marketing-nav-item.active {
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
}

.dy-nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.dy-nav-label {
    font-weight: 600;
    font-size: 1rem;
}

/* 营销面板区域 */
.dy-marketing-panels {
    position: relative;
}

.dy-marketing-panel {
    display: none;
    position: relative;
}

.dy-marketing-panel.active {
    display: block;
    animation: fadeInPanel 0.5s ease forwards;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dy-panel-container {
    position: relative;
}

.dy-panel-header {
    text-align: center;
    margin-bottom: 30px;
}

.dy-panel-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dy-dark);
    background: linear-gradient(90deg, var(--dy-pink), #ff758c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dy-panel-desc {
    font-size: 1.2rem;
    color: var(--dy-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* 营销卡片通用样式 */
.dy-marketing-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 992px) {
    .dy-marketing-flex {
        flex-direction: row;
    }
}

.dy-marketing-card {
    background: var(--dy-white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-marketing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dy-card-header {
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--dy-white);
}

.dy-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.dy-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.dy-card-content {
    padding: 25px;
    flex-grow: 1;
}

/* 达人资源列表样式 */
.dy-resource-list {
    margin-bottom: 25px;
}

.dy-resource-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-resource-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.dy-resource-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.dy-resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dy-resource-info {
    flex-grow: 1;
}

.dy-resource-info h5 {
    font-size: 1.3rem; /* 增加资源标题大小 */
    font-weight: 600;
    margin-bottom: 8px;
}

.dy-resource-info p {
    font-size: 1.05rem; /* 增加资源描述大小 */
    color: var(--dy-gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.dy-resource-metrics {
    display: flex;
    gap: 15px;
}

.dy-resource-metrics span {
    font-size: 0.85rem;
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    gap: 5px;
}

.dy-resource-metrics i {
    font-size: 0.9rem;
}

/* 卡片特性样式 */
.dy-card-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dy-feature {
    background: rgba(254, 44, 85, 0.05);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dy-feature i {
    color: var(--dy-pink);
    font-size: 1.1rem;
}

.dy-feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* 流程样式 */
.dy-process-flow {
    margin-bottom: 25px;
}

.dy-process-step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.dy-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    flex-shrink: 0;
}

.dy-step-icon span {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--dy-white);
    color: var(--dy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dy-step-content {
    flex-grow: 1;
}

.dy-step-content h5 {
    font-size: 1.25rem; /* 增加步骤标题大小 */
    font-weight: 600;
    margin-bottom: 5px;
}

.dy-step-content p {
    font-size: 1.05rem; /* 增加步骤描述大小 */
    color: var(--dy-gray);
    line-height: 1.6;
}

/* 案例突出显示 */
.dy-case-highlight {
    background: linear-gradient(135deg, rgba(37, 244, 238, 0.1), rgba(254, 44, 85, 0.1));
    border-radius: 15px;
    padding: 20px;
    position: relative;
}

.dy-case-highlight.small {
    padding: 15px;
}

.dy-case-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--dy-pink);
    color: var(--dy-white);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dy-case-highlight h5 {
    font-size: 1.1rem;
    margin: 10px 0 15px;
    font-weight: 600;
}

.dy-case-highlight p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    margin-bottom: 15px;
}

.dy-case-results {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.dy-case-stat {
    text-align: center;
    flex: 1;
}

.dy-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dy-pink);
    margin-bottom: 5px;
}

.dy-stat-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 信息块样式 */
.dy-info-blocks {
    margin-bottom: 25px;
}

.dy-info-block {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.dy-info-block h5 {
    font-size: 1.3rem; /* 增加信息块标题大小 */
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.dy-info-block h5 i {
    color: var(--dy-pink);
}

.dy-info-block p {
    font-size: 1.05rem; /* 增加信息块描述大小 */
    color: var(--dy-gray);
    line-height: 1.6;
}

/* 千川ROI对比图表 */
.dy-custom-chart {
    margin-top: 25px;
}

.dy-chart-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-bar-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 200px;
    padding: 0 10px;
    margin-top: 30px;
}

.dy-chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 100%;
}

.dy-bar-value {
    width: 25px;
    background: linear-gradient(to top, var(--dy-blue), #5cb1e0);
    border-radius: 5px 5px 0 0;
    position: absolute;
    bottom: 30px; /* 为标签留出空间 */
    left: 50%;
    transform: translateX(-50%);
    transition: height 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: barGrow 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.dy-chart-bar.highlight .dy-bar-value {
    background: linear-gradient(to top, var(--dy-pink), #FF758C);
    width: 35px;
}

.dy-bar-value[style*="height: 30%"] {
    --target-height: 30%;
}

.dy-bar-value[style*="height: 50%"] {
    --target-height: 50%;
}

.dy-bar-value[style*="height: 85%"] {
    --target-height: 85%;
}

.dy-bar-value[style*="height: 95%"] {
    --target-height: 95%;
}

.dy-bar-value span {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dy-dark);
    white-space: nowrap;
}

.dy-bar-label {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--dy-gray);
    text-align: center;
    width: 100%;
}

/* 信息流广告展示 */
.dy-feed-showcase {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .dy-feed-showcase {
        flex-direction: row;
        align-items: center;
    }
    
    .dy-feed-mockup {
        width: 40%;
    }
    
    .dy-feed-info {
        width: 60%;
    }
}

.dy-feed-mockup {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dy-feed-mockup img {
    width: 100%;
    display: block;
}

.dy-mock-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--dy-white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.dy-feed-info h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.dy-feed-info p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    line-height: 1.5;
    margin-bottom: 15px;
}

.dy-performance-metrics {
    display: flex;
    gap: 20px;
}

.dy-metric {
    text-align: center;
}

.dy-metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dy-pink);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 广告模板网格 */
.dy-ad-templates {
    margin-top: 25px;
}

.dy-ad-templates h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.dy-template-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dy-template-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.dy-template-item:hover {
    background: rgba(254, 44, 85, 0.05);
}

.dy-template-item i {
    font-size: 1.5rem;
    color: var(--dy-pink);
}

.dy-template-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* 话题营销样式 */
.dy-topic-showcase {
    margin-bottom: 15px;
}

.dy-topic-example {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.dy-topic-tag {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-pink);
    margin-bottom: 15px;
}

.dy-topic-stats {
    display: flex;
    gap: 20px;
}

.dy-topic-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--dy-gray);
}

.dy-topic-stat i {
    color: var(--dy-blue);
}

.dy-topic-types {
    margin-bottom: 25px;
}

.dy-topic-type {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-topic-type:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.dy-type-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dy-type-info h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-type-info p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    line-height: 1.5;
}

/* 热门流量样式 */
.dy-trend-blocks {
    margin-bottom: 25px;
}

.dy-trend-block {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-trend-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.dy-trend-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dy-trend-info h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-trend-info p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    line-height: 1.5;
}

/* 内容策略步骤 */
.dy-content-strategy {
    margin-bottom: 25px;
}

.dy-content-strategy h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.dy-strategy-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dy-strategy-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.dy-step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.dy-step-text {
    font-size: 0.85rem;
    font-weight: 500;
}

.dy-strategy-connector {
    width: 30px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* 性能图表 */
.dy-performance-chart {
    margin-top: 25px;
}

.dy-performance-chart h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.dy-performance-comparison {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dy-performance-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dy-performance-bar {
    height: 30px;
    background: linear-gradient(to right, var(--dy-blue), var(--dy-pink));
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: var(--dy-white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: width 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dy-performance-value {
    font-size: 0.95rem;
    font-weight: 600;
    width: 90px;
    text-align: right;
}

/* 行业解决方案样式 */
.dy-industry-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.dy-industry-tab {
    background: var(--dy-white);
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-industry-tab:hover {
    transform: translateY(-3px);
}

.dy-industry-tab.active {
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
}

.dy-industry-tab i {
    font-size: 0.95rem;
}

.dy-industry-panels {
    margin-top: 30px;
}

.dy-industry-panel {
    display: none;
    max-height: none;
}

.dy-industry-panel.active {
    display: block;
    animation: fadeInPanel 0.4s ease forwards;
}

.dy-industry-content {
    background: var(--dy-white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.dy-industry-flex-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

@media (min-width: 992px) {
    .dy-industry-flex-layout {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    
    .dy-industry-left {
        width: 48%;
    }
    
    .dy-industry-right {
        width: 48%;
    }
}

.dy-industry-left,
.dy-industry-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dy-industry-header {
    margin-bottom: 15px;
}

.dy-industry-header h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-industry-header p {
    font-size: 0.95rem;
    color: var(--dy-gray);
}

.dy-industry-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.dy-industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
/**
 * 抖音营销页面样式
 * 特点：通屏设计、现代感强、动效丰富、抖音品牌色调
 */

/* 全局变量 */
:root {
    /* 抖音品牌色 */
    --dy-black: #000000;
    --dy-pink: #FE2C55;
    --dy-blue: #25F4EE;

    /* 辅助色 */
    --dy-dark: #111111;
    --dy-gray: #999999;
    --dy-light-gray: #f5f5f5;
    --dy-white: #FFFFFF;
    
    /* 字体 */
    --dy-font-main: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
}

/* 基础样式重置 */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    font-family: var(--dy-font-main);
    color: var(--dy-dark);
    background: #fff;
    line-height: 1.6;
    scroll-behavior: smooth;
    font-size: 15px;
}

@media (min-width: 768px) {
    html, body {
        font-size: 16px;
    }
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--dy-pink);
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* 通用布局 */
.dy-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dy-section {
    padding: 80px 0;
    position: relative;
}

.dy-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.dy-section-title {
    font-size: 2.4rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.dy-section-subtitle {
    font-size: 1.2rem;
    color: var(--dy-gray);
    max-width: 700px;
    margin: 0 auto 20px;
}

.dy-title-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--dy-blue), var(--dy-pink));
    margin: 0 auto;
    border-radius: 2px;
}

.dy-section-header.light {
    color: var(--dy-white);
}

.dy-section-header.light .dy-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* 按钮样式 */
.dy-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.dy-btn-primary {
    background: var(--dy-pink);
    color: var(--dy-white);
    box-shadow: 0 8px 15px rgba(254, 44, 85, 0.2);
}

.dy-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(254, 44, 85, 0.3);
    color: var(--dy-white);
}

.dy-btn-outline {
    background: transparent;
    color: var(--dy-white);
    border: 2px solid var(--dy-blue);
    padding: 12px 30px;
}

.dy-btn-outline:hover {
    background-color: var(--dy-blue);
    color: var(--dy-black);
}

/* 全屏Hero区域 */
.dy-hero {
    position: relative;
    height: 800px; /* 固定高度 */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    background: var(--dy-black);
    color: var(--dy-white);
}

/* 视频背景 */
.dy-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dy-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.dy-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
}

.dy-bg-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, var(--dy-black), #222222);
    z-index: 0;
}

/* 粒子动画层 */
.dy-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

/* Hero内容区域 */
.dy-hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .dy-hero-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* 左侧文本内容 */
.dy-hero-left {
    margin-bottom: 40px;
    text-align: center;
}

@media (min-width: 992px) {
    .dy-hero-left {
        text-align: left;
        margin-bottom: 0;
        flex: 0 0 46%;
    }
}

.dy-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.dy-title-line {
    display: block;
    margin-bottom: 10px;
}

.dy-accent {
    color: var(--dy-pink);
}

.dy-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.dy-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

/* 数据标签样式 */
.dy-data-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    justify-content: center;
}

@media (min-width: 992px) {
    .dy-data-tags {
        justify-content: flex-start;
    }
}

.dy-data-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dy-data-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.dy-data-tag i, 
.dy-data-tag svg {
    color: var(--dy-blue);
    font-size: 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
}

.dy-data-tag strong {
    color: var(--dy-pink);
    font-weight: 700;
    margin-left: 5px;
    font-size: 1.15rem;
}

@media (min-width: 992px) {
    .dy-hero-title {
        font-size: 3.2rem;
    }
    
    .dy-hero-btns {
        justify-content: flex-start;
    }
}

/* 右侧数据展示 */
.dy-hero-right {
    width: 100%;
}

@media (min-width: 992px) {
    .dy-hero-right {
        flex: 0 0 48%;
    }
}

/* 数据展示区整体容器 */
.dy-data-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 数据圆环行 */
.dy-stats-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* 数据圆环卡片 */
.dy-data-circle {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.dy-data-circle:hover {
    transform: translateY(-5px);
}

@media (min-width: 768px) {
    .dy-data-circle {
        width: 150px;
        height: 150px;
    }
}

.dy-circle-content {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.dy-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dy-white);
}

.dy-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-pink);
    margin-left: 3px;
}

.dy-circle-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.dy-circle-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.dy-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.dy-circle-fill {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transform-origin: center;
    stroke-dasharray: 534;
    stroke-dashoffset: 534;
}

.dy-data-circle:nth-child(1) .dy-circle-fill {
    stroke: var(--dy-blue);
    animation: circle-animation 2s ease forwards 0.5s;
}

.dy-data-circle:nth-child(2) .dy-circle-fill {
    stroke: var(--dy-pink);
    animation: circle-animation 2s ease forwards 0.8s;
}

.dy-data-circle:nth-child(3) .dy-circle-fill {
    stroke: #FFC107;
    animation: circle-animation 2s ease forwards 1.1s;
}

@keyframes circle-animation {
    to {
        stroke-dashoffset: 100;
    }
}

/* 迷你数据卡片 */
.dy-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.dy-mini-stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dy-mini-stat:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.dy-mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
}

.dy-mini-stat:nth-child(1) .dy-mini-icon {
    color: var(--dy-pink);
}

.dy-mini-stat:nth-child(2) .dy-mini-icon {
    color: var(--dy-blue);
}

.dy-mini-stat:nth-child(3) .dy-mini-icon {
    color: #FFC107;
}

.dy-mini-data {
    display: flex;
    flex-direction: column;
}

.dy-mini-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dy-white);
}

.dy-mini-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* 趋势图表 */
.dy-trend-graph {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.dy-graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dy-graph-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dy-white);
}

.dy-graph-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.dy-graph-bars {
    display: flex;
    align-items: flex-end;
    height: 180px;
    gap: 15px;
}

.dy-bar {
    flex: 1;
    background: linear-gradient(to top, var(--dy-blue), #5cb1e0);
    border-radius: 6px 6px 0 0;
    height: 0;
    position: relative;
    transition: height 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dy-bar.highlight {
    background: linear-gradient(to top, var(--dy-pink), #FF758C);
}

.dy-bar::before {
    content: attr(data-label);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.dy-bar::after {
    content: attr(data-height) '%';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.dy-bar.animate::after {
    opacity: 1;
}

/* 浮动装饰元素 */
.dy-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.dy-float-item {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: 24px;
    animation: floating 15s infinite ease-in-out;
}

.dy-float-item:nth-child(1) {
    top: 20%;
    left: 15%;
    font-size: 28px;
    animation-duration: 25s;
}

.dy-float-item:nth-child(2) {
    top: 30%;
    left: 80%;
    font-size: 20px;
    animation-duration: 18s;
}

.dy-float-item:nth-child(3) {
    top: 70%;
    left: 25%;
    font-size: 26px;
    animation-duration: 22s;
}

.dy-float-item:nth-child(4) {
    top: 60%;
    left: 75%;
    font-size: 22px;
    animation-duration: 20s;
}

.dy-float-item:nth-child(5) {
    top: 85%;
    left: 60%;
    font-size: 24px;
    animation-duration: 23s;
}

@keyframes floating {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 40px) rotate(-10deg);
    }
    75% {
        transform: translate(-40px, -20px) rotate(8deg);
    }
}

/* Hero底部曲线 */
.dy-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 6;
}

.dy-hero-wave svg {
    width: 100%;
    height: 100%;
    fill: var(--dy-white);
}

@media (max-width: 768px) {
    .dy-mini-stats {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .dy-stats-row {
        justify-content: center;
    }
}

/* 解决方案卡片 */
.dy-solutions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-solutions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .dy-solutions {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dy-solution-card {
    background: var(--dy-white);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dy-solution-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--dy-blue), var(--dy-pink));
    transition: height 0.3s ease;
    z-index: -1;
}

.dy-solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.dy-solution-card:hover::before {
    height: 6px;
}

.dy-solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--dy-white);
}

.dy-solution-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.dy-solution-desc {
    color: var(--dy-gray);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.dy-solution-features {
    margin-bottom: 25px;
}

.dy-solution-features li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.dy-solution-features li i {
    color: var(--dy-pink);
    margin-right: 10px;
    font-size: 0.8rem;
}

.dy-solution-link {
    display: inline-flex;
    align-items: center;
    color: var(--dy-pink);
    font-weight: 600;
    font-size: 1rem;
}

.dy-solution-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.dy-solution-link:hover i {
    transform: translateX(5px);
}

/* 客户案例 */
.dy-cases {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .dy-cases {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dy-case-card {
    background: var(--dy-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dy-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dy-case-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.dy-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dy-case-card:hover .dy-case-image img {
    transform: scale(1.1);
}

.dy-case-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--dy-pink);
    color: var(--dy-white);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dy-case-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dy-case-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.dy-case-desc {
    font-size: 1.1rem;
    color: var(--dy-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.dy-case-results {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-result {
    text-align: center;
    flex: 1;
}

.dy-result-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dy-pink);
    margin-bottom: 5px;
}

.dy-result-label {
    font-size: 0.95rem;
    color: var(--dy-gray);
}

.dy-cases-more {
    text-align: center;
}

/* 服务流程 */
.dy-process-section {
    background: linear-gradient(135deg, var(--dy-black), #222);
    color: var(--dy-white);
    position: relative;
    overflow: hidden;
}

.dy-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .dy-process {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .dy-process {
        grid-template-columns: repeat(5, 1fr);
    }
}

.dy-process::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    display: none;
}

@media (min-width: 992px) {
    .dy-process::before {
        display: block;
    }
}

.dy-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.dy-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dy-white);
    margin: 0 auto 20px;
    position: relative;
}

.dy-step-number {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--dy-white);
    color: var(--dy-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.dy-step-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dy-white);
}

.dy-step-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* 联系区域 */
.dy-contact {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
}

@media (min-width: 992px) {
    .dy-contact {
        flex-direction: row;
        align-items: flex-start;
    }

    .dy-contact-form-wrapper {
        flex: 0 0 60%;
    }

    .dy-contact-info {
        flex: 0 0 35%;
        margin-left: 5%;
    }
}

.dy-contact-form {
    background: var(--dy-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-form-group {
    margin-bottom: 25px;
}

.dy-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.dy-form-row .dy-form-group {
    flex: 1;
    min-width: 200px;
}

.dy-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.dy-form-group label .required {
    color: var(--dy-pink);
    margin-left: 3px;
}

.dy-form-group input,
.dy-form-group select,
.dy-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: var(--dy-white);
}

.dy-form-group input:focus,
.dy-form-group select:focus,
.dy-form-group textarea:focus {
    border-color: var(--dy-pink);
    outline: none;
    box-shadow: 0 0 0 3px rgba(254, 44, 85, 0.1);
}

.dy-form-submit {
    margin-top: 30px;
    text-align: center;
}

.dy-form-submit .dy-btn {
    min-width: 200px;
}

.dy-contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-contact-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dy-info-card {
    background: var(--dy-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.dy-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dy-white);
    margin: 0 auto 20px;
}

.dy-info-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.dy-info-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-pink);
}

.dy-info-subtext {
    font-size: 1rem;
    color: var(--dy-gray);
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .dy-section-title {
        font-size: 2.2rem;
    }
    
    .dy-hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 991px) {
    .dy-section {
        padding: 60px 0;
    }
    
    .dy-section-title {
        font-size: 2.1rem;
    }
    
    .dy-section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .dy-hero {
        height: auto;
        min-height: 800px;
    }
    
    .dy-section {
        padding: 50px 0;
    }
    
    .dy-section-title {
        font-size: 2rem;
    }
    
    .dy-section-subtitle {
        font-size: 1.05rem;
    }
    
    .dy-hero-title {
        font-size: 2.4rem;
    }
    
    .dy-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .dy-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .dy-hero-title {
        font-size: 2rem;
    }
    
    .dy-hero-subtitle {
        font-size: 1rem;
    }
    
    .dy-hero-btns {
        flex-direction: column;
    }
    
    .dy-kpi-grid {
        grid-template-columns: 1fr;
    }
}

/* 数据驱动增长区块 - 全新命名空间 */
.dy-data-drive-section {
    background: linear-gradient(150deg, #000000, #181818);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.dy-data-drive-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="30" cy="40" r="20" fill="%23FE2C55" opacity="0.05"/><circle cx="70" cy="70" r="30" fill="%2325F4EE" opacity="0.05"/></svg>');
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
}

/* 数据驱动内容容器 */
.dy-data-drive-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 992px) {
    .dy-data-drive-container {
        flex-direction: row;
    }

    .dy-data-drive-left {
        flex: 0 0 55%;
        padding-right: 30px;
    }

    .dy-data-drive-right {
        flex: 0 0 45%;
        padding-left: 30px;
    }
}

/* 图表容器样式 */
.dy-data-drive-chart-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dy-data-drive-chart-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dy-data-drive-chart-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* KPI指标卡片网格 */
.dy-data-drive-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.dy-data-drive-kpi-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dy-data-drive-kpi-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.dy-data-drive-kpi-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.dy-data-drive-kpi-card:nth-child(1) .dy-data-drive-kpi-icon {
    color: var(--dy-blue);
}

.dy-data-drive-kpi-card:nth-child(2) .dy-data-drive-kpi-icon {
    color: var(--dy-pink);
}

.dy-data-drive-kpi-card:nth-child(3) .dy-data-drive-kpi-icon {
    color: #FFC107;
}

.dy-data-drive-kpi-card:nth-child(4) .dy-data-drive-kpi-icon {
    color: #4CAF50;
}

.dy-data-drive-kpi-data {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.dy-data-drive-kpi-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.dy-data-drive-kpi-unit {
    font-size: 1.1rem;
    color: var(--dy-pink);
    margin-left: 3px;
    font-weight: 600;
}

.dy-data-drive-kpi-label {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 576px) {
    .dy-data-drive-kpi-grid {
        grid-template-columns: 1fr;
    }
    
    .dy-data-drive-kpi-value {
        font-size: 2.2rem;
    }
}

/* 全域营销解决方案区域 */
.dy-marketing-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.dy-marketing-nav-item {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-marketing-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dy-marketing-nav-item.active {
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
}

.dy-nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.dy-nav-label {
    font-weight: 600;
    font-size: 1rem;
}

/* 营销面板区域 */
.dy-marketing-panels {
    position: relative;
}

.dy-marketing-panel {
    display: none;
    position: relative;
}

.dy-marketing-panel.active {
    display: block;
    animation: fadeInPanel 0.5s ease forwards;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dy-panel-container {
    position: relative;
}

.dy-panel-header {
    text-align: center;
    margin-bottom: 30px;
}

.dy-panel-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dy-dark);
}

.dy-panel-desc {
    font-size: 1.05rem;
    color: var(--dy-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* 营销卡片通用样式 */
.dy-marketing-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 992px) {
    .dy-marketing-flex {
        flex-direction: row;
    }
}

.dy-marketing-card {
    background: var(--dy-white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-marketing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dy-card-header {
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--dy-white);
}

.dy-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.dy-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.dy-card-content {
    padding: 25px;
    flex-grow: 1;
}

/* 达人资源列表样式 */
.dy-resource-list {
    margin-bottom: 25px;
}

.dy-resource-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-resource-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.dy-resource-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.dy-resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dy-resource-info {
    flex-grow: 1;
}

.dy-resource-info h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-resource-info p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    margin-bottom: 10px;
    line-height: 1.5;
}

.dy-resource-metrics {
    display: flex;
    gap: 15px;
}

.dy-resource-metrics span {
    font-size: 0.85rem;
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    gap: 5px;
}

.dy-resource-metrics i {
    font-size: 0.9rem;
}

/* 卡片特性样式 */
.dy-card-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dy-feature {
    background: rgba(254, 44, 85, 0.05);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dy-feature i {
    color: var(--dy-pink);
    font-size: 1.1rem;
}

.dy-feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* 流程样式 */
.dy-process-flow {
    margin-bottom: 25px;
}

.dy-process-step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.dy-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    flex-shrink: 0;
}

.dy-step-icon span {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--dy-white);
    color: var(--dy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dy-step-content {
    flex-grow: 1;
}

.dy-step-content h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-step-content p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    line-height: 1.5;
}

/* 案例突出显示 */
.dy-case-highlight {
    background: linear-gradient(135deg, rgba(37, 244, 238, 0.1), rgba(254, 44, 85, 0.1));
    border-radius: 15px;
    padding: 20px;
    position: relative;
}

.dy-case-highlight.small {
    padding: 15px;
}

.dy-case-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--dy-pink);
    color: var(--dy-white);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dy-case-highlight h5 {
    font-size: 1.1rem;
    margin: 10px 0 15px;
    font-weight: 600;
}

.dy-case-highlight p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    margin-bottom: 15px;
}

.dy-case-results {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.dy-case-stat {
    text-align: center;
    flex: 1;
}

.dy-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dy-pink);
    margin-bottom: 5px;
}

.dy-stat-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 信息块样式 */
.dy-info-blocks {
    margin-bottom: 25px;
}

.dy-info-block {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.dy-info-block h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dy-info-block h5 i {
    color: var(--dy-pink);
}

.dy-info-block p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    line-height: 1.5;
}

/* 千川ROI对比图表 */
.dy-custom-chart {
    margin-top: 25px;
}

.dy-chart-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-bar-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 200px;
    padding: 0 10px;
    margin-top: 30px;
}

.dy-chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 100%;
}

.dy-bar-value {
    width: 25px;
    background: linear-gradient(to top, var(--dy-blue), #5cb1e0);
    border-radius: 5px 5px 0 0;
    position: absolute;
    bottom: 30px; /* 为标签留出空间 */
    left: 50%;
    transform: translateX(-50%);
    transition: height 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: barGrow 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.dy-chart-bar.highlight .dy-bar-value {
    background: linear-gradient(to top, var(--dy-pink), #FF758C);
    width: 35px;
}

.dy-bar-value[style*="height: 30%"] {
    --target-height: 30%;
}

.dy-bar-value[style*="height: 50%"] {
    --target-height: 50%;
}

.dy-bar-value[style*="height: 85%"] {
    --target-height: 85%;
}

.dy-bar-value[style*="height: 95%"] {
    --target-height: 95%;
}

.dy-bar-value span {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dy-dark);
    white-space: nowrap;
}

.dy-bar-label {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--dy-gray);
    text-align: center;
    width: 100%;
}

/* 信息流广告展示 */
.dy-feed-showcase {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .dy-feed-showcase {
        flex-direction: row;
        align-items: center;
    }
    
    .dy-feed-mockup {
        width: 40%;
    }
    
    .dy-feed-info {
        width: 60%;
    }
}

.dy-feed-mockup {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dy-feed-mockup img {
    width: 100%;
    display: block;
}

.dy-mock-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--dy-white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.dy-feed-info h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.dy-feed-info p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    line-height: 1.5;
    margin-bottom: 15px;
}

.dy-performance-metrics {
    display: flex;
    gap: 20px;
}

.dy-metric {
    text-align: center;
}

.dy-metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dy-pink);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 广告模板网格 */
.dy-ad-templates {
    margin-top: 25px;
}

.dy-ad-templates h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.dy-template-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dy-template-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.dy-template-item:hover {
    background: rgba(254, 44, 85, 0.05);
}

.dy-template-item i {
    font-size: 1.5rem;
    color: var(--dy-pink);
}

.dy-template-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* 话题营销样式 */
.dy-topic-showcase {
    margin-bottom: 15px;
}

.dy-topic-example {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.dy-topic-tag {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-pink);
    margin-bottom: 15px;
}

.dy-topic-stats {
    display: flex;
    gap: 20px;
}

.dy-topic-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--dy-gray);
}

.dy-topic-stat i {
    color: var(--dy-blue);
}

.dy-topic-types {
    margin-bottom: 25px;
}

.dy-topic-type {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-topic-type:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.dy-type-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dy-type-info h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-type-info p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    line-height: 1.5;
}

/* 热门流量样式 */
.dy-trend-blocks {
    margin-bottom: 25px;
}

.dy-trend-block {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-trend-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.dy-trend-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dy-trend-info h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-trend-info p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    line-height: 1.5;
}

/* 内容策略步骤 */
.dy-content-strategy {
    margin-bottom: 25px;
}

.dy-content-strategy h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.dy-strategy-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dy-strategy-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.dy-step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.dy-step-text {
    font-size: 0.85rem;
    font-weight: 500;
}

.dy-strategy-connector {
    width: 30px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* 性能图表 */
.dy-performance-chart {
    margin-top: 25px;
}

.dy-performance-chart h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.dy-performance-comparison {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dy-performance-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dy-performance-bar {
    height: 30px;
    background: linear-gradient(to right, var(--dy-blue), var(--dy-pink));
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: var(--dy-white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: width 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dy-performance-value {
    font-size: 0.95rem;
    font-weight: 600;
    width: 90px;
    text-align: right;
}

/* 行业解决方案样式 */
.dy-industry-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.dy-industry-tab {
    background: var(--dy-white);
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-industry-tab:hover {
    transform: translateY(-3px);
}

.dy-industry-tab.active {
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
}

.dy-industry-tab i {
    font-size: 0.95rem;
}

.dy-industry-panels {
    margin-top: 30px;
}

.dy-industry-panel {
    display: none;
    max-height: none;
}

.dy-industry-panel.active {
    display: block;
    animation: fadeInPanel 0.4s ease forwards;
}

.dy-industry-content {
    background: var(--dy-white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.dy-industry-flex-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

@media (min-width: 992px) {
    .dy-industry-flex-layout {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    
    .dy-industry-left {
        width: 48%;
    }
    
    .dy-industry-right {
        width: 48%;
    }
}

.dy-industry-left,
.dy-industry-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dy-industry-header {
    margin-bottom: 15px;
}

.dy-industry-header h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-industry-header p {
    font-size: 0.95rem;
    color: var(--dy-gray);
}

.dy-industry-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.dy-industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
/**
 * 抖音营销页面样式
 * 特点：通屏设计、现代感强、动效丰富、抖音品牌色调
 */

/* 全局变量 */
:root {
    /* 抖音品牌色 */
    --dy-black: #000000;
    --dy-pink: #FE2C55;
    --dy-blue: #25F4EE;

    /* 辅助色 */
    --dy-dark: #111111;
    --dy-gray: #999999;
    --dy-light-gray: #f5f5f5;
    --dy-white: #FFFFFF;
    
    /* 字体 */
    --dy-font-main: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
}

/* 基础样式重置 */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    font-family: var(--dy-font-main);
    color: var(--dy-dark);
    background: #fff;
    line-height: 1.6;
    scroll-behavior: smooth;
    font-size: 15px;
}

@media (min-width: 768px) {
    html, body {
        font-size: 16px;
    }
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--dy-pink);
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* 通用布局 */
.dy-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dy-section {
    padding: 80px 0;
    position: relative;
}

.dy-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.dy-section-title {
    font-size: 2.4rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.dy-section-subtitle {
    font-size: 1.2rem;
    color: var(--dy-gray);
    max-width: 700px;
    margin: 0 auto 20px;
}

.dy-title-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--dy-blue), var(--dy-pink));
    margin: 0 auto;
    border-radius: 2px;
}

.dy-section-header.light {
    color: var(--dy-white);
}

.dy-section-header.light .dy-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* 按钮样式 */
.dy-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.dy-btn-primary {
    background: var(--dy-pink);
    color: var(--dy-white);
    box-shadow: 0 8px 15px rgba(254, 44, 85, 0.2);
}

.dy-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(254, 44, 85, 0.3);
    color: var(--dy-white);
}

.dy-btn-outline {
    background: transparent;
    color: var(--dy-white);
    border: 2px solid var(--dy-blue);
    padding: 12px 30px;
}

.dy-btn-outline:hover {
    background-color: var(--dy-blue);
    color: var(--dy-black);
}

/* 全屏Hero区域 */
.dy-hero {
    position: relative;
    height: 800px; /* 固定高度 */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    background: var(--dy-black);
    color: var(--dy-white);
}

/* 视频背景 */
.dy-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dy-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.dy-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
}

.dy-bg-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, var(--dy-black), #222222);
    z-index: 0;
}

/* 粒子动画层 */
.dy-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

/* Hero内容区域 */
.dy-hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .dy-hero-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* 左侧文本内容 */
.dy-hero-left {
    margin-bottom: 40px;
    text-align: center;
}

@media (min-width: 992px) {
    .dy-hero-left {
        text-align: left;
        margin-bottom: 0;
        flex: 0 0 46%;
    }
}

.dy-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.dy-title-line {
    display: block;
    margin-bottom: 10px;
}

.dy-accent {
    color: var(--dy-pink);
}

.dy-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.dy-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

/* 数据标签样式 */
.dy-data-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    justify-content: center;
}

@media (min-width: 992px) {
    .dy-data-tags {
        justify-content: flex-start;
    }
}

.dy-data-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dy-data-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.dy-data-tag i, 
.dy-data-tag svg {
    color: var(--dy-blue);
    font-size: 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
}

.dy-data-tag strong {
    color: var(--dy-pink);
    font-weight: 700;
    margin-left: 5px;
    font-size: 1.15rem;
}

@media (min-width: 992px) {
    .dy-hero-title {
        font-size: 3.2rem;
    }
    
    .dy-hero-btns {
        justify-content: flex-start;
    }
}

/* 右侧数据展示 */
.dy-hero-right {
    width: 100%;
}

@media (min-width: 992px) {
    .dy-hero-right {
        flex: 0 0 48%;
    }
}

/* 数据展示区整体容器 */
.dy-data-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 数据圆环行 */
.dy-stats-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* 数据圆环卡片 */
.dy-data-circle {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.dy-data-circle:hover {
    transform: translateY(-5px);
}

@media (min-width: 768px) {
    .dy-data-circle {
        width: 150px;
        height: 150px;
    }
}

.dy-circle-content {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.dy-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dy-white);
}

.dy-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-pink);
    margin-left: 3px;
}

.dy-circle-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.dy-circle-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.dy-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.dy-circle-fill {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transform-origin: center;
    stroke-dasharray: 534;
    stroke-dashoffset: 534;
}

.dy-data-circle:nth-child(1) .dy-circle-fill {
    stroke: var(--dy-blue);
    animation: circle-animation 2s ease forwards 0.5s;
}

.dy-data-circle:nth-child(2) .dy-circle-fill {
    stroke: var(--dy-pink);
    animation: circle-animation 2s ease forwards 0.8s;
}

.dy-data-circle:nth-child(3) .dy-circle-fill {
    stroke: #FFC107;
    animation: circle-animation 2s ease forwards 1.1s;
}

@keyframes circle-animation {
    to {
        stroke-dashoffset: 100;
    }
}

/* 迷你数据卡片 */
.dy-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.dy-mini-stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dy-mini-stat:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.dy-mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
}

.dy-mini-stat:nth-child(1) .dy-mini-icon {
    color: var(--dy-pink);
}

.dy-mini-stat:nth-child(2) .dy-mini-icon {
    color: var(--dy-blue);
}

.dy-mini-stat:nth-child(3) .dy-mini-icon {
    color: #FFC107;
}

.dy-mini-data {
    display: flex;
    flex-direction: column;
}

.dy-mini-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dy-white);
}

.dy-mini-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* 趋势图表 */
.dy-trend-graph {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.dy-graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dy-graph-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dy-white);
}

.dy-graph-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.dy-graph-bars {
    display: flex;
    align-items: flex-end;
    height: 180px;
    gap: 15px;
}

.dy-bar {
    flex: 1;
    background: linear-gradient(to top, var(--dy-blue), #5cb1e0);
    border-radius: 6px 6px 0 0;
    height: 0;
    position: relative;
    transition: height 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dy-bar.highlight {
    background: linear-gradient(to top, var(--dy-pink), #FF758C);
}

.dy-bar::before {
    content: attr(data-label);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.dy-bar::after {
    content: attr(data-height) '%';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.dy-bar.animate::after {
    opacity: 1;
}

/* 浮动装饰元素 */
.dy-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.dy-float-item {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: 24px;
    animation: floating 15s infinite ease-in-out;
}

.dy-float-item:nth-child(1) {
    top: 20%;
    left: 15%;
    font-size: 28px;
    animation-duration: 25s;
}

.dy-float-item:nth-child(2) {
    top: 30%;
    left: 80%;
    font-size: 20px;
    animation-duration: 18s;
}

.dy-float-item:nth-child(3) {
    top: 70%;
    left: 25%;
    font-size: 26px;
    animation-duration: 22s;
}

.dy-float-item:nth-child(4) {
    top: 60%;
    left: 75%;
    font-size: 22px;
    animation-duration: 20s;
}

.dy-float-item:nth-child(5) {
    top: 85%;
    left: 60%;
    font-size: 24px;
    animation-duration: 23s;
}

@keyframes floating {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 40px) rotate(-10deg);
    }
    75% {
        transform: translate(-40px, -20px) rotate(8deg);
    }
}

/* Hero底部曲线 */
.dy-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 6;
}

.dy-hero-wave svg {
    width: 100%;
    height: 100%;
    fill: var(--dy-white);
}

@media (max-width: 768px) {
    .dy-mini-stats {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .dy-stats-row {
        justify-content: center;
    }
}

/* 解决方案卡片 */
.dy-solutions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-solutions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .dy-solutions {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dy-solution-card {
    background: var(--dy-white);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dy-solution-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--dy-blue), var(--dy-pink));
    transition: height 0.3s ease;
    z-index: -1;
}

.dy-solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.dy-solution-card:hover::before {
    height: 6px;
}

.dy-solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--dy-white);
}

.dy-solution-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.dy-solution-desc {
    color: var(--dy-gray);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.dy-solution-features {
    margin-bottom: 25px;
}

.dy-solution-features li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.dy-solution-features li i {
    color: var(--dy-pink);
    margin-right: 10px;
    font-size: 0.8rem;
}

.dy-solution-link {
    display: inline-flex;
    align-items: center;
    color: var(--dy-pink);
    font-weight: 600;
    font-size: 1rem;
}

.dy-solution-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.dy-solution-link:hover i {
    transform: translateX(5px);
}

/* 客户案例 */
.dy-cases {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .dy-cases {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dy-case-card {
    background: var(--dy-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dy-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dy-case-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.dy-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dy-case-card:hover .dy-case-image img {
    transform: scale(1.1);
}

.dy-case-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--dy-pink);
    color: var(--dy-white);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dy-case-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dy-case-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.dy-case-desc {
    font-size: 1.1rem;
    color: var(--dy-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.dy-case-results {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-result {
    text-align: center;
    flex: 1;
}

.dy-result-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dy-pink);
    margin-bottom: 5px;
}

.dy-result-label {
    font-size: 0.95rem;
    color: var(--dy-gray);
}

.dy-cases-more {
    text-align: center;
}

/* 服务流程 */
.dy-process-section {
    background: linear-gradient(135deg, var(--dy-black), #222);
    color: var(--dy-white);
    position: relative;
    overflow: hidden;
}

.dy-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .dy-process {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .dy-process {
        grid-template-columns: repeat(5, 1fr);
    }
}

.dy-process::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    display: none;
}

@media (min-width: 992px) {
    .dy-process::before {
        display: block;
    }
}

.dy-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.dy-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dy-white);
    margin: 0 auto 20px;
    position: relative;
}

.dy-step-number {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--dy-white);
    color: var(--dy-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.dy-step-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dy-white);
}

.dy-step-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* 联系区域 */
.dy-contact {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
}

@media (min-width: 992px) {
    .dy-contact {
        flex-direction: row;
        align-items: flex-start;
    }

    .dy-contact-form-wrapper {
        flex: 0 0 60%;
    }

    .dy-contact-info {
        flex: 0 0 35%;
        margin-left: 5%;
    }
}

.dy-contact-form {
    background: var(--dy-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-form-group {
    margin-bottom: 25px;
}

.dy-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.dy-form-row .dy-form-group {
    flex: 1;
    min-width: 200px;
}

.dy-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.dy-form-group label .required {
    color: var(--dy-pink);
    margin-left: 3px;
}

.dy-form-group input,
.dy-form-group select,
.dy-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: var(--dy-white);
}

.dy-form-group input:focus,
.dy-form-group select:focus,
.dy-form-group textarea:focus {
    border-color: var(--dy-pink);
    outline: none;
    box-shadow: 0 0 0 3px rgba(254, 44, 85, 0.1);
}

.dy-form-submit {
    margin-top: 30px;
    text-align: center;
}

.dy-form-submit .dy-btn {
    min-width: 200px;
}

.dy-contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-contact-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dy-info-card {
    background: var(--dy-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.dy-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dy-white);
    margin: 0 auto 20px;
}

.dy-info-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.dy-info-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-pink);
}

.dy-info-subtext {
    font-size: 1rem;
    color: var(--dy-gray);
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .dy-section-title {
        font-size: 2.2rem;
    }
    
    .dy-hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 991px) {
    .dy-section {
        padding: 60px 0;
    }
    
    .dy-section-title {
        font-size: 2.1rem;
    }
    
    .dy-section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .dy-hero {
        height: auto;
        min-height: 800px;
    }
    
    .dy-section {
        padding: 50px 0;
    }
    
    .dy-section-title {
        font-size: 2rem;
    }
    
    .dy-section-subtitle {
        font-size: 1.05rem;
    }
    
    .dy-hero-title {
        font-size: 2.4rem;
    }
    
    .dy-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .dy-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .dy-hero-title {
        font-size: 2rem;
    }
    
    .dy-hero-subtitle {
        font-size: 1rem;
    }
    
    .dy-hero-btns {
        flex-direction: column;
    }
    
    .dy-kpi-grid {
        grid-template-columns: 1fr;
    }
}

/* 数据驱动增长区块 - 全新命名空间 */
.dy-data-drive-section {
    background: linear-gradient(150deg, #000000, #181818);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.dy-data-drive-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="30" cy="40" r="20" fill="%23FE2C55" opacity="0.05"/><circle cx="70" cy="70" r="30" fill="%2325F4EE" opacity="0.05"/></svg>');
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
}

/* 数据驱动内容容器 */
.dy-data-drive-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 992px) {
    .dy-data-drive-container {
        flex-direction: row;
    }

    .dy-data-drive-left {
        flex: 0 0 55%;
        padding-right: 30px;
    }

    .dy-data-drive-right {
        flex: 0 0 45%;
        padding-left: 30px;
    }
}

/* 图表容器样式 */
.dy-data-drive-chart-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dy-data-drive-chart-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dy-data-drive-chart-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* KPI指标卡片网格 */
.dy-data-drive-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.dy-data-drive-kpi-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dy-data-drive-kpi-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.dy-data-drive-kpi-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.dy-data-drive-kpi-card:nth-child(1) .dy-data-drive-kpi-icon {
    color: var(--dy-blue);
}

.dy-data-drive-kpi-card:nth-child(2) .dy-data-drive-kpi-icon {
    color: var(--dy-pink);
}

.dy-data-drive-kpi-card:nth-child(3) .dy-data-drive-kpi-icon {
    color: #FFC107;
}

.dy-data-drive-kpi-card:nth-child(4) .dy-data-drive-kpi-icon {
    color: #4CAF50;
}

.dy-data-drive-kpi-data {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.dy-data-drive-kpi-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.dy-data-drive-kpi-unit {
    font-size: 1.1rem;
    color: var(--dy-pink);
    margin-left: 3px;
    font-weight: 600;
}

.dy-data-drive-kpi-label {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 576px) {
    .dy-data-drive-kpi-grid {
        grid-template-columns: 1fr;
    }
    
    .dy-data-drive-kpi-value {
        font-size: 2.2rem;
    }
}

/* 全域营销解决方案区域 */
.dy-marketing-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.dy-marketing-nav-item {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-marketing-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dy-marketing-nav-item.active {
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
}

.dy-nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.dy-nav-label {
    font-weight: 600;
    font-size: 1rem;
}

/* 营销面板区域 */
.dy-marketing-panels {
    position: relative;
}

.dy-marketing-panel {
    display: none;
    position: relative;
}

.dy-marketing-panel.active {
    display: block;
    animation: fadeInPanel 0.5s ease forwards;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dy-panel-container {
    position: relative;
}

.dy-panel-header {
    text-align: center;
    margin-bottom: 30px;
}

.dy-panel-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dy-dark);
}

.dy-panel-desc {
    font-size: 1.05rem;
    color: var(--dy-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* 营销卡片通用样式 */
.dy-marketing-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 992px) {
    .dy-marketing-flex {
        flex-direction: row;
    }
}

.dy-marketing-card {
    background: var(--dy-white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-marketing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dy-card-header {
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--dy-white);
}

.dy-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.dy-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.dy-card-content {
    padding: 25px;
    flex-grow: 1;
}

/* 达人资源列表样式 */
.dy-resource-list {
    margin-bottom: 25px;
}

.dy-resource-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-resource-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.dy-resource-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.dy-resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dy-resource-info {
    flex-grow: 1;
}

.dy-resource-info h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-resource-info p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    margin-bottom: 10px;
    line-height: 1.5;
}

.dy-resource-metrics {
    display: flex;
    gap: 15px;
}

.dy-resource-metrics span {
    font-size: 0.85rem;
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    gap: 5px;
}

.dy-resource-metrics i {
    font-size: 0.9rem;
}

/* 卡片特性样式 */
.dy-card-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dy-feature {
    background: rgba(254, 44, 85, 0.05);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dy-feature i {
    color: var(--dy-pink);
    font-size: 1.1rem;
}

.dy-feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* 流程样式 */
.dy-process-flow {
    margin-bottom: 25px;
}

.dy-process-step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.dy-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    flex-shrink: 0;
}

.dy-step-icon span {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--dy-white);
    color: var(--dy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dy-step-content {
    flex-grow: 1;
}

.dy-step-content h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-step-content p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    line-height: 1.5;
}

/* 案例突出显示 */
.dy-case-highlight {
    background: linear-gradient(135deg, rgba(37, 244, 238, 0.1), rgba(254, 44, 85, 0.1));
    border-radius: 15px;
    padding: 20px;
    position: relative;
}

.dy-case-highlight.small {
    padding: 15px;
}

.dy-case-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--dy-pink);
    color: var(--dy-white);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dy-case-highlight h5 {
    font-size: 1.1rem;
    margin: 10px 0 15px;
    font-weight: 600;
}

.dy-case-highlight p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    margin-bottom: 15px;
}

.dy-case-results {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.dy-case-stat {
    text-align: center;
    flex: 1;
}

.dy-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dy-pink);
    margin-bottom: 5px;
}

.dy-stat-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 信息块样式 */
.dy-info-blocks {
    margin-bottom: 25px;
}

.dy-info-block {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.dy-info-block h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dy-info-block h5 i {
    color: var(--dy-pink);
}

.dy-info-block p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    line-height: 1.5;
}

/* 千川ROI对比图表 */
.dy-custom-chart {
    margin-top: 25px;
}

.dy-chart-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-bar-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 200px;
    padding: 0 10px;
    margin-top: 30px;
}

.dy-chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 100%;
}

.dy-bar-value {
    width: 25px;
    background: linear-gradient(to top, var(--dy-blue), #5cb1e0);
    border-radius: 5px 5px 0 0;
    position: absolute;
    bottom: 30px; /* 为标签留出空间 */
    left: 50%;
    transform: translateX(-50%);
    transition: height 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: barGrow 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.dy-chart-bar.highlight .dy-bar-value {
    background: linear-gradient(to top, var(--dy-pink), #FF758C);
    width: 35px;
}

.dy-bar-value[style*="height: 30%"] {
    --target-height: 30%;
}

.dy-bar-value[style*="height: 50%"] {
    --target-height: 50%;
}

.dy-bar-value[style*="height: 85%"] {
    --target-height: 85%;
}

.dy-bar-value[style*="height: 95%"] {
    --target-height: 95%;
}

.dy-bar-value span {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dy-dark);
    white-space: nowrap;
}

.dy-bar-label {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--dy-gray);
    text-align: center;
    width: 100%;
}

/* 信息流广告展示 */
.dy-feed-showcase {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .dy-feed-showcase {
        flex-direction: row;
        align-items: center;
    }
    
    .dy-feed-mockup {
        width: 40%;
    }
    
    .dy-feed-info {
        width: 60%;
    }
}

.dy-feed-mockup {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dy-feed-mockup img {
    width: 100%;
    display: block;
}

.dy-mock-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--dy-white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.dy-feed-info h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.dy-feed-info p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    line-height: 1.5;
    margin-bottom: 15px;
}

.dy-performance-metrics {
    display: flex;
    gap: 20px;
}

.dy-metric {
    text-align: center;
}

.dy-metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dy-pink);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 广告模板网格 */
.dy-ad-templates {
    margin-top: 25px;
}

.dy-ad-templates h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.dy-template-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dy-template-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.dy-template-item:hover {
    background: rgba(254, 44, 85, 0.05);
}

.dy-template-item i {
    font-size: 1.5rem;
    color: var(--dy-pink);
}

.dy-template-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* 话题营销样式 */
.dy-topic-showcase {
    margin-bottom: 15px;
}

.dy-topic-example {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.dy-topic-tag {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-pink);
    margin-bottom: 15px;
}

.dy-topic-stats {
    display: flex;
    gap: 20px;
}

.dy-topic-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--dy-gray);
}

.dy-topic-stat i {
    color: var(--dy-blue);
}

.dy-topic-types {
    margin-bottom: 25px;
}

.dy-topic-type {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-topic-type:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.dy-type-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dy-type-info h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-type-info p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    line-height: 1.5;
}

/* 热门流量样式 */
.dy-trend-blocks {
    margin-bottom: 25px;
}

.dy-trend-block {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-trend-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.dy-trend-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dy-trend-info h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-trend-info p {
    font-size: 0.95rem;
    color: var(--dy-gray);
    line-height: 1.5;
}

/* 内容策略步骤 */
.dy-content-strategy {
    margin-bottom: 25px;
}

.dy-content-strategy h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.dy-strategy-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dy-strategy-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.dy-step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.dy-step-text {
    font-size: 0.85rem;
    font-weight: 500;
}

.dy-strategy-connector {
    width: 30px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* 性能图表 */
.dy-performance-chart {
    margin-top: 25px;
}

.dy-performance-chart h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.dy-performance-comparison {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dy-performance-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dy-performance-bar {
    height: 30px;
    background: linear-gradient(to right, var(--dy-blue), var(--dy-pink));
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: var(--dy-white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: width 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dy-performance-value {
    font-size: 0.95rem;
    font-weight: 600;
    width: 90px;
    text-align: right;
}

/* 行业解决方案样式 */
.dy-industry-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.dy-industry-tab {
    background: var(--dy-white);
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-industry-tab:hover {
    transform: translateY(-3px);
}

.dy-industry-tab.active {
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
}

.dy-industry-tab i {
    font-size: 0.95rem;
}

.dy-industry-panels {
    margin-top: 30px;
}

.dy-industry-panel {
    display: none;
    max-height: none;
}

.dy-industry-panel.active {
    display: block;
    animation: fadeInPanel 0.4s ease forwards;
}

.dy-industry-content {
    background: var(--dy-white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.dy-industry-flex-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

@media (min-width: 992px) {
    .dy-industry-flex-layout {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    
    .dy-industry-left {
        width: 48%;
    }
    
    .dy-industry-right {
        width: 48%;
    }
}

.dy-industry-left,
.dy-industry-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dy-industry-header {
    margin-bottom: 15px;
}

.dy-industry-header h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-industry-header p {
    font-size: 0.95rem;
    color: var(--dy-gray);
}

.dy-industry-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.dy-industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
    color: var(--dy-pink);
    font-weight: 500;
}

.dy-case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dy-case-metric {
    background: var(--dy-white);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dy-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 44, 85, 0.1);
    color: var(--dy-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px;
}

.dy-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dy-dark);
    margin-bottom: 5px;
}

.dy-metric-label {
    font-size: 0.85rem;
    color: var(--dy-gray);
}

/* 数据效果佐证区域 */
.dy-data-evidence {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 40px;
}

.dy-evidence-header {
    text-align: center;
    margin-bottom: 40px;
}

.dy-evidence-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dy-evidence-header p {
    font-size: 1rem;
    color: var(--dy-gray);
}

.dy-evidence-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .dy-evidence-charts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dy-evidence-chart {
    background: var(--dy-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dy-evidence-chart h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dy-chart-container {
    height: 200px;
    position: relative;
}

/* CTA容器 */
.dy-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 添加条形图的立即显示动画 */
@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--target-height);
    }
}

/* 行业解决方案部分新增样式 */
.dy-industry-overview {
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 20px;
}

.dy-industry-overview h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-overview-content p {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--dy-gray);
}

.dy-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.dy-challenge-item {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(37, 244, 238, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dy-dark);
}

/* 创意方案样式优化 */
.dy-creative-solutions {
    margin-bottom: 0;
}

.dy-creative-solutions h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dy-dark);
}

.dy-creative-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--dy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dy-creative-item:last-child {
    margin-bottom: 0;
}

.dy-creative-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dy-creative-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dy-creative-content {
    flex: 1;
}

.dy-creative-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dy-dark);
}

.dy-creative-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dy-gray);
    margin: 0;
}

/* 解决方案框架样式 */
.dy-solution-framework {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .dy-solution-framework {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .dy-solution-framework {
        margin-bottom: 0;
    }
}

.dy-framework-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dy-framework-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dy-gray);
    height: 30px;
}

@media (max-width: 991px) {
    .dy-framework-connector {
        transform: rotate(90deg);
        margin: 0 auto;
        height: 30px;
    }
}

.dy-framework-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dy-blue), var(--dy-pink));
    color: var(--dy-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dy-framework-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dy-framework-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dy-gray);
}

.dy-framework-value {
    font-size: 0.82rem;
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2024年优化更新 */
/* 行业图表相关样式 */
.dy-industry-chart-container { background: rgba(255, 255, 255, 0.5); border-radius: 15px; padding: 20px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); margin-top: 20px; height: 280px; overflow: hidden; }
.dy-industry-chart-container h5 { font-size: 1.1rem; margin-bottom: 15px; font-weight: 600; color: var(--dy-dark); }
.dy-chart-wrapper { height: 220px; position: relative; }
.dy-chart-caption { position: absolute; bottom: 0; left: 0; width: 100%; text-align: center; font-size: 0.85rem; color: var(--dy-gray); padding-top: 5px; border-top: 1px dashed rgba(0, 0, 0, 0.1); }
/* 性能对比图表样式 */
.dy-performance-comparison { height: 180px; display: flex; flex-direction: column; justify-content: space-between; gap: 15px; }
.dy-performance-item { display: flex; align-items: center; gap: 10px; }
.dy-performance-label { width: 80px; font-size: 0.9rem; text-align: right; color: var(--dy-gray); }
.dy-performance-bar { height: 25px; background: linear-gradient(to right, var(--dy-blue), #5cb1e0); border-radius: 5px; display: flex; align-items: center; padding: 0 10px; color: var(--dy-white); font-size: 0.9rem; font-weight: 500; transition: width 1.5s cubic-bezier(0.25, 0.8, 0.25, 1); }
.dy-performance-bar.highlight { background: linear-gradient(to right, var(--dy-pink), #FF758C); }
/* 圆环图样式 */
.dy-donut-chart { width: 220px; height: 220px; position: relative; margin: 0 auto; }
.dy-donut-segment { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; clip-path: polygon(50% 50%, 50% 0, 100% 0, 100% 100%, 0 100%, 0 0, 50% 0); transform: rotate(calc(var(--segment-start) * 3.6deg)); }
.dy-donut-segment::before { content: ""; position: absolute; top: 10%; left: 10%; width: 80%; height: 80%; border-radius: 50%; background: var(--segment-color); clip-path: polygon(50% 50%, 50% 0, 100% 0, 100% 100%, 0 100%, 0 0, 50% 0); transform: rotate(calc(var(--segment-percent) * 3.6deg)); }
.dy-donut-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40%; height: 40%; background: var(--dy-white); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); }
/* 折线图样式 */
.dy-line-chart { position: relative; height: 200px; padding: 20px 10px 30px; }
.dy-chart-grid { position: absolute; top: 20px; left: 0; width: 100%; height: calc(100% - 50px); display: flex; flex-direction: column; justify-content: space-between; }
.dy-grid-line { width: 100%; height: 1px; background: rgba(0, 0, 0, 0.05); }
/* 堆叠柱状图样式 */
.dy-stacked-bar-chart { height: 200px; display: flex; justify-content: center; align-items: flex-end; gap: 40px; padding-bottom: 30px; }
.dy-stacked-bar { width: 60px; position: relative; display: flex; flex-direction: column-reverse; align-items: center; }
.dy-stacked-bar.highlight .dy-stack-segment { background: linear-gradient(to bottom, var(--dy-blue), var(--dy-pink)); }
.dy-stack-segment { width: 100%; background: linear-gradient(to bottom, #5cb1e0, #8134AF); border-radius: 4px; position: relative; margin-bottom: 1px; }
.dy-stack-segment span { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); font-size: 0.85rem; color: var(--dy-gray); white-space: nowrap; }
.dy-stack-label { position: absolute; bottom: -25px; left: 50%; transform: translateX(-50%); font-size: 0.9rem; font-weight: 500; color: var(--dy-dark); white-space: nowrap; }
