/* Footer组件样式 */
.footer-container {
  width: 100%;
  height: 29.85vw;
  background-color: #000000;
  padding: 4vw 0 0 0;
  font-family: PingFangSC-Regular, sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 65vw;
  margin: 0 auto;
}

.footer-logo {
  width: 120px;
  height: auto;
  flex-shrink: 0;
}

.footer-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.footer-link {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 0.6VW;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #0066cc;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
  max-width: 200px;
}

.contact-item {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 10px;
}

.media-reports {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 30px 0 15px 0;
}

.media-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 0 20px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.copyright {
  font-size: 14px;
  color: #666;
}

.icp {
  font-size: 14px;
  color: #666;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-section {
    margin-bottom: 20px;
    min-height: auto;
  }
  
  .footer-contact {
    margin-bottom: 20px;
    min-height: auto;
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 20px 0 10px 0;
  }
  
  .footer-content {
    padding: 0 15px;
  }
  
  .footer-bottom {
    padding: 0 15px;
  }
}
