/*-----------------------------------*\
  #main.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --rich-black-fogra-29: hsl(222, 44%, 8%);
  --middle-blue-green_40: hsla(174, 64%, 71%, 0.4);
  --midnight-green: hsl(186, 100%, 19%);
  --midnight-green_a25: hsla(186, 100%, 19%, 0.25);
  --independece: hsl(236, 14%, 39%);
  --verdigris: hsl(182, 100%, 35%);
  --ming: hsl(186, 72%, 24%);
  --space-cadet: hsla(226, 45%, 24%);
  --eerie-black: hsl(0, 0%, 13%);
  --alice-blue: hsl(187, 25%, 94%);
  --gray-web: hsl(0, 0%, 50%);
  --gainsboro: hsl(0, 0%, 87%);
  --white: hsl(0, 0%, 100%);
  --white_a20: hsla(0, 0%, 100%, 0.2);
  --white_a10: hsla(0, 0%, 100%, 0.1);
  --black: hsl(0, 0%, 0%);

  /**
   * typography
   */

  --ff-oswald: 'Oswald', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;
  
  --headline-lg: 5rem;
  --headline-md: 3rem;
  --headline-sm: 2rem;
  --title-lg: 1.8rem;
  --title-md: 1.5rem;
  --title-sm: 1.4rem;
  
  --fw-500: 500;
  --fw-700: 700;

  /**
   * spacing
   */

  --section-padding: 120px;

  /**
   * box shadow
   */

  --shadow-1: 0px 2px 20px hsla(209, 36%, 72%, 0.2);
  --shadow-2: 0 4px 16px hsla(0, 0%, 0%, 0.06);

  /**
   * border radius
   */

  --radius-circle: 50%;
  --radius-12: 12px;
  --radius-6: 6px;
  --radius-4: 4px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 1s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a,
img,
span,
time,
input,
button,
ion-icon { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
  outline: none;
}

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-size: 10px;
  font-family: var(--ff-rubik);
  scroll-behavior: smooth;
}

/* 确保点击后导航栏不会遮挡内容 */
#testimonials {
  scroll-margin-top: 100px;
}

body {
  background-color: var(--white);
  font-size: 1.6rem;
  color: var(--independece);
  line-height: 1.8;
  overflow: hidden;
}

body.loaded { overflow-y: visible; }

body.nav-active { overflow: hidden; }


  /* 二维码弹窗样式 */
  .qr-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }

  .qr-modal.active {
    display: flex;
  }

  .qr-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 320px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 102, 102, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
  }

  @keyframes modalSlideIn {
    from {
      opacity: 0;
      transform: translateY(-30px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .qr-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--cadet-gray);
    transition: color 0.3s ease;
  }

  .qr-modal-close:hover {
    color: var(--midnight-green);
  }

  .qr-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--midnight-green);
    margin-bottom: 16px;
  }

  .qr-modal-subtitle {
    color: var(--cadet-gray);
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .qr-code-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background: #f8f8f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
  }

  .qr-modal-note {
    font-size: 14px;
    color: var(--cadet-gray);
    margin-top: 20px;
  }


/*-----------------------------------*\
  小程序/公众号 二维码
\*-----------------------------------*/
.qrcode-section {
  margin-bottom: 25px;
}

.qrcode-title {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.qrcode-image {
  width: 120px;
  height: 120px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  color: #666;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #e6f7ff;
  color: #1890ff;
}

.social-icon .qrcode-popup {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  padding: 10px;
  background: white;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.social-icon:hover .qrcode-popup {
  opacity: 1;
  visibility: visible;
}


/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 16px; }

.headline-lg {
  font-size: var(--headline-lg);
  color: var(--white);
  font-weight: var(--fw-500);
  line-height: 1.2;
}

.headline-md {
  font-size: var(--headline-md);
  font-weight: var(--fw-700);
}

.headline-lg,
.headline-md { font-family: var(--ff-oswald); }

.headline-md,
.headline-sm { line-height: 1.3; }

.headline-md,
.headline-sm { color: var(--midnight-green); }

.headline-sm { font-size: var(--headline-sm); }

.title-lg { font-size: var(--title-lg); }

.title-md { font-size: var(--title-md); }

.title-sm { font-size: var(--title-sm); }

.social-list { display: flex; }

.section { padding-block: var(--section-padding); }

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.btn {
  background-color: var(--verdigris);
  color: var(--white);
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-6);
  overflow: hidden;
}

.btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--eerie-black);
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}

.btn:is(:hover, :focus-visible)::before { transform: translateX(100%); }

.w-100 { width: 100%; }

.grid-list {
  display: grid;
  gap: 40px 28px;
}

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

[data-reveal] {
  opacity: 0;
  transition: var(--transition-2);
}

[data-reveal].revealed { opacity: 1; }

[data-reveal="bottom"] { transform: translateY(50px); }

[data-reveal="bottom"].revealed { transform: translateY(0); }

[data-reveal="left"] { transform: translateX(-50px); }

[data-reveal="right"] { transform: translateX(50px); }

[data-reveal="left"].revealed,
[data-reveal="right"].revealed { transform: translateX(0); }





/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--verdigris);
  display: grid;
  place-items: center;
  z-index: 6;
  transition: var(--transition-1);
}

.preloader.loaded {
  visibility: hidden;
  opacity: 0;
}

.preloader .circle {
  width: 50px;
  height: 50px;
  border: 4px solid var(--white);
  border-radius: var(--radius-circle);
  border-block-start-color: transparent;
  animation: rotate360 1s ease infinite;
}

@keyframes rotate360 {
  0% { transform: rotate(0); }
  100% { transform: rotate(1turn); }
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn { display: none; }

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 16px;
  z-index: 4;
}

.header.active {
  position: fixed;
  background-color: var(--rich-black-fogra-29);
  animation: headerActive 0.5s ease forwards;
}

@keyframes headerActive {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-open-btn {
  color: var(--white);
  font-size: 4rem;
}

.navbar,
.overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
}

.navbar {
  right: -300px;
  max-width: 300px;
  background-color: var(--rich-black-fogra-29);
  z-index: 3;
  transition: 0.25s var(--cubic-in);
  visibility: hidden;
}

.navbar.active {
  transform: translateX(-300px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  position: relative;
  padding-inline: 25px;
  padding-block: 55px 100px;
}

.nav-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--white);
  font-size: 2.8rem;
}

.navbar-list {
  margin-block-end: 30px;
  border-block-end: 1px solid var(--white_a10);
}

.navbar-item { border-block-start: 1px solid var(--white_a10); }

.navbar-link {
  color: var(--white);
  text-transform: uppercase;
  padding: 10px 24px;
  font-size: 1.15rem; /* 新增 */
  font-weight: 600;   /* 新增 */
}

.social-list {
  justify-content: center;
  gap: 20px;
  color: var(--white);
  font-size: 1.8rem;
}

.overlay {
  right: -100%;
  background-color: var(--black);
  opacity: 0.3;
  visibility: hidden;
  transition: var(--transition-2);
  z-index: 2;
}

.overlay.active {
  transform: translateX(-100%);
  visibility: visible;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero-banner { display: none; }

.hero {
  background-color: var(--midnight-green);
  --section-padding: 200px;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-subtitle {
  color: var(--white);
  font-weight: var(--fw-500);
  padding-inline-start: 80px;
}

.hero-subtitle::before {
  top: 50%;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: var(--white);
}

.hero-title { margin-block: 20px 30px; }

.hero-card {
  background-color: var(--white);
  border-radius: var(--radius-12);
  padding: 20px;
}

.hero-card .card-text {
  color: var(--eerie-black);
  border-block-end: 1px solid var(--midnight-green_a25);
  padding-block-end: 12px;
  margin-block-end: 14px;
}

.hero-card .input-wrapper { position: relative; }

.hero-card .input-field {
  color: var(--eerie-black);
  border-block-end: 1px solid var(--gainsboro);
  padding-inline-end: 18px;
}

.hero-card .input-wrapper ion-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--verdigris);
}

