/* 营销解决方案区块样式 */
.ks-solution-section {
    padding: 60px 0;
    position: relative;
    background-color: #fff;
    font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    overflow: hidden;
    background-image: linear-gradient(to bottom, #fff8f8, #fff);
}

/* 背景元素 */
.ks-solution-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.ks-solution-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(15px) rotate(-5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.shape1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
    animation-delay: 0s;
}

.shape2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -100px;
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
    animation-delay: -5s;
}

.shape3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 15%;
    background: linear-gradient(45deg, #FF2E4D, #FFDC00);
    animation-delay: -10s;
}

/* 标题区域 */
.ks-section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.ks-section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
    color: #fff;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 46, 77, 0.25);
    transform: rotate(-2deg);
}

.ks-section-title {
    font-size: 34px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #FF2E4D, #FF6232);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.ks-section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.ks-title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.ks-title-underline:after {
    content: '';
    position: absolute;
    top: -2px;
    left: 15px;
    width: 10px;
    height: 8px;
    background: #FF2E4D;
    border-radius: 50%;
    animation: slide 3s infinite ease;
}

@keyframes slide {
    0% { left: 0; }
    50% { left: calc(100% - 10px); }
    100% { left: 0; }
}

/* 解决方案卡片容器 */
.ks-solutions-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* 解决方案卡片样式 */
.ks-solution-item {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.ks-solution-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 46, 77, 0.1), rgba(255, 98, 50, 0.05));
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.ks-solution-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 46, 77, 0.15);
    border-color: rgba(255, 46, 77, 0.2);
}

.ks-solution-item:hover:before {
    opacity: 1;
}

/* 卡片图标 */
.ks-solution-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(255, 46, 77, 0.25);
    position: relative;
    overflow: hidden;
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.ks-solution-icon:before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    top: -25%;
    left: -25%;
    opacity: 0;
    transition: all 0.5s ease;
}

.ks-solution-item:hover .ks-solution-icon {
    transform: rotate(0deg) scale(1.1);
}

.ks-solution-item:hover .ks-solution-icon:before {
    opacity: 0.8;
    transform: scale(1.5);
    animation: pulse 1s forwards;
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

.ks-solution-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

/* 热门标签 */
.ks-solution-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(255, 46, 77, 0.25);
    transform: rotate(3deg);
    animation: wiggle 5s infinite ease;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(3deg); }
    50% { transform: rotate(-2deg); }
}

/* 卡片内容 */
.ks-solution-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.ks-solution-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 3px;
    background: linear-gradient(90deg, #FF2E4D, transparent);
    transition: width 0.3s ease;
    z-index: -1;
    opacity: 0.5;
}

.ks-solution-item:hover .ks-solution-title:after {
    width: 100%;
}

.ks-solution-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* 功能列表 */
.ks-solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.ks-solution-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.ks-solution-item:hover .ks-solution-features li {
    transform: translateX(5px);
}

.feature-icon {
    color: #FF2E4D;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
    background: rgba(255, 46, 77, 0.1);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.feature-text {
    font-size: 14px;
    color: #666;
}

/* 按钮样式 */
.ks-solution-action {
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(255, 46, 77, 0.2);
    width: 100%;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.ks-solution-action:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: all 0.5s ease;
}

.ks-solution-item:hover .ks-solution-action:before {
    left: 100%;
}

.ks-solution-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 46, 77, 0.3);
}

/* 行业解决方案 */
.ks-industry-solutions {
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.ks-industry-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.ks-industry-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FF2E4D, transparent);
}

/* 行业标签页 */
.ks-industry-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.ks-industry-tab {
    background-color: transparent;
    border: 2px solid #eee;
    color: #666;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ks-industry-tab:hover {
    background-color: rgba(255, 46, 77, 0.05);
    border-color: rgba(255, 46, 77, 0.3);
    color: #FF2E4D;
    transform: translateY(-3px);
}

.ks-industry-tab.active {
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(255, 46, 77, 0.25);
}

