*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: .16rem;
    /* font-family: Source Han Sans CN, Source Han Sans CN; */
    font-family: Microsoft YaHei;
    font-weight: 400;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* For some Androids */
    /*font-size: min(12px);*/
}
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;
}
/*单词自动换行*/
/* 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: 0.81rem;
  width: 1.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #504D4D;
  font-size: 0.18rem;
  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.14rem;
}

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


/* hover-图片放大1.1 */
.scale-box {
  display: block;
  width: 100%;
  height: 100%;
  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，不需要可以删除 */
/* 公共banner */
.common_banner {
  width: 100%;
  height: 4rem;
  margin-top: 1rem;
}
.common_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 公共面包屑 */
.common_bread {
  width: 100%;
  background-color: #fff;
}
.common_bread .center {
  width: 15rem;
  height: 1rem;
  margin: 0 auto;
  border-bottom: 0.01rem solid #DDDDDD;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* 左侧小导航 */
.common_bread .navigations {
  display: flex;
  align-items: center;
}
.common_bread .navigations .item {
  padding: 0 0.35rem;
  border-left: 0.01rem solid #DDDDDD;
}
.common_bread .navigations .item:first-child {
  padding-left: 0;
  border-left: none;
}
.common_bread .navigations a {
  display: block;
  padding: 0 0.14rem;
  font-size: 0.16rem;
  color: #333333;
  white-space: nowrap;
}
.common_bread .navigations a:hover {
  color: #D61428;
}
.common_bread .navigations .active a {
  /*height: 0.36rem;*/
  height: auto;
  background: #D61428;
  border-radius: 0.22rem 0.22rem 0.22rem 0.22rem;
  color: white;
  line-height: 0.35rem;
}
/* 右侧面包屑 */
.common_bread .crumbs {
  display: flex;
  align-items: center;
}
.common_bread .crumbs .icon {
  height: 0.14rem;
  margin-right: 0.1rem;
  object-fit: contain;
}
.common_bread .crumbs .roads {
  font-size: 0.14rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: #999999;
  white-space: nowrap;
}
.common_bread .crumbs .roads a {
  font-size: 0.14rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: #999999;
  white-space: nowrap;
}
.common_bread .crumbs .roads span {
  font-size: 0.14rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: #999999;
  white-space: nowrap;
}

/* 公共居中box */
.common_page {
  width: 100%;
}
.common_page .center {
  position: relative;
  width: 15rem;
  margin: 0 auto;
  padding: 0.45rem 0 2rem;
}

/* 公共标题 */
.page_title {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.page_title .cn {
  font-size: 0.4rem;
  font-weight: bold;
  color: #333333;
}
.page_title .en {
  margin-top: 0.15rem;
  font-size: 0.2rem;
  color: #888888;
}


/* 公共分页 */
.page_box {
  width: fit-content;
  margin: 0 auto;
  margin-top: 1rem;
  display: flex;
  align-items: center;
}
.page_box .pages {
  display: flex;
  align-items: center;
}
.page_box .pages .item {
  display: block;
  width: 0.36rem;
  height: 0.36rem;
  margin-right: 0.2rem;
  border: 0.01rem solid #DDDDDD;
  background-color: #fff;
  border-radius: 0.02rem;
  text-align: center;
  line-height: 0.36rem;
  font-size: 0.16rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: rgba(153,153,153,0.6);
  cursor: pointer;
}
.page_box .pages .item:hover {
  background: #D61428;
  color: white;
}
.page_box .pages .active {
  background: #D61428;
  color: white;
}
.page_box .btn {
  display: block;
  width: 0.36rem;
  height: 0.36rem;
  margin-right: 0.2rem;
  border: 0.01rem solid #DDDDDD;
  background-color: #fff;
  border-radius: 0.02rem;
  text-align: center;
  line-height: 0.36rem;
  font-size: 0.16rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: rgba(153,153,153,0.6);
  cursor: pointer;
}
.page_box .btn:hover {
  background: #D61428;
  color: white;
}
.page_box .prev {
  padding: 0 0.1rem;
}
.page_box .next {
  padding: 0 0.1rem;
}


@media only screen and (max-width: 1520px) {
    /* 客户说字体有点小，看不清了，所以先适配一下字体，在1500px以下，字体设置成固定大小 */
    .common_bread .navigations a {
        font-size: 16px;
        white-space: normal;
        white-space: nowrap;
        text-align: center;
        line-height: 2 !important;
    }
    .common_bread .crumbs .roads,
    .common_bread .crumbs .roads a {
        font-size: 14px;
    }
    
    
    
    
    
}

@media screen and (max-width: 1024px){
    .common_page .center{
        width: 94% !important;
        margin: 0 auto;
    }.page_title .cn{
        font-size: 18px;
        margin-top: 10px;
    }.page_title .en{
        font-size: 12px;
    }.introduce .item{
        flex-wrap: wrap;

    }.introduce .texts{
        width: 94%;
        margin: 0 auto;
    }.introduce .intro_img{
        width: 94%;
        margin: 0 auto;
    }.common_bread .crumbs{
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
    }.common_bread .navigations{
        /*flex-wrap: wrap;*/
        /*justify-content: space-around;*/
        flex: 0 0 100%;
        overflow: auto;
        height: auto;
    }.common_bread .center{
        width: 94%;
        margin: 0 auto;
        height: auto;
        flex-wrap: wrap;
    }.common_bread .navigations .item{
        padding: 0;
        border: none;
        width: 100%;
    }.common_bread{
        height: auto;
        margin-top: 30px;
    }.common_bread .name{
        font-size: 16px !important;
        margin-top: 10px;
    }.common_banner{
        margin-top: 50px;
    }
    .common_bread .navigations {
        padding-bottom: 10px;
    }
    
}

