/**
 * 移动端页脚样式
 */

/* 平板适配 */
@media screen and (max-width: 1024px) {
  .footer {
    height: auto;
    min-height: 150px;
    padding: 20px 15px;
  }
  
  .footer div {
    padding: 3px 0;
  }
}

/* 手机端适配 */
@media screen and (max-width: 768px) {
  .footer {
    height: auto;
    min-height: auto;
    padding: 20px 15px;
    line-height: 1.6;
    font-size: 12px;
  }
  
  .footer div {
    padding: 5px 10px;
    text-align: center;
  }
  
  .footer div:last-child {
    font-size: 11px;
    color: #888;
    line-height: 1.5;
  }
}

/* 小屏手机适配 */
@media screen and (max-width: 480px) {
  .footer {
    padding: 15px 10px;
    font-size: 11px;
  }
  
  .footer div {
    padding: 4px 8px;
  }
  
  .footer div:last-child {
    font-size: 10px;
  }
}
