/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: #1f2d3d;
  background: #fff;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: .25s;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ===== Variables ===== */
:root {
  --blue: #1a6dff;
  --blue-dark: #124fbf;
  --blue-light: #eef4ff;
  --gray-50: #f8f9fb;
  --gray-100: #f1f3f5;
  --gray-200: #e2e6ea;
  --gray-600: #6c7a89;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(0, 0, 0, .08);
  --shadow-blue: 0 4px 14px rgba(22, 119, 255, 0.3);
  --rank-red: #e62828;
  --rank-orange: #ff8800;
  --rank-yellow: #ffc107;
  --rank-gray: #747c87;
}

/* ===== Utility ===== */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

.section {
  padding: 80px 0;
}

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

.section-title h2 {
  font-size: 28px;
  font-weight: 800;
}

.section-title p {
  color: var(--gray-600);
  margin-top: 8px;
  font-size: 15px;
}

.section-title .line {
  width: 48px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 2px;
  background: var(--blue);
}

/* ===== Navbar ===== */
.navbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.navbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 118px;
}

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

.logo img {
  width: 120px;
  height: auto;
}

.slogan {
  position: relative;
  font-size: 14px;
  color: var(--gray-600);
  padding-left: 12px;
  white-space: nowrap;
}

.slogan::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: var(--gray-200);
}

/* ===== Desktop nav ===== */
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  color: #34495e;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--blue-light);
  color: var(--blue);
}

.hotline {
  background: var(--blue);
  color: #F03030;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 16px;
  box-shadow: var(--shadow-blue);
}

.hotline i {
  font-size: 20px;
}

.hotline a,
.hotline a:hover,
.hotline a.active {
  background: -webkit-linear-gradient(45deg, #fbd999, #fbbb5a, #fbd999, #fbbb5a, #fbd999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ff7301;
  font-weight: 600;
}

/* ===== Mobile menu ===== */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

.menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  z-index: 998;
  display: none;
  opacity: 0;
  transition: opacity .35s ease;
}

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

/* ===== Highlights ===== */
.service_highlights {
  background: url(https://www.qszqyfw.com/static/images/bg_banner.png) center no-repeat;
  background-size: cover;
  text-align: center;
  padding: 110px 0 100px;
}

.service_highlights h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.service_highlights p {
  margin: 18px auto 32px;
  max-width: 680px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
  animation-delay: .3s;
}

.service_highlights .actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: .6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--blue-light);
  border-top: 1px solid #dce9ff;
  border-bottom: 1px solid #dce9ff;
}

.stats-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0;
}

.stats-bar .item {
  flex: 1;
  text-align: center;
  position: relative;
  transition: transform .3s ease;
}

.stats-bar .item:hover {
  transform: translateY(-4px);
}

.stats-bar .item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

.stats-bar .num {
  font-size: 25px;
  font-weight: 800;
  color: #f03030;
}

.stats-bar .num .unit {
  color: #1f2d3d;
  font-size: 15px;
  font-weight: 400;
  margin-left: 2px;
}

.stats-bar .label {
  font-size: 15px;
}

/* ===== 快速预约服务板块 ===== */
.booking-section {
  padding: 60px 0;
  background: #fff;
}

.booking-title {
  text-align: center;
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 36px;
  color: #1f2d3d;
}

/* 预约表单桌面横向布局 */
.booking-form-wrap {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 30px;
}

.booking-form-wrap .form-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-right: 1px solid var(--gray-200);
}

.booking-form-wrap .form-item:last-of-type {
  border-right: none;
}

.booking-form-wrap .form-item i {
  font-size: 20px;
  color: var(--blue);
}

.booking-form-wrap .form-item input {
  flex: 1;
  height: 64px;
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
  background: transparent;
}

.booking-form-wrap .form-item input::placeholder {
  color: var(--gray-600);
}

.booking-btn {
  width: 220px;
  background: var(--blue);
  color: #fff;
  border: none;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s;
}

.booking-btn:hover {
  background: var(--blue-dark);
}

.live-info-wrap {
  display: flex;
  gap: 30px;
}

.live-left-box,
.live-right-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-left-tag,
.live-right-tag {
  flex-shrink: 0;
  padding: 6px 14px;
  background: var(--blue);
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
}

.scroll-box {
  flex: 1;
  height: 32px;
  overflow: hidden;
  position: relative;
}

.scroll-list {
  line-height: 32px;
  color: var(--gray-600);
  font-size: 15px;
}

