.elementor-37 .elementor-element.elementor-element-e8ade43{--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;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for container, class: .elementor-element-e8ade43 */.footer-container {
  width: 100%;
  background-color: #2c3e50;
  color: #ecf0f1;
  font-family: Arial, sans-serif;
  padding: 50px 0 20px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-about {
  flex: 2;
  min-width: 300px;
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  color: #2ecc71;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #2ecc71;
}

.footer-about-text {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #bdc3c7;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  color: #2ecc71;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background-color: #2ecc71;
  color: white;
  transform: translateY(-3px);
}

.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-item {
  margin-bottom: 12px;
}

.footer-menu-link {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 5px 0;
}

.footer-menu-link:hover {
  color: #2ecc71;
  padding-left: 5px;
}

.footer-submenu {
  list-style: none;
  padding-left: 15px;
  margin-top: 5px;
}

.footer-submenu-item {
  margin-bottom: 8px;
}

.footer-submenu-link {
  color: #95a5a6;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: block;
  padding: 3px 0;
}

.footer-submenu-link:hover {
  color: #2ecc71;
}

.footer-icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-icon-item {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-icon-link {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-icon-link:hover {
  color: #2ecc71;
}

.footer-icon-link:before {
  content: "•";
  color: #2ecc71;
  margin-right: 10px;
  font-weight: bold;
}

.footer-contact-text {
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 20px;
  text-align: center;
  color: #95a5a6;
  font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .footer-columns {
    gap: 30px;
  }
  
  .footer-about {
    flex: 1 0 100%;
  }
}

@media (max-width: 768px) {
  .footer-column {
    flex: 1 0 100%;
  }
  
  .footer-inner {
    padding: 0 15px;
  }
}


        /* 弹窗样式 */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .popup-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            max-width: 500px;
            width: 80%;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        .close-popup {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: #7f8c8d;
            background: none;
            border: none;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s;
        }
        .close-popup:hover {
            color: #e74c3c;
        }/* End custom CSS */