*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: .16rem;
}
html{
    font-size: 100px;
    overflow-x: hidden;
    /*font-family:  Microsoft YaHei;*/
    /*font-family:  -apple-system-font,Helvetica Neue,Arial,sans-serif;*/
}

a{
    text-decoration: none;
    color: #000;
}
ul{
    list-style: none;
}
input{
    outline: 0;
    background:#fff;
}
img{
    object-fit: cover;
    cursor:pointer;
    display: block;
}
/*多行溢出*/
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:0.3rem 0 0.5rem 0;
}
.news_pages_a{
    width: 0.3rem;
    height: 0.3rem;
    display: block;
    background:#fff;
    margin: 0 0.07rem ;
    text-align: center;
    line-height: 0.3rem;
    border: 0.01rem solid #eeeeee;
    color: #7D7D7D;
    font-size: 0.14rem;
}
.news_pages_a:hover{
    background: #036EB8;
    color: #fff!important;
}
.news_pages_x{
    color: #7D7D7D;
}
.news_xbox_textbox p img{
    margin: 0 auto;
}
/* 14rem */


@media only screen and (max-width:1024px){
    .case_imgbox img{
        width: 100% !important;
        object-fit: cover;
        height: 2.6rem !important;
    }
    .news_pages_a{
        font-size: 12px;
    }
    .case_xbox_center iframe{
        width: 100%;
        padding: 0 10px;
    }
    .product_one img,.about_banner img{
        width: 100% !important;
    object-fit: cover;
    height: 2.6rem !important;
    }
}