.scroll-item {
  white-space: nowrap;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: var(--gray-200);
  margin-top: 30px;
}

/* ===== 关于我们 ===== */
.about-qisuanzi-section {
  padding: 60px 0;
  background: #fff;
}

.about-qisuanzi-wrap {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-qisuanzi-left {
  width: 52%;
  flex-shrink: 0;
  position: relative;
}

.about-qisuanzi-left img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

.about-qisuanzi-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--blue);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius);
}

.about-qisuanzi-badge strong {
  font-size: 42px;
  display: block;
  line-height: 1;
}

.about-qisuanzi-badge span {
  font-size: 15px;
  opacity: 0.9;
}

.about-qisuanzi-right {
  flex: 1;
}

.about-qisuanzi-right h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 12px;
  position: relative;
  display: inline-block;
}

.about-qisuanzi-right h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1677ff, #69b1ff);
  border-radius: 2px;
}

.about-qisuanzi-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-qisuanzi-data-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.about-qisuanzi-data-item {
  text-align: center;
  padding: 16px 8px;
  background: var(--gray-50);
  border-radius: var(--radius);
}

.about-qisuanzi-data-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}

.about-qisuanzi-data-text {
  font-size: 14px;
  color: var(--gray-600);
}

.about-qisuanzi-more-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  transition: 0.24s;
  box-shadow: var(--shadow-blue);
}

.about-qisuanzi-more-btn:hover {
  background: var(--blue-dark);
}

/* ===== 工商财税服务 ===== */
.inx_servebj {
  background: #f8faff;
  padding: 60px 0;
}

.servebj-title {
  text-align: center;
  margin-bottom: 40px;
}

.servebj-title h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 10px;
}

.servebj-title p {
  color: var(--gray-600);
  font-size: 15px;
}

.servebj-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.servebj-left-col {
  width: 260px;
  flex-shrink: 0;
}

.servebj-left-item {
  padding: 26px 20px;
  border-radius: var(--radius);
  height: 100%;
}

/* 核心蓝 */
.servebj-left-item.blue {
  background: url(https://www.qszqyfw.com/static/images/bg_gongshang.jpg);
  background-size: cover, 100% 100%;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

/* 热门橙 */
.servebj-left-item.orange {
  background: url(https://www.qszqyfw.com/static/images/bg_caishui.jpg);
  background-size: cover, 100% 100%;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

/* 主推黄（基准色 #e6bc28） */
.servebj-left-item.yellow {
  background: url(https://www.qszqyfw.com/static/images/bg_zhishichanquan.jpg);
  background-size: cover, 100% 100%;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

/* 中性深灰 */
.servebj-left-item.gray {
  background: url(https://www.qszqyfw.com/static/images/bg_zizhidaiban.jpg);
  background-size: cover, 100% 100%;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.servebj-left-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.servebj-left-item p {
  font-size: 14px;
  opacity: 0.92;
  margin-bottom: 16px;
}

.servebj-left-menu li {
  display: block;
  margin-bottom: 10px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  font-size: 14px;
  transition: 0.24s;
}

.servebj-left-menu li:hover {
  background: rgba(255, 255, 255, 0.88);
}

.servebj-right-col {
  flex: 1;
}

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

.serve-card {
  background: #fff;
  border: 1px solid #c8d7ff;
  border-radius: var(--radius);
  padding: 18px;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.serve-card h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 10px;
}

.serve-card-hot {
  color: #f03030;
  font-size: 13px;
}

.serve-card-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 12px;
  flex-grow: 1;
}

.serve-card-bottom {
  margin-top: auto;
}

.serve-card-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.serve-tag {
  padding: 3px 8px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  border-radius: 4px;
}

.serve-card-price {
  font-size: 16px;
  color: #f03030;
  font-weight: 600;
}

.serve-faq-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

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

.faq-item i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.faq-item span {
  flex: 1;
  font-size: 14px;
}

.faq-item .faq-btn {
  padding: 6px 12px;
  background: #f03030;
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
}

.serve-faq-row .faq-item {
  position: relative;
  flex-wrap: wrap;
}

.faq-answer {
  width: 100%;
  margin-top: 10px;
  padding: 10px 20px;
  border-top: 1px dashed var(--gray-200);
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  display: none;
}

.faq-answer.show {
  display: block;
}

/* ===== 合作客户 ===== */
.server-customer {
  max-width: 100%;
  margin: 70px auto 0 auto;
  padding: 0 0 60px;
}

.server-customer .container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.home-solu-bot-logo {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.customer-logo {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 175px;
  position: relative;
}

.customer-logo::before,
.customer-logo::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 20;
  pointer-events: none;
}

.customer-logo::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(245, 245, 245, 0) 100%);
}

.customer-logo::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(245, 245, 245, 0) 100%);
}

.customer-logo-ul {
  display: flex;
  flex-shrink: 0;
  min-width: max-content;
  list-style: none;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  position: relative;
  z-index: 10;
}

.customer-logo-ul1 {
  animation: scrollRight 48s linear infinite;
}

.customer-logo-ul2 {
  animation: scrollLeftFix 48s linear infinite;
}

@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50%));
  }
}

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

