/* 字体声明 - 站酷快乐体（免费商用综艺体） */
@import url('https://fonts.googleapis.com/css2?family=ZCOOL+KuaiLe&display=swap');

/* 字体声明 - 站酷小薇LOGO体（免费商用圆体） */
@import url('https://fonts.googleapis.com/css2?family=ZCOOL+XiaoWei&display=swap');

/* 字体声明 - 站酷庆科黄油体（免费商用粗圆体） */
@import url('https://fonts.googleapis.com/css2?family=ZCOOL+QingKe+HuangYou&display=swap');

/* 字体声明 - HarmonyOS Sans SC（鸿蒙字体） */
@font-face {
    font-family: 'HarmonyOS Sans SC';
    src: url('https://s1.hdslb.com/bfs/static/jinkela/long/font/HarmonyOS_Sans_SC_Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HarmonyOS Sans SC';
    src: url('https://s1.hdslb.com/bfs/static/jinkela/long/font/HarmonyOS_Sans_SC_Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HarmonyOS Sans SC';
    src: url('https://s1.hdslb.com/bfs/static/jinkela/long/font/HarmonyOS_Sans_SC_Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0078d4;
    --primary-hover: #005a9e;
    --primary-light: #50a0e0;
    --secondary-color: #f7b500;
    --secondary-hover: #d99f00;
    --accent-color: #f7b500;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --bg-white: #fff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 120, 212, 0.15);
}

/* SVG Logo 颜色控制 - 注意：通过<img>标签引入的SVG无法通过外部CSS控制颜色 */
/* 如需通过CSS控制SVG颜色，请使用内联SVG或修改SVG文件内部的<style>标签 */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 105px; /* 25px (top-bar) + 80px (header) */
}

body {
    font-family: 'HarmonyOS Sans SC', -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 大屏幕响应式 - 1600px及以上 */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
        padding: 0 30px;
    }
    
    /* 增大标题字体 */
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    /* 增大section标题 */
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    .section-header p {
        font-size: 1.2rem;
    }
    
    /* 调整卡片网格间距 */
    .service-cards,
    .solution-grid,
    .case-grid {
        gap: 40px;
    }
    
    /* 增大卡片内边距 */
    .service-card,
    .solution-card,
    .case-card {
        padding: 40px 30px;
    }
    
    /* 调整按钮大小 */
    .btn-large {
        padding: 18px 40px;
        font-size: 18px;
    }
}

/* 超大屏幕响应式 - 1920px及以上 */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
        padding: 0 40px;
    }
    
    /* 进一步增大标题字体 */
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    /* 增大section标题 */
    .section-header h2 {
        font-size: 3.2rem;
    }
    
    /* 调整卡片网格 - 在超大屏幕上显示更多列 */
    .service-cards {
        grid-template-columns: repeat(5, 1fr);
        gap: 50px;
    }
    
    /* 增大卡片内边距 */
    .service-card,
    .solution-card,
    .case-card {
        padding: 50px 40px;
    }
}


