
/* ─── 漂浮联系按钮 ─── */
.float-contact {
    position: fixed; right: 20px; bottom: 120px; z-index: 999;
    display: flex; flex-direction: column; gap: 6px;
}
.float-item {
    position: relative; width: 50px; height: 50px;
    background: var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; text-decoration: none; color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s;
}
.float-item:hover { transform: translateX(-5px); background: #c41e12; }
.float-item .float-icon { font-size: 22px; line-height: 1; color: #fff; }
.float-item:active { transform: scale(0.92); }
.float-item::before {
    content: ''; position: absolute; top: -10px; right: 40px;
    width: 80px; height: calc(100% + 20px); z-index: -1;
}
.float-item .float-popup {
    position: absolute; right: 70px; top: 50%;
    transform: translateY(-50%); background: #fff;
    border-radius: 10px; box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 15px 18px; min-width: 180px;
    opacity: 0; visibility: hidden;
    transition: all 0.3s; pointer-events: none;
}
.float-item:hover .float-popup,
.float-item .float-popup:hover {
    opacity: 1; visibility: visible;
    right: 72px; pointer-events: auto;
}
.float-popup::after {
    content: ''; position: absolute; right: -8px; top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
.float-popup .popup-title { font-size: 14px; font-weight: 700; color: #333; margin-bottom: 6px; }
.float-popup .popup-phone { font-size: 20px; font-weight: 700; color: #da251c; white-space: nowrap; }
.float-popup .popup-hint { font-size: 12px; color: #999; margin-top: 4px; }
.float-popup .popup-qr img { width: 120px; height: 120px; display: block; margin: 0 auto 8px; border-radius: 6px; }
.float-popup .popup-qr span { font-size: 12px; color: #666; display: block; text-align: center; }
.float-backtop { font-size: 22px; font-weight: bold; }

/* ─── 底部 ─── */
.site-footer {
  background: #333;
  color: #d8d8d8;
  padding: 30px 0;
}
.site-footer a { color: #d8d8d8; text-decoration: none; }
.site-footer a:hover { color: #fff; }

.site-footer .footer-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  width: 94%;
}
.site-footer .footer-info-col {
  flex: 1;
  max-width: 100%;
  padding: 0 30px;
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.site-footer .footer-info-col:last-child {
  border-right: none;
}
.site-footer .footer-info-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 70px auto;
  align-items: center;
  gap: 15px;
}
.site-footer .footer-info-icon {
  flex: 0 0 auto;
  width: 47px;
  max-width: 47px;
  text-align: center;
}
.site-footer .footer-info-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.site-footer .info-icon-emoji {
  font-size: 32px;
  line-height: 1;
  display: block;
}
.site-footer .footer-info-text {
  flex: 1;
  min-width: 0;
}
.site-footer .footer-info-text .info-label {
  font-size: 18px;
  color: #bcb6aa;
  line-height: 1.4;
  display: block;
  margin-bottom: 4px;
}
.site-footer .footer-info-text .info-value {
  font-size: 14px;
  color: #d8d8d8;
  line-height: 1.6;
  display: block;
}
.site-footer .footer-info-text .info-value a {
  color: #d8d8d8;
  font-size: 14px;
  line-height: 1.6;
}

/* 底部版权区 */
.site-footer .footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 94%;
  gap: 10px;
}
.site-footer .footer-copyright-left {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.site-footer .footer-copyright-left p { margin: 0; }
.site-footer .footer-copyright-left a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer .footer-copyright-left a:hover { color: #ecf0f1; }
.site-footer .footer-copyright-right {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  text-align: right;
}
.site-footer .footer-copyright-right a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer .footer-copyright-right a:hover { color: #fff; }

@media screen and (max-width: 768px) {
  .site-footer .footer-info {
    flex-direction: column;
  }
  .site-footer .footer-info-col {
    padding: 15px 20px;
    border-right: none;
  }
  .site-footer .footer-info-item {
    margin: 20px auto;
  }
  .site-footer .footer-copyright {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .site-footer .footer-copyright-left {
    text-align: center;
  }
  .site-footer .footer-copyright-right {
    text-align: center;
  }
}
