/* 统一品牌色彩系统 */
:root {
    --innoshop-primary: #4568dc;
    --innoshop-secondary: #6a5acd;
    --innoshop-community: #5d76e8;
    --innoshop-enterprise: #3db66b;
    --innoshop-factory: #f2994a;
    --innoshop-vendor: #4a9df2;
    --innoshop-app: #7e5cea;

    /* 渐变色 */
    --innoshop-community-gradient: linear-gradient(135deg, #5d76e8, #7a8ff0);
    --innoshop-enterprise-gradient: linear-gradient(135deg, #3db66b, #59d987);
    --innoshop-factory-gradient: linear-gradient(135deg, #f2994a, #f6ba75);
    --innoshop-vendor-gradient: linear-gradient(135deg, #4a9df2, #6fb5ff);
    --innoshop-app-gradient: linear-gradient(135deg, #7e5cea, #9978f3);

    /* 阴影 */
    --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    --card-hover-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    --btn-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --btn-hover-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* ==================== 横幅样式 ==================== */
/* 横幅通用样式 */
.solution-banner {
    padding: 80px 0;
    color: white;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

/* 确保所有产品页面顶部文字为白色 */
.solution-banner h1,
.solution-banner .lead,
.solution-banner p {
    color: white;
}

/* 统一所有产品页面顶部标题和描述文字大小 */
.solution-banner h1 {
    font-size: 2.5rem;
}

.solution-banner .lead {
    font-size: 1.25rem;
}

/* 横幅背景颜色 */
.solution-banner:not(.community-banner):not(.enterprise-banner):not(
        .factory-banner
    ):not(.vendor-banner):not(.app-banner) {
    background: linear-gradient(
        135deg,
        var(--innoshop-primary),
        var(--innoshop-secondary)
    );
}

.solution-banner.community-banner {
    background: var(--innoshop-community-gradient);
}
.solution-banner.enterprise-banner {
    background: var(--innoshop-enterprise-gradient);
}
.solution-banner.factory-banner {
    background: var(--innoshop-factory-gradient);
}
.solution-banner.vendor-banner {
    background: var(--innoshop-vendor-gradient);
}
.solution-banner.app-banner {
    background: var(--innoshop-app-gradient);
}

/* 动画横幅 */
.animated-banner {
    position: relative;
    overflow: hidden;
}

/* 浮动形状 */
.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
    animation: float 15s infinite alternate;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -50px;
    animation: float 12s infinite alternate-reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 30%;
    animation: float 10s infinite alternate;
}

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

/* APP特有的气泡效果 */
.app-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bubble {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.bubble.b1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation: bubble-float 10s infinite alternate;
}

.bubble.b2 {
    width: 70px;
    height: 70px;
    top: 40%;
    right: 10%;
    animation: bubble-float 7s infinite alternate-reverse;
}

.bubble.b3 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 20%;
    animation: bubble-float 8s infinite alternate;
}

.bubble.b4 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 30%;
    animation: bubble-float 12s infinite alternate-reverse;
}

.bubble.b5 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    right: 25%;
    animation: bubble-float 9s infinite alternate;
}

@keyframes bubble-float {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-15px) translateX(10px);
    }
    100% {
        transform: translateY(15px) translateX(-10px);
    }
}

/* ==================== 图标与截图样式 ==================== */
/* App截图样式 */
.app-screenshot {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.app-screenshot:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* 图标容器样式 */
.icon-container {
    background-color: rgba(255, 255, 255, 0.2);
    width: 220px;
    height: 220px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.icon-container i {
    font-size: 100px;
    color: white;
    position: relative;
    z-index: 2;
}

/* 下载徽章样式 */
.download-badge {
    height: 52px;
    transition: all 0.2s ease;
}

.download-badge:hover {
    transform: scale(1.05);
}

/* ==================== 产品卡片样式 ==================== */
/* 产品卡片区域 */
.product-card {
    padding: 80px 0;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}

.product-card:nth-child(even) {
    background-color: #f9f9f9;
}

.product-card:nth-child(odd) {
    background-color: white;
}

/* 产品图片 */
.product-image {
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.product-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
}

.product-image img {
    width: 100%;
    height: 100%;
    background-position: center; /* 水平居中 */
    object-fit: cover;
    background-size: cover;
}

/* 产品内容区域 */
.product-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

/* 产品图标 */
.product-content .product-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-right: 15px;
}

.product-content .product-icon i {
    font-size: 28px;
}

/* 产品标题 */
.product-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.product-title:hover {
    text-decoration: underline;
    text-decoration-color: currentColor;
    text-underline-offset: 5px;
}

.product-title.community {
    color: var(--innoshop-community);
}

.product-title.enterprise {
    color: var(--innoshop-enterprise);
}

.product-title.factory {
    color: var(--innoshop-factory);
}

.product-title.vendor {
    color: var(--innoshop-vendor);
}

.product-title.app {
    color: var(--innoshop-app);
}

/* 产品描述 */
.product-description {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

/* ==================== 功能卡片样式 ==================== */
/* 通用卡片 */
.solution-card,
.solution-large-card,
.feature-card,
.price-card,
.pricing-card,
.industry-card,
.roi-card {
    height: 100%;
    transition: all 0.3s ease;
    border: none;
    box-shadow: var(--card-shadow);
}

.solution-card,
.solution-large-card,
.industry-card {
    border-radius: 12px;
    overflow: hidden;
}

.solution-card:hover,
.feature-card:hover,
.price-card:hover,
.pricing-card:hover,
.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

.solution-large-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}

/* 功能图标 */
.solution-icon,
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
}

.solution-icon {
    width: 64px;
    height: 64px;
}

.solution-small-icon,
.feature-icon {
    width: 48px;
    height: 48px;
}

.solution-icon i {
    font-size: 32px;
}
.solution-small-icon i,
.feature-icon {
    font-size: 24px;
}

/* 功能卡片 */
.feature-card {
    height: 100%;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 32px;
}

/* ==================== 徽章和按钮样式 ==================== */
/* 特点徽章 */
.feature-badge {
    margin-right: 8px;
    margin-bottom: 8px;
    padding: 6px 12px;
    font-weight: 500;
    border-radius: 30px;
}

.feature-badge.community {
    background-color: var(--innoshop-community-gradient);
    color: white;
}

.feature-badge.enterprise {
    background-color: var(--innoshop-enterprise-gradient);
    color: white;
}

.feature-badge.factory {
    background-color: var(--innoshop-factory-gradient);
    color: white;
}

.feature-badge.vendor {
    background-color: var(--innoshop-vendor-gradient);
    color: white;
}

.feature-badge.app {
    background-color: var(--innoshop-app-gradient);
    color: white;
}

/* 按钮通用样式 */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 10px 24px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 15px;
    letter-spacing: 0.3px;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--btn-hover-shadow);
}

