html, body {
  width: 100%;
  height: 100%;
}
*{
  margin: 0;
  padding: 0;
  border-width: 0px;
}
input, button {
  background: none;
  background-color: transparent;
}

/* body 在横屏底下和竖屏底下一定要做好定位，不然*/
    /* 竖屏底下的查询 */
/* @media screen and (orientation: portrait) { */
  /* body { */
    /* 防止页面被刘海遮住 */
    /* padding-top: constant(safe-area-inset-top); */
    /*以防万一写一个你本身适配其他手机的*/
    /* padding-top:0px; */
  /* } */
/* } */

/* 横屏底下的查询 */
/* @media screen and (orientation: landscape) { */
  /* body { */
    /* IOS 11支持*/
    /* padding-right: constant(safe-area-inset-right); */
    /* padding-left: constant(safe-area-inset-left); */
    /* padding-bottom: constant(safe-area-inset-bottom); */
    /* IOS 11.2版本版本支持 */
    /* padding-right: env(safe-area-inset-right); */
    /* padding-left: env(safe-area-inset-left); */
    /* padding-bottom: env(safe-area-inset-bottom); */
    /* 以防万一写一个你本身适配其他手机的 */
    /* padding-right:0px; */
    /* padding-left:0px; */
    /* padding-bottom:0px; */
  /* } */
/* } */
