.elementor-27296 .elementor-element.elementor-element-44b58b6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-cf5a578 *//* 页脚容器样式 */
footer {
  background-color: #fff; /* 白色背景 */
  color: #333; /* 黑色文字 */
  padding: 40px 0;
  font-family: 'Arial', sans-serif;
  box-sizing: border-box;
  width: 100%; /* 确保占满屏幕宽度 */
  border-top: 1px solid #ddd; /* 轻微的顶部边框 */
}

footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

footer .footer-column {
  flex: 1;
  margin-right: 40px;
  transition: transform 0.3s ease, opacity 0.3s ease; /* 增加动画 */
}

footer .footer-column:last-child {
  margin-right: 0; /* 去除最后一列的右边距 */
}

footer .footer-column h2 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

footer .footer-column a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease, transform 0.3s ease; /* 增加动画 */
}

footer .footer-column a:hover {
  color: #555; /* 鼠标悬停时加深颜色 */
  transform: scale(1.1); /* 鼠标悬停时放大 */
}

footer .separator {
  height: 1px;
  background-color: #eee; /* 轻微的分隔线 */
  margin: 30px 0;
}

footer .footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #888; /* 灰色文字 */
  margin-top: 20px;
  opacity: 0.7; /* 初始透明度 */
  transition: opacity 0.3s ease; /* 增加透明度过渡效果 */
}

footer .footer-bottom a {
  color: #888;
  margin-left: 15px;
  font-size: 14px;
  transition: color 0.3s ease; /* 添加颜色过渡效果 */
}

footer .footer-bottom a:hover {
  color: #333; /* 鼠标悬停时变成黑色 */
  text-decoration: underline; /* 鼠标悬停时添加下划线 */
}

/* 鼠标悬停时整体显示 */
footer:hover .footer-column {
  transform: translateY(-5px); /* 页脚悬停时的整体提升效果 */
  opacity: 1; /* 保证透明度为100% */
}

/* 响应式设计 */
@media (max-width: 768px) {
  footer .footer-container {
    flex-direction: column;
    align-items: center;
  }

  footer .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }

  footer .footer-column:last-child {
    margin-bottom: 0;
  }
}/* End custom CSS */