/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* 固定导航栏 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: #E3F4FE;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-list a:hover {
    color: #1890ff;
    background-color: rgba(24, 144, 255, 0.1);
}

.nav-list a.active {
    color: #1890ff;
    background-color: rgba(24, 144, 255, 0.15);
}

/* 导航栏服务热线 */
.header-hotline {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #1890ff 0%, #40a9ff 100%);
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(24, 144, 255, 0.3);
    transition: all 0.3s ease;
}

.header-hotline:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(24, 144, 255, 0.4);
}

.header-hotline svg {
    width: 20px;
    height: 20px;
}

/* 全屏大图区域 */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
}

.hero-slogan {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s ease forwards;
    animation-delay: 0.5s;
    padding: 0 20px;
}

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

/* 公司介绍 */
.about {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4ff 100%);
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1890ff, #40a9ff);
    border-radius: 2px;
}

/* 关于我们 - 左右布局 */
.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(24, 144, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #1890ff 0%, #40a9ff 50%, #69c0ff 100%);
    border-radius: 3px;
}

.about-title {
    text-align: left;
    margin-bottom: 35px;
}

.about-title::after {
    left: 0;
    transform: none;
}

.about-text {
    font-size: 17px;
    line-height: 2;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

.about-text:last-child {
    margin-bottom: 0;
}

.about-text.highlight {
    color: #1890ff;
    font-weight: 500;
    padding: 20px;
    background: linear-gradient(135deg, #e6f7ff 0%, #f0f9ff 100%);
    border-left: 4px solid #1890ff;
    border-radius: 0 12px 12px 0;
    margin-top: 20px;
}

/* 右侧图片区域 */
.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(24, 144, 255, 0.15);
    position: relative;
    z-index: 2;
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
}

.image-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.image-frame img {
    max-width: 220px;
    height: auto;
    display: block;
}

/* 装饰元素 */
.decoration-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(24, 144, 255, 0.15) 0%, rgba(64, 169, 255, 0.1) 100%);
    top: -30px;
    right: -20px;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(64, 169, 255, 0.2) 0%, rgba(105, 192, 255, 0.1) 100%);
    bottom: -20px;
    left: -10px;
    animation: float 8s ease-in-out infinite reverse;
}

.decoration-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(24, 144, 255, 0.3) 2px, transparent 2px);
    background-size: 12px 12px;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    z-index: 0;
}

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

/* 数据展示 */
.stats {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

/* 客户服务案例 */
.cases {
    padding: 100px 20px;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: -20px auto 60px;
    line-height: 1.8;
}

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

.case-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(24, 144, 255, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(24, 144, 255, 0.15);
}

.case-image {
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #e6f7ff 0%, #f0f9ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.case-company {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.blur-text {
    filter: blur(3px);
    user-select: none;
}

.case-review {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-service {
    margin-top: auto;
}

.case-service span {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(24, 144, 255, 0.1) 0%, rgba(64, 169, 255, 0.1) 100%);
    color: #1890ff;
    font-size: 13px;
    border-radius: 20px;
    border: 1px solid rgba(24, 144, 255, 0.2);
}

/* 服务优势 */
.advantages-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.advantage-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(24, 144, 255, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1890ff, #40a9ff, #69c0ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(24, 144, 255, 0.15);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card.full-width {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(24, 144, 255, 0.1) 0%, rgba(64, 169, 255, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.advantage-icon svg {
    width: 32px;
    height: 32px;
    color: #1890ff;
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, #1890ff 0%, #40a9ff 100%);
    transform: scale(1.1);
}

.advantage-card:hover .advantage-icon svg {
    color: #fff;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.advantage-subtitle {
    font-size: 14px;
    color: #1890ff;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.5;
}

.advantage-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.advantage-desc.full-desc {
    max-width: 500px;
    margin: 0 auto;
}

/* 企业文化 */
.culture-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.culture-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(24, 144, 255, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1890ff, #40a9ff);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.culture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(24, 144, 255, 0.15);
}

.culture-card:hover::before {
    width: 100%;
}

.culture-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.culture-icon.mission {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 107, 107, 0.05) 100%);
}

.culture-icon.vision {
    background: linear-gradient(135deg, rgba(24, 144, 255, 0.15) 0%, rgba(24, 144, 255, 0.05) 100%);
}

