/*
 * 企业服务网站模板样式
 * 橙红色主题 - 简洁现代设计
 */

/* =========================================
   基础样式重置
========================================= */
:root {
    /* 主色调 */
    --primary-color: #ff6b35;
    --primary-dark: #e54d1d;
    --primary-light: #ff8c5a;
    
    /* 文字色 - 高对比度深色方案 */
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #4b5563;
    --text-light: #6b7280;
    
    /* 背景色 */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    
    /* 字体大小 */
    --font-xs: 12px;
    --font-sm: 14px;
    --font-base: 15px;
    --font-md: 16px;
    --font-lg: 18px;
    --font-xl: 20px;
    --font-2xl: 24px;
    --font-3xl: 28px;
    --font-4xl: 32px;
    --font-5xl: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', '微软雅黑', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-white);
    font-size: var(--font-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    color: inherit;
    transition: none;
}

a:hover {
    color: var(--primary-color);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 { font-size: var(--font-5xl); }
h2 { font-size: var(--font-4xl); }
h3 { font-size: var(--font-3xl); }
h4 { font-size: var(--font-xl); }
h5 { font-size: var(--font-lg); }
h6 { font-size: var(--font-md); }

p {
    color: var(--text-secondary);
    font-size: var(--font-base);
    line-height: 1.8;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.text-center { text-align: center; }

/* =========================================
   头部导航 - 橙红色主题
========================================= */
.blue-header {
    background: linear-gradient(135deg, #ff6b35 0%, #e54d1d 100%);
    color: #fff;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.2);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    max-height: 40px;
    width: auto;
}

.logo-area i {
    font-size: 28px;
    color: #ffcc80;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.brand-slogan {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* 城市切换 */
.city-switch-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: none;
}

.city-switch-btn:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.city-switch-btn i:first-child {
    color: #ffcc80;
}

/* 头部样式已移至 header.css */

/* =========================================
   首页Hero区域 - 橙红渐变风格
========================================= */
.hero-section {
    background: linear-gradient(135deg, #e54d1d 0%, #ff6b35 50%, #ff8c5a 100%);
    min-height: 560px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 204, 128, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 90, 0.15) 0%, transparent 40%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content .highlight {
    color: #ffe0b2;
    display: block;
}

.hero-content .hero-desc {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Hero标签 */
.hero-tags {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.95);
    font-size: 15px;
    font-weight: 500;
}

.hero-tag i {
    color: #ffe0b2;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-primary-new {
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    color: #e54d1d;
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    transition: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.btn-primary-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    color: #d94520;
}

.btn-outline-new {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 500;
    transition: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-new:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

/* Hero右侧卡片 */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    width: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.hero-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-card h3 i {
    color: #ffe0b2;
}

.service-path {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.path-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255,255,255,0.95);
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.path-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.path-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 204, 128, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: #fff;
}

.path-icon .fa {
    color: #fff;
}

.path-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.path-text strong {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.path-text span {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

/* =========================================
   服务场景模块 - 大气卡片设计
========================================= */
.services-section-new {
    padding: 70px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.section-header-new {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-new h2 {
    font-size: 40px;
    color: #0f172a;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-header-new p {
    font-size: 18px;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-modules {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* 服务卡片样式 */
.service-module-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: none;
    border: 1px solid #e2e8f0;
    padding: 40px;
}

.service-module-card:hover {
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
    transform: translateY(-6px);
    border-color: #ff6b35;
}

/* 卡片头部 */
.module-header-new {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 2px solid #f1f5f9;
}

.module-icon-large {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: linear-gradient(135deg, #ff6b35, #e54d1d);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    flex-shrink: 0;
    color: #fff;
}

.module-icon-large .fa {
    color: #fff;
}

.module-title-area {
    flex: 1;
}

.module-title-area h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-weight: 700;
}

.module-subtitle {
    color: #4b5563;
    font-size: 16px;
}

.module-link-btn {
    background: linear-gradient(135deg, #ff6b35, #e54d1d);
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: none;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    text-decoration: none;
}

.module-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255, 107, 53, 0.4);
    color: #fff;
}

.module-link-btn i {
    transition: none;
}

.module-link-btn:hover i {
    transform: translateX(4px);
}

/* 服务分类网格 */
.module-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 36px;
}

.service-category h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-category h4 i {
    color: #ff6b35;
    font-size: 18px;
}

.service-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-links a {
    display: inline-block;
    background: #f8fafc;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 15px;
    color: #334155;
    transition: none;
    border: 1px solid transparent;
}

.service-links a:hover {
    background: #fff;
    color: #ff6b35;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.12);
}

/* 统计数据条 */
.module-stats-bar {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, #fff5f0 0%, #fff0eb 100%);
    padding: 24px 40px;
    border-radius: 14px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.module-stats-bar .stat-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.module-stats-bar .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 107, 53, 0.15);
}

.module-stats-bar .stat-item strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 4px;
}

.module-stats-bar .stat-item span {
    font-size: 14px;
    color: #4b5563;
}

/* 快速导航 */
.quick-nav-section {
    padding: 60px 0;
    background: #fff;
}

.quick-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    justify-content: center;
}

.service-tag-cloud {
    background: #f1f5f9;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 15px;
    color: #334155;
    transition: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-tag-cloud .fa {
    font-size: 14px;
    color: var(--primary-color);
    transition: none;
}

.service-tag-cloud:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-2px);
}

.service-tag-cloud:hover .fa {
    color: #fff;
}

/* =========================================
   官网动态区
========================================= */
.content-section {
    padding: 50px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 10px;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
}

.section-header p {
    font-size: 16px;
    color: #4b5563;
}

.content-tabs {
    margin-top: 30px;
}

.content-tab-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.content-tab-item {
    background: #f1f5f9;
    color: #64748b;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: none;
    font-weight: 500;
    font-size: 14px;
}

.content-tab-item:hover {
    background: #e2e8f0;
    color: #475569;
}

.content-tab-item.active {
    background: #ff6b35;
    color: #fff;
    font-weight: 600;
}

.content-pane {
    display: none;
}

.content-pane.active {
    display: block;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.content-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: none;
    border: 1px solid #e2e8f0;
}

.content-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: #ff6b35;
}

.content-image {
    height: 180px;
    overflow: hidden;
    background: #f1f5f9;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.content-item:hover .content-image img {
    transform: scale(1.05);
}

.content-info {
    padding: 20px;
}

.content-info h4 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.5;
    font-weight: 500;
}

.content-info h4 a {
    color: #0f172a;
    -webkit-font-smoothing: antialiased;
}

.content-info h4 a:hover {
    color: #ff6b35;
}

.content-info p {
    color: #4b5563;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-meta {
    display: flex;
    justify-content: space-between;
    color: #6b7280;
    font-size: 12px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.btn-more {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 32px;
    transition: none;
}

.btn-more:hover {
    background: #e54d1d;
    color: #fff;
    transform: translateY(-2px);
}

/* =========================================
   企业百科区
========================================= */
.news-section {
    padding: 70px 0;
    background: #f8fafc;
}

.news-tabs {
    max-width: 1400px;
    margin: 0 auto;
}

.news-tab-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.news-tab-item {
    background: #fff;
    color: #334155;
    padding: 10px 20px;
    border-radius: 24px;
    cursor: pointer;
    transition: none;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #e2e8f0;
}

.news-tab-item:hover,
.news-tab-item.active {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

.news-pane {
    display: none;
}

.news-pane.active {
    display: block;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.news-item {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: none;
    border: 1px solid #e2e8f0;
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: #ff6b35;
}

.news-date-wrapper {
    display: none;
}

.news-info h4 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.5;
    font-weight: 500;
}

.news-info h4 a {
    color: #0f172a;
    -webkit-font-smoothing: antialiased;
}

.news-info h4 a:hover {
    color: #ff6b35;
}

.news-info p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================
   联系咨询区
========================================= */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #e54d1d 100%);
    color: #fff;
    text-align: center;
}

.contact-box {
    margin-bottom: 32px;
}

.contact-box h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-box p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}

.btn-contact {
    display: inline-block;
    background: #fff;
    color: #e54d1d;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: #d94520;
}

.service-features-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.service-features-bottom .feature-item {
    text-align: center;
    padding: 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}

.service-features-bottom .feature-item i {
    font-size: 28px;
    color: #fff;
    margin-bottom: 8px;
    display: block;
}

.service-features-bottom .feature-item span {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

/* =========================================
   底部 - 简洁深色设计
========================================= */
.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.footer-column h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #cbd5e1;
    font-size: 13px;
}

.footer-column ul li a:hover {
    color: #ff8c5a;
}

.footer-column ul li i {
    margin-right: 10px;
    color: #ff8c5a;
    font-size: 16px;
    width: 20px;
    text-align: center;
    display: inline-block;
}

/* 联系我们列表特殊样式 */
.footer-column .contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #cbd5e1;
}

.footer-column .contact-list li i {
    font-size: 18px;
    margin-right: 12px;
    width: 22px;
    text-align: center;
}

.footer-column .contact-list li i.fa-phone-square {
    color: #4ade80;
}

.footer-column .contact-list li i.fa-qq {
    color: #3b82f6;
}

.footer-column .contact-list li i.fa-weixin {
    color: #22c55e;
}

.footer-column .contact-list li i.fa-envelope-o {
    color: #f59e0b;
}

.footer-column .contact-list li i.fa-map-marker {
    color: #ef4444;
}

.footer-logo {
    text-align: center;
}

.footer-logo .site-logo {
    max-height: 50px;
    margin-bottom: 12px;
}

.footer-logo .site-description {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.friend-links {
    margin-bottom: 16px;
}

.links-title {
    color: #ff8c5a;
    font-size: 13px;
    font-weight: 500;
}

.links-content a {
    color: #cbd5e1;
    font-size: 13px;
    margin-right: 16px;
}

.links-content a:hover {
    color: #ff8c5a;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright-info p {
    color: #9ca3af;
    font-size: 12px;
    margin-bottom: 4px;
}

.copyright-info a {
    color: #9ca3af;
}

.copyright-info a:hover {
    color: #ff8c5a;
}

.copyright-info .separator {
    margin: 0 8px;
    color: #9ca3af;
}

.beian-icon {
    height: 14px;
    width: 14px;
    margin: 0 4px;
    vertical-align: middle;
}

/* =========================================
   响应式设计
========================================= */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .hero-container {
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    .module-content {
        grid-template-columns: 1fr 280px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .module-content {
        grid-template-columns: 1fr;
    }
    
    .module-visual {
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }
    
    .service-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* 头部手机端 */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .header-wrapper {
        /* 头部样式已移至 header.css */
    }
    
    /* Hero手机端 - 精简美化版 */
    .hero-section {
        padding: 40px 0 50px;
        min-height: auto;
        background: linear-gradient(160deg, #e54d1d 0%, #ff6b35 40%, #ff8c5a 100%);
    }
    
    .hero-container {
        padding: 0 20px;
        gap: 0;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 26px;
        margin-bottom: 14px;
        line-height: 1.35;
        letter-spacing: 0;
    }
    
    .hero-content .highlight {
        display: block;
        font-size: 28px;
        margin-top: 6px;
        color: #fff;
        text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    .hero-content .hero-desc {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
        color: rgba(255,255,255,0.9);
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-tags {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-bottom: 24px;
        flex-wrap: wrap;
    }
    
    .hero-tag {
        font-size: 12px;
        padding: 6px 12px;
        background: rgba(255,255,255,0.15);
        border-radius: 20px;
        backdrop-filter: blur(4px);
    }
    
    .hero-tag i {
        font-size: 10px;
    }
    
    .hero-actions {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    
    .btn-primary-new {
        background: #fff;
        color: #e54d1d;
        padding: 12px 24px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 25px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    }
    
    .btn-outline-new {
        background: transparent;
        color: #fff;
        padding: 12px 20px;
        font-size: 14px;
        border: 2px solid rgba(255,255,255,0.5);
        border-radius: 25px;
    }
    
    /* 手机端隐藏企业成长路径卡片 */
    .hero-visual {
        display: none;
    }
    
    /* 服务模块手机端 */
    .services-section-new {
        padding: 60px 0;
    }
    
    .section-header-new h2 {
        font-size: 28px;
    }
    
    .section-header-new p {
        font-size: 15px;
    }
    
    .service-module-card {
        padding: 28px;
    }
    
    .module-header-new {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .module-icon-large {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    
    .module-title-area h3 {
        font-size: 22px;
    }
    
    .module-link-btn {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }
    
    .module-services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .service-category h4 {
        font-size: 17px;
    }
    
    .service-links a {
        font-size: 14px;
        padding: 8px 14px;
    }
    
    .module-stats-bar {
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px;
    }
    
    .module-stats-bar .stat-item {
        flex: 0 0 calc(50% - 8px);
    }
    
    .module-stats-bar .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .module-stats-bar .stat-item strong {
        font-size: 24px;
    }
    
    /* 快速导航手机端 */
    .quick-nav-section {
        padding: 40px 0;
    }
    
    .tag-cloud {
        gap: 8px;
    }
    
    .service-tag-cloud {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    /* 内容区手机端 */
    .content-section,
    .news-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .content-tab-list,
    .news-tab-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 8px;
        padding: 12px 0;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .content-tab-list::-webkit-scrollbar,
    .news-tab-list::-webkit-scrollbar {
        display: none;
    }
    
    .content-tab-item,
    .news-tab-item {
        flex-shrink: 0;
        padding: 6px 14px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .content-item {
        display: flex;
        flex-direction: row;
    }
    
    .content-image {
        flex: 0 0 100px;
        height: 100px;
    }
    
    .content-info {
        padding: 12px;
    }
    
    .content-info h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .content-info p {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
    
    .content-meta {
        display: none;
    }
    
    .news-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .news-item {
        padding: 20px;
    }
    
    .news-info h4 {
        font-size: 15px;
    }
    
    .news-info p {
        font-size: 13px;
    }
    
    .btn-more {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    /* 联系区手机端 */
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-box h2 {
        font-size: 20px;
    }
    
    .contact-box p {
        font-size: 14px;
    }
    
    .btn-contact {
        padding: 12px 32px;
        font-size: 14px;
    }
    
    .service-features-bottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .service-features-bottom .feature-item {
        padding: 12px;
    }
    
    .service-features-bottom .feature-item i {
        font-size: 22px;
    }
    
    .service-features-bottom .feature-item span {
        font-size: 12px;
    }
    
    /* 底部手机端 */
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-content,
    .footer-links-section,
    .friend-links {
        display: none;
    }
    
    .copyright {
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .copyright-info p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 35px 0 45px;
    }
    
    .hero-container {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .hero-content .highlight {
        font-size: 24px;
    }
    
    .hero-content .hero-desc {
        font-size: 13px;
        max-width: 280px;
    }
    
    .hero-tags {
        gap: 5px;
        margin-bottom: 20px;
    }
    
    .hero-tag {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .hero-actions {
        flex-direction: row;
        gap: 10px;
    }
    
    .btn-primary-new {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .btn-outline-new {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .hero-card {
        padding: 22px;
    }
    
    .hero-card h3 {
        font-size: 16px;
    }
    
    .path-item {
        font-size: 13px;
        gap: 12px;
    }
    
    .path-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .path-text strong {
        font-size: 14px;
    }
    
    .path-text span {
        font-size: 12px;
    }
    
    .module-icon-large {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .module-title-area h3 {
        font-size: 20px;
    }
    
    .module-stats-bar .stat-item strong {
        font-size: 20px;
    }
    
    .service-tag-cloud {
        padding: 6px 12px;
        font-size: 12px;
    }
}
