/* 仅移动端生效 */
@media (max-width:767px){
  /* 背景遮罩 */
  .popup-overlay{
    position:fixed;
    left:0;top:0;
    width:100%;height:100%;
    background:rgba(0,0,0,.55);
    z-index:9998;
    display:none;
  }
  /* 公告盒 */
  .popup-box{
    position:fixed;
    left:50%;top:50%;
    transform:translate(-50%,-50%);
    width:86%;
    max-width:320px;   /* 手机最大宽度 */
    background:#fff;
    border-radius:12px;
    z-index:9999;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.35);
  }
  /* 关闭按钮 */
  .popup-close{
    position:absolute;
    right:12px;top:8px;
    width:28px;height:28px;
    text-align:center;
    line-height:28px;
    font-size:24px;
    color:#888;
    cursor:pointer;
  }
  /* 内容区 */
  .popup-body{
    padding:24px 20px 30px;
    max-height:60vh;
    overflow-y:auto;
    font-size:15px;
    color:#333;
    line-height:1.7;
  }
}