/* 全局主色、字体、基础布局 */
:root {
  --main-color: #1a73e8;
  --font-family: 'Microsoft YaHei', Arial, sans-serif;
}
body {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #222;
}
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.section { padding: 48px 0; }

/* 导航栏 */
.section-nav { background: #fff; border-bottom: 1px solid #eee; }
.nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* 让内容靠右 */
}
.logo { height: 48px; margin-right: 16px; }
.site-name { font-size: 1.5rem; font-weight: bold; color: var(--main-color); }
.main-nav {
  margin-left: auto; /* 导航文字推到右侧 */
}
.main-nav a { margin: 0 12px; color: #333; text-decoration: none; font-size: 1rem; }
.main-nav a:hover { color: var(--main-color); }

/* Banner区块 */
.section-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #e3f0fd 0%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
#banner-graphics {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#particles-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}
.banner-content h1 {
  font-size: 3.2rem;
  font-weight: bold;
  color: #1a73e8;
  text-shadow: 0 2px 12px rgba(26,115,232,0.18), 0 1px 0 #fff;
}

/* 服务内容、产品特色、项目等区块 */
.section-service, .section-features, .section-projects, .section-about, .section-team, .section-pricing, .section-testimonials, .section-faq, .section-news, .section-contact { background: #fff; margin-bottom: 16px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.section h2, h2 { color: var(--main-color); font-size: 2.2rem; font-weight: bold; margin-bottom: 16px; line-height: 1.2; }
.section ul { padding-left: 20px; }
.section li { margin-bottom: 8px; }
blockquote { border-left: 4px solid var(--main-color); padding-left: 12px; color: #555; }

/* 联系表单 */
.contact-form { display: flex; flex-direction: column; gap: 12px; max-width: 400px; }
.contact-form input, .contact-form textarea { padding: 8px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; }
.contact-form button { background: var(--main-color); color: #fff; border: none; padding: 10px; border-radius: 4px; cursor: pointer; }
.contact-form button:hover { background: #155ab6; }

/* 咨询入口样式 */
.consult-btn, .consult-sidebar, .consult-bottombar, .consult-bubble {
  position: fixed; z-index: 9999; background: var(--main-color); color: #fff; border-radius: 24px; padding: 12px 24px; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.15); display: none;
}
.consult-btn { right: 32px; bottom: 120px; }
.consult-sidebar { right: 0; top: 40%; border-radius: 24px 0 0 24px; }
/* 新版底部悬浮咨询栏样式 */
.consult-bottombar {
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 16px 32px;
  z-index: 9999;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 1;
  visibility: visible;
  gap: 0;
  min-width: 480px;
  max-width: 700px;
  width: 60vw;
}
.consult-bottombar.hide {
  opacity: 0;
  visibility: hidden;
}
.consult-form {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
}
.consult-form input {
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 8px 16px;
  outline: none;
}
.consult-btn {
  margin-left: 24px;
  background: linear-gradient(90deg, #1a73e8 0%, #00c6fb 100%);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 28px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.consult-btn:hover {
  background: linear-gradient(90deg, #00c6fb 0%, #1a73e8 100%);
}
.consult-btn-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1a73e8;
  font-weight: bold;
  font-size: 1.2rem;
  border: none;
  border-radius: 24px;
  padding: 14px 36px;
  box-shadow: 0 2px 8px rgba(26,115,232,0.10);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.consult-btn-link:hover {
  background: #1a73e8;
  color: #fff;
}
.contact-form {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  padding: 8px 18px;
  box-shadow: 0 2px 8px rgba(26,115,232,0.10);
  margin-left: 0;
}
.contact-form input[type="text"] {
  border-radius: 16px;
  border: 1.5px solid #e0e0e0;
  padding: 8px 12px;
  font-size: 1rem;
  width: 110px;
  background: #f8f9fa;
  transition: border 0.2s;
}
.contact-form input[type="text"]:focus {
  border: 1.5px solid #1a73e8;
  outline: none;
}
.contact-form button.coolbg {
  padding: 8px 18px;
  font-size: 1rem;
  border-radius: 18px;
  margin: 0;
  background: linear-gradient(90deg, #1a73e8 0%, #00c6fb 100%);
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button.coolbg:hover {
  background: #1a73e8;
}
.consult-bottombar a,
.consult-bottombar button.coolbg {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #f90503;
  font-weight: bold;
  font-size: 1.15rem;
  border: none;
  border-radius: 24px;
  padding: 12px 28px;
  box-shadow: 0 2px 8px rgba(255,147,13,0.12);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin: 0 8px;
  text-decoration: none;
}
.consult-bottombar a:hover,
.consult-bottombar button.coolbg:hover {
  background: #f90503;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,147,13,0.18);
}
.consult-bottombar .consult-bar-icon {
  width: 28px;
  height: 28px;
  margin-right: 6px;
  vertical-align: middle;
}
.consult-bottombar .contact-form {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  margin: 0;
}
.consult-bottombar .contact-form input[type="text"] {
  border-radius: 16px;
  border: 1.5px solid #fff;
  padding: 8px 12px;
  font-size: 1rem;
  width: 100px;
  background: rgba(255,255,255,0.95);
  transition: border 0.2s;
}
.consult-bottombar .contact-form input[type="text"]:focus {
  border: 1.5px solid #f90503;
  outline: none;
}
.consult-bottombar .contact-form button.coolbg {
  padding: 8px 18px;
  font-size: 1rem;
  border-radius: 18px;
  margin: 0;
}
.consult-bubble {
  right: 32px;
  bottom: 190px;
  border-radius: 32px;
  width: auto;
  min-width: 56px;
  max-width: 260px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18rem;
  font-weight: bold;
  background: linear-gradient(90deg, #1a73e8 0%, #00c6fb 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(26,115,232,0.18), 0 1.5px 8px rgba(0,0,0,0.10);
  padding: 0 28px 0 20px;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  animation: bubble-pop 1.2s cubic-bezier(.68,-0.55,.27,1.55) 1;
  z-index: 9999;
  gap: 10px;
  overflow: visible;
  text-decoration: none;
}
.consult-bubble:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 8px 32px rgba(26,115,232,0.28), 0 2px 12px rgba(0,0,0,0.12);
  background: linear-gradient(90deg, #00c6fb 0%, #1a73e8 100%);
  text-decoration: none;
}
@keyframes bubble-pop {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  80% { transform: scale(0.95); }
  100% { transform: scale(1); }
}
@media (max-width: 600px) {
  .consult-bubble {
    right: 10px;
    bottom: 110px;
    font-size: 1rem;
    padding: 0 16px 0 12px;
    min-width: 44px;
    height: 44px;
    border-radius: 22px;
    max-width: 90vw;
  }
}
.consult-popup {
  position: fixed;
  /* 移除 bottom: 180px; 和 right: 40px;，由 JS 动态设置 */
  background: transparent;
  color: #222;
  border-radius: 20px;
  box-shadow: none;
  padding: 0;
  display: none;
  z-index: 10000;
  min-width: 340px;
  max-width: 96vw;
  animation: popup-in 0.25s;
  border: none;
  overflow: visible;
}
.popup-card {
  display: block;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(26,115,232,0.18), 0 2px 8px rgba(0,0,0,0.10);
  position: fixed;
  left: auto;
  right: 32px;
  bottom: 80px;
  top: auto;
  z-index: 10002;
  transform: none;
  opacity: 1;
  transition: all 0.3s cubic-bezier(.4,2,.6,1), opacity 0.3s;
}
.popup-card.popup-hide {
  opacity: 0;
  pointer-events: none;
}
.popup-card.popup-to-corner {
  left: auto;
  top: auto;
  right: 32px;
  bottom: 32px;
  transform: scale(0.3) translate(0, 0);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 600px) {
  .popup-card.popup-to-corner {
    right: 8px;
    bottom: 8px;
  }
}
.close-popup {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 1.6rem;
  color: #888;
  cursor: pointer;
  background: #f5f6fa;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(26,115,232,0.08);
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}
.close-popup:hover {
  background: var(--main-color);
  color: #fff;
}
.popup-header {
  display: flex;
  align-items: center;
  background: var(--main-color);
  padding: 24px 24px 18px 24px;
  border-radius: 20px 20px 0 0;
  gap: 16px;
}
.popup-logo-wrap {
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(26,115,232,0.10);
}
.popup-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.popup-title-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.popup-title {
  color: #fff;
  font-size: 1.18rem;
  font-weight: bold;
  line-height: 1.2;
}
.popup-subtitle {
  color: #e0e0e0;
  font-size: 0.98rem;
  line-height: 1.1;
}
.popup-section {
  padding: 18px 24px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.popup-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.popup-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e3f0fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--main-color);
}
.popup-icon-tel::before {
  content: '\260E';
  font-size: 1.3rem;
}
.popup-icon-wechat::before {
  content: '\1F4AC';
  font-size: 1.3rem;
}
.popup-row-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.popup-row-label {
  color: #888;
  font-size: 0.98rem;
}
.popup-row-value {
  color: #222;
  font-size: 1.08rem;
  font-weight: bold;
}
.popup-qrcode-card {
  background: #f5f6fa;
  border-radius: 14px;
  margin: 22px 24px 0 24px;
  padding: 18px 0 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px rgba(26,115,232,0.06);
}
.popup-qrcode {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 8px;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  margin-bottom: 8px;
}
.popup-qrcode-tip {
  color: #888;
  font-size: 0.98rem;
  text-align: center;
}
.popup-btn, .popup-btn-call {
  /* 保持原有样式 */
  display: block;
  width: calc(100% - 48px);
  margin: 24px auto 24px auto; /* 上下都加24px间距 */
  padding: 14px 0;
  font-size: 1.15rem;
  font-weight: bold;
  border-radius: 28px;
  border: none;
  background: linear-gradient(90deg, #1a73e8 0%, #00c6fb 100%);
  color: #fff;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(26,115,232,0.10);
  transition: background 0.2s;
  text-decoration: none;
}
.popup-btn-call {
  background: linear-gradient(90deg, #1a73e8 0%, #00c6fb 100%);
}
.popup-btn-call:hover {
  background: linear-gradient(90deg, #00c6fb 0%, #1a73e8 100%);
}
@media (max-width: 600px) {
  .consult-popup {
    right: 8px;
    min-width: 90vw;
    padding: 0;
  }
  .popup-card {
    min-width: 0;
    border-radius: 12px;
    padding: 0 0 16px 0;
  }
  .popup-header {
    padding: 16px 10px 12px 10px;
    border-radius: 12px 12px 0 0;
  }
  .popup-section {
    padding: 12px 10px 0 10px;
  }
  .popup-qrcode-card {
    margin: 16px 10px 0 10px;
    padding: 12px 0 8px 0;
  }
  .popup-btn {
    width: calc(100% - 20px);
    margin: 16px auto 0 auto;
    padding: 12px 0;
    font-size: 1rem;
  }
}
@keyframes popup-in {
  from { transform: translateY(40px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.consult-popup .contact-form input[type="text"],
.consult-popup .contact-form input[type="tel"] {
  width: 100%;
  min-width: 0;
  border-radius: 8px;
  border: 1.5px solid #e0e0e0;
  padding: 10px 12px;
  font-size: 1rem;
  background: #f8f9fa;
  margin-bottom: 0;
}
.consult-popup .contact-form button {
  width: 100%;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1.08rem;
  font-weight: bold;
  margin-top: 6px;
  box-shadow: 0 2px 8px rgba(26,115,232,0.10);
  cursor: pointer;
  transition: background 0.2s;
}
.consult-popup .contact-form button:hover {
  background: #1a73e8;
}

/* 页脚 */
.section-footer { background: #222; color: #fff; text-align: center; font-size: 0.95rem; padding: 32px 0; }
.section-footer a { color: #fff; text-decoration: underline; margin-left: 8px; }

/* 响应式 */
@keyframes bottombar-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .main-nav { display: none; }
  .section-nav { flex-direction: column; }
  .consult-bottombar {
    flex-direction: row !important;
    gap: 0;
    padding: 10px 4px 8px 4px;
    flex-wrap: nowrap;
  }
  .bottombar-left, .bottombar-right {
    width: 100%;
    justify-content: center;
  }
  .contact-form {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    padding: 10px 8px;
  }
  .contact-form input[type="text"] {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .section { padding: 24px 0; }
  .logo { height: 36px; }
  .site-name { font-size: 1.1rem; }
  .consult-btn, .consult-bubble { right: 12px; }
  .consult-popup { right: 8px; min-width: 180px; }
  .consult-bottombar {
    flex-direction: row !important;
    gap: 0;
    padding: 10px 4px 8px 4px;
  }
  .consult-bottombar .contact-form {
    flex-direction: row !important;
    gap: 8px;
    width: auto;
  }
  .consult-bottombar .contact-form input[type="text"] {
    width: 100%;
    min-width: 0;
  }
  .consult-popup {
    min-width: 90vw;
    padding: 18px 6vw 16px 6vw;
  }
  .consult-popup .contact-form {
    max-width: 100%;
  }
} 

.consult-submit-btn {
  margin-left: 12px;
  background: #1a73e8;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.consult-submit-btn:hover {
  background: #155ab6;
} 

.consult-bottombar .consult-btn {
  display: inline-block;
  margin-left: 12px;
  background: linear-gradient(90deg, #1a73e8 0%, #00c6fb 100%);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 28px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.consult-bottombar .consult-btn:hover {
  background: linear-gradient(90deg, #00c6fb 0%, #1a73e8 100%);
} 

.consult-desc {
  font-size: 16px;
  color: #333;
  margin-right: 0;
  margin-bottom: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.consult-bottombar > * {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
} 

.consult-bottombar {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.consult-desc {
  margin-right: 0;
  margin-bottom: 12px;
}

.consult-popup .contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background: none;
  box-shadow: none;
  padding: 0;
}
.consult-popup .contact-form input[type="text"],
.consult-popup .contact-form input[type="tel"] {
  width: 100%;
  min-width: 0;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 10px 12px;
  font-size: 1rem;
  background: #fff;
}
.consult-popup .contact-form button {
  width: 100%;
  border-radius: 8px;
  padding: 10px 0;
  font-size: 1rem;
  margin: 0;
}
.bubble-blink {
  animation: bubble-blink-ani 0.5s alternate 2;
}
@keyframes bubble-blink-ani {
  0% { filter: brightness(1) drop-shadow(0 0 0 #fff); box-shadow: 0 4px 18px rgba(26,115,232,0.18); }
  40% { filter: brightness(1.5) drop-shadow(0 0 8px #fff); box-shadow: 0 0 32px 8px #fff, 0 8px 32px rgba(26,115,232,0.28); }
  100% { filter: brightness(1) drop-shadow(0 0 0 #fff); box-shadow: 0 4px 18px rgba(26,115,232,0.18); }
}
.sidebar-animate {
  animation: sidebar-shake 0.7s cubic-bezier(.36,.07,.19,.97) 2, sidebar-blink-ani 0.7s alternate 2;
}
@keyframes sidebar-shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(6px); }
  40% { transform: translateX(-6px); }
  60% { transform: translateX(4px); }
  80% { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}
@keyframes sidebar-blink-ani {
  0% { filter: brightness(1); box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
  50% { filter: brightness(1.4); box-shadow: 0 0 16px 4px #fff, 0 4px 18px rgba(26,115,232,0.18); }
  100% { filter: brightness(1); box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
}

.section-contact .contact-form {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  padding: 12px 18px;
  box-shadow: 0 2px 8px rgba(26,115,232,0.10);
  margin: 18px 0 0 0;
  max-width: 520px;
}
.section-contact .contact-form label {
  margin-bottom: 0;
  font-weight: 500;
  color: #333;
}
.section-contact .contact-form input[type="text"] {
  border-radius: 16px;
  border: 1.5px solid #e0e0e0;
  padding: 8px 12px;
  font-size: 1rem;
  width: 150px;
  background: #f8f9fa;
  transition: border 0.2s;
}
.section-contact .contact-form button {
  background: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  margin-left: 8px;
}
.section-contact .contact-form button:hover {
  background: #155ab6;
}
@media (max-width: 700px) {
  .section-contact .contact-form {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 8px;
    max-width: 100%;
  }
  .section-contact .contact-form button {
    margin-left: 0;
    width: 100%;
  }
}

/* 新版服务内容区块美化 */
.service-block {padding: 0 0 32px 0;}
.service-header {text-align: left; margin-bottom: 32px;}
.service-en {display: block; color: #888; font-size: 1rem; margin-bottom: 8px;}
.service-header h2 {color: var(--main-color); font-size: 2.1rem; font-weight: bold; margin: 0 0 8px 0; line-height: 1.2;}
.service-num {margin-bottom: 12px;}
.service-content h3 {font-size: 1.25rem; font-weight: bold; color: #222; margin: 0 0 10px 0;}
.service-content {display: flex; flex-direction: column; height: 100%;}
.service-content p {color: #555; font-size: 1.05rem; margin: 0 0 18px 0; min-height: 48px;}
.service-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
.service-logos svg {background: none;}
@media (max-width: 900px) {.service-list {flex-direction: column; gap: 18px;}.service-item {padding: 24px 12px;}}

/* 产品特色区块卡片式美化 */
.features-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.feature-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(26,115,232,0.10), 0 1.5px 8px rgba(0,0,0,0.08);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 160px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 12px 48px rgba(26,115,232,0.18), 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-4px) scale(1.03);
}
.card-chart {grid-column: 1 / 2; grid-row: 1 / 2;}
.card-image-lg {grid-column: 2 / 3; grid-row: 1 / 3; padding: 0; overflow: hidden;}
.card-image-lg .card-img {width: 100%; height: 260px; object-fit: cover; border-radius: 20px 20px 0 0;}
.card-image-lg .card-img-title {position: absolute; left: 24px; top: 24px; color: #fff; font-size: 2rem; font-weight: bold; text-shadow: 0 2px 8px rgba(0,0,0,0.18);}
.card-image-lg .card-img-desc {position: absolute; left: 24px; bottom: 24px; color: #fff; font-size: 1.1rem; text-shadow: 0 2px 8px rgba(0,0,0,0.18);}
.card-image {padding: 0; overflow: hidden; position: relative;}
.card-image .card-img {width: 100%; height: 180px; object-fit: cover; border-radius: 20px;}
.card-image .card-img-title {position: absolute; left: 16px; bottom: 16px; color: #fff; font-size: 1.2rem; font-weight: bold; text-shadow: 0 2px 8px rgba(0,0,0,0.18);}
.card-title {font-size: 1.5rem; font-weight: bold; color: #222; margin-bottom: 8px;}
.card-desc {color: #888; font-size: 1rem; margin-bottom: 12px;}
.card-chart-svg {margin-bottom: 8px;}
.card-xaxis {display: flex; justify-content: space-between; width: 100%; color: #bbb; font-size: 0.95rem;}
.card-progress {background: linear-gradient(120deg, #e3f0fd 60%, #fff 100%); align-items: center;}
.card-progress-title {font-size: 1.1rem; color: #1a73e8; margin-bottom: 12px; text-align: center; width: 100%;}
.card-progress-bar {width: 100%; height: 12px; background: #e0e7ef; border-radius: 8px; margin-bottom: 8px; overflow: hidden;}
.card-progress-inner {height: 100%; background: linear-gradient(90deg, #1a73e8 0%, #00c6fb 100%); border-radius: 8px;}
.card-progress-value {font-size: 2rem; color: #1a73e8; font-weight: bold; margin-bottom: 8px;}
.card-progress-icons {display: flex; gap: 8px; font-size: 1.3rem; justify-content: center; width: 100%;}
.card-info {background: linear-gradient(120deg, #e3f0fd 60%, #fff 100%);}
.card-info-title {font-size: 1.2rem; color: #1a73e8; font-weight: bold; margin-bottom: 6px;}
.card-info-desc {color: #555; font-size: 1rem;}
@media (max-width: 900px) {
  .features-masonry {grid-template-columns: 1fr;}
  .card-image-lg {grid-column: auto; grid-row: auto;}
}

/* 产品特色区块标题组样式 */
.features-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
  width: 100%;
}
.features-en {
  color: #888;
  font-size: 1rem;
  margin-bottom: 4px;
}
.features-title { font-size: 2.2rem; font-weight: bold; color: #1a73e8; margin: 0; line-height: 1.2; }
.features-desc { margin-bottom: 32px; }
.features-title-group { text-align: left; }
@media (min-width: 900px) {
  .features-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 24px;
  }

  .features-header > * {
    align-self: flex-end;
  }
}

/* 产品项目区块美化 */
.projects-flex { display: flex; gap: 48px; align-items: flex-start; justify-content: center; max-width: 1200px; margin: 0 auto; padding: 0 16px 32px 16px; }
.projects-left { flex: 0 0 320px; max-width: 340px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; }
.projects-tag { display: inline-block; color: #888; background: #f5f6fa; font-size: 0.98rem; border-radius: 16px; padding: 2px 16px; margin-bottom: 12px; font-weight: bold; }
.projects-en { font-size: 2.2rem; font-weight: bold; color: #222; margin: 0 0 8px 0; line-height: 1.1; }
.projects-title { font-size: 2.2rem; font-weight: bold; color: #222; margin: 0 0 18px 0; line-height: 1.1; }
.projects-desc { color: #888; font-size: 1.08rem; margin-bottom: 32px; }
.projects-more-btn { background: var(--main-color); color: #fff; border: none; border-radius: 20px; padding: 10px 28px; font-size: 1rem; font-weight: bold; text-decoration: none; transition: background 0.2s; margin-top: 18px; display: inline-block; }
.projects-more-btn:hover { background: #155ab6; }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); gap: 24px; flex: 1 1 0; min-width: 0; }
.project-grid-card {
  background: #eee;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(26,115,232,0.10), 0 1.5px 8px rgba(0,0,0,0.08);
  min-width: 180px;
  min-height: 160px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.project-grid-card:hover { box-shadow: 0 12px 32px rgba(26,115,232,0.18), 0 2px 8px rgba(0,0,0,0.10); transform: translateY(-4px) scale(1.03); }
.project-grid-card[style*='background-image'] { background-size: cover; background-position: center; }
.project-grid-card-main { background: var(--main-color); color: #fff; align-items: flex-end; }
.project-grid-bg { display: none; }
.project-grid-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px 24px 18px 24px;
  background: linear-gradient(0deg, rgba(0,0,0,0.38) 80%, rgba(0,0,0,0.08) 100%, rgba(0,0,0,0) 100%);
  color: #fff;
  box-sizing: border-box;
}
.project-grid-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: left;
}
.project-grid-desc {
  color: #fff;
  font-size: 1rem;
  opacity: 0.92;
  text-align: left;
}
.project-grid-card:not(.project-grid-card-main) .project-grid-title { color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.project-grid-card:not(.project-grid-card-main) .project-grid-desc { color: #fff; opacity: 0.85; text-shadow: 0 2px 8px rgba(0,0,0,0.18); }
@media (max-width: 1100px) { .projects-flex { flex-direction: column; gap: 24px; align-items: flex-start; } .projects-left { max-width: 100%; } .projects-grid { width: 100%; } }
@media (max-width: 700px) { .projects-grid { grid-template-columns: 1fr; grid-template-rows: none; gap: 14px; } .project-grid-card { min-height: 120px; } }

/* 关于企业区块样式 */
.about-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 48px 0 32px 0;
}
.about-left {
  flex: 1;
}
.about-title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 18px;
}
.about-desc {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0;
}
.about-right {
  min-width: 180px;
  text-align: right;
}
.about-number {
  font-size: 4.5rem;
  font-weight: bold;
  color: #2563ff;
  line-height: 1;
}
.about-number-desc {
  font-size: 1rem;
  color: #2563ff;
  margin-top: 8px;
}

.about-stats {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  border-top: 1px solid #e5e5e5;
  margin-top: 32px;
  padding-top: 32px;
}
.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}
.about-stat-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.about-stat-num {
  font-size: 2.2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 4px;
}
.about-stat-num span {
  font-size: 1rem;
  font-weight: normal;
  color: #666;
  margin-left: 2px;
}
.about-stat-label {
  font-size: 1rem;
  color: #666;
  margin-top: 2px;
  text-align: center;
}

@media (max-width: 900px) {
  .about-flex {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .about-right {
    text-align: left;
    margin-top: 24px;
    min-width: 0;
  }
  .about-stats {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .about-stat-item {
    align-items: flex-start;
  }
}

.contact-flex { display: flex; gap: 64px; align-items: stretch; justify-content: center; max-width: 1200px; margin: 0 auto; padding: 0 16px 32px 16px; }
.contact-left { flex: 1.2; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.contact-en { font-size: 2.4rem; font-weight: bold; color: #222; margin: 0 0 8px 0; line-height: 1.1; letter-spacing: 1px; }
.contact-title { font-size: 2.2rem; font-weight: bold; color: #222; margin: 0 0 18px 0; line-height: 1.1; }
.contact-desc { color: #888; font-size: 1.08rem; margin-bottom: 32px; }
.contact-info-group { display: flex; gap: 48px; margin-bottom: 32px; }
.contact-info-item { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; min-width: 180px; }
.contact-info-icon { font-size: 1.5rem; color: var(--main-color); margin-bottom: 2px; }
.contact-info-label { font-size: 1.08rem; font-weight: bold; color: #222; margin-bottom: 2px; }
.contact-info-value { color: #555; font-size: 1rem; }
.contact-right { flex: 1; display: flex; align-items: center; justify-content: center; }
.contact-form.contact-form-grid { background: #fff; border-radius: 18px; box-shadow: 0 4px 24px rgba(26,115,232,0.10), 0 1.5px 8px rgba(0,0,0,0.08); padding: 40px 36px; min-width: 320px; max-width: 540px; width: 100%; display: flex; flex-direction: column; gap: 0; }
.contact-form-title { font-size: 2.2rem; font-weight: bold; color: #222; margin-bottom: 8px; text-align: left; }
.contact-form-desc { color: #888; font-size: 1.08rem; margin-bottom: 24px; }
.form-row { display: flex; gap: 74px; margin-bottom: 0; }
.form-group { flex: 1; display: flex; flex-direction: column; margin-bottom: 18px; }
.form-group label { font-size: 1.08rem; color: #222; font-weight: bold; margin-bottom: 6px; }
.en-label { font-size: 0.98rem; color: #bbb; font-weight: normal; margin-left: 2px; }
.required { color: #f44336; font-size: 1.1em; margin-left: 2px; }
.contact-form input[type="text"], .contact-form input[type="tel"] { width: 220px; height: 40px; min-width: 0; box-sizing: border-box; border: 1.5px solid #e0e0e0; border-radius: 12px; background: #f8f9fa; font-size: 1.08rem; padding: 0 14px; margin-bottom: 24px; transition: border-color 0.2s, background 0.2s; display: block; }
.contact-form input[type="text"]:focus, .contact-form input[type="tel"]:focus { border: 1.5px solid var(--main-color); outline: none; background: #fff; }
.contact-submit-btn.contact-submit-btn-black { background: #111; color: #fff; border-radius: 32px; font-size: 1.18rem; font-weight: bold; width: 100%; padding: 16px 0; margin-top: 18px; border: none; transition: background 0.2s; }
.contact-submit-btn.contact-submit-btn-black:hover { background: #333; }
@media (max-width: 1000px) { .contact-flex { flex-direction: column; gap: 32px; align-items: center; } .contact-left, .contact-right { width: 100%; min-width: 0; } .contact-form.contact-form-grid { min-width: 0; max-width: 98vw; } .contact-info-group { gap: 24px; flex-direction: column; } }
@media (max-width: 600px) { .contact-en { font-size: 1.4rem; } .contact-title { font-size: 1.1rem; } .contact-form.contact-form-grid { padding: 18px 8px; } }
.team-header { text-align: left; margin-bottom: 32px; }
.team-en { display: inline-block; color: #888; font-size: 1rem; margin-bottom: 8px; border-radius: 16px; padding: 2px 16px; background: #f5f6fa; margin-left: 0; margin-top: 0; }
.team-header h2 { color: var(--main-color); font-size: 2.2rem; font-weight: bold; margin: 8px 0 8px 0; line-height: 1.2; }
.team-desc { color: #666; font-size: 0.98rem; margin-top: 8px; margin-bottom: 0; max-width: 600px; }
.team-list { display: flex; gap: 32px; margin-top: 24px; flex-wrap: wrap; justify-content: center; align-items: stretch; }
.team-card { background: #fff; border-radius: 18px; box-shadow: 0 4px 20px rgba(26,115,232,0.10), 0 1.5px 8px rgba(0,0,0,0.08); padding: 0 0 24px 0; flex: 1 1 320px; max-width: 340px; min-width: 260px; display: flex; flex-direction: column; align-items: center; transition: box-shadow 0.2s, transform 0.2s; position: relative; overflow: hidden; }
.team-card:hover { box-shadow: 0 16px 48px rgba(26,115,232,0.18), 0 4px 16px rgba(0,0,0,0.12); transform: translateY(-4px) scale(1.03); }
.team-info { padding: 18px 20px 0 20px; width: 100%; display: flex; flex-direction: column; align-items: flex-start; box-sizing: border-box; }
.team-desc { color: #666; font-size: 0.98rem; margin-bottom: 16px; word-break: break-all; word-wrap: break-word; max-width: 100%; margin-bottom: 32px; }
.team-photo { width: 100%; height: 220px; border-radius: 18px 18px 0 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1.18rem; font-weight: bold; color: #222; margin-bottom: 2px; }
.team-title { font-size: 0.98rem; color: #888; margin-bottom: 10px; }
.team-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 24px;
  justify-content: center;
  background: transparent;
}
.team-actions button { background: #f5f6fa; color: #1a73e8; border: none; border-radius: 18px; padding: 6px 18px; font-size: 1rem; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: background 0.2s, color 0.2s; }
.team-actions button:hover { background: var(--main-color); color: #fff; }
.team-popup { position: fixed; left: 0; top: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.32); display: flex; align-items: center; justify-content: center; z-index: 10001; }
.team-popup-content { background: #fff; border-radius: 16px; padding: 32px 32px 24px 32px; min-width: 320px; max-width: 90vw; min-height: 120px; position: relative; text-align: center; }
.team-popup-close { position: absolute; right: 18px; top: 12px; font-size: 1.5rem; color: #888; cursor: pointer; }
.team-popup-tel { font-size: 1.2rem; color: #1a73e8; font-weight: bold; margin-top: 18px; }
.team-popup-wechat-img { width: 180px; height: 180px; object-fit: contain; margin: 0 auto 12px auto; display: block; }
.team-popup-wechat-tip { color: #666; font-size: 1rem; margin-top: 0; }
@media (max-width: 900px) { .team-list { flex-direction: column; gap: 18px; align-items: center; } .team-card { width: 98vw; max-width: 360px; } .team-popup-content { min-width: 0; width: 90vw; } }
.pricing-header { text-align: center; margin-bottom: 32px; }
.pricing-header h2 { color: var(--main-color); font-size: 2.2rem; font-weight: bold; margin: 0 0 8px 0; }
.pricing-desc { color: #666; font-size: 1.08rem; margin-bottom: 0; }
.pricing-list { display: flex; justify-content: center; align-items: stretch; gap: 32px; flex-wrap: nowrap; overflow: hidden; }
.pricing-card { flex: 1 1 0; min-width: 0; max-width: 340px; width: 100%; }
.pricing-card { background: #fff; border-radius: 18px; box-shadow: 0 4px 20px rgba(26,115,232,0.10), 0 1.5px 8px rgba(0,0,0,0.08); padding: 32px 28px 28px 28px; flex: 0 0 320px; max-width: 340px; min-width: 260px; display: flex; flex-direction: column; align-items: center; transition: box-shadow 0.2s, transform 0.2s, border 0.2s; position: relative; border: 2px solid transparent; }
.pricing-card:hover { box-shadow: 0 16px 48px rgba(26,115,232,0.18), 0 4px 16px rgba(0,0,0,0.12); border: 2px solid var(--main-color); transform: translateY(-4px) scale(1.03); }
.pricing-card.recommend { border: 2px solid var(--main-color); background: linear-gradient(120deg, #e3f0fd 60%, #fff 100%); }
.pricing-type { position: absolute; right: 24px; top: 24px; background: #f5f6fa; color: #888; font-size: 0.95rem; border-radius: 16px; padding: 2px 16px; font-weight: bold; }
.pricing-card.recommend .pricing-type { background: var(--main-color); color: #fff; }
.pricing-title { font-size: 1.18rem; font-weight: bold; color: #222; margin-bottom: 12px; margin-top: 8px; }
.pricing-price { font-size: 2.1rem; font-weight: bold; color: var(--main-color); margin-bottom: 18px; }
.pricing-price span { font-size: 1rem; color: #888; font-weight: normal; margin-left: 2px; }
.pricing-features {
  text-align: left;
  padding-left: 24px;
  padding-right: 24px;
}
.pricing-features li {
  text-align: left;
}
.pricing-features li { color: #222; font-size: 1rem; margin-bottom: 8px; display: flex; align-items: center; }
.pricing-features li.disabled { color: #bbb; text-decoration: line-through; }
.pricing-btn { background: var(--main-color); color: #fff; border: none; border-radius: 20px; padding: 10px 32px; width: auto; min-width: 100px; max-width: 100%; font-size: 1.08rem; font-weight: bold; cursor: pointer; transition: background 0.2s; margin-top: 8px; display: block; margin-left: auto; margin-right: auto; text-align: center; text-decoration: none; }
.pricing-btn:hover { background: #155ab6; }
.section-pricing .pricing-list { display: flex; gap: 32px; margin-top: 24px; flex-wrap: wrap; justify-content: center; align-items: stretch; overflow: visible; }
.section-pricing .pricing-card { background: #fff; border-radius: 18px; box-shadow: 0 4px 24px rgba(26,115,232,0.10), 0 1.5px 8px rgba(0,0,0,0.08); padding: 0 0 24px 0; flex: 1 1 320px; max-width: 340px; min-width: 260px; display: flex; flex-direction: column; align-items: center; transition: box-shadow 0.2s, transform 0.2s, border 0.2s; position: relative; overflow: hidden; border: 2px solid transparent; }
.section-pricing .pricing-card:hover { box-shadow: 0 16px 48px rgba(26,115,232,0.18), 0 4px 16px rgba(0,0,0,0.12); border: 2px solid var(--main-color); transform: translateY(-4px) scale(1.03); }
@media (max-width: 1100px) { .section-pricing .pricing-list { gap: 18px; } .section-pricing .pricing-card { max-width: 98vw; } }
@media (max-width: 900px) { .section-pricing .pricing-list { flex-direction: column; gap: 18px; align-items: center; } .section-pricing .pricing-card { width: 98vw; max-width: 360px; } }
.testimonials-header { text-align: center; margin-bottom: 32px; }
.testimonials-en { display: inline-block; color: #888; font-size: 1rem; margin-bottom: 8px; border-radius: 16px; padding: 2px 16px; background: #f5f6fa; margin-left: 0; margin-top: 0; }
.testimonials-title { color: #222; font-size: 2.4rem; font-weight: bold; margin: 0 0 8px 0; letter-spacing: 1px; }
.testimonials-desc { color: #888; font-size: 1.08rem; margin-bottom: 0; }
.testimonials-list { display: flex; gap: 32px; justify-content: center; align-items: stretch; flex-wrap: wrap; }
.testimonial-card { background: #fff; border-radius: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); padding: 36px 32px 28px 32px; flex: 1 1 320px; max-width: 370px; min-width: 260px; display: flex; flex-direction: column; align-items: flex-start; position: relative; transition: box-shadow 0.2s, transform 0.2s; border: 1.5px solid #f2f3f7; }
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(26,115,232,0.10), 0 2px 8px rgba(0,0,0,0.08); transform: translateY(-4px) scale(1.02); border-color: var(--main-color); }
.testimonial-quote { font-size: 4.5rem; color: #f2f3f7; position: absolute; left: 32px; top: 18px; line-height: 1; font-family: serif; pointer-events: none; user-select: none; }
.testimonial-title { font-size: 1.1rem; font-weight: bold; color: #222; margin: 32px 0 10px 0; z-index: 1; }
.testimonial-content { color: #555; font-size: 1rem; margin-bottom: 24px; z-index: 1; min-height: 60px; }
.testimonial-user { display: flex; align-items: center; gap: 12px; margin-top: auto; z-index: 1; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid #f2f3f7; }
.testimonial-userinfo { display: flex; flex-direction: column; }
.testimonial-name { font-weight: bold; color: #222; font-size: 1rem; }
.testimonial-job { color: #888; font-size: 0.95rem; }
@media (max-width: 900px) { .testimonials-list { flex-direction: column; gap: 18px; align-items: center; } .testimonial-card { width: 98vw; max-width: 360px; } }
.faq-flex { display: flex; gap: 48px; align-items: flex-start; justify-content: center; }
.faq-left { flex: 0 0 240px; max-width: 320px; }
.faq-right { flex: 1 1 0; min-width: 0; max-width: 700px; }
.faq-title { font-size: 2.6rem; font-weight: bold; color: #222; line-height: 1.1; margin-bottom: 18px; }
.faq-title span { font-size: 2.2rem; color: #222; font-weight: 900; letter-spacing: 2px; display: block; }
.faq-desc { color: #888; font-size: 1.08rem; margin-bottom: 32px; }
.faq-btn { background: var(--main-color); color: #fff; border: none; border-radius: 20px; padding: 12px 32px; font-size: 1.08rem; font-weight: bold; cursor: pointer; transition: background 0.2s; margin-top: 8px; text-align: center; text-decoration: none; }
.faq-btn:hover { background: #155ab6; }
.faq-list { background: #fff; border-radius: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); padding: 0; margin: 0; }
.faq-item { border-bottom: 1px solid #f2f3f7; }
.faq-item:last-child { border-bottom: none; }
.faq-question { font-size: 1.13rem; font-weight: bold; color: #222; padding: 28px 32px 18px 32px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; transition: color 0.2s; }
.faq-toggle { font-size: 2rem; color: #bbb; margin-left: 16px; font-weight: normal; transition: color 0.2s; }
.faq-item.active .faq-toggle { color: var(--main-color); }
.faq-answer { display: none; color: #555; font-size: 1rem; padding: 0 32px 24px 32px; line-height: 1.7; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question { color: var(--main-color); }
@media (max-width: 1000px) { .faq-flex { flex-direction: column; gap: 24px; } .faq-left { padding: 24px 0 0 0; align-items: center; text-align: center; width: 100%; } .faq-right { width: 100%; } }
@media (max-width: 600px) { .faq-title { font-size: 2rem; } .faq-title span { font-size: 1.3rem; } .faq-question { font-size: 1rem; padding: 18px 12px 12px 12px; } .faq-answer { font-size: 0.98rem; padding: 0 12px 16px 12px; } .faq-list { border-radius: 10px; } }
.testimonials-header { text-align: center; margin-bottom: 32px; }
.testimonials-en { display: inline-block; color: #888; font-size: 1rem; margin-bottom: 8px; border-radius: 16px; padding: 2px 16px; background: #f5f6fa; margin-left: 0; margin-top: 0; }
.testimonials-title { color: #222; font-size: 2.4rem; font-weight: bold; margin: 0 0 8px 0; letter-spacing: 1px; }
.testimonials-desc { color: #888; font-size: 1.08rem; margin-bottom: 0; }
.testimonials-list { display: flex; gap: 32px; justify-content: center; align-items: stretch; flex-wrap: wrap; }
.testimonial-card { background: #fff; border-radius: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); padding: 36px 32px 28px 32px; flex: 1 1 320px; max-width: 370px; min-width: 260px; display: flex; flex-direction: column; align-items: flex-start; position: relative; transition: box-shadow 0.2s, transform 0.2s; border: 1.5px solid #f2f3f7; }
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(26,115,232,0.10), 0 2px 8px rgba(0,0,0,0.08); transform: translateY(-4px) scale(1.02); border-color: var(--main-color); }
.testimonial-quote { font-size: 4.5rem; color: #f2f3f7; position: absolute; left: 32px; top: 18px; line-height: 1; font-family: serif; pointer-events: none; user-select: none; }
.testimonial-title { font-size: 1.1rem; font-weight: bold; color: #222; margin: 32px 0 10px 0; z-index: 1; }
.testimonial-content { color: #555; font-size: 1rem; margin-bottom: 24px; z-index: 1; min-height: 60px; }
.testimonial-user { display: flex; align-items: center; gap: 12px; margin-top: auto; z-index: 1; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid #f2f3f7; }
.testimonial-userinfo { display: flex; flex-direction: column; }
.testimonial-name { font-weight: bold; color: #222; font-size: 1rem; }
.testimonial-job { color: #888; font-size: 0.95rem; }
@media (max-width: 900px) { .testimonials-list { flex-direction: column; gap: 18px; align-items: center; } .testimonial-card { width: 98vw; max-width: 360px; } }
.info-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; max-width: 1200px; margin-left: auto; margin-right: auto; padding: 0 16px; }
.news-header-left { display: flex; flex-direction: column; align-items: flex-start; }
.news-title { font-size: 2.6rem; font-weight: bold; color: #222; margin: 0 0 0 0; line-height: 1.1; letter-spacing: 1px; }
.news-header-right { max-width: 420px; color: #888; font-size: 1.08rem; text-align: right; }
.info-list { display: flex; gap: 32px; max-width: 1200px; margin: 0 auto; padding: 0 16px 32px 16px; justify-content: center; align-items: stretch; }
.info-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(26,115,232,0.10), 0 1.5px 8px rgba(0,0,0,0.08);
  padding: 0;
  flex: 1 1 320px;
  max-width: 340px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
  border: 1.5px solid #f2f3f7;
}
.info-card:hover { box-shadow: 0 12px 48px rgba(26,115,232,0.18), 0 4px 16px rgba(0,0,0,0.12); transform: translateY(-4px) scale(1.03); border-color: var(--main-color); }
.info-meta { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 18px 24px 0 24px; font-size: 1rem; color: #bbb; }
.info-date { color: #bbb; font-size: 1rem; }
.info-link { color: #bbb; margin-left: 8px; display: flex; align-items: center; cursor: pointer; transition: color 0.2s; }
.info-link:hover svg path { stroke: var(--main-color); }
.info-img-wrap {
  width: 100%;
  height: 180px;
  margin: 0; /* 原为 margin: 16px 0 0 0; 改为0 */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}
.info-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  margin: 0; /* 确保图片无多余margin */
}
.info-title { font-size: 1.15rem; font-weight: bold; color: #222; margin: 18px 24px 8px 24px; }
.info-desc { color: #888; font-size: 1rem; margin: 0 24px 18px 24px; min-height: 36px; }
.info-user { display: flex; align-items: center; gap: 12px; margin: 0 24px; margin-top: auto; }
.info-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid #f2f3f7; }
.info-userinfo { display: flex; flex-direction: column; }
.info-name { font-weight: bold; color: #222; font-size: 1rem; }
.info-job { color: #bbb; font-size: 0.95rem; }
@media (max-width: 1100px) { .info-list { gap: 18px; } .info-card { max-width: 98vw; } }
@media (max-width: 900px) { .info-list { flex-direction: column; gap: 18px; align-items: center; } .info-card { width: 98vw; max-width: 360px; } .info-header { flex-direction: column; align-items: flex-start; gap: 8px; } .news-header-right { text-align: left; max-width: 100%; } }

.section-faq .faq-flex { max-width: 1000px; margin: 0 auto; padding: 0 16px; }

.service-list { display: flex; gap: 32px; justify-content: center; align-items: stretch; flex-wrap: nowrap; }
.service-item { flex: 1 1 0; max-width: 340px; min-width: 240px; background: #fff; border-radius: 16px; box-shadow: 0 4px 20px rgba(26,115,232,0.10), 0 1.5px 8px rgba(0,0,0,0.08); padding: 32px 24px 24px 24px; display: flex; flex-direction: column; align-items: center; transition: box-shadow 0.2s, transform 0.2s; position: relative; overflow: hidden; }
.service-item:hover { box-shadow: 0 16px 48px rgba(26,115,232,0.18), 0 4px 16px rgba(0,0,0,0.12); background: #fff; z-index: 1; transform: translateY(-4px) scale(1.03); }
@media (max-width: 900px) { .service-list { flex-direction: column; gap: 18px; } .service-item { max-width: 98vw; } }

.service-num svg text { fill: var(--main-color); }

.contact-btn { background: var(--main-color); color: #fff; border: none; border-radius: 20px; padding: 12px 20px; font-size: 1.08rem; font-weight: bold; cursor: pointer; transition: background 0.2s; margin-top: 8px; display: inline-block; text-align: center; text-decoration: none; }
.contact-btn:hover { background: #155ab6; }

.card-title, .card-progress-title {
  font-size: 1.2rem;
  color: #1a73e8;
  font-weight: bold;
  margin-bottom: 6px;
}
.feature-card.card-progress {
  align-items: flex-end;
  text-align: left;
  position: relative;
}
.card-progress-title, .card-progress-subtitle {
  color: #fff;
  text-align: left;
}
.card-progress-title {
  position: absolute;
  left: 20px;
  bottom: 38px;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 4px;
  z-index: 2;
}
.card-progress-subtitle {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font-size: 1rem;
  margin-bottom: 0;
  z-index: 2;
}
.feature-consult-btn {
  display: block;
  margin: 18px auto 0 auto;
  background: var(--main-color);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 32px;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(26,115,232,0.10);
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  animation: feature-consult-flash 1.2s infinite alternate;
}
.feature-consult-btn:hover {
  background: #155ab6;
  box-shadow: 0 4px 16px rgba(26,115,232,0.18);
  animation: none;
}
@keyframes feature-consult-flash {
  0% { box-shadow: 0 0 0 0 rgba(26,115,232,0.18); opacity: 1; }
  100% { box-shadow: 0 0 16px 8px rgba(26,115,232,0.28); opacity: 0.85; }
}
@media (max-width: 600px) {
  .pricing-features {
    padding-left: 12px;
    padding-right: 12px;
  }
}