.footer{
    height: 50px;
    background-color: #eaeaea;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footers{
    background-color: #eaeaea;
    color: #000;
    text-align: center;
    /* padding: 20px 0; */
    margin-top: 30px;
  }
  
  .footers>p{
    padding: 0;
    margin: 0;
    font-size: 16px;
  }

  .Footer-Top{
    padding: 30px 0;
    width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
  }

  .Footer-Top-Item{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #444;
  }

  .Footer-Main {
    padding: 25px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.Footer-Main-Container{
  display: flex;
  width: 1000px;
  margin: 0 auto;
  justify-content: space-between;
  cursor: pointer;
  text-decoration: none;
  color: #666;
  font-size: 15px;
}
.Footer-Main-Container a{
  color: #666;
  text-decoration: none;
}
.Footer-Bottom{
  padding: 30px 0;
  color: #999;
}
.Footer-Bottom a{
  color: #999;
}
a{
  text-decoration: none !important;
}

/* ====== 手机端适配 ====== */
@media screen and (max-width: 768px) {
  .footers {
    margin-top: 20px;
    padding: 0;
  }

  /* Footer-Top 区域适配 */
  .Footer-Top {
    width: 100%;
    padding: 20px 15px;
    flex-direction: column;
    gap: 15px;
    box-sizing: border-box;
  }

  .Footer-Top-Item {
    font-size: 14px;
    gap: 8px;
    width: 100%;
    justify-content: flex-start;
    padding: 10px 0;
  }

  .Footer-Top-Item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  /* Footer-Main 区域适配 */
  .Footer-Main {
    padding: 20px 15px;
  }

  .Footer-Main-Container {
    width: 100%;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    padding: 0;
  }

  .Footer-Main-Container > div {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .Footer-Main-Container > div:last-child {
    border-bottom: none;
  }

  .Footer-Main-Container a {
    display: block;
    font-size: 14px;
    padding: 5px 0;
  }

  /* Footer-Bottom 区域适配 */
  .Footer-Bottom {
    padding: 20px 15px;
    font-size: 12px;
    line-height: 1.6;
  }

  .Footer-Bottom span {
    display: block;
    margin-bottom: 8px;
  }

  .Footer-Bottom img {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin: 0 4px;
  }

  .Footer-Bottom a {
    font-size: 12px;
    display: inline-block;
    word-break: break-all;
  }
}

/* 小屏幕手机适配 */
@media screen and (max-width: 480px) {
  .Footer-Top {
    padding: 15px 10px;
    gap: 12px;
  }

  .Footer-Top-Item {
    font-size: 13px;
    gap: 6px;
    padding: 8px 0;
  }

  .Footer-Top-Item img {
    width: 20px;
    height: 20px;
  }

  .Footer-Main {
    padding: 15px 10px;
  }

  .Footer-Main-Container {
    gap: 12px;
  }

  .Footer-Main-Container a {
    font-size: 13px;
  }

  .Footer-Bottom {
    padding: 15px 10px;
    font-size: 11px;
  }

  .Footer-Bottom a {
    font-size: 11px;
  }
}