.hero-card .btn {
  width: 100%;
  justify-content: center;
  margin-block-start: 16px;
}





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service-list {
  padding-block: 60px 30px;
  padding-inline: 25px;
  display: grid;
  gap: 30px;
  border-radius: var(--radius-12);
  margin-block-start: -60px;
  background-color: var(--white);
  box-shadow: var(--shadow-1);
}

.service-card { text-align: center; }

.service-card .card-icon,
.btn-circle {
  max-width: max-content;
  margin-inline: auto;
}

.service-card .card-icon { margin-block-end: 25px; }

.service-card .card-text { margin-block: 20px 15px; }

.service-card .btn-circle {
  color: var(--verdigris);
  font-size: 2rem;
  padding: 18px;
  border-radius: var(--radius-circle);
  box-shadow: var(--shadow-2);
  transition: var(--transition-1);
}

.service-card .btn-circle:is(:hover, :focus-visible) {
  background-color: var(--verdigris);
  color: var(--white);
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about { padding-block-end: 0; }

.about .container {
  display: grid;
  gap: 20px;
}

.about .section-text { margin-block: 20px 35px; }

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 15px;
}

.tab-btn {
  background-color: var(--alice-blue);
  color: var(--midnight-green);
  padding: 7px 30px;
  border-radius: var(--radius-6);
  font-weight: var(--fw-700);
}

.tab-btn.active {
  background-color: var(--verdigris);
  color: var(--white);
}

.tab-text {
  color: var(--midnight-green);
  margin-block: 35px;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block-end: 10px;
}

.about-item ion-icon {
  color: var(--verdigris);
  font-size: 2rem;
  flex-shrink: 0;
}





/*-----------------------------------*\
  #LISTING
\*-----------------------------------*/

.listing { background-color: var(--alice-blue); }

.listing-card {
  padding: 25px 16px;
  display: flex;
  gap: 20px;
  border: 2px solid var(--middle-blue-green_40);
  border-radius: var(--radius-12);
  transition: var(--transition-1);
}

.listing-card:is(:hover, :focus-visible) { border-color: var(--verdigris); }

.listing-card .card-title {
  margin-block-end: 5px;
  font-family: var(--ff-oswald);
}

.listing-card .card-text { color: var(--midnight-green); }





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog {
  background-image: linear-gradient(to bottom, var(--alice-blue) 60%, var(--white) 60%);
  padding-block-start: 0;
}

.blog .section-title { margin-block-end: 60px; }

.blog-card {
  padding: 50px 36px;
  border-radius: var(--radius-12);
  border: 2px solid var(--alice-blue);
  background-image: url('../images/blog-card.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.blog-card::before,
.blog-card::after {
  inset: 0;
  z-index: -1;
  transition: var(--transition-3);
}

.blog-card::before {
  background-color: var(--midnight-green);
  opacity: 0.9;
}

.blog-card::after { background-color: var(--white); }

.blog-card:is(:hover, :focus-within)::after { transform: translateY(100%); }

.blog-card .meta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  margin-block-end: 12px;
}

.blog-card .card-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--midnight-green);
}

.blog-card .card-meta ion-icon { font-size: 1.8rem; }

.blog-card .card-meta:first-child .span { text-transform: uppercase; }

.blog-card .date {
  color: var(--space-cadet);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  opacity: 0.5;
  margin-block: 16px;
}

.blog-card .btn-text {
  color: var(--verdigris);
  margin-block-start: 12px;
}

.blog-card :is(.card-meta, .card-title, .date, .card-text, .btn-text) {
  transition: var(--transition-2);
}

.blog-card:is(:hover, :focus-within) :is(.card-meta, .card-title, .date, .card-text, .btn-text) {
  color: var(--white);
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--midnight-green);
  color: var(--white);
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
}

.footer-top {
  display: grid;
  gap: 40px;
  padding-block-end: 60px;
}

