*{
    margin: 0;
    padding: 0;
    font-size: .16rem;
    box-sizing: border-box;
}
html{
    font-size: 100px;
    overflow-x: hidden;
}
a{
    text-decoration: none;
    color: #000;
}
ul{
    list-style: none;
}
input{
    outline: 0;
}
img{
    object-fit: cover;
    cursor:pointer;
    display: block;
}
/* 水波纹效果 */
@keyframes ani_ripple {
    0% {
      background: rgba(0, 0, 0, 0.25);
      transform: translateX(-50%) translateY(-50%) scale(0);
    }
  
    to {
      background: transparent;
      transform: translateX(-50%) translateY(-50%) scale(1);
    }
  }

@media screen and (max-width:1024px){
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-tap-highlight-color: rgba(0,0,0,0); /* For some Androids */
        -webkit-user-select: none; /* Chrome/Safari */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* IE10+ */
        user-select: none; /* Possible future */
        }
     body{
        overflow: hidden;
        padding-top:0.9rem;
     }
     
}