.customer-logo:hover .customer-logo-ul {
  animation-play-state: paused;
}

.customer-list-item {
  position: relative;
  margin: 0 12px;
  cursor: pointer;
}

.customer-lil-wrap-icon {
  width: 168px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.customer-lil-wrap-icon img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.tooltip-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 8px;
  line-height: 1.5;
  transform: scale(0);
  transform-origin: center;
}

.customer-list-item:hover .tooltip-circle,
.customer-list-item:active .tooltip-circle {
  opacity: 1;
  visibility: visible;
  transform: scale(1.2);
}

.tooltip-circle .company {
  font-weight: bold;
  font-size: 14px;
}

.tooltip-circle .industry {
  font-size: 12px;
  opacity: 0.8;
}

/* ===== 底部固定咨询栏 ===== */
.inx_consult {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: url('https://www.qszqyfw.com/static/images/bg_consult.png') no-repeat top right;
  background-size: cover;
  z-index: 999;
  padding: 14px 0;
}

/* 给body底部留白，防止页面内容被遮挡 */
body {
  padding-bottom: 60px !important;
}

.inx_consult .w1200 {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.inx_consult_box {
  display: flex;
  align-items: center;
  gap: 24px;
}

.inx_consult_box p {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.inx_consult_box a {
  padding: 10px 50px;
  background: #f03030;
  border-radius: 4px;
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #fff;
}

.inx_consult > .w1200 > span {
  padding: 5px 10px;
  border: 1px solid #FFFFFF;
  border-radius: 20px;
  font-size: 15px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

/* ===== 客户评价 ===== */
.evaluate-section {
  padding: 60px 0;
  background: #fff;
}

.evaluate-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.evaluate-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.24s ease;
}

.evaluate-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
  transform: translateY(-4px);
}

.evaluate-user-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.evaluate-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #1a6dff, #722ed1);
  overflow: hidden;
  flex-shrink: 0;
}

.evaluate-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

.evaluate-user-info {
  flex: 1;
}

.evaluate-name {
  font-size: 16px;
  font-weight: 600;
  color: #1f2d3d;
  margin-bottom: 4px;
}

.star-group {
  color: #ffc107;
  font-size: 14px;
  letter-spacing: 2px;
}

.evaluate-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== 创业知识 ===== */
.knowledge-section {
  padding: 0 0 60px;
  background: #fff;
}

.knowledge-list-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* 单篇文章卡片 */
.knowledge-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.24s ease;
  width: 100%;
  overflow: hidden;
}

.knowledge-item:hover {
  box-shadow: var(--shadow);
  border: 1px solid var(--blue);
}

.knowledge-item a {
  display: block;
}

.knowledge-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2d3d;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.knowledge-item:hover h3 a {
  color: var(--blue);
}

.knowledge-date {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 12px;
  display: inline-block;
}

.knowledge-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Footer ===== */
.site-footer {
  background: #0f1b33;
  color: #a8bcd4;
  padding: 40px 0;
}

.site-footer .container {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
}

