/**
 * ==========================================================================
 * 标题：页面样式统一文件
 * 文件名：styles.css
 * 文件类型：CSS样式文件
 * 文件大小：约180KB
 * 功能：存放所有页面共有样式和各页面特有样式
 * 应用场景：广州芯思技术有限公司企业官网
 * 技术栈：CSS3 + Bootstrap 5
 * 公司：广州芯思技术有限公司
 * 作者：广州芯思技术有限公司
 * 网址：thinksi.cn
 * 邮箱：kf@thinksi.cn
 * 创建日期：2024-09-16 10:00:00
 * 修改日期：2026-02-26 16:00:00
 * API网关：v3
 * 版本：V2.0.0
 * 说明：CSS变量定义在 premium-color-scheme.css 中，基础排版由Bootstrap处理
 * ==========================================================================
 */

/* 首页样式 */
.home-hero {
  padding-top: 70px;
}

.integration-content {
  padding-right: 20px;
}

.integration-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.integration-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: var(--transition-transform);
}

.integration-item:hover {
  border-color: rgba(200, 0, 54, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateX(6px);
}

.integration-item:hover::before {
  transform: scaleY(1);
}

.integration-item:last-child {
  margin-bottom: 0;
}

.integration-icon {
  width: var(--card-icon-size-sm);
  height: var(--card-icon-size-sm);
  min-width: var(--card-icon-size-sm);
  background: var(--gradient-primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  transition: var(--transition-bounce);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

.integration-item:hover .integration-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.integration-icon i {
  font-size: 1.4rem;
  color: var(--text-white);
}

.integration-text {
  flex: 1;
}

.integration-text h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 700;
  position: relative;
}

.integration-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}



.integration-stats {
  padding: 45px;
  background: var(--gradient-dark-blue);
  border-radius: 24px;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.integration-stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(200, 0, 54, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.integration-stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

@media (max-width: 575px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stat-item {
    padding: 14px 10px;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }
}

.stat-item {
  text-align: center;
  padding: 20px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-bounce);
}

.stat-item:hover {
  background: rgba(200, 0, 54, 0.15);
  border-color: rgba(200, 0, 54, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #FFD700 0%, #FF6B35 50%, #C80036 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.integration-highlight {
  display: flex;
  align-items: center;
  padding: 22px;
  background: rgba(200, 0, 54, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 0, 54, 0.2);
  position: relative;
  z-index: 1;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--gradient-primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.highlight-icon i {
  font-size: 1.3rem;
  color: var(--text-white);
}

.highlight-text h5 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--text-white);
}

.highlight-text p {
  font-size: 0.85rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}



/* 解决方案卡片 - 使用CSS变量 */
.solution-card {
  background: var(--bg-primary);
  border-radius: var(--card-radius);
  border: var(--card-border);
  transition: var(--card-transition);
  position: relative;
  overflow: hidden;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

@media (max-width: 575px) {
  .solution-card {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
  .solution-card .solution-icon {
    margin-right: 0;
    margin-bottom: 12px;
  }
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-subtle);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card:hover {
  box-shadow: var(--card-shadow);
}

.solution-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary-light);
  transform: scaleX(0);
  transition: var(--transition-transform-slow);
}

.solution-card:hover::after {
  transform: scaleX(1);
}

.solution-icon {
  width: var(--card-icon-size-sm);
  height: var(--card-icon-size-sm);
  background: var(--primary-color);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: var(--card-transition);
}

.solution-card:hover .solution-icon {
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.solution-icon i {
  font-size: 1.6rem;
  color: var(--text-white);
}

.solution-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-primary);
  font-weight: 700;
}

.solution-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.5;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.solution-tags span {
  font-size: 0.7rem;
  padding: 5px 10px;
  background: rgba(200, 0, 54, 0.08);
  color: var(--primary-color);
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.solution-card:hover .solution-tags span {
  background: var(--primary-color);
  color: var(--text-white);
}



/* 优势卡片 */
.advantage-card {
  background: var(--bg-primary);
  border-radius: var(--card-radius);
  padding: var(--card-padding-lg) 30px;
  text-align: center;
  transition: var(--card-transition);
  border: 1px solid rgba(200, 0, 54, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-subtle);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.advantage-card:hover::before {
  opacity: 1;
}

.advantage-card .icon-box {
  width: var(--card-icon-size-md);
  height: var(--card-icon-size-md);
  background: var(--primary-color);
  border-radius: var(--card-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: var(--card-transition);
}

.advantage-card:hover .icon-box {
  transform: rotate(-3deg) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.advantage-card .icon-box i,
.advantage-card .icon-box svg {
  font-size: 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--text-white) !important;
  display: inline-block;
}

.advantage-card h4 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--text-primary);
  font-weight: 700;
}

.advantage-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.75;
}



/* 服务卡片 */
.service-card {
  background: var(--bg-primary);
  border-radius: var(--card-radius-lg);
  overflow: hidden;
  transition: var(--card-transition);
  border: var(--card-border);
  height: 100%;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-subtle);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--card-border-hover);
}

.service-card:hover::before {
  opacity: 1;
}

/* 通用卡片图片样式 - 服务/行业/解决方案卡片共用 */
.card-common-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-common-image::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: scale(0);
  transition: var(--transition-bounce-slower);
}

.card-common-image i {
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
  color: var(--text-white);
}

.card-common-image:hover::before {
  transform: scale(1.8);
}

.card-common-image:hover i {
  transform: scale(1.1);
}

.service-card .card-image,
.industry-card .card-image,
.solution-card-alt .card-image {
  height: 220px;
  background: var(--gradient-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-card .card-image.blue,
.industry-card .card-image.blue,
.solution-card-alt .card-image-blue { background: var(--gradient-card-blue); }
.service-card .card-image.green,
.industry-card .card-image.green,
.solution-card-alt .card-image-green { background: var(--gradient-card-green); }
.service-card .card-image.orange,
.industry-card .card-image.orange,
.solution-card-alt .card-image-orange { background: var(--gradient-card-orange); }
.service-card .card-image.purple,
.industry-card .card-image.purple,
.solution-card-alt .card-image-purple { background: var(--gradient-card-purple); }
.service-card .card-image.dark,
.industry-card .card-image.dark,
.solution-card-alt .card-image-dark { background: var(--gradient-card-dark); }

.service-card .card-image::before,
.industry-card .card-image::before,
.solution-card-alt .card-image::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: scale(0);
  transition: var(--transition-bounce-slower);
}

.service-card:hover .card-image::before,
.industry-card:hover .card-image::before,
.solution-card-alt:hover .card-image::before {
  transform: scale(1.8);
}

.service-card .card-image i {
  font-size: 4.5rem;
  color: rgba(255,255,255,0.95);
}

.service-card:hover .card-image i {
  transform: scale(1.1);
}

.service-card .card-body {
  padding: 38px 32px;
  position: relative;
  z-index: 1;
}

@media (max-width: 575px) {
  .service-card .card-body {
    padding: 20px;
  }
  .brand-card {
    padding: 24px 16px;
  }
}

.service-card h4 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-weight: 700;
}

.service-card p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.8;
}

/* 行业卡片 */
.industry-card {
  background: var(--bg-primary);
  border-radius: var(--card-radius-lg);
  overflow: hidden;
  transition: var(--card-transition);
  border: var(--card-border);
  display: block;
  text-decoration: none;
  height: 100%;
  position: relative;
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-transform-slow);
}

.industry-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--card-border-hover);
}

.industry-card:hover::after {
  transform: scaleX(1);
}

.industry-card .card-image {
  height: var(--card-image-height-sm);
  background: var(--gradient-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.industry-card .card-image.blue { background: var(--gradient-card-blue); }
.industry-card .card-image.green { background: var(--gradient-card-green); }
.industry-card .card-image.orange { background: var(--gradient-card-orange); }
.industry-card .card-image.purple { background: var(--gradient-card-purple); }
.industry-card .card-image.dark { background: var(--gradient-card-dark); }

.industry-card .card-image i {
  font-size: 4rem;
  color: var(--text-white);
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}

.industry-card:hover .card-image i {
  transform: scale(1.1);
}

.industry-card .card-body {
  padding: 35px 30px;
}

.industry-card h4 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--text-primary);
  font-weight: 700;
}

.industry-card p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 24px;
  line-height: 1.75;
}

.industry-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-card .tag {
  font-size: 0.85rem;
  padding: 8px 16px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.industry-card:hover .tag {
  background: var(--primary-color);
  color: var(--text-white);
}

/* 案例卡片 */
.case-card {
  background: var(--bg-primary);
  border-radius: var(--card-radius-lg);
  padding: 42px;
  transition: var(--card-transition);
  border: var(--card-border);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, transparent 50%, rgba(200, 0, 54, 0.03) 50%);
  transition: all 0.5s ease;
}

