@charset "UTF-8";
.services-page {
  padding: 0;
  background: white;
}

.services-page .page-header {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(59, 130, 246, 0.9) 100%);
  color: white;
  padding: 78px 0 58px;
  height: 261px;
  box-sizing: border-box;
}
.services-page .page-header .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  height: 100%;
}
@media (min-width: 768px) {
  .services-page .page-header .container {
    padding: 0 1.5rem;
  }
}
.services-page .page-header .page-title {
  flex: 1;
  min-width: 200px;
  margin-top: 40px;
}
.services-page .page-header .page-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.services-page .page-header .page-title p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.6;
  height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.services-page .page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}
.services-page .page-header .breadcrumb a {
  color: white;
  text-decoration: none;
}
.services-page .page-header .breadcrumb a:hover {
  opacity: 1;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes growFromCenter {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    opacity: 0.8;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.services-tabs {
  display: flex;
  justify-content: center;
  padding: 2rem 0 1rem;
  border-bottom: 1px solid #e5e7eb;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.services-tab {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #6b7280;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.services-tab::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.services-tab.active {
  color: #1e3a8a;
}

.services-tab.active::before {
  transform: scaleX(1);
}

.services-tab:hover {
  color: #1e3a8a;
  transform: translateY(-2px);
}

.services-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.services-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start; /* 顶部对齐 */
  margin-bottom: 4rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 1024px) {
  .services-section {
    grid-template-columns: 1.2fr 0.8fr; /* 调整网格比例，让文字区域更宽 */
    align-items: start;
  }
}

/* 服务图片样式 */
.services-images {
  margin-left: 12rem; /* 大幅增加左外边距，使图片向右移动到合适位置 */
  display: flex;
  justify-content: flex-start; /* 左对齐 */
  align-items: flex-start;
  padding-top: 10px; /* 微调图片垂直位置，与文字标题对齐 */
}

.services-images img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.services-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 50%, #8B5CF6 100%);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
  animation: none;
}

/* 为服务图标添加发光效果 */
.service-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  filter: blur(24px);
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-icon::before {
  opacity: 0.6;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #1e3a8a;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover h3 {
  color: #3b82f6;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover p {
  color: #374151;
}

/* 服务卡片一行布局 */
.services-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  margin-top: 4rem;
  justify-content: center;
  padding: 2rem 0;
}

/* 服务卡片样式 */
.service-card {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 50%, #8B5CF6 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.18);
}

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

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

/* 响应式设计 */
@media (max-width: 768px) {
  .services-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .services-text h2 {
    font-size: 2rem;
  }
  .services-tab {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }
  .services-cards {
    grid-template-columns: 1fr;
  }
}
/* 技术平台展示样式 */
.tech-platforms {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.03) 100%);
  padding: 6rem 2rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-left: 1rem;
  margin-right: 1rem;
}

/* 添加背景装饰元素 */
.tech-platforms::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  transform: rotate(30deg);
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.tech-platforms::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  transform: rotate(-20deg);
  z-index: 0;
  animation: float 7s ease-in-out infinite reverse;
}

.tech-platforms .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tech-platforms h2 {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  color: #1e3a8a;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.tech-platforms h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
}

/* 技术平台一行布局 */
.platforms-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 0;
}

/* 技术平台卡片样式 */
.platform-card {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 50%, #8B5CF6 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.platform-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.18);
}

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

.platform-card:hover::after {
  opacity: 1;
}

.platform-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  color: #1e3a8a;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.platform-card:hover h3 {
  color: #3b82f6;
}

/* 技术平台列表样式 */
.platform-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.platform-card ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #4b5563;
  line-height: 1.6;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.platform-card:hover ul li {
  color: #374151;
  transform: translateX(4px);
}

.platform-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.3s ease;
}

.platform-card:hover ul li::before {
  transform: translateX(4px);
  color: #8b5cf6;
}

/* 服务部分文字样式 */
.services-text h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #1e3a8a;
  position: relative;
  display: inline-block;
}

.services-text h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
}

.services-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 2rem;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .services-cards,
  .platforms-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .service-card,
  .platform-card {
    max-width: 320px;
  }
}
@media (max-width: 768px) {
  .services-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 1.5rem;
  }
  .services-text h2 {
    font-size: 2.2rem;
  }
  .services-tab {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }
  .services-cards,
  .platforms-grid {
    gap: 1.5rem;
  }
  .service-card,
  .platform-card {
    min-width: 260px;
    padding: 2rem 1.5rem;
  }
  .services-content {
    padding: 2rem 1rem;
  }
  .tech-platforms {
    padding: 4rem 1rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .tech-platforms h2 {
    font-size: 2.2rem;
  }
  .services-section:hover {
    transform: none;
  }
}
/* 平滑滚动效果 */
html {
  scroll-behavior: smooth;
}

/* 加载动画 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.services-cards,
.platforms-grid {
  animation: fadeIn 0.8s ease-out;
}

/* 卡片序列动画 */
.service-card:nth-child(1),
.platform-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2),
.platform-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3),
.platform-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4),
.platform-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card:nth-child(5),
.platform-card:nth-child(5) {
  animation-delay: 0.5s;
}

/*# sourceMappingURL=services.css.map */
