/* 响应式样式 */
/* ========================================
DWE模型图片 - 桌面端样式
======================================== */
.dwe-model-img {
width: 100%;
max-width: 500px;
border-radius: var(--radius-lg);
display: block;
}
/* ========================================
基础响应式设置
======================================== */
html {
font-size: 16px;
}
@media (max-width: 768px) {
html {
font-size: 15px;
}
/* 移动端Hero标题放大 */
.mobile-hero-text {
font-size: 2rem !important;
display: inline !important;
}
.mobile-hero-highlight {
font-size: 1.8rem !important;
display: inline !important;
}
}
@media (max-width: 480px) {
html {
font-size: 14px;
}
}
/* ========================================
Container - 修复溢出问题
======================================== */
.container {
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: 0 1.5rem;
box-sizing: border-box;
}
@media (max-width: 768px) {
.container {
padding: 0 1rem;
}
}
.container-narrow {
max-width: 960px;
}
.container-wide {
max-width: 1440px;
}
/* ========================================
Header & Navigation - 移动端适配
======================================== */
.header {
background: rgba(255, 255, 255, 0.98);
overflow: hidden;
}
@media (max-width: 768px) {
.header {
height: auto;
min-height: 60px;
padding: 0.75rem 0;
}
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
max-width: 1280px;
margin: 0 auto;
padding: 0 1.5rem;
}
@media (max-width: 768px) {
.header-inner {
padding: 0 1rem;
}
}
.logo {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 1.125rem;
font-weight: 700;
color: var(--color-text);
text-decoration: none;
flex-shrink: 0;
white-space: nowrap;
}
.logo-icon {
width: 32px;
height: 32px;
flex-shrink: 0;
}
/* 桌面端导航 */
.nav {
display: flex;
align-items: center;
gap: 2rem;
}
.nav-list {
display: flex;
align-items: center;
gap: 0.25rem;
list-style: none;
flex-wrap: nowrap;
}
.nav-link {
display: flex;
align-items: center;
padding: 0.5rem 0.75rem;
font-weight: 500;
color: var(--color-text);
text-decoration: none;
border-radius: var(--radius-md);
transition: all 0.2s;
font-size: 0.875rem;
white-space: nowrap;
}
.nav-link:hover {
color: var(--color-primary);
background: rgba(0, 82, 217, 0.05);
}
/* 导航下拉菜单 */
.nav-dropdown {
position: relative;
}
.nav-dropdown-menu {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
min-width: 180px;
background: var(--color-white);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
padding: 0.5rem;
opacity: 0;
visibility: hidden;
transition: all 0.2s;
z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
opacity: 1;
visibility: visible;
}
.nav-dropdown-item {
display: block;
padding: 0.625rem 1rem;
color: var(--color-text-secondary);
text-decoration: none;
border-radius: var(--radius-md);
font-size: 0.8125rem;
transition: all 0.2s;
white-space: nowrap;
}
.nav-dropdown-item:hover {
color: var(--color-primary);
background: rgba(0, 82, 217, 0.05);
}
/* 移动端菜单按钮 */
.mobile-menu-btn {
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 0;
flex-shrink: 0;
}
.mobile-menu-btn span {
display: block;
width: 22px;
height: 2px;
background: var(--color-text);
transition: all 0.3s;
border-radius: 2px;
}
.mobile-menu-btn.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}
/* 移动端导航 */
.mobile-nav {
display: none;
position: fixed;
top: 60px;
left: 0;
right: 0;
bottom: 0;
background: var(--color-white);
padding: 1rem;
overflow-y: auto;
z-index: 999;
box-sizing: border-box;
}
.mobile-nav.active {
display: block;
}
.mobile-nav-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.mobile-nav-link {
display: block;
padding: 1rem;
font-size: 1rem;
font-weight: 500;
color: var(--color-text);
text-decoration: none;
border-radius: var(--radius-md);
transition: all 0.2s;
box-sizing: border-box;
overflow: hidden;
text-overflow: ellipsis;
}
.mobile-nav-link:hover {
background: var(--color-bg);
color: var(--color-primary);
}
/* ========================================
Hero Section - 移动端优化
======================================== */
.hero {
padding: calc(70px + 3rem) 0 3rem;
min-height: auto;
position: relative;
overflow: hidden;
}
@media (max-width: 768px) {
.hero {
padding: calc(60px + 2rem) 0 2rem;
}
/* DWE模型图片 - 移动端样式 */
.dwe-model-img {
width: 100%;
border-radius: var(--radius-lg);
margin-top: 1.5rem;
order: -1;
}
}
.hero-content {
max-width: 100%;
text-align: center;
margin: 0 auto;
padding: 0;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.375rem 0.875rem;
background: rgba(0, 82, 217, 0.1);
color: var(--color-primary);
border-radius: 9999px;
font-size: 0.8125rem;
font-weight: 500;
margin-bottom: 1.25rem;
box-sizing: border-box;
overflow: hidden;
}
.hero-title {
font-size: clamp(1.75rem, 5vw, 3rem);
font-weight: 700;
line-height: 1.25;
margin-bottom: 1.25rem;
padding: 0 0.5rem;
box-sizing: border-box;
}
.hero-title .highlight {
color: var(--color-primary);
display: inline;
}
.hero-subtitle {
font-size: 1rem;
color: var(--color-text-secondary);
margin-bottom: 1.5rem;
line-height: 1.7;
padding: 0 0.5rem;
box-sizing: border-box;
}
@media (max-width: 768px) {
.hero-subtitle br {
display: none;
}
}
.hero-actions {
display: flex;
justify-content: center;
gap: 0.75rem;
flex-wrap: wrap;
margin-bottom: 2rem;
padding: 0 0.5rem;
box-sizing: border-box;
}
.hero-actions .btn {
flex: 1;
max-width: 200px;
min-width: 140px;
padding: 0.75rem 1rem;
font-size: 0.9375rem;
box-sizing: border-box;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
@media (max-width: 480px) {
.hero-actions {
flex-direction: column;
align-items: center;
}
.hero-actions .btn {
width: 100%;
max-width: 280px;
}
}
.hero-stats {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
padding: 1.5rem 0.5rem 0;
border-top: 1px solid var(--color-border);
box-sizing: border-box;
}
.hero-stat {
text-align: center;
flex: 1;
min-width: 80px;
max-width: 120px;
}
.hero-stat-value {
font-size: clamp(1.5rem, 4vw, 2rem);
font-weight: 700;
color: var(--color-primary);
margin-bottom: 0.25rem;
}
.hero-stat-label {
font-size: 0.75rem;
color: var(--color-text-muted);
}
/* ========================================
Sections
======================================== */
.section {
padding: 3rem 0;
box-sizing: border-box;
overflow: hidden;
}
.section-lg {
padding: 4rem 0;
box-sizing: border-box;
overflow: hidden;
}
@media (max-width: 768px) {
.section {
padding: 2.5rem 0;
}
.section-lg {
padding: 3rem 0;
}
}
.section-header {
text-align: center;
max-width: 700px;
margin: 0 auto 2.5rem;
padding: 0 1rem;
box-sizing: border-box;
}
@media (max-width: 768px) {
.section-header {
margin-bottom: 2rem;
}
.section-header .section-title {
font-size: 1.5rem;
line-height: 1.3;
}
.section-header .section-subtitle {
font-size: 0.875rem;
line-height: 1.5;
margin-top: 0.75rem;
}
}
.section-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.375rem 1rem;
background: rgba(0, 82, 217, 0.1);
color: var(--color-primary);
border-radius: 9999px;
font-size: 0.8125rem;
font-weight: 500;
margin-bottom: 1rem;
box-sizing: border-box;
overflow: hidden;
}
.section-title {
font-size: clamp(1.5rem, 4vw, 2rem);
margin-bottom: 0.75rem;
line-height: 1.3;
}
.section-subtitle {
font-size: 1rem;
color: var(--color-text-secondary);
line-height: 1.6;
}
/* ========================================
Features Grid
======================================== */
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
box-sizing: border-box;
}
@media (max-width: 1024px) {
.features-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 640px) {
.features-grid {
grid-template-columns: 1fr;
gap: 1rem;
}
}
/* ========================================
Cards - 修复溢出问题
======================================== */
.card {
background: var(--color-white);
border-radius: var(--radius-lg);
padding: 1.5rem;
box-shadow: var(--shadow-sm);
border: 1px solid var(--color-border);
transition: all 0.2s;
box-sizing: border-box;
overflow: hidden;
word-wrap: break-word;
}
@media (max-width: 768px) {
.card {
padding: 1.25rem;
}
}
.card:hover {
box-shadow: var(--shadow-md);
transform: translateY(-2px);
}
.card-title {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 0.5rem;
line-height: 1.4;
word-wrap: break-word;
}
.card-text {
font-size: 0.9375rem;
color: var(--color-text-secondary);
line-height: 1.6;
word-wrap: break-word;
overflow-wrap: break-word;
}
/* 特性卡片 */
.feature-card {
text-align: left;
}
.feature-icon {
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 82, 217, 0.1);
border-radius: var(--radius-md);
margin-bottom: 1rem;
color: var(--color-primary);
flex-shrink: 0;
}
.feature-icon svg {
width: 24px;
height: 24px;
}
.feature-title {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--color-text);
}
.feature-desc {
font-size: 0.875rem;
color: var(--color-text-secondary);
line-height: 1.6;
margin: 0;
word-wrap: break-word;
overflow-wrap: break-word;
}
/* ========================================
Buttons - 移动端优化
======================================== */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 0.625rem 1.25rem;
font-weight: 500;
font-size: 0.9375rem;
border-radius: var(--radius-md);
transition: all 0.2s;
cursor: pointer;
border: none;
text-decoration: none;
white-space: nowrap;
box-sizing: border-box;
overflow: hidden;
text-overflow: ellipsis;
}
.btn-lg {
padding: 0.75rem 1.5rem;
font-size: 1rem;
}
.btn-sm {
padding: 0.375rem 0.875rem;
font-size: 0.8125rem;
}
@media (max-width: 480px) {
.btn {
padding: 0.625rem 1rem;
font-size: 0.875rem;
}
.btn-lg {
padding: 0.625rem 1.25rem;
font-size: 0.9375rem;
}
}
/* ========================================
Solution Cards
======================================== */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: start;
}

