*{
    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);
    }
  }
/* 翻页 */
.news_pages{
    display: flex;
    justify-content: center;
    margin: 0.2rem  0 0.5rem 0;
    align-items: center;
    /* margin-top: 0.5rem; */
}
.news_pages_a{
    width: 0.3rem;
    height: 0.3rem;
    display: block;
    background:#222;
    margin: 0 0.07rem ;
    text-align: center;
    line-height: 0.3rem;
    color: #fff;
    font-size: 0.14rem;
    border-radius: 0.05rem;
}
.news_pages_bg{
    background: #e8e8e8;
    color: #222;
}

.news_pages_a:last-child{
    background: #e8e8e8;
    color: #222;
}
.news_pages_x{
    color: #7D7D7D;
}
.news_pages_input{
    width: 0.76rem;
    height: 0.3rem;
    background: #fff;
    border: 0.01rem solid #222222;
    border-radius: 0.03rem;
    margin-left: 0.1rem;
    padding: 0 0.1rem;
}
.new_pages_txt{
    color: #222222;
    font-size: 0.19rem;
    margin-left: 0.1rem;
}
/* 14rem */

@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 */
    }
}