.case-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.case-card:hover::before {
  width: 180px;
  height: 180px;
}

.case-card .case-icon {
  width: var(--card-icon-size-md);
  height: var(--card-icon-size-md);
  background: var(--gradient-primary-dark);
  border-radius: var(--card-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: var(--card-transition);
}

.case-card:hover .case-icon {
  transform: rotate(-5deg) scale(1.05);
}

.case-card .case-icon i {
  font-size: 2rem;
  color: var(--text-white);
}

.case-card h4 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-weight: 700;
}

.case-card p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.75;
}

.case-card .client {
  font-size: 0.95rem;
  color: var(--primary-color);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 600;
}

/* 合作伙伴 */
.partner-logo {
  background: var(--bg-primary);
  border-radius: var(--card-radius);
  padding: var(--card-padding-xl) 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--card-border);
  transition: var(--card-transition);
  height: 100%;
}

.partner-logo:hover {
  border-color: rgba(200, 0, 54, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  transition: all 0.5s ease;
}

.partner-logo:hover img {
  opacity: 0.8;
}

/* 轮播图箭头按钮美化 */
.hero-carousel .carousel-control-next,
.hero-carousel .carousel-control-prev {
  width: 50px;
  height: 80px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  transition: all 0.3s ease;
}

.hero-carousel .carousel-control-next {
  right: 10px;
}

.hero-carousel .carousel-control-prev {
  left: 10px;
}

.hero-carousel .carousel-control-next:hover,
.hero-carousel .carousel-control-prev:hover {
  background: rgba(200, 0, 54, 0.8);
}

.hero-carousel .carousel-control-next-icon,
.hero-carousel .carousel-control-prev-icon {
  width: 24px;
  height: 24px;
}

.hero-carousel .carousel-control-next-icon svg,
.hero-carousel .carousel-control-prev-icon svg {
  width: 100%;
  height: 100%;
}

.partner-carousel {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.partner-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 15s linear infinite;
}

.partner-slide {
  flex-shrink: 0;
  width: 200px;
}

.partner-slide .partner-logo {
  padding: 10px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.partner-slide .partner-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.partner-slide .partner-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-slide .partner-logo:hover img {
  opacity: 0.8;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 3 - 90px));
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.partner-carousel:hover .partner-track {
  animation-play-state: paused;
}

/* CTA区域 */
.cta-section {
  background: var(--gradient-cta), url('../images/Breadcrumb.png');
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h2, .cta-section h3 {
  color: var(--text-white);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 0;
  position: relative;
}

.cta-section .btn {
  position: relative;
  background: var(--bg-primary);
  color: var(--primary-color);
  border: none;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  background: var(--bg-primary);
  color: var(--primary-dark);
}

.cta-btn-white {
  background: var(--bg-primary);
  color: var(--primary-color);
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-white:hover {
  background: var(--primary-color);
  color: var(--text-white);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* 区块标题 */



.hero-title {
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  font-size: var(--h1-font-size);
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 1.75rem !important;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 1.5rem !important;
    text-align: center;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    text-align: center;
  }
}

.hero-title .highlight {
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #FFFFFF;
  line-height: 1.9;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-feature-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-feature-item i {
  font-size: 2rem;
  color: var(--primary-color);
}

.hero-feature-item h5 {
  color: var(--text-white);
  margin: 0;
  font-size: 1rem;
}

.hero-feature-item p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  margin: 0;
}

/* 关于我们页面样式 */
.breadcrumb-section {
  background: var(--gradient-cta), url('../images/Breadcrumb.png');
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.breadcrumb-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width"60" height"60" viewBox"0 0 60 60" xmlns"http://www.w3.org/2000/svg"%3E%3Cg fill"none" fill-rule"evenodd"%3E%3Cg fill"%23ffffff" fill-opacity"0.03"%3E%3Cpath d"M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.breadcrumb-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,25 Q180,50 360,25 T720,25 T1080,25 T1440,25 L1440,50 L0,50 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom;
}

.breadcrumb-section h1 {
  color: var(--text-white);
  font-size: var(--h1-font-size);
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.breadcrumb-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  position: relative;
  margin-bottom: 1.5rem;
}





/* 波纹效果面包屑 */
.breadcrumb-ripple {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 14px 24px;
  padding-bottom: 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: visible;
}

/* 多层波纹效果 */
.breadcrumb-ripple::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 20px;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 20"%3E%3Cpath fill="%23ffffff" d="M0,20L30,17C60,14,120,8,180,8.7C240,9,300,15,360,14C420,13,480,5,540,5C600,5,660,13,720,14C780,15,840,9,900,8C960,7,1020,11,1080,12C1140,13,1200,11,1260,10.3C1320,9.7,1380,10,1410,10.3L1440,11V20H1410C1380,20,1320,20,1260,20C1200,20,1140,20,1080,20C1020,20,960,20,900,20C840,20,780,20,720,20C660,20,600,20,540,20C480,20,420,20,360,20C300,20,240,20,180,20C120,20,60,20,30,20H0Z"%3E%3C/path%3E%3C/svg%3E') no-repeat center bottom;
  background-size: cover;
  animation: breadcrumbWave 4s ease-in-out infinite;
}

/* 第二层波纹 - 更大的起伏 */
.breadcrumb-ripple::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 25px;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 25"%3E%3Cpath fill="%23ffffff" fill-opacity="0.5" d="M0,25L40,22C80,19,160,13,240,14C320,15,400,22,480,20C560,18,640,8,720,10C800,12,880,20,960,18C1040,16,1120,6,1200,8C1280,10,1360,14,1400,16L1440,18V25H1400C1360,25,1280,25,1200,25C1120,25,1040,25,960,25C880,25,800,25,720,25C640,25,560,25,480,25C400,25,320,25,240,25C160,25,80,25,40,25H0Z"%3E%3C/path%3E%3C/svg%3E') no-repeat center bottom;
  background-size: cover;
  animation: breadcrumbWave 3s ease-in-out infinite reverse;
  z-index: -1;
}

/* 浮动粒子效果 */
.breadcrumb-ripple > .ripple-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: particleFloat 6s ease-in-out infinite;
  pointer-events: none;
}

.breadcrumb-ripple > .ripple-particle:nth-of-type(1) {
  top: 8px;
  left: 15%;
  animation-delay: 0s;
  width: 4px;
  height: 4px;
}

.breadcrumb-ripple > .ripple-particle:nth-of-type(2) {
  top: 15px;
  left: 45%;
  animation-delay: 1s;
  width: 5px;
  height: 5px;
}

.breadcrumb-ripple > .ripple-particle:nth-of-type(3) {
  top: 5px;
  left: 75%;
  animation-delay: 2s;
  width: 3px;
  height: 3px;
}

.breadcrumb-ripple > .ripple-particle:nth-of-type(4) {
  top: 18px;
  left: 90%;
  animation-delay: 3s;
  width: 4px;
  height: 4px;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-8px) scale(1.2);
    opacity: 0.8;
  }
}

@keyframes breadcrumbWave {
  0%, 100% { 
    transform: translateX(-50%) translateY(0);
  }
  50% { 
    transform: translateX(-50%) translateY(3px);
  }
}

.breadcrumb-ripple::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: breadcrumbShine 3s ease-in-out infinite;
}

@keyframes breadcrumbShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.breadcrumb-ripple .breadcrumb-item {
  position: relative;
  display: flex;
  align-items: center;
}

.breadcrumb-ripple .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 25px;
  transition: var(--transition-bounce-fast);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.breadcrumb-ripple .breadcrumb-item a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.breadcrumb-ripple .breadcrumb-item a:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.breadcrumb-ripple .breadcrumb-item a:hover::before {
  width: 200px;
  height: 200px;
}

.breadcrumb-ripple .breadcrumb-item a i {
  margin-right: 6px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.breadcrumb-ripple .breadcrumb-item + .breadcrumb-item {
  margin-left: 4px;
  padding-left: 20px;
  position: relative;
}

.breadcrumb-ripple .breadcrumb-item + .breadcrumb-item::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  animation: ripplePulse 2s ease-in-out infinite;
}

@keyframes ripplePulse {
  0%, 100% { 
    transform: translateY(-50%) scale(1);
    opacity: 0.4;
  }
  50% { 
    transform: translateY(-50%) scale(1.3);
    opacity: 0.8;
  }
}

.breadcrumb-ripple .breadcrumb-item.active {
  color: var(--text-white);
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.breadcrumb-ripple .breadcrumb-item.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  animation: activeShimmer 2s ease-in-out infinite;
}

@keyframes activeShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* 响应式波纹面包屑 */


/* 关于我们Hero区域 */
.about-hero {
  padding: 50px 0;
  background: var(--bg-primary);
}

.about-hero .company-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.about-hero .company-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-hero .company-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.about-hero .info-item {
  display: flex;
  align-items: center;
}