/* 关键修复 1：统一顶部对齐 */
.solution-grid .card > div {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;   /* ← 加上这行，4 个卡片全部顶部对齐 */
}

/* 关键修复 2：图标固定不收缩 */
.solution-grid .card > div > *:first-child {
  flex-shrink: 0;
}

/* 关键修复 3：文字区域统一填充剩余宽度 */
.solution-grid .card > div > div:last-child {
  flex: 1;
  min-width: 0;              /* ← 防止文字过长撑开布局 */
}

/* 这行可以删掉，已经合并到上面 */
/* .solution-grid .card.align-top > div { align-items: flex-start; } */

@media (max-width: 768px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.solution-card {
padding: 1.5rem;
border-radius: var(--radius-lg);
background: var(--color-white);
border: 1px solid var(--color-border);
box-sizing: border-box;
overflow: hidden;
}
@media (max-width: 768px) {
.solution-card {
padding: 1.25rem;
}
}
.solution-card-header {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1rem;
box-sizing: border-box;
}
.solution-card-icon {
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 82, 217, 0.1);
border-radius: var(--radius-md);
color: var(--color-primary);
flex-shrink: 0;
}
.solution-card-icon svg {
width: 24px;
height: 24px;
}
.solution-card-title {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 0.25rem;
color: var(--color-text);
}
.solution-card-subtitle {
font-size: 0.8125rem;
color: var(--color-text-muted);
}
.solution-card-desc {
font-size: 0.9375rem;
color: var(--color-text-secondary);
line-height: 1.6;
margin: 0 0 1rem;
word-wrap: break-word;
}
.solution-card-list {
display: flex;
flex-direction: column;
gap: 0.5rem;
margin: 0;
padding-left: 0;
list-style: none;
}
.solution-card-list li {
font-size: 0.875rem;
color: var(--color-text-secondary);
padding-left: 1.25rem;
position: relative;
word-wrap: break-word;
}
.solution-card-list li::before {
content: '';
position: absolute;
left: 0;
top: 0.5em;
width: 6px;
height: 6px;
background: var(--color-primary);
border-radius: 50%;
}
/* ========================================
Case Cards
======================================== */
.case-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1.5rem;
}
@media (max-width: 640px) {
.case-grid {
grid-template-columns: 1fr;
gap: 1rem;
}
}
.case-card {
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
aspect-ratio: 4/3;
box-sizing: border-box;
}
.case-card-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
transition: transform 0.3s;
}
.case-card:hover .case-card-bg {
transform: scale(1.05);
}
.case-card-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 1.25rem;
color: white;
box-sizing: border-box;
}
.case-card-tag {
display: inline-block;
padding: 0.25rem 0.625rem;
background: var(--color-primary);
border-radius: 9999px;
font-size: 0.6875rem;
margin-bottom: 0.5rem;
width: fit-content;
box-sizing: border-box;
}
.case-card-title {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 0.25rem;
word-wrap: break-word;
}
.case-card-industry {
font-size: 0.8125rem;
opacity: 0.85;
}
/* ========================================
Tabs - 移动端优化
======================================== */
.tabs {
margin-bottom: 2rem;
}
@media (max-width: 768px) {
.tabs {
margin-bottom: 1.5rem;
}
.tabs-nav {
display: flex;
justify-content: center;
gap: 1rem !important;
flex-wrap: wrap;
margin-bottom: 1.5rem;
padding: 0;
box-sizing: border-box;
overflow: visible !important;
}
.tab-btn {
flex: 1;
min-width: calc(50% - 0.5rem);
padding: 0.875rem 0.75rem !important;
font-weight: 500;
font-size: 0.8125rem !important;
color: var(--color-text-secondary);
background: var(--color-white) !important;
border: none !important;
border-radius: var(--radius-lg) !important;
cursor: pointer;
transition: all 0.25s ease;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
text-align: center;
box-sizing: border-box;
}
.tab-btn:hover {
border-color: transparent;
color: var(--color-primary);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.tab-btn.active {
background: var(--color-primary) !important;
color: white !important;
border-color: var(--color-primary) !important;
box-shadow: 0 4px 12px rgba(0, 82, 217, 0.3) !important;
}
/* 移动端滚动条隐藏 */
html {
overflow-x: hidden;
}
body {
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
}
/* 隐藏滚动条但保持滚动功能 */
::-webkit-scrollbar {
display: none !important;
width: 0 !important;
height: 0 !important;
}
* {
scrollbar-width: none !important;
-ms-overflow-style: none !important;
}
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
}
/* ========================================
News Section
======================================== */
.news-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1.5rem;
}
@media (max-width: 640px) {
.news-grid {
grid-template-columns: 1fr;
gap: 1rem;
}
}
.news-card {
display: flex;
flex-direction: column;
background: var(--color-white);
border-radius: var(--radius-lg);
overflow: hidden;
border: 1px solid var(--color-border);
transition: all 0.2s;
box-sizing: border-box;
}
.news-card:hover {
box-shadow: var(--shadow-md);
transform: translateY(-2px);
}
.news-card-image {
aspect-ratio: 16/10;
background: var(--color-bg);
display: flex;
align-items: center;
justify-content: center;
color: var(--color-text-muted);
font-size: 0.875rem;
overflow: hidden;
}
.news-card-body {
padding: 1rem;
flex: 1;
display: flex;
flex-direction: column;
box-sizing: border-box;
overflow: hidden;
}
.news-card-meta {
display: flex;
gap: 0.75rem;
font-size: 0.75rem;
color: var(--color-text-muted);
margin-bottom: 0.5rem;
box-sizing: border-box;
flex-wrap: wrap;
}
.news-card-category {
color: var(--color-primary);
font-weight: 500;
}
.news-card-title {
font-size: 1rem;
font-weight: 600;
margin-bottom: 0.5rem;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
line-height: 1.4;
color: var(--color-text);
text-decoration: none;
}
.news-card-title:hover {
color: var(--color-primary);
}
.news-card-excerpt {
font-size: 0.875rem;
color: var(--color-text-secondary);
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
line-height: 1.6;
margin: 0;
}
/* ========================================
CTA Section
======================================== */
.cta-section {
background: linear-gradient(135deg, #005ED3 0%, #009985 100%);
color: white;
padding: 4rem 0;
box-sizing: border-box;
overflow: hidden;
}
@media (max-width: 768px) {
.cta-section {
padding: 2.5rem 0;
}
}
.cta-content {
text-align: center;
max-width: 600px;
margin: 0 auto;
padding: 0 1rem;
box-sizing: border-box;
}
.cta-title {
font-size: clamp(1.5rem, 4vw, 2rem);
margin-bottom: 1rem;
color: white;
}
.cta-desc {
font-size: 1rem;
opacity: 0.9;
margin-bottom: 1.5rem;
line-height: 1.6;
}
/* ========================================
Footer
======================================== */
.footer {
background: var(--color-text);
color: rgba(255, 255, 255, 0.8);
padding: 3rem 0 1.5rem;
box-sizing: border-box;
overflow: hidden;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
padding: 0 1rem;
box-sizing: border-box;
}
@media (max-width: 768px) {
.footer-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
}
.footer-brand {
grid-column: 1 / -1;
}
@media (min-width: 768px) {
.footer-brand {
grid-column: span 1;
}
}
.footer-logo {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 1.125rem;
font-weight: 700;
color: white;
margin-bottom: 0.75rem;
}
.footer-desc {
font-size: 0.8125rem;
line-height: 1.6;
margin-bottom: 1rem;
word-wrap: break-word;
}
.footer-title {
font-size: 0.9375rem;
font-weight: 600;
color: white;
margin-bottom: 0.75rem;
}
.footer-links {
display: flex;
flex-direction: column;
gap: 0.375rem;
}
.footer-link {
font-size: 0.8125rem;
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: color 0.2s;
word-wrap: break-word;
}
.footer-link:hover {
color: white;
}
.footer-bottom {
padding: 1.5rem 1rem 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
text-align: center;
box-sizing: border-box;
}
.footer-bottom p {
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.5);
margin: 0;
line-height: 1.8;
}
/* ========================================
Insight Cards - 首页洞察模块
======================================== */
.insight-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}
@media (max-width: 768px) {
.insight-grid {
grid-template-columns: 1fr;
gap: 1rem;
}
}
.insight-card {
background: var(--color-white);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
padding: 1.5rem;
box-sizing: border-box;
overflow: hidden;
transition: all 0.2s;
}
.insight-card:hover {
box-shadow: var(--shadow-md);
transform: translateY(-2px);
}
.insight-card.featured {
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
color: white;
border: none;
}
.insight-card.featured .insight-card-title,
.insight-card.featured .insight-card-desc {
color: white;
}
.insight-card.featured .insight-card-tag {
background: rgba(255,255,255,0.2);
color: white;
}
.insight-card-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 0.75rem;
box-sizing: border-box;
}
.insight-card-tag {
display: inline-block;
padding: 0.25rem 0.625rem;
background: rgba(0, 82, 217, 0.1);
color: var(--color-primary);
border-radius: 9999px;
font-size: 0.6875rem;
font-weight: 500;
box-sizing: border-box;
}
.insight-card-title {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--color-text);
line-height: 1.4;
word-wrap: break-word;
}
.insight-card-desc {
font-size: 0.875rem;
color: var(--color-text-secondary);
line-height: 1.6;
margin: 0;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
word-wrap: break-word;
}
/* ========================================
Section Header Custom - 解决方案部分
======================================== */
.section-header-custom {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 2rem;
flex-wrap: wrap;
gap: 1rem;
box-sizing: border-box;
padding: 0 1rem;
}
@media (max-width: 768px) {
.section-header-custom {
flex-direction: column;
align-items: flex-start;
padding: 0;
}
}
.section-header-left h2 {
font-size: clamp(1.5rem, 3vw, 1.75rem);
margin-bottom: 0.25rem;
}
.section-header-left p {
font-size: 0.9375rem;
color: var(--color-text-secondary);
margin: 0;
}
.section-header-right {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
}
@media (max-width: 768px) {
.section-header-right {
width: 100%;
}
.section-header-right .btn {
flex: 1;
}
}
/* ========================================
Filter Buttons - 案例筛选
======================================== */
.filter-buttons {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
margin-bottom: 1.5rem;
box-sizing: border-box;
padding: 0 1rem;
}
/* ========================================
Article Page
======================================== */
.article-header {
padding: calc(80px + 2rem) 0 2rem;
text-align: center;
background: var(--color-bg);
box-sizing: border-box;
overflow: hidden;
}
/* 当有面包屑导航时，article-header需补偿fixed面包屑占用的空间 */
.article-breadcrumb + .article-header {
padding-top: calc(var(--header-height, 80px) + 48px + 2rem);
}
@media (max-width: 768px) {
.article-header {
padding: calc(60px + 1.5rem) 0 1.5rem;
}
.article-breadcrumb + .article-header {
padding-top: calc(60px + 40px + 1.5rem);
}
}
.article-category {
display: inline-block;
padding: 0.375rem 1rem;
background: var(--color-primary);
color: white;
border-radius: 9999px;
font-size: 0.75rem;
font-weight: 500;
margin-bottom: 1rem;
box-sizing: border-box;
}
.article-title {
font-size: clamp(1.5rem, 4vw, 2rem);
margin-bottom: 1rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
padding: 0 1rem;
box-sizing: border-box;
line-height: 1.3;
}
.article-meta {
display: flex;
justify-content: center;
gap: 1rem;
color: var(--color-text-muted);
font-size: 0.8125rem;
flex-wrap: wrap;
padding: 0 1rem;
box-sizing: border-box;
}
.article-content {
max-width: 720px;
margin: 0 auto;
padding: 2rem 1rem;
box-sizing: border-box;
}
.article-content p {
margin-bottom: 1rem;
line-height: 1.8;
word-wrap: break-word;
}
.article-content h2 {
font-size: clamp(1.25rem, 3vw, 1.5rem);
margin: 1.5rem 0 0.75rem;
line-height: 1.4;
}
.article-content h3 {
font-size: clamp(1.125rem, 2.5vw, 1.25rem);
margin: 1.25rem 0 0.5rem;
line-height: 1.4;
}
.article-content ul,
.article-content ol {
margin: 1rem 0 1.25rem 1.25rem;
padding-left: 0;
list-style: none;
}
.article-content li {
margin-bottom: 0.5rem;
line-height: 1.7;
padding-left: 1.25rem;
position: relative;
word-wrap: break-word;
}
.article-content li::before {
content: '';
position: absolute;
left: 0;
top: 0.6em;
width: 6px;
height: 6px;
background: var(--color-primary);
border-radius: 50%;
}
.article-content blockquote {
border-left: 4px solid var(--color-primary);
padding: 1rem 1.5rem;
margin: 1.5rem 0;
color: var(--color-text-secondary);
font-style: italic;
background: var(--color-bg);
border-radius: 0 var(--radius-md) var(--radius-md) 0;
box-sizing: border-box;
}
/* ========================================
Method Page
======================================== */
.method-section {
padding: 3rem 0;
box-sizing: border-box;
overflow: hidden;
}
@media (max-width: 768px) {
.method-section {
padding: 2rem 0;
}
}
.method-section:nth-child(even) {
background: var(--color-bg);
}
.method-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: start;
}
@media (max-width: 768px) {
.method-layout {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.method-layout.reverse {
direction: ltr;
}
}
.method-content {
box-sizing: border-box;
}
.method-content h2 {
font-size: clamp(1.5rem, 3vw, 1.75rem);
margin-bottom: 1rem;
}
.method-content p {
font-size: 0.9375rem;
line-height: 1.7;
margin-bottom: 1rem;
color: var(--color-text-secondary);
}
.method-visual {
background: linear-gradient(135deg, rgba(0, 82, 217, 0.1) 0%, rgba(0, 168, 112, 0.1) 100%);
border-radius: var(--radius-lg);
padding: 2rem;
display: flex;
align-items: center;
justify-content: center;
min-height: 200px;
box-sizing: border-box;
}
/* ========================================
About Page
======================================== */
.about-hero {
padding: calc(80px + 2rem) 0 2rem;
text-align: center;
background: var(--color-bg);
box-sizing: border-box;
}
@media (max-width: 768px) {
.about-hero {
padding: calc(60px + 1.5rem) 0 1.5rem;
}
}
.about-intro {
max-width: 800px;
margin: 0 auto;
padding: 0 1rem;
box-sizing: border-box;
}
.data-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1rem;
}
@media (max-width: 768px) {
.data-grid {
grid-template-columns: repeat(2, 1fr);
gap: 0.75rem;
}
}
.data-card {
text-align: center;
padding: 1rem;
background: var(--color-white);
border-radius: var(--radius-lg);
border: 1px solid var(--color-border);
box-sizing: border-box;
overflow: hidden;
}
.data-value {
font-size: clamp(1.5rem, 4vw, 2rem);
font-weight: 700;
color: var(--color-primary);
margin-bottom: 0.25rem;
}
.data-label {
font-size: 0.75rem;
color: var(--color-text-muted);
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 1.5rem;
}
@media (max-width: 640px) {
.team-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
}
.team-card {
text-align: center;
padding: 1.5rem 1rem;
background: var(--color-white);
border-radius: var(--radius-lg);
border: 1px solid var(--color-border);
box-sizing: border-box;
overflow: hidden;
}
.team-avatar {
width: 80px;
height: 80px;
border-radius: 50%;
margin: 0 auto 1rem;
background: var(--color-bg);
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: var(--color-primary);
}
.team-name {
font-size: 1rem;
font-weight: 600;
margin-bottom: 0.25rem;
}
.team-role {
font-size: 0.8125rem;
color: var(--color-text-muted);
}
/* ========================================
Contact Page
======================================== */
.contact-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
}
@media (max-width: 768px) {
.contact-layout {
grid-template-columns: 1fr;
gap: 2rem;
}
}
.contact-info {
display: flex;
flex-direction: column;
gap: 1.5rem;
padding: 1.5rem;
background: var(--color-bg);
border-radius: var(--radius-lg);
box-sizing: border-box;
}
.contact-item {
display: flex;
gap: 1rem;
box-sizing: border-box;
}
.contact-item-icon {
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
background: var(--color-white);
border-radius: var(--radius-md);
color: var(--color-primary);
flex-shrink: 0;
}
.contact-item-title {
font-weight: 600;
margin-bottom: 0.25rem;
font-size: 0.9375rem;
}
.contact-item-text {
color: var(--color-text-secondary);
font-size: 0.875rem;
line-height: 1.5;
}
/* ========================================
Form Styles
======================================== */
.form-group {
margin-bottom: 1.25rem;
}
.form-label {
display: block;
font-weight: 500;
margin-bottom: 0.5rem;
color: var(--color-text);
font-size: 0.9375rem;
}
.form-input,
.form-textarea,
.form-select {
width: 100%;
padding: 0.75rem 1rem;
border: 1px solid var(--color-border);
border-radius: var(--radius-md);
font-size: 1rem;
transition: all 0.2s;
background: var(--color-white);
box-sizing: border-box;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
outline: none;
border-color: var(--color-primary);
box-shadow: 0 0 0 3px rgba(0, 82, 217, 0.1);
}
.form-textarea {
min-height: 120px;
resize: vertical;
}
.form-row {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
@media (max-width: 640px) {
.form-row {
grid-template-columns: 1fr;
}
}
/* ========================================
Sitemap
======================================== */
.sitemap-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 2rem;
}
@media (max-width: 640px) {
.sitemap-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
}
.sitemap-section h3 {
font-size: 1rem;
margin-bottom: 0.75rem;
color: var(--color-text);
}
.sitemap-links {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.sitemap-links a {
color: var(--color-text-secondary);
font-size: 0.875rem;
text-decoration: none;
transition: color 0.2s;
word-wrap: break-word;
}
.sitemap-links a:hover {
color: var(--color-primary);
}
/* ========================================
Category Tabs - 分类导航
======================================== */
.category-tabs {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
justify-content: center;
}
.category-tab {
display: inline-flex;
align-items: center;
padding: 0.5rem 1rem;
font-weight: 500;
color: var(--color-text-secondary);
text-decoration: none;
border-radius: 9999px;
transition: all 0.2s;
font-size: 0.875rem;
white-space: nowrap;
box-sizing: border-box;
}
.category-tab:hover {
color: var(--color-primary);
background: rgba(0, 82, 217, 0.05);
}
.category-tab.active {
background: var(--color-primary);
color: white;
}
@media (max-width: 640px) {
.category-tabs {
justify-content: center;
flex-wrap: wrap;
overflow: visible;
padding-bottom: 0;
}
.category-tab {
flex-shrink: 0;
font-size: 0.8125rem;
padding: 0.375rem 0.875rem;
}
}
/* ========================================
Utility Classes
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.hidden { display: none; }
.visible-mobile { display: none; }
@media (max-width: 768px) {
.hidden-mobile { display: none; }
.visible-mobile { display: block; }
}
/* ========================================
General Element Overflow Fixes
======================================== */
box-sizing: border-box;
}
body {
min-width: 320px;
overflow-x: hidden;
}
img, svg {
max-width: 100%;
height: auto;
}
/* ========================================
Responsive Overrides - 确保覆盖
======================================== */
/* 大屏幕 */
@media (min-width: 1400px) {
.container {
max-width: 1320px;
}
}
/* 桌面端到平板 */
@media (max-width: 1024px) {
.nav {
gap: 1rem;
}
.nav-link {
padding: 0.5rem 0.625rem;
font-size: 0.8125rem;
}
}
/* 平板到手机 */
@media (max-width: 768px) {
.nav {
display: none;
}
.header .btn:not(.mobile-menu-btn) {
display: none;
}
.mobile-menu-btn {
display: flex;
}
.hero-stats {
gap: 1rem;
}
.section-header {
margin-bottom: 1.5rem;
}
.solution-grid {
grid-template-columns: 1fr;
}
}
/* 仅移动端 */
@media (max-width: 480px) {
.container {
padding: 0 0.875rem;
}
.hero {
padding-top: calc(60px + 1.5rem);
}
.hero-title {
font-size: 1.5rem;
}
.hero-badge {
font-size: 0.75rem;
padding: 0.25rem 0.75rem;
}
.section {
padding: 1.5rem 0;
}
.footer-grid {
grid-template-columns: 1fr;
}
}
/* ========================================
Solution Page Mobile Optimization
======================================== */
/* Strategy Section - Mobile First */
.strategy-header {
text-align: center;
margin-bottom: 1.5rem;
}
.strategy-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
}
.strategy-tagline {
font-size: 1rem;
color: var(--color-primary);
font-weight: 500;
margin-top: 0.75rem;
}
.strategy-intro {
text-align: center;
margin-bottom: 2rem;
}
.strategy-intro p {
color: var(--color-text-secondary);
font-size: 0.9375rem;
line-height: 1.7;
}
/* Strategy Flow Mobile */
.strategy-flow-mobile {
display: flex;
flex-direction: column;
align-items: center;
gap: 0;
margin-bottom: 2rem;
padding: 1.5rem;
background: var(--color-bg);
border-radius: var(--radius-lg);
}
.strategy-flow-step {
display: flex;
align-items: center;
gap: 1rem;
padding: 0.875rem 1rem;
background: var(--color-white);
border-radius: var(--radius-md);
border: 1px solid var(--color-border);
width: 100%;
max-width: 280px;
}
.strategy-flow-step-active {
border-color: var(--color-primary);
box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}
.strategy-flow-icon {
width: 40px;
height: 40px;
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.strategy-flow-content h4 {
font-size: 0.9375rem;
font-weight: 600;
margin-bottom: 0.125rem;
}
.strategy-flow-content p {
font-size: 0.8125rem;
color: var(--color-text-muted);
margin: 0;
}
.strategy-flow-connector {
display: flex;
justify-content: center;
padding: 0.5rem 0;
}
/* Strategy Section Title */
.strategy-section-title {
font-size: 1rem;
font-weight: 600;
margin-bottom: 1rem;
text-align: center;
}
/* Strategy Services Grid */
.strategy-services {
margin-bottom: 2rem;
}
.strategy-services-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 0.75rem;
}
.strategy-service-item {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.875rem;
background: var(--color-bg);
border-radius: var(--radius-md);
font-size: 0.875rem;
}
.strategy-service-item svg {
flex-shrink: 0;
}
/* Strategy Methods */
.strategy-methods-list {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.strategy-method-item {
display: flex;
align-items: flex-start;
gap: 0.75rem;
padding: 1rem;
background: var(--color-bg);
border-radius: var(--radius-md);
}
.strategy-method-num {
width: 28px;
height: 28px;
background: var(--color-primary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 0.875rem;
flex-shrink: 0;
}
.strategy-method-text {
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.strategy-method-text strong {
font-size: 0.9375rem;
}
.strategy-method-text span {
font-size: 0.8125rem;
color: var(--color-text-muted);
}
/* Tab Content Grids */
.seo-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--space-6);
}
.geo-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-8);
}
/* Seeding Platform Grid */
.seeding-platforms {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--space-6);
margin-bottom: var(--space-12);
}
.seeding-platform-card {
text-align: center;
padding: 1.5rem;
background: var(--color-white);
border-radius: var(--radius-lg);
border: 1px solid var(--color-border);
}
.seeding-platform-icon {
width: 64px;
height: 64px;
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto var(--space-4);
}
.seeding-platform-icon svg {
width: 32px;
height: 32px;
}
.seeding-platform-name {
font-weight: 600;
margin-bottom: 0.25rem;
}
.seeding-platform-desc {
font-size: var(--text-sm);
color: var(--color-text-muted);
}
/* Seeding Content Grids */
.seeding-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-8);
}
/* PR Content */
.pr-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-8);
}
/* ========================================
/* ========================================
联系页面 - 左右布局
======================================== */
.contact-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-16);
}
/* ========================================
关于页面 - Mission/Vision 网格
======================================== */
.mission-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--space-8);
}
/* ========================================
方法论页面 - GEO五步法网格
======================================== */
.geo-steps-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: var(--space-6);
position: relative;
}
.geo-step {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
.geo-step-number {
width: 64px;
height: 64px;
background: var(--color-white);
border: 4px solid;
border-radius: var(--radius-full);
margin: 0 auto var(--space-4);
display: flex;
align-items: center;
justify-content: center;
font-size: var(--text-2xl);
font-weight: 700;
position: relative;
z-index: 1;
}
.geo-step-card {
margin-top: var(--space-4);
min-height: 120px !important;
display: flex !important;
flex-direction: column !important;
justify-content: flex-start !important;
}
/* GEO五步法 - 更强选择器 */
.geo-steps-grid h4.geo-step-title {
font-size: 0.75rem !important;
margin-bottom: 2px !important;
white-space: nowrap !important;
font-weight: 600;
line-height: 1.3 !important;
color: var(--color-text) !important;
}
.geo-steps-grid p.geo-step-desc {
font-size: 0.625rem !important;
line-height: 1.4 !important;
white-space: nowrap !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
color: var(--color-text-secondary) !important;
}
/* ========================================
方法论页面移动端适配
======================================== */
@media (max-width: 768px) {
/* GEO五步法 - 改为单列 */
.geo-steps-grid {
grid-template-columns: 1fr !important;
gap: var(--space-6) !important;
}
.geo-step {
display: flex;
flex-direction: column;
align-items: center;
}
.geo-step-number {
width: 48px !important;
height: 48px !important;
font-size: var(--text-lg) !important;
}
.geo-step-card {
width: 100%;
max-width: 300px;
}
.geo-step-title {
font-size: var(--text-sm) !important;
}
}
.method-grid-3 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--space-8);
}
/* ========================================
关于页面 - 我们是谁左右布局
======================================== */
.about-content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-16);
align-items: center;
}
.stats-card {
background: linear-gradient(135deg, rgba(0, 82, 217, 0.05) 0%, rgba(0, 168, 112, 0.05) 100%);
border-radius: var(--radius-xl);
padding: var(--space-8);
}
.stats-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--space-6);
}
/* ========================================
关于页面 - 行业认可奖项网格
======================================== */
.awards-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--space-6);
}
.award-card {
text-align: center;
}
.award-card h4 {
margin-bottom: var(--space-2);
font-size: var(--text-base);
}
.award-card .text-muted {
font-size: var(--text-sm);
}
/* ========================================
关于页面和方法论页面移动端适配
======================================== */
@media (max-width: 768px) {
.mission-grid,
.method-grid-3 {
grid-template-columns: 1fr !important;
gap: var(--space-4) !important;
}
.contact-layout {
grid-template-columns: 1fr !important;
gap: var(--space-8) !important;
}
/* 关于页面 - 我们是谁板块移动端适配 */
.about-content-grid {
grid-template-columns: 1fr !important;
gap: var(--space-8) !important;
}
.about-content-grid .section-title {
text-align: center !important;
}
.stats-card {
padding: var(--space-6) !important;
}
.stats-grid {
grid-template-columns: repeat(2, 1fr) !important;
gap: var(--space-4) !important;
}
.stats-grid [style*="text-5xl"] {
font-size: var(--text-3xl) !important;
}
/* 关于页面 - 我们是谁文字优化 */
.about-content-grid p {
font-size: var(--text-sm) !important;
line-height: 1.7 !important;
text-align: justify !important;
}
/* 关于页面 - 行业认可奖项移动端适配 */
.awards-grid {
grid-template-columns: repeat(2, 1fr) !important;
gap: var(--space-4) !important;
}
.award-card {
padding: var(--space-5) var(--space-3) !important;
}
.award-card h4 {
font-size: var(--text-sm) !important;
margin-bottom: var(--space-1) !important;
}
.award-card .text-muted {
font-size: var(--text-xs) !important;
}
/* 荣誉资质 4列改为2列 */
[style*="grid-template-columns: repeat(4, 1fr)"] {
grid-template-columns: repeat(2, 1fr) !important;
}
}
}
@media (max-width: 768px) {
/* 案例页面筛选按钮容器 */
.filter-wrap {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: var(--space-8);
}
/* 案例页面筛选按钮 */
.filter-btn {
flex: 1;
min-width: calc(50% - 0.25rem);
max-width: calc(50% - 0.25rem);
text-align: center;
padding: 0.5rem 0.5rem !important;
font-size: 0.75rem !important;
white-space: nowrap;
margin: 0;
border-radius: var(--radius-md) !important;
}
/* 案例卡片 - 移动端改为单列 */
.case-grid {
grid-template-columns: 1fr !important;
}
.case-grid > *:first-child {
min-height: 200px;
}
}
/* ========================================
通用移动端 Grid 适配
======================================== */
@media (max-width: 768px) {
/* 案例详情卡片 - 左右布局改为上下布局 */
.case-card[style*="grid-template-columns: 1fr 1fr"] {
grid-template-columns: 1fr !important;
gap: var(--space-4) !important;
}
/* 数据统计 grid - 改为2列 */
[style*="grid-template-columns: repeat(3, 1fr)"],
[style*="grid-template-columns: repeat(2, 1fr)"] {
grid-template-columns: repeat(2, 1fr) !important;
}
/* 关于页面 - Mission/Vision 三列布局改为1列 */
[style*="grid-template-columns: repeat(3, 1fr)"] {
grid-template-columns: 1fr !important;
}
/* 联系我们页面 grid */
.contact-grid {
grid-template-columns: 1fr !important;
}
/* 通用 grid 布局适配 - 1fr 1fr 改为1列 */
section > .container > [style*="grid-template-columns: 1fr 1fr"] {
grid-template-columns: 1fr !important;
}
/* 方法论页面 grid 适配 */
section > .container > [style*="grid-template-columns: repeat(3, 1fr)"] {
grid-template-columns: 1fr !important;
gap: var(--space-4) !important;
}
/* 表格移动端适配 */
table {
font-size: 0.75rem;
display: block;
overflow-x: auto;
}
table th,
table td {
padding: 0.5rem 0.375rem !important;
font-size: 0.75rem;
word-break: break-word;
}
/* 方法论页面卡片内边距 */
.card[style*="padding: var(--space-10)"] {
padding: var(--space-5) !important;
}
/* 方法论页面B/E/T大字圆圈缩小 */
[style*="width: 80px"][style*="height: 80px"] {
width: 60px !important;
height: 60px !important;
font-size: var(--text-2xl) !important;
}
}
/* ========================================
通用移动端 Grid 适配
======================================== */
/* 案例页面 grid 布局移动端适配 */
@media (max-width: 768px) {
/* 案例详情卡片 - 左右布局改为上下布局 */
.case-card[style*="grid-template-columns: 1fr 1fr"] {
grid-template-columns: 1fr !important;
gap: var(--space-4) !important;
}
.case-card[style*="grid-template-columns: 1fr 1fr"] > *:first-child {
min-height: 200px;
}
/* 数据统计 grid - 改为2列 */
[style*="grid-template-columns: repeat(3, 1fr)"],
[style*="grid-template-columns: repeat(2, 1fr)"] {
grid-template-columns: repeat(2, 1fr) !important;
}
/* 关于页面 - Mission/Vision 三列布局改为1列 */
[style*="grid-template-columns: repeat(3, 1fr)"] {
grid-template-columns: 1fr !important;
}
/* 联系我们页面 grid */
.contact-grid,
[style*="grid-template-columns: 1fr 1fr; gap"] {
grid-template-columns: 1fr !important;
}
/* 通用 grid 布局适配 - 1fr 1fr 改为1列 */
section > .container > [style*="grid-template-columns: 1fr 1fr"] {
grid-template-columns: 1fr !important;
}
/* 方法论页面 grid 适配 */
section > .container > [style*="grid-template-columns: repeat(3, 1fr)"] {
grid-template-columns: 1fr !important;
gap: var(--space-4) !important;
}
/* 案例页面筛选按钮 */
.filter-section {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
justify-content: center;
}
.filter-section .btn {
flex: 1;
min-width: calc(50% - 0.5rem);
max-width: calc(50% - 0.25rem);
text-align: center;
padding: 0.5rem 0.75rem;
font-size: 0.8125rem;
margin: 0;
}
/* 表格移动端适配 */
table {
font-size: 0.75rem;
display: block;
overflow-x: auto;
}
table th,
table td {
padding: 0.5rem 0.375rem !important;
font-size: 0.75rem;
word-break: break-word;
}
/* 表格外层容器 */
[style*="overflow-x: auto"] {
margin: 0 -1rem;
padding: 0 1rem;
}
/* 方法论页面卡片内边距 */
.card[style*="padding: var(--space-10)"] {
padding: var(--space-5) !important;
}
/* 方法论页面B/E/T大字圆圈缩小 */
[style*="width: 80px"][style*="height: 80px"] {
width: 60px !important;
height: 60px !important;
font-size: var(--text-2xl) !important;
}
}
border-radius: var(--radius-lg);
margin: 0 auto;
max-width: calc(100% - 2rem);
}
/* Strategy Layout Mobile */
.strategy-content {
order: 2;
}
.strategy-visual {
order: 1;
padding: 1.5rem;
}
.strategy-content h2 {
text-align: center;
}
.strategy-subtitle {
text-align: center;
font-size: 1rem;
}
.strategy-desc {
text-align: center;
}
.strategy-h4 {
text-align: center;
}
.strategy-list {
padding-left: 0;
text-align: center;
}
.strategy-list-item {
justify-content: flex-start;
font-size: 0.9375rem;
}
.strategy-flow {
gap: 0.75rem;
}
.strategy-card {
max-width: 100%;
}
.strategy-arrow svg {
transform: rotate(90deg);
}
/* Tab Navigation Mobile */
.tabs {
display: flex;
flex-direction: column;
gap: 0.5rem;
align-items: stretch;
margin-bottom: 1.5rem;
border: none !important;
overflow: visible !important;
background: transparent;
box-shadow: none;
}
.tabs .tab-btn {
padding: 0.875rem 1rem;
font-size: 0.9375rem;
border: none !important;
border-radius: var(--radius-md) !important;
margin-bottom: 0;
text-align: center;
background: var(--color-white);
white-space: normal;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.tabs .tab-btn:last-child {
border-bottom: none !important;
}
.tabs .tab-btn.active {
background: var(--color-primary);
color: white;
box-shadow: 0 2px 8px rgba(0, 82, 217, 0.3);
}
/* SEO/GEO Grid Mobile - 增加间距 */
.seo-grid {
grid-template-columns: 1fr;
gap: 1.25rem;
}
.seo-grid .card {
text-align: center;
padding: 1.5rem 1.25rem;
margin: 0;
}
.seo-grid .card .feature-title,
.seo-grid .card .feature-desc {
text-align: center;
}
.geo-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.geo-grid > div {
padding: 1.5rem;
background: var(--color-bg);
border-radius: var(--radius-lg);
}
.geo-grid h3,
.geo-grid h4 {
font-size: 1rem;
text-align: center;
}
/* Seeding Platforms Mobile */
.seeding-platforms {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
margin-bottom: 2rem;
}
.seeding-platform-card {
padding: 1rem;
}
.seeding-platform-icon {
width: 48px;
height: 48px;
margin-bottom: 0.75rem;
}
.seeding-platform-icon svg {
width: 24px;
height: 24px;
}
.seeding-platform-name {
font-size: 0.875rem;
}
.seeding-platform-desc {
font-size: 0.75rem;
}
/* Seeding Content Mobile */
.seeding-content {
grid-template-columns: 1fr;
gap: 1rem;
}
.seeding-content .card {
padding: 1.25rem;
}
.seeding-content .card h4 {
text-align: center;
margin-bottom: 1rem;
}
.seeding-content .card ul {
padding-left: 0.5rem;
}
.seeding-content .card ul li {
font-size: 0.875rem;
margin-bottom: 0.5rem;
}
/* PR Content Mobile */
.pr-grid {
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.pr-grid .card {
padding: 1rem;
text-align: center;
}
.pr-grid .card .feature-icon {
margin: 0 auto var(--space-3);
}
.pr-grid .card .feature-title,
.pr-grid .card .feature-desc {
text-align: center;
font-size: 0.875rem;
}
.pr-grid .card .feature-title {
margin-bottom: 0.5rem;
}
/* PR Highlight Mobile */
.pr-highlight {
margin-top: 1.5rem;
}
.pr-highlight-inner {
flex-direction: column;
gap: 1.5rem;
text-align: center;
}
.pr-highlight-icon {
width: 100px;
height: 100px;
}
.pr-highlight-number {
font-size: var(--text-2xl);
}
.pr-highlight-label {
font-size: var(--text-xs);
}
.pr-highlight-content h3 {
font-size: 1.125rem;
}
.pr-highlight-text {
font-size: 0.9375rem;
}
}
@media (max-width: 480px) {
.pr-grid {
grid-template-columns: 1fr 1fr;
gap: 0.75rem;
}
.pr-grid .card {
padding: 0.875rem 0.5rem;
}
.pr-grid .card .feature-icon {
width: 40px;
height: 40px;
}
.pr-grid .card .feature-icon svg {
width: 20px;
height: 20px;
}
.seeding-platforms {
grid-template-columns: 1fr 1fr;
gap: 0.75rem;
}
.seeding-platform-card {
padding: 0.75rem;
}
}
/* ========================================
案例列表移动端适配
======================================== */
@media (max-width: 768px) {
/* 案例卡片 - 单层渐变背景 */
.section-lg .case-card {
padding: var(--space-5) var(--space-4) !important;
margin-bottom: var(--space-4) !important;
max-width: 100% !important;
border-radius: var(--radius-lg) !important;
}
/* 副标题 */
.section-lg .case-card > div > div:first-child {
font-size: 11px !important;
letter-spacing: 1px !important;
margin-bottom: 8px !important;
}
/* 主标题 */
.section-lg .case-card > div > div:nth-child(2) {
font-size: 20px !important;
font-weight: 800 !important;
margin-bottom: 8px !important;
}
/* WICV副标题（第三项） */
.section-lg .case-card > div > div:nth-child(3) {
font-size: 13px !important;
margin-bottom: 10px !important;
}
/* 标签 */
.section-lg .case-card span {
font-size: 11px !important;
padding: 4px 10px !important;
}
/* 数据区域 */
.section-lg .case-card > div > div:nth-child(5) {
gap: var(--space-4) !important;
margin-bottom: 10px !important;
}
.section-lg .case-card > div > div:nth-child(5) > div {
font-size: var(--text-base) !important;
}
.section-lg .case-card > div > div:nth-child(5) > div > div:first-child {
font-size: var(--text-lg) !important;
font-weight: 700 !important;
}
/* 描述文字 */
.section-lg .case-card > div > p {
font-size: 12px !important;
margin-bottom: 10px !important;
opacity: 0.85 !important;
}
/* 按钮 */
.section-lg .case-card .case-cta-btn {
font-size: 12px !important;
padding: 8px 16px !important;
}
}
/* ========================================
首页案例卡片移动端适配
======================================== */
@media (max-width: 768px) {
/* 首页案例卡片 */
.section-lg .card[style*="linear-gradient"] {
padding: var(--space-5) var(--space-4) !important;
}
/* 案例标题 */
.section-lg .card[style*="linear-gradient"] > div > div:nth-child(2) {
font-size: 20px !important;
margin-bottom: 8px !important;
}
/* WICV副标题 */
.section-lg .card[style*="linear-gradient"] > div > div:nth-child(3) {
font-size: 13px !important;
margin-bottom: 10px !important;
}
/* 标签 */
.section-lg .card[style*="linear-gradient"] span {
font-size: 11px !important;
padding: 4px 10px !important;
}
/* 数据区域 */
.section-lg .card[style*="linear-gradient"] > div > div:nth-child(5) {
gap: var(--space-4) !important;
margin-bottom: 12px !important;
}
.section-lg .card[style*="linear-gradient"] > div > div:nth-child(5) > div {
font-size: var(--text-lg) !important;
}
.section-lg .card[style*="linear-gradient"] > div > div:nth-child(5) > div > div:first-child {
font-size: var(--text-xl) !important;
font-weight: 700 !important;
}
/* 按钮 */
.section-lg .card[style*="linear-gradient"] .case-cta-btn {
font-size: 12px !important;
padding: 8px 16px !important;
}
}
/* GEO Section Styles */
.geo-title {
margin-bottom: var(--space-4);
}
.geo-desc {
color: var(--color-text-secondary);
margin-bottom: var(--space-6);
}
.geo-h4 {
margin-bottom: var(--space-3);
}
.geo-powers {
display: flex;
flex-direction: column;
gap: var(--space-3);
}
.geo-power-item {
display: flex;
align-items: center;
gap: var(--space-3);
padding: var(--space-3);
background: var(--color-white);
border-radius: var(--radius-md);
border: 1px solid var(--color-border);
}
.geo-power-num {
width: 32px;
height: 32px;
background: var(--color-primary);
color: white;
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
flex-shrink: 0;
}
.geo-steps {
display: flex;
flex-direction: column;
gap: var(--space-4);
}
.geo-step-item {
display: flex;
gap: var(--space-3);
}
.geo-step-num {
width: 28px;
height: 28px;
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
color: white;
border-radius: var(--radius-full);
display: flex;
align-items: center;
justify-content: center;
font-size: var(--text-sm);
font-weight: 600;
flex-shrink: 0;
}
/* Seeding Section Styles */
.seeding-card-title {
margin-bottom: var(--space-4);
}
.seeding-card-desc {
color: var(--color-text-secondary);
margin-bottom: var(--space-4);
}
.seeding-list {
list-style: none;
}
.seeding-list-item {
display: flex;
align-items: center;
gap: var(--space-2);
margin-bottom: var(--space-2);
}
.seeding-matrix {
display: flex;
flex-direction: column;
gap: var(--space-3);
}
.seeding-matrix-item {
display: flex;
align-items: center;
gap: var(--space-3);
}
.seeding-matrix-label {
width: 60px;
font-weight: 600;
flex-shrink: 0;
}
.seeding-matrix-bar {
flex: 1;
height: 8px;
background: var(--color-bg);
border-radius: var(--radius-full);
overflow: hidden;
}
.seeding-matrix-fill {
height: 100%;
background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}
.seeding-matrix-desc {
font-size: var(--text-sm);
color: var(--color-text-muted);
flex-shrink: 0;
}
/* Tab Content Grids */
.seo-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--space-6);
}
.geo-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-8);
}
/* Seeding Platform Grid */
.seeding-platforms {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--space-6);
margin-bottom: var(--space-12);
}
.seeding-platform-card {
text-align: center;
padding: 1.5rem;
background: var(--color-white);
border-radius: var(--radius-lg);
border: 1px solid var(--color-border);
}
.seeding-platform-icon {
width: 64px;
height: 64px;
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto var(--space-4);
}
.seeding-platform-icon svg {
width: 32px;
height: 32px;
}
.seeding-platform-name {
font-weight: 600;
margin-bottom: 0.25rem;
}
.seeding-platform-desc {
font-size: var(--text-sm);
color: var(--color-text-muted);
}
/* Seeding Content Grids */
.seeding-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-8);
}
/* PR Content */
.pr-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-8);
}
/* PR Section Styles */
.pr-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--space-6);
}
.pr-highlight {
margin-top: var(--space-12);
background: linear-gradient(135deg, rgba(0, 82, 217, 0.05) 0%, rgba(0, 168, 112, 0.05) 100%);
}
.pr-highlight-inner {
display: flex;
align-items: center;
gap: var(--space-8);
}
.pr-highlight-icon {
flex-shrink: 0;
width: 120px;
height: 120px;
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
border-radius: var(--radius-xl);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: white;
}
.pr-highlight-number {
font-size: var(--text-4xl);
font-weight: 700;
}
.pr-highlight-label {
font-size: var(--text-sm);
}
.pr-highlight-content h3 {
margin-bottom: var(--space-2);
}
.pr-highlight-text {
color: var(--color-text-secondary);
margin-bottom: var(--space-4);
}
.pr-highlight-text:last-child {
margin-bottom: 0;
}
@media (max-width: 768px) {
/* Strategy Layout Mobile */
.strategy-layout {
grid-template-columns: 1fr;
gap: 2rem;
}
.strategy-content {
order: 2;
}
.strategy-visual {
order: 1;
padding: 1.5rem;
}
.strategy-content h2 {
text-align: center;
}
.strategy-subtitle {
text-align: center;
font-size: 1rem;
}
.strategy-desc {
text-align: center;
}
.strategy-h4 {
text-align: center;
}
.strategy-list {
padding-left: 0;
text-align: center;
}
.strategy-list-item {
justify-content: flex-start;
font-size: 0.9375rem;
}
.strategy-flow {
gap: 0.75rem;
}
.strategy-card {
max-width: 100%;
}
.strategy-arrow svg {
transform: rotate(90deg);
}
/* Tab Navigation Mobile */
.tabs {
display: flex;
flex-direction: column;
gap: 0.5rem;
align-items: stretch;
margin-bottom: 1.5rem;
}
.tabs .tab-btn {
padding: 0.875rem 1rem;
font-size: 0.9375rem;
border-radius: var(--radius-md);
border: 1px solid var(--color-border);
text-align: center;
}
.tabs .tab-btn.active {
background: var(--color-primary);
color: white;
border-color: var(--color-primary);
}
/* SEO/GEO Grid Mobile */
.seo-grid {
grid-template-columns: 1fr;
gap: 1rem;
}
.seo-grid .card {
text-align: center;
padding: 1.25rem;
}
.seo-grid .card .feature-title,
.seo-grid .card .feature-desc {
text-align: center;
}
.geo-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.geo-grid > div {
padding: 1.25rem;
background: var(--color-bg);
border-radius: var(--radius-lg);
}
.geo-grid h3,
.geo-grid h4 {
font-size: 1rem;
text-align: center;
}
/* Seeding Platforms Mobile */
.seeding-platforms {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
margin-bottom: 2rem;
}
.seeding-platform-card {
padding: 1rem;
}
.seeding-platform-icon {
width: 48px;
height: 48px;
margin-bottom: 0.75rem;
}
.seeding-platform-icon svg {
width: 24px;
height: 24px;
}
.seeding-platform-name {
font-size: 0.875rem;
}
.seeding-platform-desc {
font-size: 0.75rem;
}
/* Seeding Content Mobile */
.seeding-content {
grid-template-columns: 1fr;
gap: 1rem;
}
.seeding-content .card {
padding: 1.25rem;
}
.seeding-content .card h4 {
text-align: center;
margin-bottom: 1rem;
}
.seeding-content .card ul {
padding-left: 0.5rem;
}
.seeding-content .card ul li {
font-size: 0.875rem;
margin-bottom: 0.5rem;
}
/* PR Content Mobile */
.pr-grid {
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.pr-grid .card {
padding: 1rem;
text-align: center;
}
.pr-grid .card .feature-icon {
margin: 0 auto var(--space-3);
}
.pr-grid .card .feature-title,
.pr-grid .card .feature-desc {
text-align: center;
font-size: 0.875rem;
}
.pr-grid .card .feature-title {
margin-bottom: 0.5rem;
}
/* PR Highlight Mobile */
.pr-highlight {
margin-top: 1.5rem;
}
.pr-highlight-inner {
flex-direction: column;
gap: 1.5rem;
text-align: center;
}
.pr-highlight-icon {
width: 100px;
height: 100px;
}
.pr-highlight-number {
font-size: var(--text-2xl);
}
.pr-highlight-label {
font-size: var(--text-xs);
}
.pr-highlight-content h3 {
font-size: 1.125rem;
}
.pr-highlight-text {
font-size: 0.9375rem;
}
}
@media (max-width: 480px) {
.pr-grid {
grid-template-columns: 1fr 1fr;
gap: 0.75rem;
}
.pr-grid .card {
padding: 0.875rem 0.5rem;
}
.pr-grid .card .feature-icon {
width: 40px;
height: 40px;
}
.pr-grid .card .feature-icon svg {
width: 20px;
height: 20px;
}
.seeding-platforms {
grid-template-columns: 1fr 1fr;
gap: 0.75rem;
}
.seeding-platform-card {
padding: 0.75rem;
}
}
/* ========================================
案例详情页幻灯片 - 移动端适配
======================================== */
@media (max-width: 768px) {
#slide1 > div[style*="display: flex; align-items: center"] {
flex-direction: column !important;
gap: 24px !important;
text-align: center;
}
#slide1 > div[style*="display: flex; align-items: center"] > div:first-child {
flex: none !important;
width: 100%;
}
#slide1 > div[style*="display: flex; align-items: center"] > div:first-child img {
max-height: 180px !important;
}
#slide1 > div[style*="display: flex; align-items: center"] > div:last-child {
text-align: center !important;
}
#slide1 h1 {
font-size: 26px !important;
}
}
/* 文章封面和面包屑移动端适配 */
@media (max-width: 768px) {
  .article-breadcrumb {
    padding: 12px 0;
  }
  .breadcrumb-list {
    font-size: 12px;
  }
  .breadcrumb-list li + li::before {
    margin: 0 6px;
  }
  .breadcrumb-list li.active {
    max-width: 140px;
  }
}