/* 顶部信息栏 */
.top-bar {
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    height: 25px;
    line-height: 25px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-info {
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-link {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 12px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.top-bar-link i {
    font-size: 11px;
    opacity: 0.9;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.top-bar-right .separator,
.top-bar-left .separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* 顶部导航栏 */
.header {
    position: fixed;
    top: 25px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    margin-top: -3px;
}

.logo-link:hover {
    opacity: 1;
}

 

.logo-img {
    height: 40px;
    margin-top: 8px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: center;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    white-space: nowrap;
    font-family: 'HarmonyOS Sans SC','ZCOOL KuaiLe', 'ZCOOL QingKe HuangYou', 'ZCOOL XiaoWei',  sans-serif;
    letter-spacing: 6px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.logo-slogan {
    font-size: 11px;
    font-weight: 400;
    color: #666;
    font-family: 'HarmonyOS Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-top: -8px;
}

.nav {
    display: flex;
    align-items: center;
    flex: 1;
    margin-left: 60px;
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
}

.nav-menu > li > a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    height: 80px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary-color);
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

.badge-hot {
    position: absolute;
    top: 8px;
    right: -28px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 8px;
    line-height: 1;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(255, 71, 87, 0.3);
}

.nav-menu > li > a.has-badge {
    position: relative;
}

/* 下拉菜单样式 */
.nav-menu .has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    padding: 10px 20px !important;
    color: var(--text-color) !important;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    height: auto !important;
}

.dropdown-menu li a i {
    font-size: 14px;
    color: var(--primary-color);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: var(--primary-color) !important;
    padding-left: 24px !important;
}

.dropdown-menu li a:hover i {
    transform: scale(1.1);
}

.dropdown-menu li a::after {
    display: none !important;
}

/* 大型下拉菜单（多列） */
.dropdown-menu-large {
    min-width: 600px;
    padding: 20px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dropdown-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-column h4 i {
    font-size: 14px;
    color: var(--primary-color);
}

.dropdown-column a {
    display: flex !important;
    align-items: center !important;
    gap: 8px;
    padding: 8px 0 !important;
    color: var(--text-light) !important;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    height: auto !important;
}

.dropdown-column a i {
    font-size: 13px;
    color: var(--primary-color);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    opacity: 0.7;
}

.dropdown-column a:hover {
    color: var(--primary-color) !important;
    padding-left: 8px !important;
    background: transparent !important;
}

.dropdown-column a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.dropdown-column a::after {
    display: none !important;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.search-box:hover {
    background: #e8e8e8;
}

.search-box i {
    color: #999;
    font-size: 14px;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    width: 120px;
    color: var(--text-color);
}

.search-input::placeholder {
    color: #999;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 8px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-large {
    padding: 12px 32px;
    font-size: 16px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

/* 主横幅 */
.hero {
    position: relative;
    padding: 180px 0 120px;
    color: var(--bg-white);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    /* 华为风格彩色渐变背景 */
    background: linear-gradient(135deg, 
        #e0f2fe 0%,      /* 浅蓝 */
        #ddd6fe 25%,     /* 浅紫 */
        #fce7f3 50%,     /* 浅粉 */
        #fef3c7 75%,     /* 浅黄 */
        #e0f2fe 100%     /* 回到浅蓝 */
    );
    /* 添加动画效果 */
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

/* 渐变动画 */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0; /* 隐藏视频，使用渐变背景 */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1); /* 轻微的白色叠加层 */
    z-index: 1;
    backdrop-filter: blur(0px); /* 可选：添加模糊效果 */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1a1a1a; /* 深色文字 */
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.85;
    color: #333; /* 深色文字 */
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* 区块标题 */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
}

/* 标签页 */
.tabs {
    margin-bottom: 40px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

/* 核心服务 */
.services {
    padding: 100px 0;margin-top: 5px;;
}

/* 项目开发 - 白色背景 */
.services#project {
    background: var(--bg-white);
}

/* 小程序开发 - 灰色背景 */
.services#miniapp {
    background: var(--bg-light);
}

/* 小程序开发卡片布局 - 一行4列 */
.services#miniapp .service-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* 小程序开发tab内容默认隐藏 */
.services#miniapp .service-cards.tab-content {
    display: none;
}

/* 小程序开发激活的tab内容显示 */
.services#miniapp .service-cards.tab-content.active {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* AI系统开发 - 白色背景 */
.services#ai {
    background: var(--bg-white);
}

/* 云服务 - 灰色背景 */
.services#cloud {
    background: var(--bg-light);
}

/* 网络安全维护 - 灰色背景 */
.services#security {
    background: var(--bg-light);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 120, 212, 0.2);
}

/* 价格卡片特殊样式 */
.pricing-card {
    padding: 30px 25px;
}

/* 价格卡片头部 - 图标和标题横向排列 */
.pricing-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.pricing-header .card-icon {
    margin: 0;
    flex-shrink: 0;
}

.pricing-title-group {
    flex: 1;
    text-align: left;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
    color: var(--text-color);
    text-align: left;
}

/* 价格徽章 */
.price-badge {
    position: absolute;
    top: -15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

/* 卡片副标题 */
.card-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 0;
    margin-top: 2px;
    line-height: 1.3;
    font-weight: 400;
    text-align: left;
}