.about-hero .info-item i {
  font-size: 1rem;
  color: var(--primary-color);
  margin-right: 6px;
  width: 28px;
  height: 28px;
  background: rgba(200, 0, 54, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero .info-item span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.about-hero .stat-item {
  text-align: center;
  padding: 16px 12px;
  background: #fafafa;
  border-radius: 8px;
  border: 1px solid #eee;
}

.about-hero .stat-item .number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.about-hero .stat-item .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* 内容区域 */
.section-content {
  padding: 50px 0;
  background: #fafafa;
}

.content-card {
  background: var(--bg-primary);
  border-radius: 12px;
  padding: 28px 22px;
  border: 1px solid #e8e8e8;
  height: 100%;
}

.content-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  font-weight: 700;
}

.content-card h3 i {
  margin-right: 14px;
  color: #fff;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #c80036 0%, #e63946 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.content-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.content-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-card ul li {
  padding: 6px 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.content-card ul li i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 0.75rem;
}

/* 荣誉区域 */
.honor-section {
  padding: 50px 0;
  background: var(--bg-primary);
}

.honor-item {
  background: var(--bg-primary);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
}

.honor-item:hover {
  border-color: var(--primary-color);
}

.honor-item .honor-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.honor-item .honor-icon i {
  font-size: 1.2rem;
  color: var(--text-white);
}

.honor-item h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-weight: 600;
}

.honor-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 团队区域 */
.team-section {
  padding: 50px 0;
  background: #fafafa;
}

.team-member {
  text-align: center;
  padding: 20px;
  background: var(--bg-primary);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
}

.team-member:hover {
  border-color: var(--primary-color);
}

.team-member .member-avatar {
  width: 70px;
  height: 70px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.team-member .member-avatar i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.team-member h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 600;
}

.team-member p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* 品牌代理卡片 */
.brand-item {
  text-align: center;
  padding: 20px;
  background: var(--bg-primary);
  border-radius: 8px;
  border: 1px solid #eee;
  height: 100%;
  transition: all 0.3s ease;
}

.brand-item:hover {
  border-color: var(--primary-color);
}

.brand-item img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand-item:hover img {
  opacity: 0.8;
}

.brand-item h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 600;
}

.brand-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* CTA区域 - 关于页面 */
.cta-about-section {
  background: var(--bg-secondary);
  padding: 60px 0;
}

.cta-about-section h3 {
  margin-bottom: 10px;
}

.cta-about-section p {
  margin: 0;
  color: var(--text-secondary);
}

/* 联系我们页面样式 */
.contact-section {
  padding: 80px 0;
}

.contact-card {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  height: 100%;
}

@media (max-width: 575px) {
  .contact-card {
    padding: 20px;
  }

  .contact-info-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 16px;
  }

  .contact-info-item .icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .contact-info-item .icon i {
    font-size: 1rem;
  }

  .contact-info-item .info h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }

  .contact-info-item .info p {
    font-size: 0.8rem;
    margin: 0;
  }

  .contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .social-follow-section {
    margin-top: 20px;
  }

  .map-container {
    height: 250px !important;
    border-radius: 8px;
  }

  .map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .map-placeholder {
    height: 200px;
  }
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-info-item .icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-info-item .icon i {
  font-size: 1.3rem;
  color: var(--text-white);
}

.contact-info-item .info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.contact-info-item .info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.contact-form-card {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  height: 100%;
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.contact-form-card .form-label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-form-card .form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.contact-form-card textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: var(--gradient-primary);
  border: none;
  color: var(--text-white);
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 地图区域 */
.map-section {
  padding-bottom: 80px;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  height: 450px;
}

.map-placeholder {
  background: var(--gradient-bg-light);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.map-placeholder i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.map-placeholder p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.map-placeholder-small {
  font-size: 0.9rem;
  margin-top: 10px;
}

/* FAQ区域 */
.faq-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.faq-item {
  background: var(--bg-primary);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item h4 i {
  color: var(--primary-color);
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
  display: block;
}

/* 社交图标 - 联系页面 */
.social-icon-inline {
  display: inline-flex;
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: var(--text-white);
}

/* 产品中心页面样式 */
.brand-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg-secondary) 100%);
  position: relative;
}

.brand-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(135deg, rgba(200,0,54,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.brand-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.brand-section .section-title h2 {
  font-size: var(--h2-font-size);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.brand-section .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.brand-section .section-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 20px;
  margin-bottom: 0;
}

.brand-card {
  background: var(--bg-primary);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  transition: var(--transition-bounce);
  border: 1px solid rgba(0,0,0,0.04);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.brand-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(200,0,54,0.12);
  border-color: transparent;
}

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

.brand-card .brand-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-white-light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  position: relative;
}

.brand-card .brand-logo::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.brand-card:hover .brand-logo::after {
  opacity: 0.1;
}

.brand-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.brand-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.7;
}

.brand-card .btn {
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.brand-card .btn:hover {
  padding-left: 44px;
  padding-right: 44px;
}

.brand-logo-icon {
  font-size: 3rem;
  color: #C80036;
}

/* 产品分类 */
.product-category {
  padding: 80px 0;
  position: relative;
}

.product-category-alt {
  background: var(--bg-secondary);
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.category-header::before {
  content: '';
  position: absolute;
  left: 70px;
  right: 0;
  bottom: -15px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  opacity: 0.3;
}

.category-header .icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 8px 20px rgba(200,0,54,0.25);
  flex-shrink: 0;
}

.category-header .icon i {
  font-size: 1.6rem;
  color: var(--text-white);
}

.category-header h3 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

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

@media (max-width: 575px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-item {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition-bounce);
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.product-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.product-item:hover {
  transform: translateX(8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: var(--primary-color);
}

.product-item:hover::before {
  transform: scaleY(1);
}

.product-item .product-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-white-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.product-item:hover .product-icon {
  background: var(--gradient-primary);
  box-shadow: 0 8px 20px rgba(200,0,54,0.25);
}

.product-item .product-icon i {
  font-size: 1.75rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.product-item:hover .product-icon i {
  color: var(--text-white);
}

.product-item .product-info {
  flex: 1;
}

.product-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.product-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.7;
}

.product-item .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-item .tag {
  font-size: 0.75rem;
  padding: 6px 14px;
  background: var(--gradient-white-light);
  color: var(--text-secondary);
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.product-item .tag:hover {
  background: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
}

/* 产品CTA区域 */
.cta-section-products {
  padding: 80px 0;
  background: var(--gradient-primary-dark);
  position: relative;
  overflow: hidden;
}

.cta-section-products::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-section-products::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.cta-section-products .row {
  position: relative;
  z-index: 1;
}

.cta-section-products h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-white);
}

.cta-section-products p {
  font-size: 1.1rem;
  margin: 0;
  color: rgba(255,255,255,0.85);
}

.cta-section-products .btn {
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  background: var(--bg-primary);
  color: var(--primary-color);
  border: none;
  transition: all 0.3s ease;
}

.cta-section-products .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  background: var(--bg-primary);
  color: var(--primary-dark);
}

/* 解决方案页面样式 */
.solution-card-alt {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--card-transition);
  border: var(--card-border);
  height: 100%;
}

.solution-card-alt:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--card-border-hover);
}