.ks-industry-tab.active:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* 行业内容面板 */
.ks-industry-panel {
    display: none;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.ks-industry-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.ks-industry-content {
    max-width: 900px;
    margin: 0 auto;
}

.ks-industry-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #FF2E4D, #FF6232);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.ks-industry-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.ks-industry-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.ks-industry-feature {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 46, 77, 0.03);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.ks-industry-feature:hover {
    background: rgba(255, 46, 77, 0.07);
    transform: translateY(-5px);
}

.feature-icon-large {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon-large svg {
    width: 25px;
    height: 25px;
    fill: white;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.ks-industry-cta {
    text-align: center;
    margin-top: 30px;
}

.industry-cta-button {
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 46, 77, 0.2);
}

.industry-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 46, 77, 0.3);
}

/* 联系了解更多 */
.ks-contact-cta {
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
    border-radius: 25px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(255, 46, 77, 0.25);
    overflow: hidden;
}

.ks-contact-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.ks-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.ks-cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ks-cta-button {
    background: white;
    color: #FF2E4D;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ks-cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.ks-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.ks-cta-button:hover:before {
    left: 100%;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .ks-section-title {
        font-size: 30px;
    }
    
    .ks-solutions-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ks-industry-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ks-solution-section {
        padding: 50px 0;
    }
    
    .ks-section-title {
        font-size: 24px;
    }
    
    .ks-section-badge {
        font-size: 14px;
    }
    
    .ks-industry-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 15px;
    }
    
    .ks-industry-tab {
        flex: 0 0 auto;
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .ks-contact-cta {
        padding: 35px 20px;
    }
    
    .ks-cta-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .ks-section-header {
        margin-bottom: 30px;
    }
    
    .ks-solutions-container {
        grid-template-columns: 1fr;
    }
    
    .ks-solution-item {
        padding: 25px;
    }
    
    .ks-cta-title {
        font-size: 22px;
    }
    
    .ks-industry-heading {
        font-size: 20px;
    }
}

/* 行业面板网格布局增强 */
.ks-industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* 行业选项卡颜色优化 */
.ks-industry-tab[data-industry="ecommerce"] {
    border-color: rgba(255, 46, 77, 0.3);
    color: #555;
}

.ks-industry-tab[data-industry="ecommerce"]:hover:not(.active) {
    background-color: rgba(255, 46, 77, 0.05);
    border-color: rgba(255, 46, 77, 0.5);
    color: #FF2E4D;
}

.ks-industry-tab[data-industry="ecommerce"].active {
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 46, 77, 0.25);
}

.ks-industry-tab[data-industry="beauty"] {
    border-color: rgba(236, 64, 122, 0.3);
    color: #555;
}

.ks-industry-tab[data-industry="beauty"]:hover:not(.active) {
    background-color: rgba(236, 64, 122, 0.05);
    border-color: rgba(236, 64, 122, 0.5);
    color: #EC407A;
}

.ks-industry-tab[data-industry="beauty"].active {
    background: linear-gradient(45deg, #EC407A, #F48FB1);
    color: white;
    box-shadow: 0 8px 20px rgba(236, 64, 122, 0.25);
}

.ks-industry-tab[data-industry="food"] {
    border-color: rgba(255, 152, 0, 0.3);
    color: #555;
}

.ks-industry-tab[data-industry="food"]:hover:not(.active) {
    background-color: rgba(255, 152, 0, 0.05);
    border-color: rgba(255, 152, 0, 0.5);
    color: #FF9800;
}

.ks-industry-tab[data-industry="food"].active {
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.25);
}

.ks-industry-tab[data-industry="local"] {
    border-color: rgba(76, 175, 80, 0.3);
    color: #555;
}

.ks-industry-tab[data-industry="local"]:hover:not(.active) {
    background-color: rgba(76, 175, 80, 0.05);
    border-color: rgba(76, 175, 80, 0.5);
    color: #4CAF50;
}

.ks-industry-tab[data-industry="local"].active {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    color: white;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.25);
}

.ks-industry-tab[data-industry="education"] {
    border-color: rgba(33, 150, 243, 0.3);
    color: #555;
}