.site-footer .phone {
  background: -webkit-linear-gradient(45deg, #fbd999, #fbbb5a, #fbd999, #fbbb5a, #fbd999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ff7301;
  text-align: center;
  font-weight: 600;
}

.site-footer a {
  color: #a8bcd4;
  margin: 0 6px;
}

.site-footer a:hover {
  color: #a8bcd4;
}

/* ===== 友情链接 ===== */
.friendship-section {
  padding: 50px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.friendship-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
  color: #1f2d3d;
}

.friendship-title i {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.friendship-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.friendship-links a {
  font-size: 14px;
  color: var(--gray-600);
  transition: .24s;
  white-space: nowrap;
}

.friendship-links a:hover {
  color: var(--blue);
}

/* ===== 面包屑导航 ===== */
.breadcrumb {
  padding: 24px 0;
  background: var(--gray-50);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--gray-600);
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb span.sep {
  margin: 0 8px;
  color: var(--gray-200);
}

.breadcrumb .current {
  color: var(--blue);
  font-weight: 500;
}

/* ===== 介绍页面双栏布局 ===== */
.intro-wrap {
  display: grid;
  grid-template-columns: calc(100% - 340px) 320px;
  gap: 30px;
  padding: 60px 0;
}

/* ===== 左侧图文介绍区域 ===== */
.intro-main {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.intro-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.intro-big-img {
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 30px;
}

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

.intro-text p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
  color: #222;
}

.intro-text p a {
  text-decoration: none;
  border-bottom: 1px solid var(--blue-dark);
  color: var(--blue-dark);
}

.intro-sub-title {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 20px;
  padding-left: 12px;
  border-left: 4px solid var(--blue);
}

.advantage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.advantage-item {
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: .24s;
}

.advantage-item:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}

.advantage-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.advantage-item h4 i {
  color: var(--blue);
}

.advantage-item p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* ===== 右侧侧边栏：热门服务产品列表 ===== */
.intro-sidebar {
}

.sidebar-box {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 140px;
}

.sidebar-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-box h4 i {
  color: #f03030;
  font-size: 30px;
}

.service-list {
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed #d0d5dd;
  transition: .24s;
}

.service-item:last-child {
  border: none;
}

.service-item:hover .service-name {
  color: var(--blue);
}

/* 排行数字色块基础样式 */
.rank-num-box {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* 1-3名专属颜色 */
.rank-1 {
  background: var(--rank-red);
}

.rank-2 {
  background: var(--rank-orange);
}

.rank-3 {
  background: var(--rank-yellow);
}

.rank-other {
  background: var(--rank-gray);
}

.service-text {
  flex: 1;
}

.service-name {
  font-size: 15px;
  font-weight: 500;
  transition: .24s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== 联系页面主体 完全对齐关于我们页面结构 ===== */
.contact-wrap {
  padding: 60px 0;
}

.contact-main {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.contact-sub-title {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 20px;
  padding-left: 12px;
  border-left: 4px solid var(--blue);
}

/* 总部信息卡片 */
.head-info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0 30px;
}

.head-info-item {
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: .24s;
}

.head-info-item:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}

.head-info-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
}

.head-info-item h4 i {
  color: var(--blue);
}

.head-info-item p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 0;
}

.head-info-item p a {
  color: var(--blue);
  font-weight: 500;
}

/* 全国网点分区布局 */
.area-group {
  margin-bottom: 35px;
}

.area-group h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--gray-200);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.area-item {
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: .24s;
}

.area-item:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}

.area-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.area-item p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 4px 0;
  line-height: 1.7;
}

.area-item p a {
  color: var(--blue);
  font-weight: 500;
}

.wechat-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 20px;
  background: var(--blue-light);
  border-radius: var(--radius);
  margin-top: 50px;
}

.wechat-qrcode {
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}

.wechat-txt {
  font-size: 16px;
  color: #222;
  font-weight: 500;
}

/* ===== 文章详情主双栏布局 ===== */
.article-detail-wrap {
  display: grid;
  grid-template-columns: calc(100% - 340px) 320px;
  gap: 30px;
  padding: 60px 0;
}

/* ===== 左侧文章主内容区 ===== */
.article-main-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 20px;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: var(--gray-600);
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--gray-200);
  margin-bottom: 20px;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.meta-tag i {
  color: var(--blue);
}

.read-time-tag {
  display: block;
  text-align: center;
  background: var(--blue-light);
  color: var(--blue);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  margin-top: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.article-summary {
  background: var(--gray-50);
  padding: 22px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  color: #333;
  box-shadow: 0 2px 12px rgba(26, 109, 255, 0.08);
  margin: 10px 0;
}

.article-summary strong {
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 17px;
}

.article-summary .div-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  margin: 10px 0 14px;
}

/* 文章正文 */
.article-content {
  font-size: 16px;
  line-height: 1.9;
  color: #222;
  margin-top: 24px;
}

.article-content p {
  margin-bottom: 18px;
}

.article-content h3 {
  font-size: 20px;
  margin: 30px 0 12px;
  font-weight: 700;
}