.solution-card-alt .card-image {
  height: 200px;
  background: var(--gradient-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.solution-card-alt .card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width"100" height"100" viewBox"0 0 100 100" xmlns"http://www.w3.org/2000/svg"%3E%3Cpath d"M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill"%23ffffff" fill-opacity"0.1"/%3E%3C/svg%3E');
}

.solution-card-alt .card-image i {
  font-size: 4rem;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
}

.solution-card-alt .card-body {
  padding: 30px;
}

.solution-card-alt h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.solution-card-alt p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.solution-card-alt .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.solution-card-alt .tag {
  font-size: 0.8rem;
  padding: 6px 14px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.solution-card-alt:hover .tag {
  background: var(--primary-color);
  color: var(--text-white);
}

/* 特性区域 */
.feature-section {
  padding: 60px 0;
  background: var(--bg-secondary);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.feature-item .icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.feature-item .icon i {
  font-size: 1.5rem;
  color: var(--text-white);
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* 流程区域 */
.process-section {
  padding: 60px 0;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step .step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 200px;
  margin: 0 auto;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}

.process-step:last-child::after {
  display: none;
}

/* 服务流程卡片 */
.service-process-card {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.service-process-card h3 {
  margin-bottom: 30px;
  text-align: center;
}

/* 典型案例卡片 */
.case-detail-card {
  height: 100%;
}

.case-detail-card .card-body {
  padding: 0;
}

.case-detail-card .icon-box {
  width: 70px;
  height: 70px;
  font-size: 1.8rem;
  margin: 0 1.5rem 0 0;
  flex-shrink: 0;
}








.hero-feature {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

.hero-feature:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.3);
}

.hero-feature i {
  font-size: 2rem;
  color: var(--primary-color);
}

.hero-feature h5 {
  color: var(--text-white);
  margin: 0;
  font-size: 1rem;
}

.hero-feature p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  margin: 0;
}

.hero-features-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}





/* 服务流程框样式 */
.service-process-box {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.service-process-box h3 {
  margin-bottom: 30px;
  text-align: center;
}

/* 案例图标样式 */
.case-icon-box {
  width: 70px;
  height: 70px;
  font-size: 1.8rem;
  margin: 0 1.5rem 0 0;
  flex-shrink: 0;
}

/* 产品品牌图标样式 */
.brand-icon-lg {
  font-size: 3rem;
  color: #C80036;
}

/* 联系页面样式 */
.social-follow-section {
  margin-top: 30px;
}

.social-follow-section h4 {
  font-size: 1rem;
  margin-bottom: 15px;
}

.social-icon-lg {
  display: inline-flex;
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: var(--text-white);
}

.social-icon-lg:last-child {
  margin-right: 0;
}

/* 表单必填星号 */
.form-required {
  color: red;
}

/* 地图区域 */
.map-text-small {
  font-size: 0.9rem;
  margin-top: 10px;
}





/* 解决方案详情页样式 */
.solution-card .card-body .btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--text-white);
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.solution-card .card-body .btn-detail:hover {
  background: var(--primary-dark);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.solution-card .card-body .btn-detail i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.solution-card .card-body .btn-detail:hover i {
  transform: translateX(4px);
}
.solution-detail-header {
  padding-right: 30px;
}

.solution-detail-header .detail-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary-dark);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.solution-detail-header .detail-icon i {
  font-size: 2rem;
  color: var(--text-white);
}

.solution-detail-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.solution-detail-header .lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.solution-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.solution-features-grid .feature-box {
  background: var(--gradient-white-light);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.solution-features-grid .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.solution-features-grid .feature-box i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  display: block;
}

/* 扁平化解决方案页面样式 */
.solution-hero {
  padding: 140px 0 80px;
  background: var(--gradient-bg-light);
}

.solution-hero-content {
  padding-right: 40px;
}

.solution-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-color);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.solution-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.solution-hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.solution-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.solution-hero-tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-primary);
  border-radius: 25px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.solution-hero-tags .tag i {
  color: var(--primary-color);
}

.solution-hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.solution-hero-image img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
}

.solution-nav-tabs {
  background: var(--bg-primary);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 70px;
  z-index: 100;
}

.solution-tabs-wrapper {
  display: flex;
  gap: 8px;
  padding: 16px 0;
  overflow-x: auto;
}