/* 实心按钮 */
.btn-primary,
.btn-community,
.btn-enterprise,
.btn-factory,
.btn-vendor,
.btn-app {
    color: white;
    border: none;
    box-shadow: var(--btn-shadow);
}

.btn-primary {
    background: white;
    color: black;
}
.btn-primary:hover {
    background: white;
}

.btn-community {
    background: var(--innoshop-community-gradient);
}
.btn-community:hover {
    background: linear-gradient(135deg, #4c63d2, #6b81e6);
}

.btn-enterprise {
    background: var(--innoshop-enterprise-gradient);
}
.btn-enterprise:hover {
    background: linear-gradient(135deg, #35a05d, #4bc77a);
}

.btn-factory {
    background: var(--innoshop-factory-gradient);
}
.btn-factory:hover {
    background: linear-gradient(135deg, #e08b3c, #e9ad60);
}

.btn-vendor {
    background: var(--innoshop-vendor-gradient);
}
.btn-vendor:hover {
    background: linear-gradient(135deg, #3e8bda, #5ea5ee);
}

.btn-app {
    background: var(--innoshop-app-gradient);
}
.btn-app:hover {
    background: linear-gradient(135deg, #6c4ed0, #8a68e8);
}

/* 轮廓按钮 */
.btn-outline-community,
.btn-outline-enterprise,
.btn-outline-factory,
.btn-outline-vendor,
.btn-outline-app {
    background: transparent;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.btn-outline-community::before,
.btn-outline-enterprise::before,
.btn-outline-factory::before,
.btn-outline-vendor::before,
.btn-outline-app::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-outline-community {
    color: var(--innoshop-community);
    border-color: var(--innoshop-community);
}
.btn-outline-community::before {
    background: var(--innoshop-community-gradient);
}
.btn-outline-community:hover {
    color: white;
    border-color: transparent;
}
.btn-outline-community:hover::before {
    width: 100%;
}

.btn-outline-enterprise {
    color: var(--innoshop-enterprise);
    border-color: var(--innoshop-enterprise);
}
.btn-outline-enterprise::before {
    background: var(--innoshop-enterprise-gradient);
}
.btn-outline-enterprise:hover {
    color: white;
    border-color: transparent;
}
.btn-outline-enterprise:hover::before {
    width: 100%;
}

.btn-outline-factory {
    color: var(--innoshop-factory);
    border-color: var(--innoshop-factory);
}
.arrow-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

@keyframes flash {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}
.mobile-app-title {
    color: white;
}
.btn-outline-factory::before {
    background: var(--innoshop-factory-gradient);
}
.btn-outline-factory:hover {
    color: white;
    border-color: transparent;
}
.btn-outline-factory:hover::before {
    width: 100%;
}

.btn-outline-vendor {
    color: var(--innoshop-vendor);
    border-color: var(--innoshop-vendor);
}
.btn-outline-vendor::before {
    background: var(--innoshop-vendor-gradient);
}
.btn-outline-vendor:hover {
    color: white;
    border-color: transparent;
}
.btn-outline-vendor:hover::before {
    width: 100%;
}

.btn-outline-app {
    color: var(--innoshop-app);
    border-color: var(--innoshop-app);
}
.btn-outline-app::before {
    background: var(--innoshop-app-gradient);
}
.btn-outline-app:hover {
    color: white;
    border-color: transparent;
}
.btn-outline-app:hover::before {
    width: 100%;
}
.icon-box {
    background-color: rgba(255, 255, 255, 0.2);
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    top: 50px;
    position: absolute;
    right: 10;
    bottom: -40;
}
/* 白色按钮 */
.btn-light {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #333;
}

/* ==================== 背景与文字颜色 ==================== */
/* 背景色 */
.bg-community-soft {
    background-color: rgba(93, 118, 232, 0.15);
}
.bg-enterprise-soft {
    background-color: rgba(61, 182, 107, 0.15);
}
.bg-factory-soft {
    background-color: rgba(242, 153, 74, 0.15);
}
.bg-vendor-soft {
    background-color: rgba(74, 157, 242, 0.15);
}
.bg-app-soft {
    background-color: rgba(126, 92, 234, 0.15);
}

.bg-community {
    background-color: var(--innoshop-community);
}
.bg-enterprise {
    background-color: var(--innoshop-enterprise);
}
.bg-factory {
    background-color: var(--innoshop-factory);
}
.bg-vendor {
    background-color: var(--innoshop-vendor);
}
.bg-app {
    background-color: var(--innoshop-app);
}

/* 文字颜色 */
.text-community {
    color: var(--innoshop-community);
}
.text-enterprise {
    color: var(--innoshop-enterprise);
}
.text-factory {
    color: var(--innoshop-factory);
}
.text-vendor {
    color: var(--innoshop-vendor);
}
.text-app {
    color: var(--innoshop-app);
}

/* ==================== 页脚和联系区域 ==================== */
/* 咨询服务区域 */
.consultation-section {
    background: linear-gradient(to right, #f8f9fa, #edf2f7);
    padding: 80px 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
}

.consultation-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.consultation-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.consultation-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 24px;
}

.consultation-image {
    max-width: 90%;
    margin: 0 auto;
    display: block;
}

/* 版本对比表 */
.version-comparison {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.version-header {
    margin-bottom: 60px;
}

.version-box {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.version-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.version-box.community {
    border-color: rgba(93, 118, 232, 0.3);
}
.version-box.enterprise {
    border-color: rgba(61, 182, 107, 0.3);
}
.version-box.factory {
    border-color: rgba(242, 153, 74, 0.3);
}

/* 版本比较头部样式 */
.version-header-community,
.version-header-enterprise,
.version-header-factory {
    color: white;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.version-header-community {
    background: var(--innoshop-community-gradient);
}
.version-header-enterprise {
    background: var(--innoshop-enterprise-gradient);
}
.version-header-factory {
    background: var(--innoshop-factory-gradient);
}

/* 毛玻璃效果装饰元素 */
.version-header-community::before,
.version-header-enterprise::before,
.version-header-factory::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.version-header-community::after,
.version-header-enterprise::after,
.version-header-factory::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.version-body {
    padding: 20px;
    background-color: white;
}

.version-price {
    font-size: 1.5rem;
    font-weight: bold;
}

/* 表格样式 */
.feature-category {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #495057;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.feature-category td {
    padding: 0.8rem 1rem;
}

.table-comparison th,
.table-comparison td {
    vertical-align: middle;
}

.table-comparison th {
    border-top: none;
    position: sticky;
    top: 0;
    z-index: 10;
}

.table-comparison thead th {
    border-bottom: none;
    padding: 1.2rem 0.75rem;
}

.table-comparison tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.01);
}

.table-comparison td {
    padding: 1rem 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.version-comparison .check-icon,
.bi-check-circle-fill {
    color: #28a745 !important;
    font-size: 1.2rem;
}

.version-comparison .x-icon,
.bi-x,
.bi-x-circle,
.bi-x-circle-fill {
    color: #dc3545 !important;
    font-size: 1.2rem;
}

.version-comparison .partial-icon {
    color: #ffc107;
    font-size: 1.2rem;
}

.version-comparison .table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(0, 0, 0, 0.02);
}

/* 对比表格容器 */
.table-comparison-container {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.table-comparison {
    margin-bottom: 0;
}

.table-comparison th.feature-column {
    background-color: white;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
    color: #333;
}

.table-comparison .version-column {
    text-align: center;
}

.version-column-community {
    background-color: rgba(93, 118, 232, 0.05);
}
.version-column-enterprise {
    background-color: rgba(61, 182, 107, 0.05);
}
.version-column-factory {
    background-color: rgba(242, 153, 74, 0.05);
}

/* 其他对比页面样式 */
.comparison-section {
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
    padding: 70px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-title {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.comparison-title::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

/* 版本名称高亮显示 */
.version-name {
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 1.1rem;
}

.community-name {
    color: var(--innoshop-community);
}
.enterprise-name {
    color: var(--innoshop-enterprise);
}
.factory-name {
    color: var(--innoshop-factory);
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 768px) {
    .solution-banner {
        padding: 60px 0;
    }

    .solution-banner h1 {
        font-size: 2rem;
    }

    .product-image {
        height: 220px;
        margin-bottom: 25px;
    }

    .product-card {
        padding: 40px 0;
    }
}
.steps-container {
    position: relative;
    padding: 2rem 0;
}

.steps-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #e9ecef, transparent);
}

.step-item {
    position: relative;
    margin-bottom: 2rem;
}

.step-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 157, 242, 0.15);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #6c757d;
}

.step-info {
    flex: 1;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps-container::before {
        left: 30px;
    }

    .step-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .step-icon {
        margin-bottom: 1rem;
    }
}
