*{
    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 */
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
}
html{
    font-size: 100px;
    overflow-x: hidden;
    /* background: #F5F5F5; */
}

a{
    text-decoration: none;
    color: #000;
}
ul{
    list-style: none;
}
input{
    outline: 0;
    background:#fff;
}
img{
    object-fit: cover;
    cursor:pointer;
    display: block;
}
/*单词自动换行*/
/* 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;
}


/*多行溢出*/
.line1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.line2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
}
.line3{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 3;
}
.line4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 4;
}
.line5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 5;
}
/* 水波纹效果 */
.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: .81rem;
  width: 1.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #504D4D;
  font-size: .18rem;
  border-right: .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: .18rem;
  height: .2rem;
  margin-right: .05rem;
}
.common_bread_homer img{
  width: 100%;
  height: 100%;
}

.common_bread{
  display: flex;
  align-items: center;
}
.common_bread_homer{
  width: .18rem;
  height: .2rem;
}
.common_bread_after{
  display: flex;
  align-items: center;
  color: #504D4D;
  font-size: .14rem;
}

.common_bread_after::after{
  content: '>';
  display: block;
  margin: 0 .05rem;
}


/* hover-图片放大1.1 */
.scale-box {
  overflow: hidden;
}
.scale-box .scale-img {
  width: 100%;
  height: 100%;
  transition: 0.3s linear;
  cursor: pointer;
  object-fit: cover;
}
.scale-box:hover .scale-img {
  transform: scale(1.1);
}


/* 常用盒子阴影 */
.shadow_box {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1)
}







/* 合肥硬派项目css，不需要可以删除 */
.common_banner {
  position: relative;
  width: 100%;
  height: 6rem;
  margin-top: 1rem;
}
.common_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* 公共面包屑 */
.common_crumb {
  width: 100%;
  background: #FFFFFF;
}
.common_crumb .common_crumb_center {
  width: 15rem;
  height: .8rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* 左侧面包屑 */
.common_crumb .crumb_box {
  display: flex;
  align-items: center;
}
.common_crumb .crumb_box img {
  width: .4rem;
  height: .4rem;
  margin-right: .1rem;
  object-fit: contain;
}
.common_crumb .crumb_box .road {
  font-size: .2rem;
  color: #333333;
}
.common_crumb .crumb_box .road a {
  font-size: .2rem;
  color: #333333;
}
.common_crumb .crumb_box .road span {
  font-size: .2rem;
  color: #333333;
}
/* .common_crumb .crumb_box .road span {
  display: block;
  max-width: 4.5rem;
  font-size: .18rem;
  color: #666666;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
} */

/* 右侧小导航 */
.common_crumb .crumb_nav {
  display: flex;
  align-items: center;
}
.common_crumb .crumb_nav .nav {
  display: block;
  height: 0.8rem;
  margin: 0 0.25rem;
  font-size: .18rem;
  color: #666666;
  line-height: 0.8rem;
}
.common_crumb .crumb_nav .nav:hover {
  color: #333333;
  font-weight: bold;
}
.common_crumb .crumb_nav .active {
  color: #333333;
  font-weight: bold;
}



/* 公共居中盒子 */
.common_page_box {
  width: 100%;
}
.common_page_box .common_page_center {
  position: relative;
  width: 15rem;
  margin: 0 auto;
  padding: 0.8rem 0 0.8rem;
}




/* 公共分页 */
.page_box {
  width: fit-content;
  margin: 0 auto;
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
}
.page_box .pages {
  display: flex;
  align-items: center;
}
.page_box .pages .item {
  display: block;
  width: .3rem;
  height: .3rem;
  margin-right: .1rem;
  text-align: center;
  line-height: .3rem;
  font-size: 0.16rem;
  font-family: Arial, Arial;
  color: #999999;
  border: 0.01rem dashed #CCCCCC;
  border-radius: 50%;
}
.page_box .pages .item:hover {
  border: unset;
  background: #0059AB;
  color: white;;
}
.page_box .pages .active {
  border: unset;
  background: #0059AB;
  color: white;
}

.page_box .btn {
  display: block;
  width: .3rem;
  height: .3rem;
  margin-right: .1rem;
  text-align: center;
  line-height: .3rem;
  font-size: 0.16rem;
  font-family: Arial, Arial;
  color: #999999;
  border: 0.01rem dashed #CCCCCC;
  border-radius: 50%;
}
.page_box .btn:hover {
  border: unset;
  background: #0059AB;
  color: white;
}





/* 左侧公共导航 */
.common-left {
  width: 2rem;
  height: 100%;
  min-height: 2.76rem;
  margin-right: 0.4rem;
  padding: 0 0 0.36rem;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 0.15rem 0.01rem rgba(0,0,0,0.16);
}
.common-left .title {
  width: 100%;
  height: 0.56rem;
  padding: 0 0.23rem;
  background: #0059AB;
  font-size: 0.2rem;
  font-family: Microsoft YaHei, Microsoft YaHei;
  color: #FFFFFF;
  line-height: 0.56rem;
}
.common-left .navs {
  width: 100%;
}
.common-left .navs .nav {
  position: relative;
  display: block;
  width: 100%;
  height: 0.45rem;
  padding-left: 0.26rem;
  border-bottom: 0.01rem solid #E8E8E8;
  font-size: 0.14rem;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  line-height: 0.45rem;
  cursor: pointer;
}
.common-left .navs .nav:hover {
  color: #0059AB;
}
.common-left .navs .active {
  color: #0059AB;
}
.common-left .navs .active::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.04rem;
  height: 0.27rem;
  background: #0059AB;
}
/* 右侧内容区域 */
.common-right {
  flex: 1;
  min-height: 8.56rem;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 0.15rem 0.01rem rgba(0,0,0,0.16);
}



@media only screen and (max-width: 1024px){
    .common_banner{
        height: 3rem;
    }
    .common_crumb .crumb_box{
        display: none;
    }
    .common_crumb .common_crumb_center{
        width: 100%;
        justify-content: center;
    }
    .common_crumb .crumb_nav .nav{
            font-size: 14px;
    }
    .common_page_box .common_page_center{
        width: 100%;
        padding-top: 0;
    }
}