.footer-brand {
  background-color: var(--ming);
  padding: 32px;
  border-radius: var(--radius-6);
}

.footer .logo { margin-block-end: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-block-start: 12px;
}

.contact-item .item-icon { font-size: 4rem; }

.contact-link {
  display: inline;
  transition: var(--transition-1);
}

.contact-link:is(:hover, :focus-visible) { color: var(--verdigris); }

.footer-list-title {
  color: var(--white);
  font-weight: var(--fw-700);
  margin-block-end: 20px;
}

.footer .text { opacity: 0.7; }

.footer .address {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-start: 20px;
}

.footer .address ion-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.footer-link {
  margin-block-start: 8px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) { color: var(--verdigris); }

.footer-form .input-field {
  color: var(--white);
  border: 1px solid var(--white_a20);
  border-radius: var(--radius-4);
  padding: 8px 20px;
}

.footer-form .input-field::placeholder { color: inherit; }

.footer-form .btn {
  width: 100%;
  justify-content: center;
  margin-block: 12px 28px;
}

.footer-bottom {
  padding-block: 32px;
  border-block-start: 1px solid var(--white_a20);
}

.footer-bottom .social-list {
  justify-content: flex-start;
  gap: 8px;
  margin-block-start: 16px;
}

.footer-bottom .social-link {
  font-size: 1.4rem;
  padding: 12px;
  background-color: var(--white_a10);
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}

.footer-bottom .social-link:is(:hover, :focus-visible) { background-color: var(--verdigris); }





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--verdigris);
  color: var(--white);
  padding: 16px;
  font-size: 2rem;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
  z-index: 3;
}

.back-top-btn:is(:hover, :focus-visible) { background-color: var(--eerie-black); }

.back-top-btn.active {
  transform: translateY(-10px);
  opacity: 1;
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --headline-lg: 8rem;
    --headline-md: 4.8rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 750px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .header .btn { display: block; }

  .nav-open-btn { margin-inline-start: auto; }

  .header .container { gap: 40px; }



  /**
   * HERO
   */

  .hero-title { line-height: 1.125; }

  .hero .wrapper {
    display: flex;
    gap: 16px;
  }

  .hero-card .input-wrapper { flex-grow: 1; }

  .hero-card .input-field { height: 100%; }

  .hero-card .btn {
    width: max-content;
    margin-block-start: 0;
  }



  /**
   * SERVICE
   */

  .service-list { grid-template-columns: 1fr 1fr; }



  /**
   * ABOUT
   */

  .about-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .about-banner {
    max-width: max-content;
    margin-inline: auto;
  }



  /**
   * LISTING
   */

  .listing .grid-list { grid-template-columns: 1fr 1fr; }

  .listing .grid-list > li:first-child { grid-column: 1 / 3; }



  /**
   * FOOTER
   */

  .footer-top { grid-template-columns: 1fr 1fr; }

  .footer-brand { grid-column: 1 / 3; }

  .contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom .social-list { margin-block-start: 0; }

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 940px; }



  /**
   * HERO
   */

  .hero-banner {
    display: block;
    max-width: max-content;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }



  /**
   * SERVICE
   */

  .service-list { grid-template-columns: repeat(4, 1fr); }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr 0.8fr;
    align-items: flex-end;
  }

  .about-content { padding-block-end: var(--section-padding); }

  .about-banner { margin-inline-end: -80px; }



  /**
   * BLOG
   */

  .blog .grid-list { grid-template-columns: 1fr 1fr; }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1200px; }



  /**
   * HEADER
   */

  .header { padding-block: 24px; }

  .nav-open-btn,
  .overlay,
  .navbar-top,
  .navbar .social-list { display: none; }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
    display: block;
  }

  .navbar { margin-inline-start: auto; }

  .navbar-list {
    display: flex;
    gap: 8px;
  }

  .navbar-item { border-block-start: none; }

  .navbar-link {
    --title-md: 1.8rem;
    font-size: 1.2rem;   /* 新增 */
    font-weight: 600;    /* 修改 */
    padding-inline: 16px;
    text-transform: capitalize;
}



  /**
   * HERO
   */

  .hero .container {
    grid-template-columns: 0.8fr 1fr;
    gap: 96px;
  }



  /**
   * LISTING
   */

  .listing .grid-list { grid-template-columns: repeat(4, 1fr); }



  /**
   * BLOG
   */

  .blog .grid-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * FOOTER
   */

  .footer { background-size: auto; }

  .footer-top { grid-template-columns: repeat(4, 1fr); }

  .footer-brand {
    grid-column: 1 / 5;
    padding: 28px 56px;
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    align-items: center;
  }

  .footer .logo { margin-block-end: 0; }

  .contact-list { justify-content: space-between; }

  .contact-list::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--white_a20);
  }

  .contact-item { margin-block-start: 0; }

}

