*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: .16rem;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* For some Androids */
        
}
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;
}

/*翻页*/

.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-item{
    width: 0.3rem;
    height: 0.3rem;
    border: 0.01rem dashed #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.14rem;
    border-radius:50%;
    margin: 0 0.05rem;
    cursor: pointer;
}
.page-item.active{
    background: #1859a8;
    color: #fff;
    border-color: #1859a8;
}


.common_a_tit.active{
    background: #053f94;
    color: #fff;
}

/*单词自动换行*/
/* word-break:break-all;
word-wrap:break-word; */
/*文字描边*/
 /* 设置描边宽度及颜色 默认为字体内外描边
  text-stroke: 2px #2173FF;
 */
  /* 兼容Webkit(Chrome/Safari)内核浏览器的写法
  -webkit-text-stroke: 2px #2173FF;
  color: #fff;
 */

.swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*多行溢出*/
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);
    }
  }
.common_banner img{
  width: 100%;
}
.common_position{
  background-color: #F8F8F8;
}
.common_center{
  display: flex;
  justify-content: space-between;
  width: 14rem;
  margin: 0 auto;
  align-items: center;
}
.common_a_tit{
  height: 0.81rem;
  width: 1.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #504D4D;
  font-size: 0.2rem;
  border-right: 0.01rem solid #787676;
  /*transition: all .25s;*/
}

.common_a_tit:hover{
  background: #053F94;
  color: #fff;
}
.common_abox{
  display: flex;
  align-items: center;
}
.common_bread_homer{
  width: 0.18rem;
  height: 0.2rem;
  margin-right: 0.05rem;
}
.common_bread_homer img{
  width: 100%;
  height: 100%;
}

.common_bread{
  display: flex;
  align-items: center;
}
.common_bread_homer{
  width: 0.18rem;
  height: 0.2rem;
}
.common_bread_after{
  display: flex;
  align-items: center;
  color: #504D4D;
  font-size: 0.16rem;
}

.common_bread_after::after{
  content: '>';
  display: block;
  margin: 0 0.05rem;
}





@media only screen and (max-width:1024px){
    .common_banner{
        margin-top: 50px;
    }
    .common_center,
    .common_abox{
        width: 100%;
        justify-content: space-between;
    }
    .common_a_tit:last-child{
        border: 0;
    }
     .common_bread{
        display: none;
    }
    .common_a_tit{
        flex: 1;
        font-size: 14px!important;
    }
}