.article-content img {
  border-radius: var(--radius);
  margin: 16px 0;
}

.article-content table,
.tab-content table {
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #1f2d3d;
  width: 100%;
  table-layout: fixed;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-content table th,
.tab-content table th {
  background-color: var(--blue);
  color: #fff;
  font-weight: 600;
  padding: 10px 8px;
  border: 1px solid var(--blue);
  white-space: normal;
  text-align: left;
  min-width: 0;
}

.article-content table td,
.tab-content table td {
  padding: 10px 8px;
  border: 1px solid var(--gray-200);
  vertical-align: middle;
  background: transparent;
  min-width: 0;
  white-space: normal;
  word-break: break-all;
}

.article-content table tbody tr:nth-child(even),
.tab-content table tbody tr:nth-child(even) {
  background-color: var(--gray-50);
}

.article-content table tbody tr:hover,
.tab-content table tbody tr:hover {
  background-color: var(--blue-light) !important;
  transition: 0.25s;
}

.article-prev-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
  padding-top: 30px;
  border-top: 1px solid var(--gray-200);
}

.prev-next-item {
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: .24s;
  overflow: hidden;
}

.prev-next-item:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}

.prev-next-item .tip {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.prev-next-item h4 {
  font-size: 15px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.relate-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}

.relate-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.relate-item {
  display: flex;
  gap: 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px;
  transition: .24s;
  width: 100%;
  align-items: flex-start;
  overflow: hidden;
}

.relate-item:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.relate-img {
  width: 100px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

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

.relate-text {
  flex: 1;
  min-width: 0;
}

.relate-text h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
}

.relate-text p {
  font-size: 13px;
  color: var(--gray-600);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

/* ===== 右侧侧边栏：阅读排行榜 ===== */
.article-sidebar {
}

.sidebar-box {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 140px;
}

.sidebar-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-box h4 i {
  color: #f03030;
  font-size: 30px;
}

.rank-list {
}

.rank-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--gray-200);
}

.rank-item:last-child {
  border: none;
}

.rank-num {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.rank-num.top1 {
  background: #f03030;
}

.rank-num.top2 {
  background: #ff7d00;
}

.rank-num.top3 {
  background: #ffc107;
}

.rank-num.other {
  background: var(--gray-600);
}

.rank-text {
  flex: 1;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
}

.rank-text a:hover {
  color: var(--blue);
}

/* ===== 左侧文章列表区域 ===== */

/* ===== 文章列表主容器 左右两栏 ===== */
.article-wrap {
  display: grid;
  grid-template-columns: calc(100% - 340px) 320px;
  gap: 30px;
  padding: 60px 0;
}

.article-main {
}

.article-list-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 30px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

/* 文章卡片复用首页知识卡片样式 */
.article-list-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.24s ease;
  margin-bottom: 20px;
}

.article-list-item:hover {
  box-shadow: var(--shadow);
  border: 1px solid var(--blue);
}

.article-list-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2d3d;
  margin-bottom: 10px;
  /* 多行省略，防止超长标题溢出 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
}

.article-list-item h3 a:hover {
  color: var(--blue);
}

.article-meta {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 12px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.article-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 分页组件 */
.pagination {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-flex;
  width: min(40px, 12vw);
  min-width: 32px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  font-size: 14px;
}

.pagination a:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
}

.pagination span.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ===== Service Wrap ===== */
.service-wrap {
  display: grid;
  grid-template-columns: calc(100% - 340px) 320px;
  gap: 30px;
  padding: 60px 0;
}

/* ===== Service Main ===== */
.service-main {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 20px;
  box-shadow: var(--shadow);
}

.service-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.service-tab-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.service-tab-item {
  padding: 12px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
}

.service-tab-item.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.service-tab-item:not(.active):hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ===== Service Card ===== */
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  transition: 0.24s;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26, 109, 255, .12);
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.service-card h3 a:hover {
  color: var(--blue);
}

.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.service-card .card-link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
}

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

/* ===== Article Block ===== */
.article-good-block {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-200);
}

.article-good-block h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-good-block h2 i {
  color: var(--blue);
  font-size: 30px;
}

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

.article-good-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  gap: 12px;
  min-width: 0;
}

.article-good-item:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26, 109, 255, .1);
}

