* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 0.16rem;
  font-family: Microsoft YaHei, Microsoft YaHei;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* For some Androids */
  /* 英文开启 */
  word-wrap: break-word !important;
  word-break: normal !important;
}

:root {
  --s_tran: 0.3s ease-in-out;
  --m_tran: 0.6s ease-in-out;
  --l_tran: 0.8s ease-in-out;
}

.kefu{
    display: none !important;
}

.content_width {
  max-width: 14rem;
  width: 72.92%;
  margin: 0 auto;
}

.logo_h1 {
  width: 0px;
  height: 0px;
  margin: 0;
  text-indent: -9999em;
}
hr {
  border: none;
}
html {
  font-size: 100px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

ul {
  list-style: none;
}

input,
textarea {
  outline: 0;
  border: none;
}
button:focus {
  outline: none;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
}

/* Flex 容器基础类 */
/* 常用组合 */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
.flex {
  display: flex;
}
/* 主轴方向 */
.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}
/* 主轴对齐方式 */
.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

/* 交叉轴对齐方式 */
.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}
.self-end {
  align-self: flex-end;
}
.self-start {
  align-self: flex-start;
}
.align-center {
  align-items: center;
}

/* 换行设置 */
.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

/* Flex 子元素属性 */
.flex-1 {
  flex: 1;
}

.flex-auto {
  flex: auto;
}

.flex-none {
  flex: none;
}
.height_100 {
  height: 100%;
}
.width_100 {
  width: 100%;
}

.relative {
  position: relative;
}

.absolute_center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.absolute_fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.pointer {
  cursor: pointer;
}
.swiper img {
  height: 100%;
  width: 100%;
object-fit: cover;
}
.img-to-white {
  filter: brightness(0) invert(1);
}
/* hover-图片放大1.1 */
.scale_box {
  display: block;
  width: auto;
  overflow: hidden;
}

.scale_box .scale_img {
  width: 100%;
  height: 100%;
  transition: var(--m_tran);
  cursor: pointer;
  object-fit: cover;
}

.scale_box:hover .scale_img {
  transform: scale(1.1);
}

/* hover-图片旋转向上位移 */
.translateY_box {
  display: block;
  width: auto;
}

.translateY_box .translateY_img {
  transition: var(--s_tran);
  object-fit: cover;
}

.translateY_box:hover .translateY_img {
  transform: rotateY(180deg) translateY(-0.1rem);
}

.banner{
    position: relative;
}

.banner_text {
  font-weight: bold;
  font-size: 0.3rem;
  color: #ffffff;
  line-height: 0.38rem;
}

.banner_text::after {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0;
  border: 0.02rem solid #B6002A;
  margin-top: 0.18rem;
}
.more {
  transition: background var(--m_tran);
}
.more:hover {
  background: #850f12 !important;
}
.more_solution {
  width: 1.6rem;
  height: 0.5rem;
  background: #b6002a;
  margin: 0 auto;
  margin-top: 0.28rem;
}
.more_solution > span {
  font-size: 0.16rem;
  color: #ffffff;
  line-height: 0.4rem;
  text-align: center;
  font-style: normal;
  text-transform: none;
}
.more_solution > img {
  width: 0.06rem;
  height: 0.11rem;
  margin-left: 0.21rem;
}


.breadcrumb a:last-child{
    color: #BD2D3A;
}

.e_pagebox {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pre,.next{
    font-size: 0.18rem;
    cursor: pointer;
    margin: 0 0.07rem;
}

.pageNum.active{
        background: #bd2d3a;
        border: 1px solid  #bd2d3a;
        color: #fff;
}
.pageNum{
    width: 0.45rem;
    height: 0.45rem;
    border: solid #e6e6e6 1px;
    font-size: 0.18rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 0.07rem;
    color: #9a9a9a;
    cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .page_wrap{
    margin-top: 50px;
    height: auto;
    overflow-y: auto;
  }
  .banner{
    height: 4.5rem;
  }
  .content_width{
    width: 92%;
  }
  .scale_box{
    width: 100%;
  }
.more_solution > span{
  font-size: 0.24rem;
}
.more_solution{
  width: 30%;
}
*{
  font-size: 0.24rem;
}
tbody > tr > td{
  font-size: 0.24rem;
}

}