.culture-icon.concept {
    background: linear-gradient(135deg, rgba(82, 196, 26, 0.15) 0%, rgba(82, 196, 26, 0.05) 100%);
}

.culture-icon.values {
    background: linear-gradient(135deg, rgba(250, 173, 20, 0.15) 0%, rgba(250, 173, 20, 0.05) 100%);
}

.culture-icon svg {
    width: 36px;
    height: 36px;
    transition: all 0.4s ease;
}

.culture-icon.mission svg {
    color: #ff6b6b;
}

.culture-icon.vision svg {
    color: #1890ff;
}

.culture-icon.concept svg {
    color: #52c41a;
}

.culture-icon.values svg {
    color: #faad14;
}

.culture-card:hover .culture-icon {
    transform: scale(1.1);
}

.culture-card:hover .culture-icon.mission {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
}

.culture-card:hover .culture-icon.vision {
    background: linear-gradient(135deg, #1890ff 0%, #40a9ff 100%);
}

.culture-card:hover .culture-icon.concept {
    background: linear-gradient(135deg, #52c41a 0%, #73d13d 100%);
}

.culture-card:hover .culture-icon.values {
    background: linear-gradient(135deg, #faad14 0%, #ffc53d 100%);
}

.culture-card:hover .culture-icon svg {
    color: #fff;
}

.culture-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.culture-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* 右侧悬浮工具栏 */
.float-toolbar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tool-item {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1890ff 0%, #40a9ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 15px rgba(24, 144, 255, 0.3);
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(24, 144, 255, 0.4);
}

.tool-item svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

/* 悬浮提示框 */
.tool-tip {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.tool-tip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.tool-item:hover .tool-tip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

.tool-tip .tip-title {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.tool-tip.phone-tip {
    font-size: 16px;
    font-weight: 600;
    color: #1890ff;
}

.tool-tip.phone-tip .tip-content {
    font-size: 16px;
    font-weight: 600;
    color: #1890ff;
    padding-top: 4px;
}

.tool-tip.qrcode-tip {
    padding: 15px;
}

.tool-tip.qrcode-tip img {
    width: 120px;
    height: 120px;
    display: block;
    border-radius: 8px;
    margin-top: 8px;
}

/* 返回顶部按钮 */
.back-to-top {
    background: linear-gradient(135deg, #52c41a 0%, #73d13d 100%);
    box-shadow: 0 4px 15px rgba(82, 196, 26, 0.3);
}

.back-to-top:hover {
    box-shadow: 0 6px 25px rgba(82, 196, 26, 0.4);
}

/* 响应式 */
@media (max-width: 768px) {
    .float-toolbar {
        right: 10px;
        gap: 10px;
    }

    .tool-item {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .tool-item svg {
        width: 20px;
        height: 20px;
    }

    .tool-tip {
        display: none;
    }
}

.stats-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.stats-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-left .stat-balls-row {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.stats-left .stat-balls-row:first-child {
    justify-content: center;
}

.stats-left .stat-balls-row:last-child {
    justify-content: center;
}

.stat-ball {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1890ff 0%, #40a9ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 30px rgba(24, 144, 255, 0.3);
    opacity: 0;
    transform: scale(0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
}

.stat-ball:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(24, 144, 255, 0.4);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.95;
}

.stats-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateX(30px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
}

.stat-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1890ff 0%, #40a9ff 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.stat-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.stat-card-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* 页面标题区域 */
.page-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.85) 100%), url('img/-66663.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    margin-top: 70px;
}

.page-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

/* 对比模块 */
.comparison {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.comparison-content {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    background-color: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.comparison-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.comparison-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.comparison-traditional,
.comparison-faxiaoshi {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.comparison-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.comparison-traditional .comparison-icon {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: #fff;
}

.comparison-faxiaoshi .comparison-icon {
    background: linear-gradient(135deg, #1890ff 0%, #40a9ff 100%);
    color: #fff;
}

.comparison-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.comparison-traditional .comparison-text h3 {
    color: #7f8c8d;
}

.comparison-faxiaoshi .comparison-text h3 {
    color: #1890ff;
}

.comparison-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.comparison-vs {
    font-size: 24px;
    font-weight: 700;
    color: #ccc;
    padding: 0 20px;
    flex-shrink: 0;
}

.highlight-price {
    font-size: 18px;
    color: #e74c3c;
    font-weight: 600;
}

.highlight-price span {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
}

/* 常见现象 */
.common-phenomenon {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.phenomenon-content {
    max-width: 1000px;
    margin: 0 auto;
}

.phenomenon-item {
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.phenomenon-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.phenomenon-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.phenomenon-title {
    background: linear-gradient(135deg, #1890ff 0%, #40a9ff 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 25px;
}

.phenomenon-comparison {
    display: flex;
}

.phenomenon-other,
.phenomenon-you {
    flex: 1;
    padding: 30px 25px;
}

.phenomenon-other {
    background-color: #f0f9ff;
    border-right: 1px solid #e6f7ff;
}

.phenomenon-you {
    background-color: #fafafa;
}

.phenomenon-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phenomenon-other .phenomenon-label {
    color: #1890ff;
}

.phenomenon-you .phenomenon-label {
    color: #ff4d4f;
}

.phenomenon-text {
    font-size: 15px;
    line-height: 1.8;
}

.phenomenon-other .phenomenon-text {
    color: #333;
}

.phenomenon-you .phenomenon-text {
    color: #666;
}

/* 企业全生命周期法律风险 */
.lifecycle-risk {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #e6f7ff 100%);
}

.lifecycle-content {
    max-width: 1200px;
    margin: 0 auto;
}

.lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.lifecycle-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
    border: 1px solid rgba(24, 144, 255, 0.1);
}

.lifecycle-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.lifecycle-card:hover {
    box-shadow: 0 15px 40px rgba(24, 144, 255, 0.15);
    transform: translateY(-10px);
}

.lifecycle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1890ff, #40a9ff);
}

.lifecycle-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.lifecycle-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1890ff, #40a9ff);
    border-radius: 1.5px;
}

.lifecycle-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1890ff;
    margin: 25px 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lifecycle-card h4::before {
    content: '◆';
    font-size: 10px;
    color: #1890ff;
}

.lifecycle-list {
    list-style: none;
}

.lifecycle-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    transition: color 0.3s ease;
}

.lifecycle-card:hover .lifecycle-list li {
    color: #333;
}

.lifecycle-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: #1890ff;
    font-size: 12px;
    font-weight: bold;
}

.lifecycle-list li:last-child {
    margin-bottom: 0;
}

/* 页脚 */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 第一列：品牌信息 */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 1px;
}

/* Slogan 样式 */
.slogan-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slogan-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.slogan-tags span {
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(24, 144, 255, 0.15) 0%, rgba(64, 169, 255, 0.15) 100%);
    border: 1px solid rgba(24, 144, 255, 0.4);
    border-radius: 14px;
    font-size: 12px;
    color: #40a9ff;
    font-weight: 600;
    letter-spacing: 1px;
}

.slogan-text {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    line-height: 1.5;
    font-family: 'Ma Shan Zheng', 'ZCOOL KuaiLe', 'ZCOOL XiaoWei', serif;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    overflow: hidden;
}

/* 第二列：联系信息 */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info p {
    font-size: 14px;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
}

.contact-info span {
    color: #fff;
    font-weight: 500;
    min-width: 100px;
    flex-shrink: 0;
}

.service-area {
    line-height: 1.8 !important;
}

/* 第三列：二维码 */
.footer-qrcode-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-qrcodes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item p {
    font-size: 13px;
    margin-bottom: 10px;
    color: #b0b0b0;
    letter-spacing: 1px;
}

.qrcode-item img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.qrcode-item img:hover {
    transform: scale(1.05);
    border-color: rgba(24, 144, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 13px;
    color: #666;
    letter-spacing: 1px;
}

.beian-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.beian-link:hover {
    color: #fff;
}

.beian-link img {
    height: 20px;
    width: auto;
    vertical-align: middle;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand,
    .footer-contact,
    .footer-qrcode-column {
        text-align: center;
    }

    .slogan-tags {
        justify-content: center;
    }

    .contact-info p {
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-info span {
        min-width: auto;
        margin-right: 5px;
    }

    .footer-qrcodes {
        flex-direction: row;
        justify-content: center;
        gap: 25px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    .header-right {
        gap: 20px;
    }

    .logo img {
        height: 35px;
    }

    .nav-list {
        gap: 10px;
    }

    .nav-list a {
        font-size: 14px;
        padding: 6px 10px;
    }

    .header-hotline {
        padding: 6px 12px;
        font-size: 12px;
        gap: 6px;
    }

    .header-hotline svg {
        width: 16px;
        height: 16px;
    }

    .hero-slogan {
        font-size: 28px;
    }

    .about {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        padding: 35px 25px;
    }

    .about-title {
        text-align: center;
    }

    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-text {
        font-size: 15px;
    }

    .image-frame {
        padding: 30px;
        transform: none;
    }

    .image-frame img {
        max-width: 180px;
    }

    .circle-1,
    .circle-2,
    .decoration-dots {
        display: none;
    }

    .cases {
        padding: 60px 15px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .case-card {
        max-width: 100%;
    }

    .case-image {
        height: 150px;
    }

    .case-content {
        padding: 20px;
    }

    .case-company {
        font-size: 16px;
    }

    .case-review {
        font-size: 13px;
    }

    .advantages-section {
        padding: 60px 15px;
    }

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

    .advantage-card {
        padding: 25px 15px;
    }

    .advantage-card.full-width {
        grid-column: 1 / -1;
    }

    .advantage-icon {
        width: 55px;
        height: 55px;
    }

    .advantage-icon svg {
        width: 26px;
        height: 26px;
    }

    .advantage-card h3 {
        font-size: 17px;
    }

    .advantage-subtitle,
    .advantage-desc {
        font-size: 13px;
    }

    .culture-section {
        padding: 60px 15px;
    }

    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .culture-card {
        padding: 30px 20px;
    }

    .culture-icon {
        width: 60px;
        height: 60px;
    }

    .culture-icon svg {
        width: 28px;
        height: 28px;
    }

    .culture-card h3 {
        font-size: 18px;
    }

    .culture-card p {
        font-size: 13px;
    }

    .page-hero {
        padding: 120px 20px 60px;
    }

    .page-hero-content h1 {
        font-size: 32px;
    }

    .page-hero-content p {
        font-size: 16px;
    }

    .comparison {
        padding: 60px 15px;
    }

    .comparison-item {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }

    .comparison-vs {
        transform: rotate(90deg);
        padding: 10px 0;
    }

    .comparison-traditional,
    .comparison-faxiaoshi {
        width: 100%;
    }

    .comparison-icon {
        width: 55px;
        height: 55px;
        font-size: 14px;
    }

    .comparison-text h3 {
        font-size: 18px;
    }

    .comparison-text p {
        font-size: 14px;
    }

    .highlight-price {
        font-size: 16px;
    }

    .highlight-price span {
        font-size: 24px;
    }

    .common-phenomenon {
        padding: 60px 15px;
    }

    .phenomenon-title {
        font-size: 16px;
        padding: 12px 20px;
    }

    .phenomenon-comparison {
        flex-direction: column;
    }

    .phenomenon-other,
    .phenomenon-you {
        padding: 20px;
    }

    .phenomenon-other {
        border-right: none;
        border-bottom: 1px solid #e6f7ff;
    }

    .phenomenon-text {
        font-size: 14px;
    }

    .lifecycle-risk {
        padding: 60px 15px;
    }

    .lifecycle-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .lifecycle-card {
        padding: 30px 20px;
    }

    .lifecycle-card h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .lifecycle-card h4 {
        font-size: 14px;
        margin: 20px 0 12px;
    }

    .lifecycle-list li {
        font-size: 13px;
        padding-left: 20px;
    }

    .footer-content {
        padding: 30px 20px;
    }

    .about-text {
        font-size: 16px;
    }

    .stats {
        padding: 60px 15px;
    }

    .stats-content {
        flex-direction: column;
        gap: 40px;
    }

    .stats-left {
        gap: 20px;
    }

    .stat-balls-row {
        gap: 15px;
    }

    .stat-ball {
        width: 100px;
        height: 100px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 10px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-card-icon {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .stat-card-content h3 {
        font-size: 18px;
    }

    .stat-card-content p {
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-info h3 {
        font-size: 20px;
    }

    .beian-link {
        display: flex;
        justify-content: center;
        margin: 10px 0 0 0;
    }

    .footer-bottom p {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .nav-list {
        gap: 5px;
    }

    .nav-list a {
        font-size: 12px;
        padding: 5px 8px;
    }

    .hero-slogan {
        font-size: 22px;
    }
}
