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

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




.honour_center{
    overflow: hidden;
}

.scroll_items{
    min-width: 3.2rem;
}
.scroll_items img{
    max-width: 90%!important;
    max-height: 100%!important;
    width: auto!important;
    height: auto!important;
    
}
.index_rongyu_scroll{
    width: calc( 3.2rem * 12);
    display: flex;
    animation: moveScroll 30s linear infinite;
    margin-top: 0.6rem;
}
.index_rongyu_scroll:hover{
    animation-play-state: paused;
}
@keyframes moveScroll {
    0%{
        
    }
    100%{
        transform: translateX(-100%);
    }
}
.news_xbox_textbox span{
    font-size: 16px;
}
.news_xbox_textbox strong{
    font-size: inherit !important;
}
.link_box{
    width: 14rem;
    margin: 0 auto;
    padding: 0.75rem 0 ;
}
.link_wrap{
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.5rem;

}
.link_aitems{
    width: 11%;
    margin-bottom: 0.29rem;
    display: inline-block;
    font-size: 0.16rem;
    color: #222222;
    border: 0.01rem solid #e5e5e5;
    border-radius: 99rem;
    margin-right: 1.7%;
    padding: 0.1rem 0;
    text-align: center;
}

.link_aitems:nth-child(8n){
    margin-right: 0;
}
@media screen and (max-width:1024px){
    .news_xbox_textbox strong,span{
        font-size: 12px !important;
    }
    .link_box{
        width: auto !important;
        padding: 15px !important;
    }
    .link_aitems{
        
        width: 32.5%;
        height:30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        margin-right: 1.25%;
    }
    .link_aitems:nth-child(3n){
        margin-right: 0;
    }
    .link_aitems:nth-child(8n){
        margin-right: 1.25%;
    }


}