/* 价格展示 */
.price-box {
    margin: 25px 0;
    text-align: center;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.price-symbol {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

.price-current {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.price-unit {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 500;
}

.price-original {
    font-size: 16px;
    color: #ccc;
    text-decoration: line-through;
    text-align: center;
    margin-top: 8px;
}

/* 按钮组 */
.pricing-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

/* 购买按钮 */
.btn-buy {
    flex: 1;
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-buy:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
}

/* 查看详情按钮 */
.btn-detail {
    flex: 1;
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-detail:hover {
    background: #e0e0e0;
    color: #333;
}

/* 热销徽章 */
.hot-badge {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b6b 100%);
}

/* SSL价格颜色 */
.ssl-price-color {
    color: #ff6b35 !important;
}

/* 功能列表标签样式 */
.feature-label {
    color: #999;
    margin-right: 5px;
}

/* 功能区域 */
.feature-section {
    text-align: left;
    margin-top: 0;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.feature-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 18px;
}

/* 功能列表 */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.feature-item i {
    color: #1890ff;
    font-size: 16px;
    flex-shrink: 0;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* 彩色图标渐变 */
.card-icon.color-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.card-icon.color-purple {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

.card-icon.color-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.card-icon.color-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.card-icon.color-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.card-icon.color-yellow {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
}

.card-icon.color-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.card-icon.color-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.card-icon.color-indigo {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.card-icon.color-lime {
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
}

.card-icon.color-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.card-icon.color-amber {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.card-icon i {
    font-size: 28px;
    color: var(--bg-white);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 8px;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* 小程序开发section的卡片描述文字优化 */
.services#miniapp .service-card p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.card-link:last-child {
    margin-right: 0;
}

.card-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* 行业解决方案 - 白色背景 */
.solutions {
    padding: 100px 0;
    background: var(--bg-white);
}

.solution-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.solution-grid.active {
    display: grid;
}

.solution-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 120, 212, 0.2);
}

.solution-image {
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-image i {
    font-size: 64px;
    color: var(--bg-white);
    opacity: 0.9;
}

.solution-content {
    padding: 30px;
}

.solution-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.solution-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* 成功案例 - 灰色背景 */
.cases {
    padding: 100px 0;
    background: var(--bg-light);
    min-height: 600px; /* 确保section有足够高度 */
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.case-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 300px; /* 确保卡片有足够高度 */
    border: 1px solid #e0e0e0; /* 添加边框便于调试 */
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 120, 212, 0.2);
}

.case-image {
    height: 220px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.case-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.1;
}

.case-placeholder {
    font-size: 18px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.case-placeholder i {
    font-size: 48px;
    color: #667eea;
    opacity: 0.6;
}

/* 为不同案例添加不同的渐变色 */
.case-card:nth-child(1) .case-image::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.case-card:nth-child(1) .case-placeholder i {
    color: #667eea;
}

.case-card:nth-child(2) .case-image::before {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.case-card:nth-child(2) .case-placeholder i {
    color: #f093fb;
}

.case-card:nth-child(3) .case-image::before {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.case-card:nth-child(3) .case-placeholder i {
    color: #4facfe;
}

/* 案例卡片悬停时图标动画 */
.case-card:hover .case-placeholder i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.case-info {
    padding: 25px;
}

.case-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.case-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.case-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 12px;
    font-size: 12px;
    color: var(--text-color);
}

/* 关于我们 - 白色背景 */
.about {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.about-image {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.about-placeholder {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.about-placeholder i {
    font-size: 120px;
    color: var(--bg-white);
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.about-placeholder::after {
    content: '专业团队';
    font-size: 24px;
    color: var(--bg-white);
    font-weight: 600;
    opacity: 0.9;
}

/* 联系我们 - 灰色背景 */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}


/* 上海外滩陆家嘴图片区域 - 背景图实现 */
.location-image {
    position: relative;
    margin: 0 0 15px 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    height: 343px;
    width: 100%;
    background-image: url('https://images.unsplash.com/photo-1538428494232-9c0d8a3ab403?w=800&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8c2hhbmdoYWl8ZW58MHx8MHx8fDA%3D');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    padding: 30px 20px 20px;
    color: white;
}

.image-overlay h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.image-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* 联系信息区域 - 卡片风格 */
.contact-details {
    width: 100%;
}

.contact-details h4 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    text-align: left;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
    width: 50px;
}

.contact-item .contact-content {
    flex: 1;
    padding-left: 0;
}

.contact-item .contact-content h5 {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 600;
    text-align: left;
}

.contact-item .contact-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.contact-item .contact-content p a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* 微信咨询项样式 */
.contact-item-wechat {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-item-wechat .contact-content {
    flex: 1;
}

.contact-qrcode {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-left: 20px;
}

.contact-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-item-wechat i {
    color: #07c160;
}

.contact-item .contact-content p a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-item .contact-content {
    text-align: left;
    flex: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    width: 100%;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.info-item p {
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.contact-form h3 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* 页脚 */
.footer {
    background: #1a1a1a;
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-left p {
    margin: 0;
    display: flex;
    align-items: center;
}

.footer-left p i {
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-right .admin-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.footer-right .admin-link:hover {
    color: var(--bg-white);
}

.footer-right .admin-link:first-child {
    margin-left: 0;
}

.footer-right .admin-link i {
    margin-right: 6px;
    color: rgba(255, 255, 255, 0.5);
}

/* 二维码样式 */
.qr-code {
    margin-top: 20px;
    text-align: left;
}

.qr-img {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    display: block;
}

.qr-img:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.qr-code p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    text-align: left;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--bg-white);
}

.beian-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.beian-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-5px);
}

/* 响应式设计 */
@media (max-width: 992px) {
    /* 移动端隐藏搜索框 */
    .search-box {
        display: none;
    }

    /* 控制台按钮位置调整 */
    .header-right {
        gap: 10px;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        margin-left: 0;
        max-height: calc(100vh - 90px);
        height: auto;
        overflow-y: auto;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-menu > li > a {
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0 15px;
        width: 100%;
        position: relative;
    }

    /* 移动端隐藏PC端的底部蓝线 */
    .nav-menu > li > a::after {
        display: none !important;
    }

    /* 移动端下拉菜单箭头 - 使用 ::before 伪元素 */
    .nav-menu .has-dropdown > a::before {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
        font-size: 14px;
    }

    .nav-menu .has-dropdown.active > a::before {
        content: '\f106';
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        background: #f8f9fa;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .has-dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu li a {
        padding: 12px 30px !important;
        font-size: 14px;
        border-bottom: 1px solid #e9ecef;
    }

    .dropdown-menu li:last-child a {
        border-bottom: none;
    }

    .dropdown-menu li a:hover {
        background: #e9ecef !important;
        padding-left: 35px !important;
    }

    /* 大型下拉菜单移动端适配 */
    .dropdown-menu-large {
        min-width: 100%;
        padding: 0;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .dropdown-column {
        border-bottom: 1px solid #e9ecef;
        padding: 15px 20px;
    }

    .dropdown-column:last-child {
        border-bottom: none;
    }

    .dropdown-column h4 {
        font-size: 13px;
        margin-bottom: 10px;
        padding-bottom: 6px;
        color: var(--primary-color);
    }

    .dropdown-column a {
        padding: 8px 10px !important;
        font-size: 13px;
    }

    .dropdown-column a:hover {
        padding-left: 15px !important;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-right: 10px;
    }

    .nav-actions a {
        width: 100%;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: block;
        width: 30px;
        text-align: center;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 28px;
    }

    .logo-slogan {
        font-size: 10px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .service-cards,
    .solution-grid,
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 小程序开发平板响应式 - 2列 */
    .services#miniapp .service-cards,
    .services#miniapp .service-cards.tab-content.active {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    /* 移动端背景图调整 */
    .location-image {
        height: 250px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* 移动端隐藏顶部信息栏 */
    .top-bar {
        display: none;
    }

    .header {
        top: 0;
    }

    html {
        scroll-padding-top: 80px;
    }

    /* 移动端卡片 padding 优化 */
    .service-card {
        padding: 15px;
    }

    .pricing-card {
        padding: 15px;
    }

    .solution-content {
        padding: 15px;
    }

    .case-info {
        padding: 15px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-item {
        padding: 15px;
    }

    /* 移动端卡片网格布局 - 单列 */
    .service-cards,
    .solution-grid,
    .case-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* 云服务section的卡片也设置为单列 */
    .services#security .service-cards {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .services,
    .solutions,
    .cases,
    .about,
    .contact {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* 移动端二维码调整 */
    .qr-img {
        width: 120px;
        height: 120px;
    }
    
    /* 移动端表单调整 */
    .radio-group,
    .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }

    .checkbox-item,
    .radio-item {
        width: 100%;
        justify-content: flex-start;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    /* 移动端开发周期和预算垂直排列 */
    .form-group-row {
        flex-direction: column;
        gap: 20px;
    }

    .form-group-row .form-group {
        margin-bottom: 20px;
    }

    /* 小程序开发响应式 - 移动端改为单列 */
    .services#miniapp .service-cards,
    .services#miniapp .service-cards.tab-content.active {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* 所有服务section的卡片都设置为单列 */
    .services#project .service-cards,
    .services#ai .service-cards {
        grid-template-columns: 1fr;
    }

    /* 移动端隐藏开发流程 */
    .development-process {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-link {
        gap: 8px;
    }

    .logo-img {
        height: 36px;
    }

    .logo-text {
        margin-top:2px;
        font-size: 24px;
    }

    .logo-slogan {
        font-size: 9.6px;
    }

    .hero-title {
        font-size: 24px;
    }

    .btn-large {
        padding: 10px 24px;
        font-size: 14px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* 弹窗样式 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

/* 咨询弹窗层级最高 */
#consultModal {
    z-index: 10100;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    z-index: 1;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: rotate(90deg);
}

.modal-close i {
    font-size: 18px;
}

.modal-body {
    text-align: center;
}

.modal-body h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.modal-body p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
}

.qrcode-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 18px;
}

.qrcode-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* 公司信息弹窗样式 */
.company-info {
    text-align: left;
}

.info-row {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-start;
}

.info-label {
    font-weight: 600;
    color: var(--text-color);
    min-width: 80px;
    flex-shrink: 0;
}

.info-value {
    color: var(--text-light);
    flex: 1;
    word-break: break-all;
}

#copyCompanyInfo {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 开发需求表单样式 */
.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 5px;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-white);
    transition: all 0.3s ease;
    font-weight: normal;
}

.checkbox-item:hover,
.radio-item:hover {
    border-color: var(--primary-color);
    background: rgba(0, 120, 212, 0.05);
}

.checkbox-item input[type="checkbox"],
.radio-item input[type="radio"] {
    margin: 0;
    width: auto;
    padding: 0;
    border: none;
}

.checkbox-item input[type="checkbox"]:checked + span,
.checkbox-item:has(input[type="checkbox"]:checked),
.radio-item input[type="radio"]:checked + span,
.radio-item:has(input[type="radio"]:checked) {
    color: var(--primary-color);
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 15px;
}

/* 开发周期和预算同行显示 */
.form-group-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-select-half {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-select-half:focus {
    outline: none;
    border-color: var(--primary-color);
}

.budget-input {
    position: relative;
    display: flex;
    align-items: center;
}

.budget-input input {
    flex: 1;
    padding-right: 40px;
}

.budget-input .currency {
    position: absolute;
    right: 16px;
    color: var(--text-light);
    font-size: 14px;
    pointer-events: none;
}

/* 开发流程 - 白色背景 */
.development-process {
    padding: 100px 0;
    background: var(--bg-white);
}


.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 140px;
    position: relative;
}

/* 不同步骤的颜色主题 */
.process-step:nth-child(1) .step-number {
    background: linear-gradient(135deg, #0078d4 0%, #50a0e0 100%);
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.4);
}

.process-step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #f7b500 0%, #ffc933 100%);
    box-shadow: 0 6px 20px rgba(247, 181, 0, 0.4);
}

.process-step:nth-child(5) .step-number {
    background: linear-gradient(135deg, #0078d4 0%, #3d8fd9 100%);
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.4);
}

.process-step:nth-child(7) .step-number {
    background: linear-gradient(135deg, #f7b500 0%, #ffce4d 100%);
    box-shadow: 0 6px 20px rgba(247, 181, 0, 0.4);
}

.process-step:nth-child(9) .step-number {
    background: linear-gradient(135deg, #0078d4 0%, #2a86d6 100%);
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.4);
}

.process-step:nth-child(11) .step-number {
    background: linear-gradient(135deg, #f7b500 0%, #ffd666 100%);
    box-shadow: 0 6px 20px rgba(247, 181, 0, 0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.step-number:hover {
    transform: translateY(-5px) scale(1.1);
}

.step-number::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: inherit;
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    transition: all 0.3s ease;
}

.step-number:hover::before {
    transform: scale(1.2);
    opacity: 0.5;
}

.step-content h4 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.step-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
    max-width: 120px;
}

.process-step:hover .step-content h4 {
    color: var(--primary-color);
}

.process-arrow {
    color: #6c757d;
    font-size: 24px;
    margin: 0 15px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.process-arrow:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateX(5px);
}

/* 移动端开发流程响应式 */
@media (max-width: 768px) {
    .development-process {
        padding: 60px 0;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 0;
        font-size: 20px;
    }
    
    .process-step {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .step-content h4 {
        font-size: 16px;
    }
    
    .step-content p {
        max-width: 200px;
        font-size: 13px;
    }
    
    /* 移动端悬停效果调整 */
    .step-number:hover {
        transform: scale(1.05);
    }
    
    .step-number:hover::before {
        transform: scale(1.1);
    }
}

/* 公司信息弹窗中的电话链接样式 */
.info-value a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* 工单表单样式 */
/* 工单表单容器 */
.gongdan-form-wrapper {
    padding: 20px 15px;
}

.gongdan-form-wrapper form {
    background: transparent;
}

/* Form group styling */
.gongdan-form-wrapper .form-group {
    margin-bottom: 18px;
}

.gongdan-form-wrapper .control-label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.gongdan-form-wrapper .control-label .required {
    color: #ff4d4f;
    margin-right: 4px;
}

.gongdan-form-wrapper .col-md-2,
.gongdan-form-wrapper .col-md-10 {
    width: 100%;
    padding: 0;
}

/* Input styling */
.gongdan-form-wrapper .form-control,
.gongdan-form-wrapper input[type="text"],
.gongdan-form-wrapper input[type="tel"],
.gongdan-form-wrapper input[type="email"],
.gongdan-form-wrapper textarea {
    width: 100% !important;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    transition: all 0.3s;
    font-family: inherit;
    color: #333;
}

.gongdan-form-wrapper input::placeholder,
.gongdan-form-wrapper textarea::placeholder {
    color: #bbb;
}

.gongdan-form-wrapper input:focus,
.gongdan-form-wrapper textarea:focus {
    outline: none;
    border-color: #0078d4;
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
}

.gongdan-form-wrapper textarea {
    resize: vertical;
    min-height: 100px !important;
    height: 100px !important;
    line-height: 1.5;
}

/* Radio buttons styling */
.gongdan-form-wrapper .mt-radio-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gongdan-form-wrapper .mt-radio {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
    color: #666;
    margin: 0;
}

.gongdan-form-wrapper .mt-radio:hover {
    border-color: #0078d4;
    color: #0078d4;
}

.gongdan-form-wrapper .mt-radio input[type="radio"] {
    margin-right: 6px;
    width: auto;
    cursor: pointer;
    padding: 0;
    border: none;
}

.gongdan-form-wrapper .mt-radio input[type="radio"]:checked {
    accent-color: #0078d4;
}

.gongdan-form-wrapper .mt-radio:has(input[type="radio"]:checked) {
    border-color: #0078d4;
    background: #e6f4ff;
    color: #0078d4;
    font-weight: 500;
}

.gongdan-form-wrapper .mt-radio span {
    display: none;
}

/* Two column layout for name and phone */
.gongdan-form-wrapper #dr_row_xingming,
.gongdan-form-wrapper #dr_row_shouji {
    display: inline-block;
    width: calc(50% - 8px);
    vertical-align: top;
}

.gongdan-form-wrapper #dr_row_xingming {
    margin-right: 16px;
}

/* Captcha styling */
.gongdan-form-wrapper .captcha-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.gongdan-form-wrapper .captcha-group input {
    flex: 1;
    max-width: 240px;
}

.gongdan-form-wrapper .captcha-group img {
    height: 42px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
}

.gongdan-form-wrapper .captcha-group img:hover {
    border-color: #0078d4;
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
}

.gongdan-form-wrapper .form-label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.gongdan-form-wrapper .form-label .required {
    color: #ff4d4f;
    margin-left: 4px;
}

/* Submit button */
.gongdan-form-wrapper button[type="submit"] {
    padding: 12px 40px;
    background: #0078d4;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.3);
}

.gongdan-form-wrapper button[type="submit"]:hover {
    background: #005a9e;
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.4);
    transform: translateY(-1px);
}

.gongdan-form-wrapper button[type="submit"]:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .gongdan-form-wrapper {
        padding: 15px 12px;
    }
    
    .gongdan-form-wrapper::before {
        font-size: 1.5rem;
    }
    
    .gongdan-form-wrapper #dr_row_xingming,
    .gongdan-form-wrapper #dr_row_shouji {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    
    .gongdan-form-wrapper .mt-radio-inline {
        gap: 6px;
    }
    
    .gongdan-form-wrapper .mt-radio {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .gongdan-form-wrapper .captcha-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .gongdan-form-wrapper .captcha-group input {
        max-width: 100%;
    }
    
    .gongdan-form-wrapper button[type="submit"] {
        width: 100%;
    }
}


/* 价格套餐弹窗样式 */
.modal-large {
    max-width: 1200px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
}

.pricing-modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-modal-header h2 {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.pricing-modal-header p {
    font-size: 16px;
    color: var(--text-light);
}

.pricing-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.pricing-package {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-package:hover {
    border-color: #005a9e;
    box-shadow: 0 8px 24px rgba(0,90,158,0.15);
    transform: translateY(-5px);
}

.package-recommended {
    border-color: #005a9e;
    box-shadow: 0 4px 16px rgba(0,90,158,0.1);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #005a9e 0%, #0070c9 100%);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
}

.package-header h3 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.package-price {
    margin: 15px 0;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #f7b500;
}

.price-period {
    font-size: 14px;
    color: var(--text-light);
    margin-left: 5px;
}

.package-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.package-features {
    flex: 1;
    margin-bottom: 25px;
}

.package-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    border-bottom: 1px solid #f5f5f5;
    text-align: left;
}

.package-features .feature-item:last-child {
    border-bottom: none;
}

.package-features .feature-item i {
    color: #005a9e;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-note {
    color: #ff6b6b !important;
    font-size: 13px !important;
}

.feature-note i {
    color: #ff6b6b !important;
}

.btn-select {
    width: 100%;
    padding: 12px 24px;
    border: 2px solid #005a9e;
    background: transparent;
    color: #005a9e;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #005a9e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,90,158,0.3);
}

.btn-select.btn-primary {
    background: linear-gradient(135deg, #005a9e 0%, #0070c9 100%);
    color: #fff;
    border: none;
}

.btn-select.btn-primary:hover {
    background: linear-gradient(135deg, #004a85 0%, #005fa8 100%);
}

/* 响应式 */
@media (max-width: 1024px) {
    .pricing-packages {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .modal-large {
        padding: 20px;
    }
    
    .pricing-modal-header h2 {
        font-size: 24px;
    }
    
    .pricing-packages {
        grid-template-columns: 1fr;
    }
    
    .package-header h3 {
        font-size: 20px;
    }
    
    .price-amount {
        font-size: 30px;
    }
}