.article-good-title {
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.article-good-title a:hover {
  color: var(--blue);
}

.article-good-time {
  font-size: 13px;
  color: var(--gray-600);
  flex-shrink: 0;
}

/* ===== 服务详情页双栏布局 ===== */
.detail-wrap {
  display: grid;
  grid-template-columns: calc(100% - 340px) 320px;
  gap: 30px;
  padding: 60px 0;
}

/* ===== 左侧详情主内容区 ===== */
.detail-main {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.detail-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.detail-meta {
  font-size: 14px;
  color: var(--gray-600);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 24px;
}

.detail-banner {
  width: 100%;
  height: 450px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 30px;
}

.detail-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-subtitle {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 20px;
  padding-left: 12px;
  border-left: 4px solid var(--blue);
}

.detail-text p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
  color: #222;
}

.detail-text p a {
  font-size: 16px;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid var(--blue);
}

/* 服务流程列表 */
.process-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.process-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 20px 12px;
  background: var(--gray-50);
  border-radius: var(--radius);
}

.process-item i {
  font-size: 32px;
  color: var(--blue);
  margin-bottom: 10px;
}

.process-item h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.process-item p {
  font-size: 13px;
  color: var(--gray-600);
  margin: 0;
}

/* 套餐卡片网格 一行3个 */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.package-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .24s;
}

.package-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26, 109, 255, 0.12);
  transform: translateY(-4px);
}

.package-card.hot {
  border: 1px solid var(--blue);
}

.package-card.hot .package-top {
  background: var(--blue);
  color: #fff;
}

.package-top {
  padding: 14px;
  background: var(--gray-50);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.package-body {
  padding: 20px;
}

.package-price {
  text-align: center;
  margin-bottom: 16px;
}

.package-price span.num {
  font-size: 28px;
  font-weight: 800;
  color: var(--rank-red);
}

.package-price span.unit {
  font-size: 14px;
  color: var(--gray-600);
}

.package-list li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--gray-100);
}

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

.package-bottom {
  padding: 14px;
  text-align: center;
  border-top: 1px solid var(--gray-100);
}

/* 所需材料清单 */
.material-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.material-item {
  padding: 10px 14px;
  background: var(--blue-light);
  border-radius: 8px;
  font-size: 15px;
}

/* FAQ问答样式 */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 16px 20px;
  background: var(--gray-50);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-a {
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

/* ===================== 产品详情评论区块 独立样式（不与evaluate-*冲突） ===================== */
.detail-comment-section {
  padding: 50px 0 0;
  border-top: 1px solid var(--gray-200);
  margin-top: 40px;
}

.detail-comment-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-comment-title i {
  color: var(--blue);
  font-size: 30px;
}

.detail-comment-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.detail-comment-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  transition: 0.24s ease;
}

.detail-comment-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
  transform: translateY(-3px);
}

/* 评论用户头部 */
.detail-comment-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.detail-comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #1a6dff, #722ed1);
  overflow: hidden;
  flex-shrink: 0;
}

.detail-comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

.detail-comment-info {
  flex: 1;
}

.detail-comment-name {
  font-size: 15px;
  font-weight: 600;
  color: #1f2d3d;
  margin-bottom: 2px;
}

.detail-comment-star {
  color: #ffc107;
  font-size: 13px;
  letter-spacing: 1px;
}

/* 评论内容 */
.detail-comment-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.detail-comment-time {
  margin-top: 8px;
  font-size: 12px;
  color: var(--gray-600);
  text-align: right;
}