/* 通用文章内容样式 - 适用于所有文章页面 */

/* 面包屑导航样式 */
.breadcrumb {
  padding: 12px 0 8px 0;
  background: var(--cultured);
}

.breadcrumb-content {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb-link {
  color: var(--verdigris);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-link:hover {
  color: var(--midnight-green);
}

.breadcrumb-separator {
  color: var(--cadet-gray);
}

.breadcrumb-current {
  color: var(--cadet-gray);
}

/* 简化版二维码弹出层 */
.social-icon {
  position: relative;
  display: inline-block;
  margin: 0 10px;
  cursor: pointer;
}

.social-icon .qrcode-popup {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 1000;
  margin-bottom: 10px;
}

.social-icon:hover .qrcode-popup {
  display: block;
  animation: fadeInUp 0.3s ease;
}

.qrcode-popup .qrcode-image img {
  width: 120px;
  height: 120px;
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* 添加复制成功提示的样式 */
.copy-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 166, 166, 0.9);
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  z-index: 10000;
  display: none;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: fadeInOut 2s ease-in-out;
}

.copy-toast.show {
  display: flex;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateX(-50%) translateY(20px); }
  15% { opacity: 1; transform: translateX(-50%) translateY(0); }
  85% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
}


    
/* 邮箱和电话图标悬停样式 */
.social-icons .social-icon {
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-icons .social-icon:hover {
  transform: translateY(-2px);
}

/* 确保二维码弹窗在复制功能后也能正常显示 */
.social-icons .social-icon .qrcode-popup {
  z-index: 1000;
}

/*-----------------------------------*\
  #PROCESS PAGE STYLES
\*-----------------------------------*/

/* 流程步骤样式 - 优化版 */
.process-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #f0f9f9 100%);
  position: relative;
  overflow: hidden;
}

.process-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 60px 0;
  position: relative;
}

.process-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
}

.process-step {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 102, 102, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 166, 166, 0.1);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 102, 102, 0.15);
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--verdigris), #00c6c6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 25px;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 166, 166, 0.3);
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(0, 166, 166, 0.1), rgba(0, 166, 166, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.step-icon ion-icon {
  font-size: 42px;
  color: var(--verdigris);
}

.step-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--midnight-green);
  font-size: 1.8rem; /* 从 1.6rem 增加到 1.8rem */
  line-height: 1.3;
}

.step-desc {
  font-size: 1.4rem; /* 从 1.2rem 增加到 1.4rem */
  color: var(--cadet-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

/* 连接线样式优化 */
.step-connector {
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--verdigris), #00c6c6);
  z-index: 1;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid var(--verdigris);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.row-connector {
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  width: 3px;
  height: 50px;
  background: linear-gradient(to bottom, var(--verdigris), #00c6c6);
  z-index: 1;
}

.row-connector::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid var(--verdigris);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

/* 装饰元素 */
.process-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 166, 166, 0.05), transparent);
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  right: 8%;
}

/* 区域标题样式优化 */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  color: var(--midnight-green);
  margin-bottom: 24px;
  font-size: 3rem; /* 从 2.8rem 增加到 3rem */
  font-weight: 700;
  line-height: 1.2;
}

