@charset "UTF-8";
/* 医疗科技配色方案 */
:root {
  --primary-blue: #0D6EFD;
  --dark-blue: #0D47A1;
  --light-blue: #E3F2FD;
  --accent-teal: #00ACC1;
  --bio-green: #00BFA5;
  --white: #FFFFFF;
  --gray: #f5f5f5;
  --text-dark: #333;
  --text-light: #777;
}

/* 页脚样式 */
.footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 50px 0 0;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section h3 i {
  color: var(--accent-teal);
}

.footer-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--bio-green);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: var(--light-blue);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section ul li a:hover {
  color: var(--bio-green);
  transform: translateX(5px);
}

.footer-section ul li a i {
  font-size: 0.8rem;
  color: var(--accent-teal);
}

.footer-section p {
  color: var(--light-blue);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 10px;
  color: var(--light-blue);
  font-size: 0.95rem;
}

.contact-info i {
  color: var(--accent-teal);
  width: 20px;
  text-align: center;
}

/* 二维码区域 */
.qrcode-section {
  display: flex;
  flex-direction: column;
}

.qrcode-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  margin-top: 10px;
}

.qrcode-placeholder {
  width: 140px;
  height: 140px;
  margin: 0 auto 15px;
  background-color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.qrcode-placeholder img {
  max-width: 100%;
  height: auto;
}

.qrcode-container p {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* 底部版权 */
.footer-bottom {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 40px;
}

.copyright {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.copyright p {
  color: var(--light-blue);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: var(--light-blue);
  text-decoration: none;
  font-size: 0.85rem;
  margin: 0 5px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--bio-green);
}

/* 社交媒体图标 */
.social-links {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--accent-teal);
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 响应式设计 */
@media (max-width: 992px) {
  .footer-section {
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
  .footer-section {
    margin-bottom: 20px;
  }
  .qrcode-container {
    max-width: 160px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 30px 0 0;
  }
  .footer-section h3 {
    font-size: 1.1rem;
  }
  .social-links {
    gap: 10px;
  }
  .social-links a {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/*# sourceMappingURL=commonFooter.css.map */