/* ===== 404页面核心样式 ===== */
.page-404-wrap {
  min-height: calc(100vh - 320px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.page-404-box {
  text-align: center;
  max-width: 600px;
}

.page-404-icon {
  font-size: 100px;
  color: var(--blue);
  margin-bottom: 20px;
  opacity: 0.8;
}

.page-404-num {
  font-size: 80px;
  font-weight: 900;
  color: #222;
  line-height: 1;
  margin-bottom: 16px;
}

.page-404-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.page-404-desc {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.8;
}

.page-404-btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media(max-width:960px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100dvh;
    background: url(image/bg_nav.png) #fff right bottom no-repeat;
    background-size: 68% auto;
    flex-direction: column;
    padding: 80px 24px 30px;
    gap: 6px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
    transition: right .4s cubic-bezier(.4, 0, .2, 1), opacity .35s ease;
    opacity: 0;
    pointer-events: none;
  }
  .nav-links.open {
    right: 0;
    opacity: 1;
    pointer-events: auto;
  }
  .menu-close {
    display: flex;
  }
  .booking-form-wrap {
    flex-direction: column;
  }
  .booking-form-wrap .form-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }
  .booking-form-wrap .form-item:last-of-type {
    border-bottom: none;
  }
  .booking-btn {
    width: 100%;
    height: 64px;
  }
  .live-info-wrap {
    flex-direction: column;
    gap: 16px;
  }
  .about-qisuanzi-wrap {
    flex-direction: column;
  }
  .about-qisuanzi-left {
    width: 100%;
  }
  .about-qisuanzi-data-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .servebj-row {
    flex-direction: column;
  }
  .servebj-left-col {
    width: 100%;
  }
  .serve-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .serve-faq-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .serve-faq-row .faq-answer {
    font-size: 13px;
  }
  .evaluate-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .evaluate-card {
    padding: 20px;
  }
  .intro-wrap {
    grid-template-columns: 1fr;
  }
  .article-detail-wrap {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }
  .article-wrap {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }
  .service-wrap {
    grid-template-columns: 1fr;
  }
  .service-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-wrap {
    grid-template-columns: 1fr;
  }
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-comment-wrap {
    grid-template-columns: 1fr;
  }
  .detail-comment-card {
    padding: 16px;
  }
  .detail-comment-avatar {
    width: 36px;
    height: 36px;
  }
}

/* 移动端适配 */

@media(max-width:768px) {
  .navbar .inner {
    height: auto;
    padding: 10px 0;
  }
  .brand {
    gap: 8px;
  }
  .logo img {
    width: 100px;
    height: auto;
  }
  .slogan {
    padding-left: 8px;
  }
  .slogan::before {
    width: 2px;
    height: 14px;
  }
  .stats-bar .container {
    flex-wrap: wrap;
  }
  .stats-bar .item {
    flex: 0 0 calc(50% - 1px);
    padding: 12px 0;
  }
  .stats-bar .item:not(:last-child)::after {
    display: none;
  }
  .stats-bar .item:nth-child(odd) {
    border-right: 1px solid var(--gray-200);
  }
  .stats-bar .item:nth-child(-n+2) {
    border-bottom: 1px solid var(--gray-200);
  }
  .evaluate-wrap {
    grid-template-columns: 1fr;
  }
  .evaluate-user-head {
    gap: 10px;
  }
  .evaluate-avatar {
    width: 42px;
    height: 42px;
    padding: 2px;
  }
  .evaluate-name {
    font-size: 15px;
  }
  .knowledge-list-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .knowledge-item {
    padding: 16px;
  }
  .knowledge-item h3 {
    font-size: 16px;
  }
  .knowledge-desc {
    font-size: 13px;
  }
  .serve-faq-row .faq-answer {
    font-size: 13px;
  }
  .site-footer {
    padding: 30px 0;
  }
  .site-footer .container {
    font-size: 13px;
  }
  .friendship-section {
    padding: 36px 0;
  }
  .friendship-title {
    font-size: 18px;
  }
  .friendship-links {
    gap: 12px 20px;
  }
  .inx_consult {
    padding: 15px 0;
  }
  body {
    padding-bottom: 90px !important;
  }
  .inx_consult .w1200 {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .inx_consult_box {
    flex-direction: row !important;
    gap: 15px;
  }
  .inx_consult_box p {
    font-size: 16px;
  }
  .inx_consult_box a {
    padding: 5px 15px;
    font-size: 14px;
  }
  .inx_consult > .w1200 > span {
    padding: 5px 15px;
    border-radius: 18px;
    font-size: 13px;
    margin-top: 3px;
  }
  .head-info-list {
    grid-template-columns: 1fr;
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:640px) {
  .about-qisuanzi-data-row {
    grid-template-columns: 1fr;
  }
  .about-qisuanzi-more-btn {
    width: 100%;
    text-align: center;
  }
  .serve-card-grid {
    grid-template-columns: 1fr;
  }
  .serve-faq-row {
    grid-template-columns: 1fr;
  }
  .serve-faq-row .faq-answer {
    margin-top: 8px;
    padding-top: 8px;
  }
  .advantage-list {
    grid-template-columns: 1fr;
  }
  .relate-list {
    grid-template-columns: minmax(0, 1fr);
  }
  .service-card-grid {
    grid-template-columns: 1fr;
  }
  .package-grid {
    grid-template-columns: 1fr;
  }
  .material-list {
    grid-template-columns: 1fr;
  }
}