.section-header p {
  color: var(--cadet-gray);
  font-size: 1.6rem; /* 从 1.4rem 增加到 1.6rem */
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* CTA按钮样式优化 */
.cta-section {
  text-align: center;
  padding: 60px 0;
  background: white;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--verdigris), #00c6c6);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.4rem; /* 从 1.2rem 增加到 1.4rem */
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 166, 166, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 166, 166, 0.4);
  color: white;
}

/* 常见问题样式 */
.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e6f7ff;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 102, 102, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--verdigris);
  box-shadow: 0 8px 24px rgba(0, 166, 166, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  background: #f8fffe;
  cursor: pointer;
  font-weight: 600;
  color: var(--midnight-green);
  font-size: 1.6rem; /* 增大字体 */
}

.faq-question .toggle-icon {
  font-size: 20px;
  color: var(--verdigris);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 1.4rem; /* 增大字体 */
  line-height: 1.7;
  color: var(--cadet-gray);
}

.faq-item.active .faq-answer {
  padding: 0 30px 24px;
  max-height: 500px;
}

/* 服务保障区域样式 */
.guarantee-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9f9 0%, #e6f7ff 100%);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.guarantee-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 102, 102, 0.08);
  transition: transform 0.3s ease;
}

.guarantee-card:hover {
  transform: translateY(-5px);
}