.ks-industry-tab[data-industry="education"]:hover:not(.active) {
    background-color: rgba(33, 150, 243, 0.05);
    border-color: rgba(33, 150, 243, 0.5);
    color: #2196F3;
}

.ks-industry-tab[data-industry="education"].active {
    background: linear-gradient(45deg, #2196F3, #4FC3F7);
    color: white;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.25);
}

/* 各行业面板美化 */
/* 电商行业 */
.ecommerce-heading {
    background: linear-gradient(90deg, #FF2E4D, #FF6232) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
}

.ecommerce-icon {
    background: linear-gradient(45deg, #FF2E4D, #FF6232) !important;
    box-shadow: 0 8px 20px rgba(255, 46, 77, 0.25) !important;
}

.ecommerce-text {
    color: #FF2E4D !important;
}

.ecommerce-case {
    background: rgba(255, 46, 77, 0.05);
    border-left: 3px solid rgba(255, 46, 77, 0.5);
    border-radius: 0 10px 10px 0;
}

.ecommerce-case-title {
    color: #FF2E4D;
}

.ecommerce-badge {
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
    box-shadow: 0 4px 10px rgba(255, 46, 77, 0.25);
}

.ecommerce-btn {
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
    box-shadow: 0 8px 20px rgba(255, 46, 77, 0.25);
}

.ecommerce-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 46, 77, 0.35);
}

/* 美妆个护行业 */
.beauty-heading {
    background: linear-gradient(90deg, #EC407A, #F48FB1) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
}

.beauty-icon {
    background: linear-gradient(45deg, #EC407A, #F48FB1) !important;
    box-shadow: 0 8px 20px rgba(236, 64, 122, 0.25) !important;
}

.beauty-text {
    color: #EC407A !important;
}

.beauty-case {
    background: rgba(236, 64, 122, 0.05);
    border-left: 3px solid rgba(236, 64, 122, 0.5);
    border-radius: 0 10px 10px 0;
}

.beauty-case-title {
    color: #EC407A;
}

.beauty-badge {
    background: linear-gradient(45deg, #EC407A, #F48FB1);
    box-shadow: 0 4px 10px rgba(236, 64, 122, 0.25);
}

.beauty-btn {
    background: linear-gradient(45deg, #EC407A, #F48FB1);
    box-shadow: 0 8px 20px rgba(236, 64, 122, 0.25);
}

.beauty-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(236, 64, 122, 0.35);
}

/* 食品饮料行业 */
.food-heading {
    background: linear-gradient(90deg, #FF9800, #FFB74D) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
}

.food-icon {
    background: linear-gradient(45deg, #FF9800, #FFB74D) !important;
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.25) !important;
}

.food-text {
    color: #FF9800 !important;
}

.food-case {
    background: rgba(255, 152, 0, 0.05);
    border-left: 3px solid rgba(255, 152, 0, 0.5);
    border-radius: 0 10px 10px 0;
}

.food-case-title {
    color: #FF9800;
}

.food-badge {
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.25);
}

.food-btn {
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.25);
}

.food-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 152, 0, 0.35);
}

/* 本地生活行业 */
.local-heading {
    background: linear-gradient(90deg, #4CAF50, #8BC34A) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
}

.local-icon {
    background: linear-gradient(45deg, #4CAF50, #8BC34A) !important;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.25) !important;
}

.local-text {
    color: #4CAF50 !important;
}

.local-case {
    background: rgba(76, 175, 80, 0.05);
    border-left: 3px solid rgba(76, 175, 80, 0.5);
    border-radius: 0 10px 10px 0;
}

.local-case-title {
    color: #4CAF50;
}

.local-badge {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.25);
}

.local-btn {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.25);
}

.local-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(76, 175, 80, 0.35);
}