.solution-tab {
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.solution-tab:hover {
  background: #f5f5f5;
  color: var(--primary-color);
}

.solution-tab.active {
  background: var(--primary-color);
  color: var(--text-white);
}

.solution-overview {
  padding: 80px 0;
  background: var(--bg-primary);
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.overview-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.overview-card .overview-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: var(--gradient-primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview-card .overview-icon i {
  font-size: 1.8rem;
  color: var(--text-white);
}

.overview-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.overview-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.solution-architecture {
  padding: 80px 0;
  background: #f8f9fa;
}

.arch-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.arch-layer {
  background: var(--bg-primary);
  border-radius: 12px;
  padding: 20px 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.arch-layer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.arch-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.arch-items span {
  padding: 8px 18px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.solution-features {
  padding: 80px 0;
  background: var(--bg-primary);
}

.feature-card-flat {
  display: flex;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  gap: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.feature-card-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card-icon i {
  font-size: 1.5rem;
  color: var(--text-white);
}

.feature-card-body {
  flex: 1;
}

.feature-card-body h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-card-body ul li {
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(200, 0, 54, 0.05) 0%, rgba(214, 56, 85, 0.05) 100%);
  border-left: 3px solid var(--primary-color);
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 28px;
}

.feature-card-body ul li::before {
  content: '✓';
  position: absolute;
  left: 10px;
  color: var(--primary-color);
  font-weight: bold;
}

.solution-advantages {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(200, 0, 54, 0.92) 0%, rgba(214, 56, 85, 0.92) 100%), url('../images/Breadcrumb.png');
  background-size: cover;
  background-position: center;
}

.solution-advantages .advantage-item-flat {
  background: var(--gradient-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.solution-advantages .advantage-item-flat:hover {
  background: var(--gradient-primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.solution-advantages .advantage-num {
  color: rgba(255, 255, 255, 0.9);
}

.solution-advantages .advantage-item-flat h4 {
  color: var(--text-white);
}

.solution-advantages .advantage-item-flat h4::after {
  background: rgba(255, 255, 255, 0.9);
}

.solution-advantages .advantage-item-flat p {
  color: rgba(255, 255, 255, 0.9);
}

.solution-advantages .section-header h2,
.solution-advantages .section-header p {
  color: var(--text-white);
}

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

.advantage-item-flat {
  text-align: center;
  padding: 40px 24px 30px;
  background: var(--gradient-white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.advantage-item-flat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.advantage-item-flat:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
}

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

.advantage-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1;
  font-family: 'Arial', sans-serif;
  opacity: 0.9;
}

.advantage-item-flat h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 12px;
}

.advantage-item-flat p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.advantage-item-flat h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.solution-cases {
  padding: 80px 0;
  background: #f8f9fa;
}

.case-card-flat {
  background: var(--bg-primary);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.case-card-image {
  height: 200px;
  overflow: hidden;
}

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

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

.case-card-content {
  padding: 24px;
}

.case-card-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.case-card-content .case-type {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 12px;
}

.case-card-content > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.case-card-content .case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-card-content .case-tags span {
  padding: 4px 12px;
  background: #f5f5f5;
  border-radius: 15px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.solution-process {
  padding: 80px 0;
  background: var(--bg-primary);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.process-step-flat {
  text-align: center;
  flex: 1;
  min-width: 150px;
  max-width: 180px;
}

.step-icon-flat {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  background: var(--gradient-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-flat i {
  font-size: 1.5rem;
  color: var(--text-white);
}

.step-content-flat h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.step-content-flat p {
  font-size: 0.85rem;
  color: #999;
  margin: 0;
}

.process-arrow {
  padding-top: 25px;
}

.process-arrow i {
  font-size: 1.2rem;
  color: #999;
}

.solution-cta {
  padding: 80px 0;
  background: var(--gradient-cta), url('../images/Breadcrumb.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.solution-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content-flat {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content-flat h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content-flat p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content-flat .btn-light {
  background: var(--bg-primary);
  color: var(--primary-color);
  border: none;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-content-flat .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  background: var(--bg-primary);
  color: var(--primary-dark);
}

.cta-content-flat .btn-light i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.cta-content-flat .btn-light:hover i {
  transform: translateX(4px);
}

/* 扁平化产品页面样式 */
.product-hero {
  padding: 140px 0 80px;
  background: var(--gradient-bg-light);
}

.product-hero-content {
  padding-right: 40px;
}

.product-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-color);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.product-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.product-hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.product-hero-tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-primary);
  border-radius: 25px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-hero-tags .tag i {
  color: var(--primary-color);
}

.product-hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.product-hero-image img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
}

.product-nav-tabs {
  background: var(--bg-primary);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 70px;
  z-index: 100;
}

.product-tabs-wrapper {
  display: flex;
  gap: 8px;
  padding: 16px 0;
  overflow-x: auto;
}

.product-tab {
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.product-tab:hover {
  background: #f5f5f5;
  color: var(--primary-color);
}

.product-tab.active {
  background: var(--primary-color);
  color: var(--text-white);
}

.product-categories {
  padding: 80px 0;
  background: var(--bg-primary);
}

.product-category-flat {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.product-category-flat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-category-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-category-icon i {
  font-size: 1.5rem;
  color: var(--text-white);
}

.product-category-body {
  flex: 1;
}

.product-category-body h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.product-category-body p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-series-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-series-tags span {
  padding: 4px 12px;
  background: rgba(200, 0, 54, 0.1);
  border-radius: 15px;
  font-size: 0.75rem;
  color: var(--primary-color);
}

.product-advantages {
  padding: 80px 0;
  background: #f8f9fa;
}

.advantage-grid-flat {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.advantage-item-flat {
  text-align: center;
  padding: 30px 16px;
  background: var(--gradient-white);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.advantage-item-flat:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.08);
}

.advantage-icon-flat {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--gradient-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon-flat i {
  font-size: 1.4rem;
  color: var(--text-white);
}

.advantage-item-flat h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.advantage-item-flat p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.product-applications {
  padding: 80px 0;
  background: var(--bg-primary);
}

.application-flat {
  text-align: center;
  padding: 30px 24px;
  background: #f8f9fa;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
}

.application-flat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.application-icon-flat {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--gradient-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.application-icon-flat i {
  font-size: 1.4rem;
  color: var(--text-white);
}

.application-flat h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.application-flat p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.product-cases {
  padding: 80px 0;
  background: #f8f9fa;
}

.product-cta {
  padding: 60px 0;
  background: var(--text-primary);
}



/* 扁平化招聘页面样式 */
.jobs-hero {
  padding: 140px 0 80px;
  background: var(--gradient-bg-light);
}

.jobs-hero-content {
  padding-right: 40px;
}

.jobs-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-color);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.jobs-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.jobs-hero-desc {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.jobs-hero-stats {
  display: flex;
  gap: 40px;
}

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

.stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

.jobs-hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.jobs-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.jobs-benefits-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.benefits-grid-flat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-item-flat {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.benefit-item-flat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-icon-flat {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--gradient-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon-flat i {
  font-size: 1.4rem;
  color: var(--text-white);
}

.benefit-item-flat h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.benefit-item-flat p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.jobs-list-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.jobs-list-flat {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-card-flat {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.job-card-flat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.job-card-header-flat {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

.job-card-header-flat .btn-primary-custom {
  margin-left: auto;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 50px;
}

.job-card-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-card-icon i {
  font-size: 1.3rem;
  color: var(--text-white);
}

.job-info-flat {
  flex: 1;
}

.job-info-flat h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.job-tags-flat {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-flat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: #f5f5f5;
  border-radius: 15px;
  font-size: 0.8rem;
  color: #666;
}

.tag-flat.hot {
  background: rgba(200, 0, 54, 0.1);
  color: var(--primary-color);
  font-weight: 600;
}

.job-salary-flat {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, rgba(200, 0, 54, 0.08) 0%, rgba(214, 56, 85, 0.08) 100%);
  border-radius: 50px;
  border: 1px solid rgba(200, 0, 54, 0.15);
}

.job-salary-inline {
  font-size: 0.8rem;
  font-weight: 600;
  color: #C80036;
  padding: 0.25rem 0;
  background: none;
  border-radius: 0;
  border: none;
  border-left: 3px solid #C80036;
  margin-left: auto;
  white-space: nowrap;
  padding-left: 0.5rem;
}

.job-card-body-flat {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-meta-flat {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.job-meta-flat span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #666;
}

.job-meta-flat i {
  color: var(--primary-color);
}

.job-desc-flat {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.job-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.highlight-tag {
  padding: 5px 12px;
  background: var(--gradient-subtle-light);
  border: 1px solid rgba(200, 0, 54, 0.2);
  border-radius: 15px;
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: 500;
}

.job-card-flat .btn {
  align-self: flex-start;
}

.cta-box-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #C80036 0%, #E6004D 100%);
  position: relative;
  overflow: hidden;
}

.cta-box-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.cta-box-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 30' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,5 Q180,30 360,5 T720,5 T1080,5 T1440,5 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top;
}

.cta-box-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  position: relative;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-box-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
  position: relative;
}

.cta-box-section .btn-primary {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  background: #fff;
  color: #C80036;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  position: relative;
}

.cta-box-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  background: #fff;
  color: #C80036;
}

.jobs-cta {
  padding: 60px 0;
  background: var(--text-primary);
}



/* 扁平化招聘详情页面样式 */
.job-detail-section {
  padding: 60px 0 80px;
  background: #f8f9fa;
}

.job-detail-card-flat {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.job-detail-header-flat {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.job-detail-title-flat h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.job-detail-meta-flat {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}

.meta-item-flat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #666;
}

.meta-item-flat i {
  color: var(--primary-color);
}

.job-detail-content-flat {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.content-section-flat h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-section-flat h3 i {
  color: var(--primary-color);
}

.job-detail-list-flat {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-detail-list-flat li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

.job-detail-list-flat li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
}

.benefits-list-flat {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefits-list-flat li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #666;
}

.benefits-list-flat li i {
  color: var(--primary-color);
}

.location-text,
.contact-text {
  font-size: 0.95rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-text i,
.contact-text i {
  color: var(--primary-color);
}

.job-detail-action-flat {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.job-sidebar-flat {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card-flat {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sidebar-card-flat h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-card-flat h3 i {
  color: var(--primary-color);
}

.sidebar-card-flat .company-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.company-tags-flat {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.company-tags-flat li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #666;
}

.company-tags-flat li i {
  color: var(--primary-color);
}

.hot-jobs-list-flat {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hot-jobs-list-flat li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hot-jobs-list-flat li a:hover {
  background: var(--primary-color);
}

.hot-jobs-list-flat li a:hover .job-title,
.hot-jobs-list-flat li a:hover .job-salary {
  color: var(--text-white);
}

.hot-jobs-list-flat .job-title {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.hot-jobs-list-flat .job-salary {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
}

.contact-card-flat {
  text-align: center;
}

.contact-card-flat p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 16px;
}





.solution-features-grid .feature-box span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.solution-detail-section {
  margin-bottom: 60px;
}

.solution-detail-section h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.solution-detail-section p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}

.architecture-card {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.architecture-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}

.architecture-card h4 i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

.architecture-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.architecture-card ul li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  position: relative;
  padding-left: 20px;
}

.architecture-card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 0.8rem;
}

.core-system-card {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.core-system-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.core-system-card .system-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: var(--gradient-primary-dark);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.core-system-card .system-icon i {
  font-size: 1.6rem;
  color: var(--text-white);
}

.core-system-card .system-content {
  flex: 1;
}

.core-system-card .system-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.core-system-card .system-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.core-system-card .system-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.core-system-card .system-content ul li {
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
  padding-left: 18px;
}

.core-system-card .system-content ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 0.75rem;
}

.advantage-detail-card {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.advantage-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.advantage-detail-card .advantage-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.advantage-detail-card .advantage-icon i {
  font-size: 1.6rem;
  color: var(--text-white);
}

.advantage-detail-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.advantage-detail-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.case-detail-card {
  background: var(--bg-primary);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.case-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.case-detail-card .case-detail-image {
  height: 180px;
  background: var(--gradient-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.case-detail-card .case-detail-image::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.6s ease;
}

.case-detail-card:hover .case-detail-image::before {
  transform: scale(2);
}

.case-detail-card .case-detail-image i {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.case-detail-card .case-detail-content {
  padding: 28px;
  flex: 1;
}

.case-detail-card .case-detail-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.case-detail-card .case-detail-content .case-type {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 14px;
}

.case-detail-card .case-detail-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.case-detail-card .case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-detail-card .case-tags span {
  font-size: 0.8rem;
  padding: 6px 14px;
  background: var(--gradient-subtle-alt);
  color: var(--primary-color);
  border-radius: 20px;
  font-weight: 600;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 20px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), rgba(200, 0, 54, 0.3));
}

.process-step-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 1;
  min-width: 120px;
}

.process-step-custom .step-number-custom {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.process-step-custom .step-content-custom h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.process-step-custom .step-content-custom p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}



/* 产品详情页样式 */
.brand-detail-header {
  padding-right: 30px;
}

.brand-detail-header .brand-detail-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary-dark);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.3);
}

.brand-detail-header .brand-detail-icon i {
  font-size: 2.5rem;
  color: var(--text-white);
}

.brand-detail-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.brand-detail-header .lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

.brand-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.brand-features-grid .feature-box {
  background: var(--gradient-white-light);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.brand-features-grid .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.brand-features-grid .feature-box i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  display: block;
}

.brand-features-grid .feature-box span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.product-detail-section {
  margin-bottom: 60px;
}

.product-detail-section h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.product-category-detail-card {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.product-category-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.product-category-detail-card .category-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: var(--gradient-primary-dark);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
}

.product-category-detail-card .category-icon i {
  font-size: 1.6rem;
  color: var(--text-white);
}

.product-category-detail-card .category-content {
  flex: 1;
}

.product-category-detail-card .category-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.product-category-detail-card .category-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-category-detail-card .product-series {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-category-detail-card .series-tag {
  font-size: 0.8rem;
  padding: 6px 14px;
  background: var(--gradient-accent-blue);
  color: var(--primary-color);
  border-radius: 20px;
  font-weight: 600;
}

.application-scenario-card {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.application-scenario-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.application-scenario-card .scenario-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.3);
}

.application-scenario-card .scenario-icon i {
  font-size: 1.6rem;
  color: var(--text-white);
}

.application-scenario-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.application-scenario-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}



/* 新闻列表页面样式 */
.news-section {
  padding: 60px 0 80px;
  background: #f8f9fa;
  min-height: 70vh;
}

.news-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  padding: 24px;
  background: var(--bg-primary);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.category-tag {
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  background: #f5f5f5;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-tag:hover {
  color: var(--text-white);
  background: var(--primary-color);
  transform: translateY(-2px);
}

.category-tag.active {
  color: var(--text-white);
  background: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-item {
  display: flex;
  background: var(--bg-primary);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

@media (max-width: 575px) {
  .news-item {
    flex-direction: column;
  }
  .news-thumb {
    width: 100%;
    height: 180px;
  }
  .news-date {
    width: 100%;
    flex-direction: row;
    padding: 12px 20px;
    gap: 12px;
  }
  .date-day {
    font-size: 1.5rem;
  }
  .date-month {
    margin-top: 0;
    font-size: 0.85rem;
  }
  .news-info {
    padding: 16px;
  }
}

.news-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.news-thumb {
  flex-shrink: 0;
  width: 280px;
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.news-item:hover .news-thumb img {
  transform: scale(1.1);
}

.news-date {
  flex-shrink: 0;
  width: 100px;
  padding: 20px 15px;
  background: var(--gradient-primary-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.date-day {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}

.date-month {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
}

.news-info {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
}

.news-tag {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(200, 0, 54, 0.1);
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 12px;
}

.news-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
}

.news-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-title a:hover {
  color: var(--primary-color);
}

.news-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.news-views {
  font-size: 0.85rem;
  color: #999;
}

.news-views i {
  margin-right: 5px;
}

.read-more-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  color: #d63855;
  gap: 10px;
}

.read-more-link i {
  font-size: 0.8rem;
}

.news-pagination {
  margin-top: 50px;
}

.news-pagination .pagination {
  justify-content: center;
  gap: 8px;
}

.news-pagination .page-link {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  background: var(--bg-primary);
  color: #666;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.news-pagination .page-link:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-pagination .page-item.active .page-link {
  background: var(--primary-color);
  color: var(--text-white);
}

.news-pagination .page-item.disabled .page-link {
  background: #f5f5f5;
  color: #999;
}



/* 侧边栏样式 */
.news-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-color);
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-info i {
  color: var(--primary-color);
  margin-top: 4px;
}

.hot-articles {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hot-articles li {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #eee;
}

.hot-articles li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.hot-articles a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: #666;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.hot-articles a:hover {
  color: var(--primary-color);
}

.hot-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gradient-primary-light);
  color: var(--text-white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hot-title {
  line-height: 1.5;
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 10px;
  text-decoration: none;
  color: #666;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.quick-link-item:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateX(6px);
}

.quick-link-item i {
  font-size: 1rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  padding: 6px 14px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag-item:hover {
  background: var(--primary-color);
  color: var(--text-white);
}



.news-card {
  background: var(--bg-primary);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: all 0.4s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.news-card .news-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-card .news-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card .news-image-placeholder i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.8);
}

.news-card .news-category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
}

.news-card .news-content {
  padding: 24px;
}

.news-card .news-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.news-card .news-meta i {
  margin-right: 5px;
}

.news-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
}

.news-card h3 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-card h3 a:hover {
  color: var(--primary-color);
}

.news-card .news-content > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.news-read-more:hover {
  gap: 12px;
}

.news-read-more i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

/* 新闻详情页面样式 */
.news-detail {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.news-detail-header {
  margin-bottom: 30px;
}

.news-detail-category {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-color);
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 16px;
}

.news-detail h1 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-detail-meta {
  display: flex;
  gap: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.news-detail-meta i {
  margin-right: 6px;
}

.news-detail-image {
  margin-bottom: 24px;
}

.news-detail-image img {
  width: 100%;
  border-radius: 8px;
}

.news-detail-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-detail-image-placeholder i {
  font-size: 5rem;
  color: #adb5bd;
}

.news-detail-content {
  line-height: 1.9;
  color: var(--text-secondary);
}

.news-detail-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.news-detail-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 30px 0 16px;
}

.news-quote {
  background: var(--gradient-accent-blue);
  border-left: 4px solid var(--primary-color);
  padding: 24px 30px;
  margin: 30px 0;
  border-radius: 0 12px 12px 0;
}

.news-quote p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.news-quote cite {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.news-detail-tags {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.tag-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-right: 10px;
}

.news-detail-tags .tag {
  display: inline-block;
  padding: 6px 14px;
  background: #f1f3f5;
  color: var(--text-secondary);
  font-size: 0.85rem;
  border-radius: 20px;
  margin-right: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-detail-tags .tag:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

.news-detail-share {
  margin-top: 20px;
}

.share-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-right: 10px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f1f3f5;
  border-radius: 50%;
  margin-right: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

.news-related .related-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.related-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.related-item:hover {
  background: var(--bg-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.related-item .related-image {
  width: 80px;
  height: 60px;
  min-width: 80px;
  background: var(--gradient-primary-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-item .related-image i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.related-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.related-item h4 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-item h4 a:hover {
  color: var(--primary-color);
}

.related-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.news-sidebar .sidebar-widget {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.news-sidebar .widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-color);
}

.hot-articles {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hot-articles li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f3f5;
}

.hot-articles li:last-child {
  border-bottom: none;
}

.hot-articles .hot-num {
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hot-articles a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.hot-articles a:hover {
  color: var(--primary-color);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  border-bottom: 1px solid #f1f3f5;
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: var(--primary-color);
}

.category-list .count {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.contact-widget {
  background: var(--gradient-primary-dark);
  color: var(--text-white);
}

.contact-widget p {
  opacity: 0.9;
  margin-bottom: 20px;
}

/* 招聘列表页面样式 */
.jobs-intro {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.jobs-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.jobs-intro > .row > .col-lg-6:first-child p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.jobs-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-item i {
  width: 36px;
  height: 36px;
  background: var(--gradient-accent-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.benefit-item span {
  font-weight: 600;
  color: var(--text-primary);
}

.jobs-intro-image {
  position: relative;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
}

.jobs-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jobs-intro-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.jobs-intro-placeholder i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.8);
}

.jobs-list-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.job-card {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.job-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.job-tags {
  display: flex;
  gap: 8px;
}

.job-tag {
  padding: 4px 12px;
  background: #f1f3f5;
  color: var(--text-secondary);
  font-size: 0.8rem;
  border-radius: 15px;
}

.job-tag.hot {
  background: var(--gradient-accent-red);
  color: var(--text-white);
}

.job-salary {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.job-requirements {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.job-requirements i {
  margin-right: 6px;
}

.job-desc {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.jobs-contact .contact-card {
  background: var(--gradient-primary-dark);
  border-radius: 16px;
  padding: 30px;
  color: var(--text-white);
}

.jobs-contact h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.jobs-contact p {
  opacity: 0.9;
  margin: 0;
}

/* 招聘详情页面样式 */
.job-detail-card {
  background: var(--bg-primary);
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
}

.job-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
}

.job-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 40px 40px 30px;
  background: var(--gradient-white-blue);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.job-detail-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.btn-apply-header {
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  background: var(--gradient-primary-light);
  border: none;
  box-shadow: 0 4px 16px rgba(200, 0, 54, 0.3);
  transition: all 0.3s ease;
}

.btn-apply-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 0, 54, 0.4);
}

.btn-apply-header i {
  margin-right: 8px;
}

.job-detail-title {
  flex: 1;
}

.job-detail-title h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
}

.job-detail-title h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.job-detail-tags {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(200, 0, 54, 0.08);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.job-tag:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-2px);
}

.job-tag.hot {
  background: var(--gradient-accent-red);
  color: var(--text-white);
}

.job-tag.hot::before {
  content: '\f0e7';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  margin-right: 6px;
  font-size: 0.8rem;
}

.job-detail-salary {
  text-align: right;
  background: var(--bg-primary);
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.salary-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.salary-value {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-primary-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.job-detail-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 30px 40px;
  background: var(--bg-primary);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .job-detail-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  /* 招聘页面hero */
  .jobs-hero {
    padding: 100px 0 40px;
  }

  .jobs-hero-content {
    padding-right: 0;
    text-align: center;
  }

  .jobs-badge {
    font-size: 0.7rem;
    padding: 4px 12px;
    margin-bottom: 12px;
  }

  .jobs-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .jobs-hero-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .jobs-hero-stats {
    gap: 16px;
    justify-content: center;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .job-detail-info {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .job-detail-info .info-item {
    padding: 12px 14px;
  }
}

.job-detail-info .info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-secondary);
  padding: 16px 20px;
  background: var(--gradient-white-light);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.job-detail-info .info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(200, 0, 54, 0.15);
}

.job-detail-info .info-item i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary-light);
  color: var(--text-white);
  border-radius: 10px;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(200, 0, 54, 0.25);
}

.job-detail-section {
  margin-bottom: 0;
  padding: 35px 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.job-detail-section:last-of-type {
  border-bottom: none;
}

.job-detail-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  position: relative;
}

.job-detail-section h3::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--bg-primary);
}

.job-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.job-detail-list li {
  position: relative;
  padding: 16px 20px 16px 50px;
  color: var(--text-secondary);
  line-height: 1.7;
  background: linear-gradient(135deg, #fafbfc 0%, #f5f7f9 100%);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.job-detail-list li:hover {
  border-color: rgba(200, 0, 54, 0.12);
  background: var(--bg-primary);
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.job-detail-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary-light);
  color: var(--text-white);
  border-radius: 6px;
  font-size: 0.7rem;
}

.job-detail-section > p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

.job-detail-section > p i {
  color: var(--primary-color);
  margin-right: 10px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 0, 54, 0.1);
  border-radius: 8px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: var(--gradient-white-light);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: rgba(200, 0, 54, 0.15);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: var(--gradient-accent-green);
  transform: scale(1.1);
}

.benefit-icon i {
  font-size: 1.4rem;
  color: #10b981;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
  color: var(--text-white);
}

.benefit-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.benefits-list li {
  padding: 14px 18px 14px 44px;
}

.benefits-list li::before {
  left: 14px;
  width: 20px;
  height: 20px;
  font-size: 0.65rem;
  background: var(--gradient-accent-green);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.job-detail-action {
  display: flex;
  gap: 16px;
  margin-top: 0;
  padding: 35px 40px;
  background: var(--gradient-white-blue);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.job-detail-action .btn-primary {
  padding: 16px 40px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  background: var(--gradient-primary-light);
  border: none;
  box-shadow: 0 6px 20px rgba(200, 0, 54, 0.35);
  transition: all 0.3s ease;
}

.job-detail-action .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 0, 54, 0.4);
}

.job-detail-action .btn-outline-secondary {
  padding: 16px 32px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  border: 2px solid #dee2e6;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.job-detail-action .btn-outline-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(200, 0, 54, 0.05);
}

.job-sidebar-sticky {
  position: sticky !important;
  top: 100px;
  visibility: visible !important;
  display: block !important;
  opacity: 1 !important;
  width: 100% !important;
}

@media (max-width: 991px) {
  .job-sidebar-sticky {
    display: block !important;
    visibility: visible !important;
  }
}

.job-sidebar .sidebar-widget {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.job-sidebar .sidebar-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary-light);
}

.job-sidebar .sidebar-widget:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.job-sidebar .widget-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f1f3f5;
}

.company-intro p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.company-intro ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-intro ul li {
  padding: 12px 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.company-intro ul li i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 0, 54, 0.1) 0%, rgba(233, 69, 96, 0.1) 100%);
  color: var(--primary-color);
  border-radius: 8px;
  font-size: 0.85rem;
  margin-right: 0;
}

.job-list-sidebar {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-list-sidebar li {
  border-bottom: 1px solid #f1f3f5;
  transition: all 0.3s ease;
}

.job-list-sidebar li:hover {
  background: rgba(200, 0, 54, 0.03);
  margin: 0 -12px;
  padding: 0 12px;
  border-radius: 8px;
}

.job-list-sidebar li:last-child {
  border-bottom: none;
}

.job-list-sidebar a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.job-list-sidebar a:hover {
  transform: translateX(6px);
}

.job-list-sidebar a:hover .job-title {
  color: var(--primary-color);
}

.job-list-sidebar .job-title {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.job-list-sidebar .job-salary {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(200, 0, 54, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
}

.job-info-widget {
  background: var(--gradient-white-light) !important;
}

.job-info-widget::before {
  background: var(--gradient-primary-light) !important;
}

.job-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.job-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--bg-primary);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.job-info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(200, 0, 54, 0.15);
}

.job-info-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary-light);
  color: var(--text-white);
  border-radius: 8px;
  font-size: 0.8rem;
}

.job-info-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.job-info-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.job-info-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-info-value.salary-highlight {
  color: var(--primary-color);
  font-size: 0.95rem;
}

.contact-widget {
  background: var(--gradient-white-light) !important;
}

.contact-widget::before {
  background: linear-gradient(90deg, #10b981, #059669) !important;
}

.contact-widget p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.contact-widget .btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: #fff;
  font-weight: 600;
}

.contact-widget .btn-primary:hover {
  background: var(--gradient-primary-dark);
  color: #fff;
  transform: translateY(-2px);
}







.job-detail-card {
  animation: fadeInUp 0.6s ease-out;
}

.job-detail-header {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.job-detail-info {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.job-detail-section {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.job-detail-section:nth-of-type(1) { animation-delay: 0.25s; }
.job-detail-section:nth-of-type(2) { animation-delay: 0.35s; }
.job-detail-section:nth-of-type(3) { animation-delay: 0.45s; }
.job-detail-section:nth-of-type(4) { animation-delay: 0.55s; }
.job-detail-section:nth-of-type(5) { animation-delay: 0.65s; }
.job-detail-section:nth-of-type(6) { animation-delay: 0.75s; }

.job-detail-action {
  animation: fadeInUp 0.6s ease-out 0.85s both;
}

.job-sidebar .sidebar-widget {
  opacity: 0;
  animation: fadeInRight 0.6s ease-out forwards;
}

.job-sidebar .sidebar-widget:nth-child(1) { animation-delay: 0.2s; }
.job-sidebar .sidebar-widget:nth-child(2) { animation-delay: 0.3s; }
.job-sidebar .sidebar-widget:nth-child(3) { animation-delay: 0.4s; }
.job-sidebar .sidebar-widget:nth-child(4) { animation-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .job-detail-card,
  .job-detail-header,
  .job-detail-info,
  .job-detail-section,
  .job-detail-action,
  .job-sidebar .sidebar-widget {
    animation: none;
    opacity: 1;
  }
}

/* ==================== 移动端响应式优化 ==================== */

/* 超小屏幕 (≤575px) */
@media (max-width: 575px) {
  /* 轮播图高度优化 - 占屏幕高度一半 */
  .carousel-slide-1,
  .carousel-slide-2,
  .carousel-slide-3 {
    min-height: 50vh !important;
    height: 50vh !important;
    padding: 80px 0 30px;
  }

  .carousel-container {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .hero-title {
    font-size: 1.25rem !important;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .hero-title-highlight {
    display: inline;
    color: var(--primary-color);
  }

  /* 小屏幕隐藏副标题 */
  .hero-subtitle {
    display: none;
  }

  /* 小屏幕隐藏右侧特性栏 */
  .hero-features-column {
    display: none;
  }

  /* 小屏幕隐藏第二个按钮 */
  .carousel-container .d-flex .btn-ghost-custom {
    display: none;
  }

  /* 按钮优化 */
  .carousel-container .btn-primary-custom {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  /* 轮播指示器优化 */
  .carousel-indicators {
    margin-bottom: 0.5rem;
  }

  .carousel-indicators button {
    width: 20px;
    height: 3px;
  }

  /* 字体大小优化 */
  h1, .h1 { font-size: 1.5rem !important; }
  h2, .h2 { font-size: 1.35rem !important; }
  h3, .h3 { font-size: 1.2rem !important; }
  h4, .h4 { font-size: 1.1rem !important; }

  .section-title h2 {
    font-size: 1.35rem !important;
  }

  .section-title p {
    font-size: 0.9rem;
  }

  /* 面包屑区域 */
  .breadcrumb-section {
    padding: 80px 0 40px;
  }

  .breadcrumb-section h1 {
    font-size: 1.5rem !important;
  }

  .breadcrumb-section p {
    font-size: 1rem;
  }

  /* 按钮优化 */
  .btn-lg-custom,
  .btn-primary-custom {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.875rem;
  }

  /* 卡片内边距优化 */
  .contact-card,
  .brand-card {
    padding: 20px !important;
  }

  .service-card .card-body {
    padding: 20px !important;
  }

  .news-info {
    padding: 16px !important;
  }

  .industry-card .card-body {
    padding: 20px !important;
  }

  .case-card {
    padding: 24px !important;
  }

  .content-card {
    padding: 20px 16px !important;
  }

  /* 解决方案卡片 */
  .solution-card {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

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

  .solution-icon i {
    font-size: 1.3rem;
  }

  .solution-content h4 {
    font-size: 1rem;
  }

  .solution-content p {
    font-size: 0.8rem;
  }

  /* 产品网格 */
  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .product-item {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .product-item .product-icon {
    margin-right: 0;
    margin-bottom: 12px;
    width: 56px;
    height: 56px;
  }

  /* 统计卡片 */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-item {
    padding: 16px 8px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .integration-stats {
    padding: 24px 16px;
  }

  .integration-highlight {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }

  .highlight-icon {
    margin-right: 0;
    margin-bottom: 12px;
  }

  /* 应用场景卡片 */
  .application-flat {
    padding: 20px 12px;
  }

  .application-icon-flat {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .application-icon-flat i {
    font-size: 1.1rem;
  }

  .application-flat h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .application-flat p {
    font-size: 0.8rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* 合作伙伴轮播 */
  .partner-slide {
    width: 140px;
  }

  .partner-logo {
    padding: 8px !important;
  }

  /* 新闻列表 */
  .news-item {
    flex-direction: column;
  }

  .news-thumb {
    width: 100%;
    height: 160px;
  }

  .news-date {
    width: 100%;
    flex-direction: row;
    padding: 12px;
    gap: 8px;
  }

  .date-day {
    font-size: 1.5rem;
  }

  .date-month {
    margin-top: 0;
  }

  /* 新闻列表优化 */
  .news-excerpt {
    display: none;
  }

  .news-title {
    font-size: 1rem !important;
    margin-bottom: 8px;
  }

  .news-tag {
    font-size: 0.7rem;
    padding: 2px 8px;
    margin-bottom: 6px;
  }

  .news-footer {
    padding-top: 8px;
  }

  .news-views {
    font-size: 0.75rem;
  }

  .read-more-link {
    font-size: 0.8rem;
  }

  /* 标签云 */
  .news-categories {
    padding: 16px;
    gap: 8px;
  }

  .category-tag {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  /* 招聘列表 */
  .jobs-benefits {
    grid-template-columns: 1fr !important;
  }

  /* 福利待遇 */
  .benefits-grid-flat {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .benefit-item-flat {
    padding: 20px 12px;
  }

  .benefit-icon-flat {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .benefit-icon-flat i {
    font-size: 1.2rem;
  }

  .benefit-item-flat h4 {
    font-size: 0.9rem;
  }

  .benefit-item-flat p {
    font-size: 0.75rem;
  }

  .job-card {
    padding: 16px;
  }

  /* 招聘卡片扁平化 */
  .job-card-flat {
    padding: 16px;
  }

  .job-card-header-flat {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .job-card-icon {
    width: 50px;
    height: 50px;
  }

  .job-card-header-flat .btn {
    width: 100%;
    text-align: center;
  }

  .job-card-body-flat {
    margin-top: 12px;
  }

  .job-meta-flat {
    flex-wrap: wrap;
    gap: 8px;
  }

  .job-meta-flat span {
    font-size: 0.75rem;
  }

  .job-desc-flat {
    display: none;
  }

  .job-highlights {
    display: none;
  }

  .job-header {
    flex-direction: column;
    gap: 12px;
  }

  .job-salary {
    font-size: 1rem;
  }

  .job-requirements {
    flex-direction: column;
    gap: 8px;
  }

  /* 招聘详情 */
  .job-detail-card {
    border-radius: 12px;
  }

  .job-detail-header {
    flex-direction: column;
    padding: 24px 16px !important;
    gap: 16px;
  }

  .job-detail-title h1 {
    font-size: 1.4rem !important;
  }

  .job-detail-salary {
    text-align: left;
    padding: 16px;
  }

  .job-detail-info {
    grid-template-columns: 1fr !important;
    padding: 16px !important;
  }

  .job-detail-info .info-item {
    padding: 12px;
  }

  .job-detail-section {
    padding: 24px 16px !important;
  }

  .job-detail-action {
    flex-direction: column;
    padding: 20px 16px !important;
  }

  .job-detail-action .btn-primary,
  .job-detail-action .btn-outline-secondary {
    width: 100%;
    text-align: center;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .benefit-card {
    padding: 16px 12px;
  }

  /* 页脚 */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }

  .footer-info-text {
    font-size: 0.9rem;
  }

  .footer-contact-item {
    font-size: 0.85rem;
  }

  .footer-link {
    display: block;
    padding: 4px 0;
  }

  .copyright-text {
    font-size: 0.8rem;
    text-align: center;
  }

  /* CTA区域 */
  .cta-section {
    padding: 40px 0;
  }

  .cta-section h2,
  .cta-section h3 {
    font-size: 1.25rem !important;
  }

  .cta-section p {
    font-size: 0.9rem;
  }

  /* 表单 */
  .contact-form-card {
    padding: 20px !important;
  }

  .form-control {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  /* 品牌卡片 */
  .brand-card .brand-logo {
    width: 100px;
    height: 100px;
  }

  .brand-card h3 {
    font-size: 1.25rem;
  }

  .brand-card p {
    font-size: 0.9rem;
  }

  /* 流程步骤 */
  .process-steps {
    gap: 12px;
  }

  .process-step-flat {
    min-width: 45%;
    max-width: 45%;
    padding: 16px 8px;
  }

  .step-icon-flat {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .step-icon-flat i {
    font-size: 1.2rem;
  }

  .step-content-flat h4 {
    font-size: 0.9rem;
  }

  .step-content-flat p {
    font-size: 0.75rem;
  }

  .process-arrow {
    display: none;
  }

  .process-step-custom {
    min-width: 80px;
  }

  .process-step-custom .step-number-custom {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .process-timeline::before {
    display: none;
  }

  /* 优势网格 */
  .advantage-grid,
  .advantage-grid-flat {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }

  .advantage-item-flat {
    padding: 20px 12px;
  }

  .advantage-num {
    font-size: 2rem;
  }

  .advantage-item-flat h4 {
    font-size: 0.95rem;
  }

  .advantage-item-flat p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  /* CTA区域 */
  .cta-box-section {
    padding: 30px 0;
    text-align: center;
    margin-top: 20px;
  }

  .cta-box-section h3 {
    font-size: 1.25rem !important;
  }

  .cta-box-section p {
    font-size: 0.9rem;
  }

  .cta-box-section .btn-lg {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  /* 团队/品牌区域 */
  .team-section {
    padding: 30px 0;
  }

  .brand-item {
    padding: 16px;
  }

  .brand-item h4 {
    font-size: 0.9rem;
  }

  .brand-item p {
    font-size: 0.75rem;
  }

  /* 特性卡片 */
  .feature-card-flat {
    flex-direction: column;
    padding: 24px 20px;
    text-align: center;
    gap: 16px;
  }

  .feature-card-icon {
    margin-right: 0;
    margin-bottom: 8px;
    width: 56px;
    height: 56px;
  }

  .feature-card-icon i {
    font-size: 1.4rem;
  }

  .feature-card-body h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .feature-card-body p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .feature-card-body ul {
    align-items: center;
  }

  .feature-card-body ul li {
    font-size: 0.8rem;
    padding: 6px 10px;
    padding-left: 24px;
  }

  /* 归档详情页 */
  .brand-detail-header {
    padding-right: 0;
    text-align: center;
  }

  .brand-detail-header .brand-detail-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
  }

  .brand-detail-header h2 {
    font-size: 1.75rem !important;
  }

  .brand-features-grid {
    grid-template-columns: 1fr !important;
  }

  /* 表格响应式 */
  .table-responsive {
    font-size: 0.85rem;
  }



  /* 区块间距 */
  .section {
    padding: 40px 0;
  }

  .section-alt {
    padding: 30px 0;
  }
}

/* 小屏幕平板 (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .carousel-slide-1,
  .carousel-slide-2,
  .carousel-slide-3 {
    min-height: 50vh !important;
    height: 50vh !important;
  }

  .carousel-container {
    padding: 80px 0 40px;
  }

  .hero-title {
    font-size: 1.5rem !important;
  }

  /* 小屏幕平板隐藏副标题 */
  .hero-subtitle {
    display: none;
  }

  /* 小屏幕平板隐藏右侧特性栏 */
  .hero-features-column {
    display: none;
  }

  .section-title h2 {
    font-size: 1.5rem !important;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 中等屏幕平板 (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .carousel-slide-1,
  .carousel-slide-2,
  .carousel-slide-3 {
    min-height: 55vh !important;
  }

  .carousel-container {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 1.8rem !important;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-feature h5 {
    font-size: 0.95rem;
  }

  .hero-features-column {
    gap: 0.75rem;
  }

  /* 核心优势卡片 */
  .advantage-card {
    padding: 20px 16px;
  }

  .advantage-card .icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .advantage-card .icon-box i {
    font-size: 1.3rem;
  }

  .advantage-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .advantage-card p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .solution-card {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  .solution-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
  }

  .solution-icon i {
    font-size: 1.3rem;
  }

  .solution-content h4 {
    font-size: 1rem;
  }

  .solution-content p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .job-detail-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
  .footer-link:hover {
    transform: none;
  }

  .hero-feature:active,
  .advantage-card:active,
  .solution-card:active {
    transform: scale(0.98);
  }
}

/* 横屏模式优化 */
@media (orientation: landscape) and (max-height: 500px) {
  .carousel-slide-1,
  .carousel-slide-2,
  .carousel-slide-3 {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-title {
    font-size: 1.25rem !important;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    display: none;
  }

  .hero-features-column {
    flex-direction: row;
    gap: 12px;
  }

  .hero-feature {
    flex: 1;
    padding: 8px 12px;
  }
}

