*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: .16rem;
}
html{
    font-size: 100px;
    overflow-x: hidden;
}

a{
    text-decoration: none;
    color: #000;
}
ul{
    list-style: none;
}
input{
    outline: 0;
    background:#fff;
}
img{
    object-fit: cover;
    cursor:pointer;
    display: block;
}
/*文字描边*/
 /* 设置描边宽度及颜色 默认为字体内外描边
  text-stroke: 2px #2173FF;
 */
  /* 兼容Webkit(Chrome/Safari)内核浏览器的写法
  -webkit-text-stroke: 2px #2173FF;
  color: #fff;
 */
/*多行溢出*/
line{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
}
/* 水波纹效果 */
.btn-ripple {
  vertical-align: bottom;
}
.btn-ripple:not(:disabled):hover {
  opacity: 1;
  position: relative;
  overflow: hidden;
}
.btn-ripple:not(:disabled):hover::before {
  animation: ani_ripple 0.75s;
  z-index: 1;
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 0;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  padding-top: 100%;
  transform: translateX(-50%) translateY(-50%);
}
@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);
    }
  }
/*翻页
<div class="news_pages">
                        <a href="javascript:;" class="news_pages_a"> < </a>
                        <a href="javascript:;" class="news_pages_a">1</a>
                        <a href="javascript:;" class="news_pages_a">2</a>
                        <a href="javascript:;" class="news_pages_a">3</a>
                        <a href="javascript:;" class="news_pages_a">4</a>
                        <a href="javascript:;" class="news_pages_x ">...</a>
                        <a href="javascript:;" class="news_pages_a">8</a>
                        <a href="javascript:;" class="news_pages_a">></a>
</div>
*/
.news_pages{
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}
.news_pages_a{
    display: block;
    background:#fff;
    margin: 0 0.07rem ;
    text-align: center;
    line-height: 0.3rem;
    border: 0.01rem solid #eeeeee;
    color: #222222;
    font-size: 0.14rem;
    padding:0 0.12rem ;
    border-radius: 0.03rem;
}

.news_pages_a:hover,.news_pages_a.active{
    background: #02489D;
    color: #fff;
}
.news_pages_x{
    color: #7D7D7D;
}

/* 当前位置 */
.common_position{
    padding: 0.15rem 0;
    background: #F0F0F9;
}
.common_center{
    width: 12rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.common_im{
    width: 0.18rem;
    height: 0.18rem;
    display: block;
    margin-right: 0.06rem;
}
.common_im img{
    width: 100%;
    height: 100%;
}
.common_center a{
    display: flex;
    align-items: center;
}
.common_center a,span{
    color: #888;
    font-size: 0.14rem;
    margin-right: 0.06rem;
}
