/* 移动端页脚样式 */
@media (max-width: 768px) {
  /* 整体布局调整 */
  .site-footer {
    font-size: 14px !important;
  }
  
  .footer-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
    flex-direction: column !important;
  }
  
  /* 黑色部分调整 */
  .footer-black {
    padding: 25px 0 !important;
  }
  
  .footer-social-block {
    min-width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px !important;
  }
  
  .footer-newsletter-block {
    width: 100% !important;
    margin-left: 0 !important;
    margin-top: 20px !important;
  }
  
  .footer-newsletter-form {
    flex-direction: column !important;
    padding: 10px !important;
  }
  
  .footer-newsletter-form input[type="email"] {
    width: 100% !important;
    margin-bottom: 10px !important;
    padding: 10px !important;
  }
  
  .footer-newsletter-form button {
    width: 100% !important;
    margin-left: 0 !important;
    justify-content: center !important;
  }
  
  /* 橙色部分调整 */
  .footer-orange {
    padding: 0 !important;
  }
  
  .footer-cols-wrap {
    padding-top: 20px !important;
    padding-bottom: 0 !important;
    gap: 0 !important;
  }
  
  .footer-col {
    width: 100% !important;
    margin-bottom: 5px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 10px 0 !important;
  }
  
  .footer-col:last-child {
    border-bottom: none !important;
  }
  
  .footer-col-title {
    font-size: 16px !important;
    padding: 10px 0 !important;
    margin-bottom: 0 !important;
  }
  
  /* 手风琴样式优化 */
  .accordion-toggle {
    display: block !important;
    width: 100% !important;
    position: relative !important;
    padding: 10px 0 !important;
  }
  
  .accordion-toggle::after {
    font-size: 20px !important;
    font-weight: normal !important;
    transition: transform 0.3s ease !important;
  }
  
  .accordion-toggle.active::after {
    transform: translateY(-50%) rotate(180deg) !important;
  }
  
  .accordion-content {
    padding-left: 10px !important;
    padding-bottom: 10px !important;
  }
  
  .accordion-content li {
    margin-bottom: 12px !important;
  }
  
  /* 警告区域调整 */
  .footer-warning {
    font-size: 12px !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    line-height: 1.5 !important;
  }
  
  .footer-age-row {
    flex-direction: row !important;
    align-items: flex-start !important;
  }
  
  .footer-age-circle {
    width: 30px !important;
    height: 30px !important;
    font-size: 14px !important;
    margin-right: 10px !important;
    margin-top: 2px !important;
  }
  
  .footer-age-note {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
  
  .footer-copyright {
    padding: 20px 0 !important;
    font-size: 12px !important;
  }
  
  /* 社交媒体和支付图标调整 */
  .footer-socials {
    gap: 20px !important;
    justify-content: flex-start !important;
    margin-bottom: 20px !important;
  }
  
  .footer-socials a img {
    width: 25px !important;
    height: 25px !important;
  }
  
  .footer-payments {
    gap: 10px !important;
    flex-wrap: wrap !important;
  }
  .footer-payments img {
    width: 30px!important;
    height: 20px!important;
  }
}