.guarantee-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 166, 166, 0.1), rgba(0, 166, 166, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.guarantee-icon ion-icon {
  font-size: 32px;
  color: var(--verdigris);
}

.guarantee-card h3 {
  font-size: 1.6rem; /* 增大字体 */
  color: var(--midnight-green);
  margin-bottom: 12px;
}

.guarantee-card p {
  font-size: 1.3rem; /* 增大字体 */
  color: var(--cadet-gray);
  line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 1200px) {
  .process-step {
    min-width: 200px;
    max-width: 240px;
    padding: 30px 20px;
  }
  
  .step-title {
    font-size: 1.7rem; /* 调整响应式字体大小 */
  }
  
  .step-desc {
    font-size: 1.3rem; /* 调整响应式字体大小 */
  }
  
  .section-header h2 {
    font-size: 2.7rem; /* 调整响应式字体大小 */
  }
  
  .section-header p {
    font-size: 1.5rem; /* 调整响应式字体大小 */
  }
  
  .faq-question {
    font-size: 1.5rem; /* 调整响应式字体大小 */
  }
  
  .faq-answer {
    font-size: 1.3rem; /* 调整响应式字体大小 */
  }
  
  .guarantee-card h3 {
    font-size: 1.5rem; /* 调整响应式字体大小 */
  }
  
  .guarantee-card p {
    font-size: 1.2rem; /* 调整响应式字体大小 */
  }
}

@media (max-width: 992px) {
  .process-step {
    min-width: 180px;
    max-width: 200px;
    padding: 25px 18px;
  }
  
  .step-title {
    font-size: 1.6rem; /* 调整响应式字体大小 */
  }
  
  .step-desc {
    font-size: 1.25rem; /* 调整响应式字体大小 */
  }
  
  .step-number {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
  }
  
  .step-icon {
    width: 80px;
    height: 80px;
  }
  
  .step-icon ion-icon {
    font-size: 38px;
  }
  
  .section-header h2 {
    font-size: 2.4rem; /* 调整响应式字体大小 */
  }
  
  .section-header p {
    font-size: 1.4rem; /* 调整响应式字体大小 */
  }
  
  .cta-button {
    font-size: 1.3rem; /* 调整响应式字体大小 */
  }
  
  .faq-question {
    font-size: 1.4rem; /* 调整响应式字体大小 */
    padding: 20px 24px;
  }
  
  .faq-answer {
    font-size: 1.2rem; /* 调整响应式字体大小 */
  }
  
  .guarantee-card h3 {
    font-size: 1.4rem; /* 调整响应式字体大小 */
  }
  
  .guarantee-card p {
    font-size: 1.15rem; /* 调整响应式字体大小 */
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 60px 0;
  }
  
  .process-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .process-step {
    min-width: 100%;
    max-width: 380px;
    padding: 35px 30px;
  }
  
  .step-title {
    font-size: 1.7rem; /* 调整响应式字体大小 */
  }
  
  .step-desc {
    font-size: 1.3rem; /* 调整响应式字体大小 */
  }
  
  .step-connector {
    display: none;
  }
  
  .row-connector {
    display: none;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    font-size: 2.2rem; /* 调整响应式字体大小 */
  }
  
  .section-header p {
    font-size: 1.3rem; /* 调整响应式字体大小 */
  }
  
  .cta-button {
    font-size: 1.3rem; /* 调整响应式字体大小 */
    padding: 16px 32px;
  }
  
  .faq-question {
    font-size: 1.4rem; /* 调整响应式字体大小 */
    padding: 18px 20px;
  }
  
  .faq-answer {
    font-size: 1.25rem; /* 调整响应式字体大小 */
  }
  
  .guarantee-card {
    padding: 24px;
  }
  
  .guarantee-card h3 {
    font-size: 1.5rem; /* 调整响应式字体大小 */
  }
  
  .guarantee-card p {
    font-size: 1.2rem; /* 调整响应式字体大小 */
  }
  
  /* 移动端垂直连接线 */
  .process-row::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: linear-gradient(to bottom, var(--verdigris), #00c6c6);
    z-index: 1;
  }
  
  .step-connector-mobile {
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    width: 3px;
    height: 30px;
    background: linear-gradient(to bottom, var(--verdigris), #00c6c6);
    z-index: 1;
  }
  
  .step-connector-mobile::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid var(--verdigris);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
  }
}

@media (max-width: 480px) {
  .process-step {
    max-width: 320px;
    padding: 30px 25px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
  }
  
  .step-icon ion-icon {
    font-size: 32px;
  }
  
  .step-title {
    font-size: 1.6rem; /* 调整响应式字体大小 */
  }
  
  .step-desc {
    font-size: 1.25rem; /* 调整响应式字体大小 */
  }
  
  .section-header h2 {
    font-size: 2rem; /* 调整响应式字体大小 */
  }
  
  .section-header p {
    font-size: 1.2rem; /* 调整响应式字体大小 */
  }
  
  .faq-question {
    font-size: 1.3rem; /* 调整响应式字体大小 */
    padding: 16px 18px;
  }
  
  .faq-answer {
    font-size: 1.15rem; /* 调整响应式字体大小 */
    padding: 0 18px 16px !important;
  }
  
  .guarantee-card {
    padding: 20px;
  }
  
  .guarantee-card h3 {
    font-size: 1.4rem; /* 调整响应式字体大小 */
  }
  
  .guarantee-card p {
    font-size: 1.1rem; /* 调整响应式字体大小 */
  }
}

.mega-menu-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.person-outline{
  background-image: url('../images/icons/PersonOutline.svg');
}
.home-outline{
  background-image: url('../images/icons/HomeOutline.svg');
}
.medkit-outline{
  background-image: url('../images/icons/MedkitOutline.svg');
}
.service-complaint{
  background-image: url('../images/icons/Complaint.svg');
}
.hospital-cooperation-outline{
  background-image: url('../images/icons/HospitalCooperationOutline.svg');
}
.community-cooperation-outline{
  background-image: url('../images/icons/PeopleCommunityRegular.svg');
}
.business-outline{
  background-image: url('../images/icons/PartnerExchangeOutlineRounded.svg');
}
.shield-checkmark-outline{
  background-image: url('../images/icons/ShieldCheckmarkOutline.svg');
}
.notifications-outline{
  background-image: url('../images/icons/MaterialSymbolsNotificationsOutline.svg');
}
.knowledge-icon {
  background-image: url('../images/icons/HugeiconsKnowledge02.svg');
}

.footer-bottom-content p[data-i18n-fill="footer.company_line"] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-bottom-content p[data-i18n-fill="footer.company_line"] a {
  display: inline;
  white-space: nowrap;
}