/* 手机 */
@media only screen and (max-width: 1000px) {
  .footer-content {
      display: flex;
      flex-flow: column;
      justify-content: space-between;
      padding: 30px 0;
  }
  .footer-section {
      width: 100% !important;
      height: 100%;
      justify-content: space-between;
  }
  .footer-section1 {
      display: flex;
      flex-flow: column;
      padding: 0 4%;
      justify-content: center;
      align-items: left;
      margin-bottom: 30px;
  }
  .footer-section2 {
      display: flex;
      flex-flow: column;
      padding: 0px 4%;
      justify-content: space-between;
      align-items: left;
      height: 150px;
      margin-bottom: 30px;
  }
  .footer-section3 {
      display: flex;
      flex-flow: column;
      padding: 0 4%;
      justify-content: space-between;
      align-items: left;
      height: 200px;
      margin: 0px;
  }
  .btmLogo {
      margin-bottom: 10px;
      width: 40% !important;
  }
  .main {
      margin-top: 10px;
  }
  .footer-bottom {
      padding: 20px 0;
      line-height: 1.5;
      display: flex;
      flex-direction: column; /* 修改为列布局 */
      align-items: center; /* 水平居中 */
  }
  .footer-bottom a {
      display: block; /* 让链接独占一行 */
      margin: 5px 0; /* 添加上下外边距 */
  }
}

    /* pc */
    @media only screen and (min-width: 1001px){
        .footer-content {
            display: flex;
            justify-content: space-between;
            height: 250px; 
            padding:30px 0;
        }
        .footer-section {
            display: flex;
            flex-flow: column;
            width: 33% !important;
            height: 100%;
            justify-content: space-between
        }
        .footer-section1 {width: 33% !important;padding-right: 5%;}
        .footer-section2 {width: 33% !important;padding-left: 5%;}
        .footer-section3 {width: 33% !important;padding-left: 10%;} 
         .footer-bottom {
            padding: 30px 0;
        }
    }
    


    .footer {
        background: linear-gradient(135deg, #3f9a44, #12508e);
        color: #ffffff;
        /* padding: 64px 0 32px; */
      }
    
      .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        /* display: grid; */
        /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
        /* gap: 3rem; */
        /* padding: 0 2rem; */
      }
    
      /* .footer-section {
        margin-bottom: 2rem;
      } */
    
       .footer-section h4 {
        /* font-size: 1.2rem; */
        font-weight: 600;
        /* margin-bottom: 1.5rem; */
        position: relative;
        padding-bottom: 15px;
      } 
    
      .footer-section h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background: #ffffff;
      }
    
      .footer-links {
        list-style: none;
        padding: 0;
      }
    
      /* .footer-links li {
        margin-bottom: 0.8rem;
      } */
    
      .footer-links a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s ease;
      }
    
      .footer-links a:hover {
        color: #45a049;
      }
    
      .footer-bottom {
        text-align: center;
        /* padding-top: 2rem; */
        /* margin-top: 2rem; */
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      /* 社交媒体图标默认样式 */
      .social-links a i {
        color: #ffffff; /* 默认颜色为白色 */
        font-size: 24px; /* 图标大小 */
        transition: color 0.3s ease; /* 平滑颜色变化 */
      }

      /* 社交媒体图标悬停样式 */
      .social-links a i:hover {
        color: #37883f !important; /* 悬停时颜色变为绿色 */
      }

      .footer-bottom {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        color: #fff;
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom a {
        color: #fff;
        text-decoration: none; /* 去掉默认的下划线 */
        margin-left: 10px;
    }
    
    .footer-bottom a:hover {
        text-decoration: none; /* 鼠标悬停时也不显示下划线 */
        color: #37883f !important; /* 悬停时颜色变为绿色 */
    }

    