:root {
  --primary-color: #111827;
  --secondary-color: #1f2937;
  --accent-color: #635bff;
  --accent-hover: #524bd1;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-light: #9ca3af;
  --text-qianhui: #ffffffa1;
  --background-light: #ffffff;
  --background-off: #f0f0f0;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --border-radius-sm: 4px;
  --border-radius: 10px;
  --border-radius-lg: 90px;
  --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

/* 基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  background-color: var(--background-light);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 14px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 100px 0;
  position: relative;
  /*overflow: hidden;*/
}

.container {
  position: relative;
  z-index: 1;
}

.px-5{
  padding-left: 2rem;
  padding-right: 2rem;
}
/* 按钮样式 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 90px;
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
  font-size: .8rem;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  font-size: .8rem;
}

.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

.btn-gradient {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--accent-color);
  transition: var(--transition);
}

.btn-icon:hover {
  background-color: var(--accent-color);
  color: white;
}
.btn-icon-a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.navbar.scrolled .btn-icon-a{
    color: #000;
}
/* 通知栏 */
.notification-bar {
  background-color: var(--accent-color);
  color: white;
  padding: 0.5rem 0;
  position: relative;
  z-index: 2;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.notification-close {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.notification-close:hover {
  opacity: 0.8;
}

.notification-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 导航栏 */
.navbar {
  padding: 1.5rem 0;
  transition: var(--transition);
  background-color: transparent;
  border-bottom: 1px solid #dddddd36;
}

/* 修复导航栏与通知栏重叠问题 */
.navbar.fixed-top {
  position: fixed;
  top: 32px; /* 通知栏高度 */
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
}

/* 当通知栏关闭时，导航栏回到顶部 */
.notification-bar.d-none + .navbar.fixed-top {
  top: 0;
}

.navbar.scrolled {
  background-color: var(--background-light);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  top: 0;
  transform: translateY(0px);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  border-right:1px solid #dddddd4f;
  padding-right: 40px;
}

.logo-light {
  display: block;
}

.logo-dark {
  display: none;
}

.navbar.scrolled .logo-light {
  display: none;
}

.navbar.scrolled .logo-dark {
  display: block;
}

.navbar-nav {
  margin-left: auto;
}

.nav-item {
  margin: 0 0.5rem;
}

.nav-link {
  color: #fff;
  padding: 0.5rem 1rem;
  position: relative;
  font-size: .9rem;
}
#navbarNav .nav-link:hover{
  color: #635bff;
}
.navbar.scrolled .nav-link {
  color: var(--text-primary);
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--accent-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 80%;
}

.navbar-actions {
  display: flex;
  align-items: center;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  background: transparent;
  position: relative;
  z-index: 1060;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler .navbar-toggler-icon {
  background-image: none !important;
  position: relative;
  width: 24px;
  height: 18px;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link.active{
  color: #635bff;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after,
.navbar-toggler .navbar-toggler-icon span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-toggler .navbar-toggler-icon:before,
.navbar.scrolled .navbar-toggler .navbar-toggler-icon:after,
.navbar.scrolled .navbar-toggler .navbar-toggler-icon span {
  background-color: #171a20;
}

.navbar-toggler .navbar-toggler-icon:before {
  top: 0;
}

.navbar-toggler .navbar-toggler-icon span {
  top: 8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  bottom: 0;
}

/* 汉堡菜单激活状态 */
.navbar-toggler.active .navbar-toggler-icon:before {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler.active .navbar-toggler-icon span {
  opacity: 0;
  transform: translateX(-20px);
}

.navbar-toggler.active .navbar-toggler-icon:after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
}

.hero-title {
  color: #2c3e50;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  color: #34495e;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-description {
    max-width: 400px;
    margin-right: auto;
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 1rem !important;
    line-height: 1.8;
}


.hero-buttons .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-size: .8rem;
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* 主按钮样式 */
.hero-buttons .btn-primary {
  background-color: #635bff;
  color: white;
  border: none;
}

.hero-buttons .btn-primary:hover {
  background-color: #635bff;
}

/* 次要按钮样式 */
.hero-buttons .btn-outline {
  background: transparent;
  color: #34495e;
  border: 1px solid rgba(52, 73, 94, 0.3);
}

.hero-buttons .btn-outline:hover {
  background-color: rgba(52, 73, 94, 0.05);
  border-color: rgba(52, 73, 94, 0.5);
}

/* 添加hero-svg的样式 */
.hero-svg {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .service-hero{
    padding: 100px 30px !important;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
}
.hero-image {
  position: relative;
}

.floating-element {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  opacity: 0.1;
}

.floating-element:nth-child(1) {
  top: -20px;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
  bottom: 10%;
  left: 20%;
  width: 150px;
  height: 150px;
  animation: float 8s ease-in-out infinite;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid white;
  border-radius: 20px;
  display: inline-block;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: white;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

.arrow {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  color: white;
  animation: bounce 2s infinite;
}

/* 服务板块 */
.section-header {
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--accent-color);
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.service-card {
  background-color: #635bff;
  border-radius: var(--border-radius);
  padding: 4rem 2rem;
  height: 100%;
  transition: var(--transition);
  border: 1px solid transparent;
  color: var(--background-light);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-light);
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.service-card:hover::before {
  transform: translateY(0);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--background-light);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.service-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(59, 130, 246, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.service-card:hover .service-icon {
  background-color: transparent;
  color: #635bff;
  transform: scale(1.05);
}

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

.service-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--background-light);
  transition: var(--transition);
  position: relative;
  display: inline-block;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #635bff;
  transition: width 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--text-primary);
}

.service-card:hover .service-title::after {
  width: 100%;
}

.service-description {
  color: var(--text-qianhui);
  margin-bottom: 1.5rem;
  transition: var(--transition);
  font-size: 14px;
  line-height: 1.6;
}

.service-card:hover .service-description {
  color: var(--text-secondary);
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--background-light);
  transition: var(--transition);
  font-size: 13px;
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.service-card:hover .service-link {
  color: var(--accent-color);
}

.service-card:hover .service-link::after {
  width: 100%;
}

.service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

.accordion-button:not(.collapsed), .accordion-button:focus{
  box-shadow:none;
}
/* 品牌信任区 Banner */
.trust-banner {
  position: relative;
  background: linear-gradient(120deg, #7c1cd6, #0cbaec);
  padding: 100px 0;
  color: white;
  overflow: hidden;
}

.trust-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0L100,100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/><path d="M100,0L0,100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
  opacity: 0.3;
}

.trust-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.trust-banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.trust-banner-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

.trust-banner-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.trust-banner .brand-item {
  opacity: 0.9;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.trust-banner .brand-item:hover {
  opacity: 1;
  transform: scale(1.1);
}

.trust-banner-quote {
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

.trust-banner-quote i.bi-quote {
  font-size: 2rem;
  opacity: 0.5;
  margin-bottom: 1rem;
  display: block;
}

.trust-banner-quote p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.quote-author h4 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
  font-weight: 600;
}

.quote-author p {
  margin-bottom: 0;
  font-size: 0.8rem;
  opacity: 0.8;
  font-style: normal;
}

.trust-banner-btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  background-color: white;
  color: var(--accent-color);
  border: none;
}

.trust-banner-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: white;
  color: var(--accent-color);
}

@media (max-width: 991.98px) {
  .trust-banner-brands {
    gap: 2rem;
  }
  
  .trust-banner-title {
    font-size: 2rem;
  }
  
  .trust-banner-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .trust-banner {
    padding: 70px 0;
  }
  
  .trust-banner-brands {
    gap: 1.5rem;
  }
  
  .trust-banner-quote {
    padding: 1.5rem;
  }
  
  .trust-banner-quote p {
    font-size: 1rem;
  }
}

/* 功能优势 */
.feature-row {
  display: flex;
  align-items: center;
  margin-bottom: 6rem;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
  padding: 0 3rem;
}

.feature-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.feature-number {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.feature-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* 价格区域 */
.pricing-section {
  background-color: var(--background-off);
}

.pricing-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border-color);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.pricing-card.featured {
  border-color: var(--accent-color);
  box-shadow: var(--box-shadow);
}

.pricing-badge {
  top: 0;
  right: 0;
  background-color: #000;
  color: white;
  padding:8px 50px;
  transform: rotate(45deg) translate(40px, -20px);
  font-size: 0.8rem;
  font-weight: bold;
  position: absolute;
}

.pricing-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.pricing-title {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.pricing-price {
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
}

.amount {
  font-size: 2rem;
  font-weight: 700;
}

.period {
  font-size: 1rem;
  color: var(--text-light);
}

.pricing-description {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.pricing-features {
  padding: 2rem;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  margin-bottom: .3rem;
  display: flex;
  align-items: center;
  font-size: .8rem;
}

.pricing-features li:last-child {
  margin-bottom: 0;
}

.pricing-features i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing-features .bi-check-circle {
  color: var(--success-color);
}

.pricing-features .bi-x-circle {
  color: var(--text-light);
}

.pricing-features .disabled {
  color: var(--text-light);
}

.pricing-footer {
  padding: 2rem;
  text-align: center;
}

/* 联系我们 */
.contact-section {
  position: relative;
}

.contact-info {
  height: 100%;
  padding-right: 2rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: center;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.25rem;
  color: var(--accent-color);
  flex-shrink: 0;
}
.conact-info{
  top: 0;
  right: 0;
  background-color: #000;
  color: white;
  padding: 5px 25px;
  transform: rotate(45deg) translate(15px, -15px);
  font-size: 0.8rem;
  font-weight: bold;
}
.contact-text {
  flex: 1;
}

.contact-text h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-text p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-form {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
}

/* 联系信息卡片样式 */
.contact-info-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-card .contact-item {
  margin-bottom: 0;
}

.contact-info-card .btn {
  margin-top: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  width: 100%;
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}

.form-floating > textarea.form-control {
  height: auto;
}

.form-floating > label {
  padding: 1rem 0.75rem;
}

/* 页脚 */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding-top: 5rem;
}

.footer-top {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  margin-bottom: 1.5rem;
  height: 40px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-subscribe .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 0.75rem 1rem;
}

.footer-subscribe .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-subscribe .btn {
  padding: 0.75rem 1.5rem;
}

.footer-bottom {
  padding: 2rem 0;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-links li {
  margin-left: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-bottom-links a:hover {
  color: white;
}

/* 返回顶部按钮 */
.back-to-top {
  position: fixed;
  bottom: 1rem;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent-hover);
  transform: translateY(-5px);
  color: white;
}

/* 动画 */
@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* 响应式设计 */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .feature-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 991.98px) {
  section {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-section {
    min-height: 600px;
  }
  
  .navbar-collapse {
    background-color: var(--background-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
  }
  
  .navbar-collapse .nav-link {
    color: var(--text-primary);
  }
  
  .feature-row {
    flex-direction: column;
    margin-bottom: 4rem;
  }
  
  .feature-row.reverse {
    flex-direction: column;
  }
  
  .feature-content {
    padding: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .feature-row.reverse .feature-content {
    margin-bottom: 2rem;
    margin-top: 0;
  }
  
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hero-content {
  position: relative; 
  z-index: 2; 
  height: 100%; 
  display: flex; 
  align-items: center;
}
@media (max-width: 767.98px) {
  section {
    padding: 60px 0;
  }
  .hero-content {
    justify-content: center;
    position: relative; 
    z-index: 2; 
    height: 100%; 
    display: flex; 
    align-items: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    gap: 0.75rem;
    padding: 0 1rem;
    display: flex;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .contact-info {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 1rem;
  }
  
  .footer-bottom-links li {
    margin-left: 0;
    margin-right: 1.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .brands-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* 关于我们部分 */
.about-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.about-decoration {
  position: absolute;
  z-index: 0;
  opacity: 0.6;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-list li {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 0;
  font-size: .9rem;
}
.about-list .list-paddingleft-2{
  padding-left: 1rem;
}
.about-list i {
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}
.about-list li span {
  display: block;
  line-height: 1.3;
  font-size:14px;
}

.about-decoration-1 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--accent-color);
  top: -200px;
  right: -200px;
  animation: morphing 15s ease-in-out infinite alternate;
}

.about-decoration-2 {
  width: 300px;
  height: 300px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background-color: var(--primary-color);
  bottom: -150px;
  left: -150px;
  animation: floating 8s ease-in-out infinite;
}

.about-decoration-3 {
  width: 200px;
  height: 200px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  border: 3px solid var(--accent-color);
  top: 30%;
  right: 10%;
  animation: rotating 20s linear infinite;
}
.about-image img{
  border-radius: 30px;
}

@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

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

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* 动画背景 */
.animated-bg {
  position: relative;
  overflow: hidden;
}

.animated-bg .floating-shape {
  position: absolute;
  opacity: 0.8;
  z-index: 0;
}

.animated-bg .floating-shape:nth-child(1) {
  width: 800px;
  height: 200px;
  top: -150px;
  right: -100px;
  background-color: var(--accent-color);
  border-radius: 100px;
  transform: rotate(-45deg);
}

.animated-bg .floating-shape:nth-child(2) {
  width: 800px;
  height: 200px;
  bottom: -150px;
  left: -100px;
  background-color: var(--primary-color);
  border-radius: 100px;
  transform: rotate(-45deg);
}

.animated-bg .floating-shape:nth-child(3) {
  width: 600px;
  height: 150px;
  top: 40%;
  right: -200px;
  background-color: var(--accent-color);
  border-radius: 100px;
  transform: rotate(-45deg);
}

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

/* 移动端侧边导航菜单 */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1090;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 100%;
  max-width: 320px;
  height: 100%;
  background-color: white;
  z-index: 1100;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.mobile-menu-close:hover {
  opacity: 1;
}

.mobile-menu-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  color: #171a20;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s;
}

.mobile-nav-link:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: #171a20;
}

.mobile-nav-link i {
  font-size: 0.8rem;
  opacity: 0.6;
}

.mobile-nav-bottom {
  margin-top: auto;
  padding: 1rem 0;
}

.mobile-nav-location,
.mobile-nav-account {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: #171a20;
  text-decoration: none;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-account {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-location:hover,
.mobile-nav-account:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: #171a20;
}

.location-icon,
.account-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 12px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
}

.location-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.location-text span:first-child {
  font-weight: 500;
  font-size: 0.9rem;
}

.location-text span:last-child {
  font-size: 0.8rem;
  opacity: 0.7;
}

.account-text {
  flex: 1;
  font-weight: 500;
}

.mobile-nav-location i.bi-chevron-right,
.mobile-nav-account i.bi-chevron-right {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* 添加菜单标题 */
.mobile-menu-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #171a20;
  margin: 0;
}

/* 在移动设备上隐藏桌面导航菜单 */
@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none !important;
  }
  
  .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  body.mobile-menu-open {
    overflow: hidden;
  }
}
.about-content ul li{
  list-style: none;
}
.bi.bi-check2-circle {
  color: #635bff;
  font-size: 18px;
}
/* 热点新闻 */
.news-section {
  background-color: var(--background-light);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.news-list-section .card{
  position: sticky;
  top: 100px;
}

.news-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.news-image {
  position: relative;
  overflow: hidden;
}

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

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

.news-date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.news-content {
  padding: 25px;
}

.news-title {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-title a{
  color: #000;
}
.news-card:hover .news-title {
  color: var(--accent-color);
}

.news-description {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-bottom: 20px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-categories .nav-item .nav-link{
  color: #000;
}
.news-link {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.news-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.news-link:hover::after {
  width: 100%;
}

.news-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.news-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 991.98px) {
  .news-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .news-image img {
    height: 180px;
  }
  
  .news-content {
    padding: 20px;
  }
  
  .news-title {
    font-size: 1.1rem;
  }
}

/* 服务类型页面样式 */
.page-header {
    padding: 180px 0 0px;
    text-align: left;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-dots.png');
    opacity: 0.1;
    z-index: 1;
}



.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header .banner-banner-content .breadcrumb{
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: #fff;
    position: relative;
    z-index: 2;
}

.page-header .btn-light {
    background: #fff;
    color: #635bff;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.page-header .btn-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-header .btn-outline-light {
    color: #fff;
    border: 2px solid #fff;
    background: transparent;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.page-header .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(106,17,203,0.05) 0%, rgba(37,117,252,0.05) 100%);
}

.contact-section h2 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-section p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-section .btn-primary {
    padding: 15px 30px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border: none;
    box-shadow: 0 5px 15px rgba(37,117,252,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,117,252,0.4);
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

/* 服务详情页样式 */
.services-desc-section {
    padding: 80px 0;
    background-color: #fff;
}

/* 服务标题区域 */
.service-hero {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.service-subtitle {
    display: block;
    font-size: 120px;
    font-weight: 800;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255 255 255 / 14%);
    text-transform: uppercase;
    letter-spacing: 5px;
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}
.process-desc p{
  font-size: 14px;
}
.page-title {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: inline-block;
    color: #fff;
}

@media (max-width: 991px) {
    .service-subtitle {
        font-size: 80px;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {
    .service-subtitle {
        font-size: 60px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
}

.service-category {
    display: inline-block;
    background: linear-gradient(90deg, #635bff, #ff7a6b);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-hero-content h1 {
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.service-hero-content .lead {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 40px;
}

.service-hero-content .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-hero-content .btn-primary {
    background: linear-gradient(90deg, #635bff, #ff7a6b);
    border: none;
    box-shadow: 0 10px 20px rgba(99, 91, 255, 0.2);
}

.service-hero-content .btn-outline-primary {
    border: 2px solid #635bff;
    color: #635bff;
}

.service-hero-content .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(99, 91, 255, 0.3);
}

/* 服务图片 */
.service-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
}

.service-stats {
    display: flex;
    justify-content: space-around;
    color: white;
    text-align: center;
}

.service-stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #fff, #ff7a6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-stat-item p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

/* 服务内容 */
.service-section {
    margin-bottom: 50px;
}

.service-section h2 {
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.service-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #635bff, #ff7a6b);
    border-radius: 2px;
}

.service-section p {
    color: #6c757d;
    line-height: 1.8;
}

/* 服务特点 */
.service-features {
    margin-bottom: 60px;
}

.feature-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: #635bff;
    border-radius: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature-desc {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* 服务流程 */
.service-process {
    margin-bottom: 60px;
    border:1px solid #ddd;
    padding:20px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.process-timeline {
    position: relative;
    padding-left: 15px;
}

.process-day-marker {
    position: relative;
    min-width: 30px;
}

.process-day-dot {
    width: 18px;
    height: 18px;
    background-color: #635bff;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-day-dot::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
}

.process-day-line {
    position: absolute;
    top: 0px;
    left: 8px;
    width: 2px;
    height: calc(100% + 60px);
    background-color: rgba(99, 91, 255, 0.3);
    z-index: 1;
}

.process-day:last-child .process-day-line {
    display: none;
}

.process-day-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #635bff;
}

.process-day-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}
.services-cta-section{
  padding: 0;
}
.process-day-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgb(0 0 0 / 0%);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.process-day-toggle:hover {
    background-color: #f8f9fa;
}

.process-day-toggle i {
    transition: transform 0.3s ease;
}

.process-day-toggle.collapsed i {
    transform: rotate(-90deg);
}

.process-day-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-day-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.process-day-features li:last-child {
    margin-bottom: 0;
}

.process-header{
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s ease;
}

.process-header:hover {
  background-color: rgba(99, 91, 255, 0.05);
}

.process-day-content{
  width: 100%;
}

/* 右侧信息卡片样式 */
.process-info-card {
    height: auto;
    max-height: 550px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    overflow-y: auto;
    position: sticky;
    top: 100px;
}

/* 卡片固定效果 */
.process-info-card.sticky {
    position: fixed;
    top: 100px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.process-info-item {
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.process-info-label {
    color: #6c757d;
    font-size: 14px;
}
.process-info-label i{
    margin-right: 6px;
}
.process-info-value {
    color: #333;
    font-size: 14px;
}

.process-info-price {
    color: #635bff;
}

.process-info-original-price {
    font-size: 0.9rem;
}

.process-info-link {
    color: #6c757d;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.process-info-link:hover {
    color: #635bff;
}

@media (max-width: 991px) {
    .process-info-card {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .process-day-images .col-md-6:first-child {
        margin-bottom: 15px;
    }
}

/* 服务相册轮播图 */
.service-gallery {
  margin-bottom: 60px;
  position: relative;
}

.service-swiper {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px;
  color: white;
  transition: opacity 0.3s ease;
}

.gallery-overlay h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.gallery-overlay p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: #606060;
  background-color: rgba(255, 255, 255, 0.11);
  width: 30px;
  height: 60px;
  border-radius: 10%;
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: white;
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: white;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
}

.gallery-thumbs {
  margin-top: 15px;
}

.gallery-thumb {
  cursor: pointer;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  opacity: 0.7;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gallery-thumb img {
  width: 100%;
  height: 70px;
  object-fit: cover;
}

.gallery-thumb:hover {
  opacity: 1;
}

.gallery-thumb.active {
  opacity: 1;
  border-color: var(--accent-color);
}

@media (max-width: 991px) {
  .gallery-item {
    height: 400px;
  }
  
  .gallery-thumb img {
    height: 60px;
  }
}

@media (max-width: 767px) {
  .gallery-item {
    height: 300px;
  }
  
  .gallery-overlay h4 {
    font-size: 1.2rem;
  }
  
  .gallery-overlay p {
    font-size: 0.9rem;
  }
  
  .gallery-thumb img {
    height: 50px;
  }
}

/* 相册页面样式 */
.gallery-page-section {
  padding: 80px 0;
}

.gallery-filter {
  margin-bottom: 30px;
}

.gallery-filter button {
  margin: 0 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.gallery-filter button.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.gallery-grid {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.gallery-sizer {
  width: 33.333%;
}

.gallery-grid .gallery-item {
  width: 33.333%;
  padding: 7.5px;
  height: auto;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-grid .gallery-item img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-sm);
  transition: all 0.5s ease;
}

.gallery-grid .gallery-item-overlay {
  position: absolute;
  bottom: 7.5px;
  left: 7.5px;
  right: 7.5px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: white;
  border-bottom-left-radius: var(--border-radius-sm);
  border-bottom-right-radius: var(--border-radius-sm);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-grid .gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.gallery-item-content p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* 响应式样式 */
@media (max-width: 991px) {
  .gallery-sizer,
  .gallery-grid .gallery-item {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .gallery-sizer,
  .gallery-grid .gallery-item {
    width: 100%;
  }
  
  .gallery-filter button {
    margin-bottom: 10px;
  }
}

/* 服务CTA区域 */
.service-cta {
  background-color: var(--accent-color);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0L100,100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/><path d="M100,0L0,100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
  opacity: 0.3;
}

.service-cta::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-content .btn-primary {
  background-color: white;
  color: var(--accent-color);
  border: none;
  padding: 15px 40px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cta-content .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-decoration {
  position: absolute;
  z-index: 1;
}

.cta-decoration-1 {
  top: -30px;
  left: 10%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.cta-decoration-2 {
  bottom: -20px;
  right: 15%;
  width: 150px;
  height: 150px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background-color: rgba(255, 255, 255, 0.1);
  animation: float 8s ease-in-out infinite alternate;
}

@media (max-width: 767px) {
  .service-cta {
    padding: 60px 0;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-content .btn-primary {
    padding: 12px 30px;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-contact-info {
  font-size: 1rem;
  color: white;
  opacity: 0.9;
}

.cta-contact-info span {
  display: inline-flex;
  align-items: center;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.cta-contact-info span:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.cta-contact-info i {
  font-size: 1.1rem;
}

.related-services-section {
  padding: 80px 0;
  background-color: var(--background-off);
  position: relative;
  overflow: hidden;
}

.related-services-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(99, 91, 255, 0.05);
  z-index: 0;
}

.related-services-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background-color: rgba(99, 91, 255, 0.05);
  z-index: 0;
}

.related-services-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.related-services-title h2 {
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.related-services-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.related-service-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 1;
}

.related-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.related-service-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.related-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.related-service-content {
  padding: 25px;
}

.related-service-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.related-service-card:hover .related-service-title {
  color: var(--accent-color);
}

.related-service-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.related-service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.related-service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}

.related-service-features li i {
  color: var(--accent-color);
  font-size: 0.8rem;
}

.related-service-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.related-service-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.related-service-link:hover::after {
  width: 100%;
}

.related-service-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.related-service-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .related-service-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .related-services-section {
    padding: 60px 0;
  }
  
  .related-service-image {
    height: 180px;
  }
}

.circular-menu {
  position: fixed;
  bottom: 5em;
  right: 1.87em;
  z-index: 1000;
}

.circular-menu .floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2em;
  height: 3.2em;
  border-radius: 50%;
  background: #000;
  box-shadow: 0 4px 15px rgba(44, 116, 5, 0.3);
  color: #ffffff;
  cursor: pointer;
  outline: none;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.circular-menu.active .floating-btn {
  box-shadow:1px 0px 10px 10px rgb(99, 91, 255);
  transform: scale(0.95);
}

.circular-menu .floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 116, 5, 0.4);
}

.circular-menu .floating-btn i {
  font-size: 1.5em;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
}

.circular-menu.active .floating-btn i {
  transform: rotate(-90deg);
}

.circular-menu:after {
  display: block;
  content: '';
  width: 3.2em;
  height: 3.2em;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
  background: #000;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.9;
}

.circular-menu.active:after {
  transform: scale3d(6, 6, 1);
}

.circular-menu .items-wrapper {
  padding: 5px;
  margin: 0;
  list-style: none;
}

.circular-menu .menu-item {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.2em;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: scale(0.5);
}


.circular-menu.active .menu-item {
  opacity: 1;
  transform: scale(1);
}

.circular-menu.active .menu-item:nth-child(1) {
  transform: translate3d(1em, -6em, 0);
  transition-delay: 0.1s;
}

.circular-menu.active .menu-item:nth-child(2) {
  transform: translate3d(-2.5em, -4.3em, 0);
  transition-delay: 0.2s;
}

.circular-menu.active .menu-item:nth-child(3) {
  transform:translate3d(-4.5em, -.9em, 0);
  transition-delay: 0.3s;
}

.circular-menu.active .menu-item:nth-child(4) {
  transform: translate3d(-4em, 2.9em, 0);
  transition-delay: 0.4s;
}

