/* === 手机底部导航栏 === */
.mobile-bottom-nav {
  display: none;
}
@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 8px 0;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    height: 56px;
  }
  .nav-item {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: #666;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .nav-item span:nth-child(1) {
    font-size: 20px;
    margin-bottom: 2px;
  }
  .nav-item a {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}

/* === 底部弹出菜单 === */
.bottom-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bottom-menu-overlay.active {
  opacity: 1;
}

.bottom-full-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  max-height: 60vh;
  overflow-y: auto;
  padding-bottom: 64px;
}
.bottom-full-menu.open {
  transform: translateY(-64px);
}

.menu-header {
  padding: 16px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-header h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}
.menu-header a {
  font-size: 24px;
  color: #999;
  text-decoration: none;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-list li {
  padding: 14px 16px;
  border-bottom: 1px solid #f8f8f8;
  display: flex;
  align-items: center;
}
.menu-list img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  object-fit: contain;
}
.menu-list a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  flex: 1;
}
/* ==============================
   文章底部引导模块 - 落户帮定制
   位置：view_article.htm
============================== */
.article-cta-container {
  background: linear-gradient(135deg, #f9fbfd 0%, #e6f2ff 100%);
  border: 1.5px solid #e63946;
  padding: 20px 18px;
  border-radius: 12px;
  text-align: center;
  margin: 30px auto;
  max-width: 800px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}

.article-cta-container .cta-title {
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
}

.article-cta-container .cta-highlight {
  color: #e63946;
  font-weight: bold;
}

.article-cta-container .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.article-cta-container .btn-outline,
.article-cta-container .btn-primary {
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.article-cta-container .btn-outline {
  border: 1px solid #3498db;
  color: #3498db;
  background: white;
}

.article-cta-container .btn-outline:hover {
  background: #3498db;
  color: white;
}

.article-cta-container .btn-primary {
  background: #3498db;
  color: white;
}

.article-cta-container .btn-primary:hover {
  background: #2980b9;
}