/* 教育培训行业 */
.education-heading {
    background: linear-gradient(90deg, #2196F3, #4FC3F7) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
}

.education-icon {
    background: linear-gradient(45deg, #2196F3, #4FC3F7) !important;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.25) !important;
}

.education-text {
    color: #2196F3 !important;
}

.education-case {
    background: rgba(33, 150, 243, 0.05);
    border-left: 3px solid rgba(33, 150, 243, 0.5);
    border-radius: 0 10px 10px 0;
}

.education-case-title {
    color: #2196F3;
}

.education-badge {
    background: linear-gradient(45deg, #2196F3, #4FC3F7);
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.25);
}

.education-btn {
    background: linear-gradient(45deg, #2196F3, #4FC3F7);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.25);
}

.education-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(33, 150, 243, 0.35);
}

/* 增强行业面板效果 */
.ks-industry-panels {
    position: relative;
    z-index: 1;
}

.ks-industry-panel {
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
    display: none;
}

.ks-industry-panel.active {
    display: block;
}

.ks-industry-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.ks-industry-content:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: var(--active-light);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    z-index: 0;
}

/* 增强特性展示 */
.ks-industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.ks-industry-feature {
    display: flex;
    align-items: flex-start;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 4px solid transparent;
}

.ks-industry-feature:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--active-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.ks-industry-feature:hover:before,
.ks-industry-feature.feature-hover:before {
    transform: scaleX(1);
}

.ks-industry-feature:hover,
.ks-industry-feature.feature-hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--active-medium);
    border-top-color: var(--active-dark);
}

.feature-icon-large {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    background: var(--active-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon-large:after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.6s ease;
}

.ks-industry-feature:hover .feature-icon-large:after,
.ks-industry-feature.feature-hover .feature-icon-large:after {
    transform: scale(8);
}

.feature-icon-large svg {
    width: 32px;
    height: 32px;
    fill: white;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.ks-industry-feature:hover .feature-icon-large svg,
.ks-industry-feature.feature-hover .feature-icon-large svg {
    transform: scale(1.2) rotate(5deg);
}

/* 增强案例展示 */
.ks-industry-cases {
    margin-top: 50px;
    padding: 30px;
    background: var(--active-light);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
}

.ks-industry-cases:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--active-medium);
    border-radius: 50%;
    opacity: 0.5;
}

.ks-cases-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--active-dark);
    position: relative;
}

