/**
 * 移动端通用样式
 * 仅在移动端生效，PC端保持原样式不变
 */

/* 移动端媒体查询 - 平板及以下 */
@media screen and (max-width: 1024px) {
  .container {
    width: 100%;
    overflow-x: hidden;
  }
  
  .content-info {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
}

/* 移动端媒体查询 - 手机 */
@media screen and (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }
  
  body {
    font-size: 14px;
    -webkit-text-size-adjust: 100%;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
  }
  
  /* 隐藏PC端的右侧入口按钮 */
  .inlet-box {
    display: none !important;
  }
  
  /* 声明按钮移动端适配 */
  .demo {
    width: 60px;
    height: 60px;
    font-size: 20px;
    line-height: 60px;
    left: 5px;
    top: auto;
    bottom: 80px;
  }
}

/* 小屏手机 */
@media screen and (max-width: 480px) {
  body {
    font-size: 13px;
  }
  
  .demo {
    width: 50px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
  }
}
