*{

    margin: 0;

    padding: 0;

    font-size: .16rem;

    -webkit-tap-highlight-color: transparent!important;
    -webkit-tap-highlight-color: rgba(0,0,0,0)!important; 

}

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) {
    body{
        padding-top: 80px!important;
    }
  }