@charset "UTF-8";

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  font-family: "Inter";
  vertical-align: baseline;
}
html,body{background-color: #fff;width: 100%;overflow: hidden;position: relative;}
ol,ul{
	list-style: none;
	text-decoration: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a,a:hover{
	text-decoration: none;
}
i,em{
    font-style:normal;
}
video{
  outline: none;
}
div:focus {outline: none;}
.fl{
	float: left;
}
.fr{
	float: right;
}
i,a{
  color: #333;
  display: block;
}
h1{
  font-size: 3.6vw;
}
h1.en{font-size: 8vw;}
h2{
  font-size: 2.8vw;
}
h3{
  font-size: 2.4vw;
}
h3.num{
  font-size: 3.6vw;
}
h4{
  font-size: 1.8vw;
}
h5{
  font-size: 1.2vw;
}

img{
  display: block;
  will-change: transform,opacity;
}
.cont{
  width: 90%;
  margin:0 auto;
}
.img_box{
  overflow:hidden;
}
.inx-padding{
  padding:100px 0;
}
.padding{
  padding: 40px 0;
}

@font-face {
  font-family: "Dir";
  font-weight: normal;
  src: url("../font/Dirtyline36Daysoftype2022-Reg.eot") format("embedded-opentype");
  font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {font-family: AlibabaSans;src: url('../font/ptdincondensedcyrillic.ttf')}
@font-face {font-family: numType;src: url('../font/Poppins-Regular.woff2')}
/* @font-face{font-family: ShiYuanHei-Light;src: url('../font/shiyuanhei/Light.otf')}
.font-syh-light{font-family: ShiYuanHei-Light;} */
/*侧边滚动条自定义样式*/

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/ 
::-webkit-scrollbar {
  width: 8px;
  height: 6px;
}
/*定义滚动条轨道*/ 
::-webkit-scrollbar-track {
    background-color: transparent;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em
}
/*定义滑块 内阴影+圆角*/ 
::-webkit-scrollbar-thumb {
  background-color: #979797;
  background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,0) 100%,transparent 100%,transparent 50%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 75%,transparent 75%,transparent);
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em
}

/*清除浮动*/
  .clearFix::before,
  .clearFix::after{
      content: "";
      display: block;
      visibility: hidden;
      height: 0;
      line-height: 0;
      clear: both;
  }
  input{
    outline: none;
  }

/*文本超行省略显示*/
  .overflow_1{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .overflow_2{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .overflow_3{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .overflow_4{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
  .overflow_5{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }

/*图片盒子*/
  .img_box>img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    background-repeat: no-repeat;
  }
  .img{width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    background-repeat: no-repeat;}

  /*图片鼠标经过效果*/
    .img_box:hover>img{
      transform: scale(1.1);
    }
    .img_box>img{
      transition:all 0.8s;
    }

/*弹性布局*/

  /*换行*/
    .flex_tap{
      flex-wrap: wrap;
    }
  /*居中*/
  .flex_cont{
    display: flex;
    justify-content: center;
  }
  /*两端*/
  .flex_sp{
    display: flex;
    justify-content: space-between;
  }
  /*垂直*/
  .flex_y{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }


/*page 分页器*/
  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  .pagination a {
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    font-size: 14px;
    padding: 8px 12px;
    margin: 0 5px;
    border-radius: 3px;
  }
  .pagination span {
      color: #333;
      font-size: 14px;
      padding: 8px 2px;
      margin: 0 5px;
      border-radius: 3px;
  }
  .pagination a:hover {
    color: #c21b22;
    border: 1px solid #c21b22;
  }
  .pagination a.page-num-current {
    color: #fff;
    background: #c21b22;
    border: 1px solid #c21b22;
  }
  .my-4{
    margin-top:40px;
  }
  /*背景图片样式自适应*/
  .bj_img{
    background-position: center;
    background-size: cover;
  }

/*动画样式*/
  /*线条动画*/
    @keyframes line{
        from{
          width: 0;
        }
        to{
          width: 100%;
        }
    }
     @keyframes ico{
        0%{
         top:50%;
        }
        33.33%{
          top:60%;
        }
        66.66%{
          top:40%
        }
        100%{
          top:50%;
        }
    }
  /*背景动画*/
  .bj_am{
    animation: bjimg 20s infinite;
    animation-timing-function: linear;
    -webkit-animation: bjimg 20s infinite;
    -webkit-animation-timing-function: linear;
  }


  @keyframes bjimg{
    0%{
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
         transform-origin:center;
      -webkit-transform-origin:center;
      -moz-transform-origin:center;
      -o-transform-origin:center;
    }
    50%{
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
         transform-origin:center;
      -webkit-transform-origin:center;
      -moz-transform-origin:center;
      -o-transform-origin:center;
    }
    100%{
      -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
        
         transform-origin:center;
      -webkit-transform-origin:center;
      -moz-transform-origin:center;
      -o-transform-origin:center;
    }
  }
  @-webkit-keyframes rotate360
      {0%{-webkit-transform:rotate(0deg);}
      100%{-webkit-transform:rotate(360deg);}
    }@-moz-keyframes rotate360
      {0%{-moz-transform:rotate(0deg);}
      100%{-moz-transform:rotate(360deg);}
    }@-ms-keyframes rotate360
      {0%{-ms-transform:rotate(0deg);}
      100%{-ms-transform:rotate(360deg);}
    }@keyframes rotate360
      {0%{transform:rotate(0deg);}
      100%{transform:rotate(360deg);}
    }

/*面包屑导航*/
  .mb_nav{
    width: 100%;
    padding: 25px 0;
    position: relative;
    background-color: #c21b22;
    z-index: 9;
    color: #fff;
    margin-top: 500px;
  }
  .mb_nav>.cont{
    overflow: inherit;
  }
  .mb_nav ul{
    width: 76%;
  }
  .mb_nav ul>li{
    float: left;
    margin-right:30px;
    position: relative;
    line-height: 24px;
    padding-right: 30px;
  }
  .mb_nav ul>li:before{
    content:"";
    position: absolute;
    width: 1px;
    height: 10px;
    background-color: #fff;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .mb_nav ul>li>a{
    color: #fff;
  }
  .mb_nav ul>li:hover:after{
    width: 60%;
  }
  .mb_nav ul>li:after{
    content:"";
    position: absolute;
    width: 0%;
    height: 2px;
    background-color:#fff;
    bottom: -10px;
    left: 0;
    z-index: 99;
    transition: all 0.6s;
  }
  .mb_nav p{
    width: 20%;
  }
 .mb_nav a{
  display: inline-block;
  color: #fff;
 }
 .mb_nav_m{
  width: 100%;
  background-color: #c21b22;
  position: relative;
  z-index: 999;
 }
 .mb_nav_m h5{
  width: 100%;
  color: #fff;
  text-align:center;
  padding: 10px 0;
 }
 .mb_nav_m h5>em{
    width: 20px;
    height: 20px;
    display: block;
    float: right;
    background-size: 100%;
    background-image: url(../images/turn_on.png);
 }
 .mb_nav_m>ul{
  width: 100%;
  padding:10px 0 25px 0;
  box-sizing: border-box;
  position: absolute;
  background-color: #f7f7f7;
  top: 45px;
  left: 0;
  z-index: 99;
  box-shadow: 0 4px 20px 0 rgb(0 0 0 / 30%);
  display: none;
  overflow:hidden;
 }
 .mb_nav_m>ul>li{
  width: 33.3%;
  float: left;
  line-height: 20px;
  padding:  0;
  text-align:center;
  border-right: 1px solid #ccc;
  box-sizing: border-box;
  margin-top:15px;
 }
/*悬浮窗*/
  .xfc{
    width: 60px;
    position: fixed;
    right: 10px;
    top:50%;
    transform: translateY(-50%);
    z-index: 99999;
  }
  .xfc>ul{
    width: 100%;
    height: auto;
  }
  .xfc>ul>li{
    width: 100%;
    height: 60px;
    background-color: #c21b22;
    margin:10px 0;
    background-size: 55%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 999;
    box-shadow: 2px 2px 5px rgb(0 0 0 / 20%);
  }
  .xfc>ul>li>a{
    width: 100%;
    height: 100%;
    display: block;
  }
  .xfc>ul>li:hover:first-child p{
    left: -110px;
    opacity: 1;
  }
  .xfc>ul>li:hover p{
    left: -160px;
    opacity: 1;
  }
  .xfc>ul>li p>img{
    width: 100%;
    display: block;
  }
  .xfc>ul>li:first-child p{
    width: 100px;
    height: 100px;
    background-color: #c21b22;
    position: absolute;
    top:0;
    left: 100px;
    /*left: -110px;*/
    opacity: 0;
    transition: all 0.8s;
    z-index: 99;
    padding: 5px;
    box-sizing:border-box;
  }
  
  .xfc>ul>li p{
    width: 150px;
    /*height: 60px;*/
    position: absolute;
    top:0;
    color: #fff;
    text-align:center;
    line-height: 60px;
    left: 150px;
   /* left: -160px;*/
    background-color: #c21b22;
    opacity: 0;
    z-index: 99;
    transition: all 0.8s;
  }
  .wx1{
    background-image: url(../images/wx.png);
  }
  .tel{
    background-image: url(../images/tel.png);
  }
  .top{
    background-image: url(../images/zd.png);
  }
  .m_head{
    display: none;
  }