.ks-case-highlight {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.ks-case-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.case-badge {
    display: inline-block;
    padding: 8px 15px;
    background: var(--active-color);
    color: white;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 5px 15px var(--active-light);
}

.case-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* 增强响应式调整 */
@media (max-width: 992px) {
    .data-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-process {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .process-connector {
        width: 3px;
        height: 30px;
        margin: 0;
        top: 0;
    }
    
    .ks-industry-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .data-metrics {
        grid-template-columns: 1fr;
    }
    
    .bar-label {
        width: 80px;
        font-size: 13px;
    }
    
    .ks-industry-tabs {
        justify-content: flex-start;
        padding: 10px 20px;
    }
    
    .ks-industry-content {
        padding: 25px;
    }
    
    .ks-industry-feature {
        padding: 20px;
    }
    
    .feature-icon-large {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .feature-icon-large svg {
        width: 26px;
        height: 26px;
    }
    
    .ks-industry-cases {
        padding: 20px;
    }
    
    .ks-case-highlight {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .ks-industry-title {
        font-size: 26px;
    }
    
    .ks-industry-heading {
        font-size: 22px;
    }
    
    .feature-icon-large {
        width: 45px;
        height: 45px;
        min-width: 45px;
        margin-right: 15px;
    }
    
    .feature-icon-large svg {
        width: 22px;
        height: 22px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-description {
        font-size: 13px;
    }
    
    .metric-value {
        font-size: 22px;
    }
    
    .metric-label {
        font-size: 12px;
    }
}

/* 根据行业主题设置变量 */
:root {
    --ecommerce-color: linear-gradient(45deg, #FF2E4D, #FF6232);
    --ecommerce-light: rgba(255, 46, 77, 0.1);
    --ecommerce-medium: rgba(255, 46, 77, 0.5);
    --ecommerce-dark: #FF2E4D;
    
    --beauty-color: linear-gradient(45deg, #EC407A, #F48FB1);
    --beauty-light: rgba(236, 64, 122, 0.1);
    --beauty-medium: rgba(236, 64, 122, 0.5);
    --beauty-dark: #EC407A;
    
    --food-color: linear-gradient(45deg, #FF9800, #FFB74D);
    --food-light: rgba(255, 152, 0, 0.1);
    --food-medium: rgba(255, 152, 0, 0.5);
    --food-dark: #FF9800;
    
    --local-color: linear-gradient(45deg, #4CAF50, #8BC34A);
    --local-light: rgba(76, 175, 80, 0.1);
    --local-medium: rgba(76, 175, 80, 0.5);
    --local-dark: #4CAF50;
    
    --education-color: linear-gradient(45deg, #2196F3, #4FC3F7);
    --education-light: rgba(33, 150, 243, 0.1);
    --education-medium: rgba(33, 150, 243, 0.5);
    --education-dark: #2196F3;
    
    --active-color: var(--ecommerce-color);
    --active-light: var(--ecommerce-light);
    --active-medium: var(--ecommerce-medium);
    --active-dark: var(--ecommerce-dark);
}

/* 根据当前主题设置颜色 */
[data-theme="ecommerce"] {
    --active-color: var(--ecommerce-color);
    --active-light: var(--ecommerce-light);
    --active-medium: var(--ecommerce-medium);
    --active-dark: var(--ecommerce-dark);
}

[data-theme="beauty"] {
    --active-color: var(--beauty-color);
    --active-light: var(--beauty-light);
    --active-medium: var(--beauty-medium);
    --active-dark: var(--beauty-dark);
}

[data-theme="food"] {
    --active-color: var(--food-color);
    --active-light: var(--food-light);
    --active-medium: var(--food-medium);
    --active-dark: var(--food-dark);
}

[data-theme="local"] {
    --active-color: var(--local-color);
    --active-light: var(--local-light);
    --active-medium: var(--local-medium);
    --active-dark: var(--local-dark);
}

[data-theme="education"] {
    --active-color: var(--education-color);
    --active-light: var(--education-light);
    --active-medium: var(--education-medium);
    --active-dark: var(--education-dark);
}

/* 增强行业解决方案区域 */
.ks-industry-solutions {
    position: relative;
    padding: 60px 0;
    background: #f9f9f9;
    border-radius: 20px;
    margin: 40px 0;
    overflow: hidden;
}

.ks-industry-solutions:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, var(--active-light) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, var(--active-light) 0%, transparent 50%);
    opacity: 0.6;
    transition: all 0.5s ease;
    z-index: 0;
}

.ks-industry-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    z-index: 1;
}

.ks-industry-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--active-color);
    margin: 15px auto;
    border-radius: 2px;
    transition: all 0.5s ease;
}

/* 增强选项卡设计 */
.ks-industry-tabs-container {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 5px;
}

.ks-industry-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.ks-industry-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    border-radius: 15px;
    min-width: 120px;
    background: white;
    border: 2px solid #eee;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ks-industry-tab:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, var(--active-light));
    transform: translateY(100%);
    transition: transform 0.5s ease;
    z-index: 0;
}

.ks-industry-tab:hover:before {
    transform: translateY(0);
}

.ks-industry-tab.active {
    background: var(--active-color);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tab-icon {
    font-size: 24px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.tab-text {
    font-weight: 600;
    font-size: 14px;
    color: #555;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.ks-industry-tab.active .tab-text {
    color: white;
}

/* 步骤指示器 */
.solution-process {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.solution-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--active-color);
    opacity: 0.8;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0.5;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.process-step.active {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--active-color);
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.process-step.active .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px var(--active-light);
}

.step-text {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    transition: color 0.3s ease;
}

.process-step.active .step-text {
    color: var(--active-dark);
}

.process-connector {
    flex-grow: 1;
    height: 3px;
    background: #eee;
    position: relative;
    margin: 0 15px;
    top: -15px;
}

.process-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--active-color);
    transition: width 0.8s ease;
}

.process-step.active + .process-connector::after {
    width: 100%;
}

/* 数据概览区样式 */
.data-overview {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.data-overview:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.data-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.data-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.industry-data-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: all 0.3s ease;
}

[data-theme="ecommerce"] .industry-data-icon {
    fill: #FF4A4A;
}

[data-theme="beauty"] .industry-data-icon {
    fill: #EC407A;
}

[data-theme="food"] .industry-data-icon {
    fill: #FF9800;
}

[data-theme="local"] .industry-data-icon {
    fill: #4CAF50;
}

[data-theme="education"] .industry-data-icon {
    fill: #2196F3;
}

.data-title h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.data-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.metric-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--active-dark);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.metric-progress {
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 各行业进度条样式 */
.ecommerce-progress {
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
}

.beauty-progress {
    background: linear-gradient(45deg, #EC407A, #F48FB1);
}

.food-progress {
    background: linear-gradient(45deg, #FF9800, #FFB74D);
}

.local-progress {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
}

.education-progress {
    background: linear-gradient(45deg, #2196F3, #4FC3F7);
}

/* 重写图表样式，修复条形图显示问题 */
.case-chart {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.chart-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.chart-container {
    width: 100%;
}

.chart-bar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bar-group {
    display: flex;
    align-items: center;
    width: 100%;
}

.bar-label {
    width: 100px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
    margin-right: 15px;
    flex-shrink: 0;
}

.bar-bg {
    flex-grow: 1;
    height: 26px;
    background-color: #f0f0f0;
    border-radius: 13px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    border-radius: 13px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* 确保动画正确应用 */
.active .bar-fill {
    animation: barFill 1.5s forwards cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes barFill {
    from { width: 0; }
    to { width: var(--bar-width, 0); }
}

/* 各行业填充样式 */
.ecommerce-fill {
    background: linear-gradient(to right, #FF2E4D, #FF6232);
}

.beauty-fill {
    background: linear-gradient(to right, #EC407A, #F48FB1);
}

.food-fill {
    background: linear-gradient(to right, #FF9800, #FFB74D);
}

.local-fill {
    background: linear-gradient(to right, #4CAF50, #8BC34A);
}

.education-fill {
    background: linear-gradient(to right, #2196F3, #4FC3F7);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .bar-label {
        width: 80px;
        font-size: 13px;
    }
    
    .bar-bg {
        height: 22px;
        border-radius: 11px;
    }
    
    .bar-fill {
        border-radius: 11px;
        font-size: 12px;
        padding-right: 10px;
    }
}

@media (max-width: 576px) {
    .bar-label {
        width: 70px;
        font-size: 12px;
    }
    
    .bar-bg {
        height: 20px;
        border-radius: 10px;
    }
    
    .bar-fill {
        border-radius: 10px;
        font-size: 11px;
        padding-right: 8px;
    }
}

/* 营销解决方案卡片不同颜色样式 */
.service-card-1 {
    background: linear-gradient(135deg, rgba(255, 46, 77, 0.25), rgba(255, 98, 50, 0.05));
    border-top: 5px solid rgba(255, 46, 77, 0.8);
}

.service-card-1 .ks-solution-icon {
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
    box-shadow: 0 8px 20px rgba(255, 46, 77, 0.25);
}

.service-card-1 .ks-solution-badge {
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
    box-shadow: 0 4px 10px rgba(255, 46, 77, 0.25);
}

.service-card-1 .feature-icon {
    background: rgba(255, 46, 77, 0.1);
    color: #FF2E4D;
}

.service-card-1 .ks-solution-action {
    background: linear-gradient(45deg, #FF2E4D, #FF6232);
    box-shadow: 0 8px 15px rgba(255, 46, 77, 0.2);
}

/* 卡片2 - 深蓝色 */
.service-card-2 {
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.25), rgba(92, 107, 192, 0.05));
    border-top: 5px solid rgba(63, 81, 181, 0.8);
}

.service-card-2 .ks-solution-icon {
    background: linear-gradient(45deg, #3F51B5, #5C6BC0);
    box-shadow: 0 8px 20px rgba(63, 81, 181, 0.25);
}

.service-card-2 .ks-solution-badge {
    background: linear-gradient(45deg, #3F51B5, #5C6BC0);
    box-shadow: 0 4px 10px rgba(63, 81, 181, 0.25);
}

.service-card-2 .feature-icon {
    background: rgba(63, 81, 181, 0.1);
    color: #3F51B5;
}

.service-card-2 .ks-solution-action {
    background: linear-gradient(45deg, #3F51B5, #5C6BC0);
    box-shadow: 0 8px 15px rgba(63, 81, 181, 0.2);
}

/* 卡片3 - 青色 */
.service-card-3 {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.25), rgba(77, 208, 225, 0.05));
    border-top: 5px solid rgba(0, 188, 212, 0.8);
}

.service-card-3 .ks-solution-icon {
    background: linear-gradient(45deg, #00BCD4, #4DD0E1);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.25);
}

.service-card-3 .ks-solution-badge {
    background: linear-gradient(45deg, #00BCD4, #4DD0E1);
    box-shadow: 0 4px 10px rgba(0, 188, 212, 0.25);
}

.service-card-3 .feature-icon {
    background: rgba(0, 188, 212, 0.1);
    color: #00BCD4;
}

.service-card-3 .ks-solution-action {
    background: linear-gradient(45deg, #00BCD4, #4DD0E1);
    box-shadow: 0 8px 15px rgba(0, 188, 212, 0.2);
}

/* 卡片4 - 橙色 */
.service-card-4 {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.25), rgba(255, 183, 77, 0.05));
    border-top: 5px solid rgba(255, 152, 0, 0.8);
}

.service-card-4 .ks-solution-icon {
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.25);
}

.service-card-4 .ks-solution-badge {
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.25);
}

.service-card-4 .feature-icon {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.service-card-4 .ks-solution-action {
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    box-shadow: 0 8px 15px rgba(255, 152, 0, 0.2);
}

/* 卡片5 - 绿色 */
.service-card-5 {
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.25), rgba(174, 213, 129, 0.05));
    border-top: 5px solid rgba(139, 195, 74, 0.8);
}

.service-card-5 .ks-solution-icon {
    background: linear-gradient(45deg, #8BC34A, #AED581);
    box-shadow: 0 8px 20px rgba(139, 195, 74, 0.25);
}

.service-card-5 .ks-solution-badge {
    background: linear-gradient(45deg, #8BC34A, #AED581);
    box-shadow: 0 4px 10px rgba(139, 195, 74, 0.25);
}

.service-card-5 .feature-icon {
    background: rgba(139, 195, 74, 0.1);
    color: #8BC34A;
}

.service-card-5 .ks-solution-action {
    background: linear-gradient(45deg, #8BC34A, #AED581);
    box-shadow: 0 8px 15px rgba(139, 195, 74, 0.2);
}

/* 卡片6 - 紫色 */
.service-card-6 {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.25), rgba(186, 104, 200, 0.05));
    border-top: 5px solid rgba(156, 39, 176, 0.8);
}

.service-card-6 .ks-solution-icon {
    background: linear-gradient(45deg, #9C27B0, #BA68C8);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.25);
}

.service-card-6 .ks-solution-badge {
    background: linear-gradient(45deg, #9C27B0, #BA68C8);
    box-shadow: 0 4px 10px rgba(156, 39, 176, 0.25);
}

.service-card-6 .feature-icon {
    background: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
}

.service-card-6 .ks-solution-action {
    background: linear-gradient(45deg, #9C27B0, #BA68C8);
    box-shadow: 0 8px 15px rgba(156, 39, 176, 0.2);
}

/* 覆盖默认卡片样式避免冲突 */
.ks-solution-item:before {
    opacity: 0;
}

.ks-solution-item:hover:before {
    opacity: 0;
}

.ks-solution-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.ks-solution-item:hover {
    border-color: transparent;
}