* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input:-internal-autofill-previewed,
input:-internal-autofill-selected {
  -webkit-text-fill-color: #2a2d33;
  transition: background-color 5000s ease-out 0.5s;
}

html {
  scroll-behavior: smooth;
}

a {
  display: flex;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
button,
select {
  border: 0;
  resize: none;
  outline: 0;
  background: transparent;
}

button {
  cursor: pointer;
}

img {
  width: 100%;
  height: auto;
}

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

@font-face {
  font-family: "syh-bold";
  src: url("../font/syh-bold.otf");
}
@font-face {
  font-family: "syh-re";
  src: url("../font/syh-re.otf");
}
@font-face {
  font-family: "sys-bold";
  src: url("../font/sys-bold.otf");
}
@font-face {
  font-family: "Montserrat-bold";
  src: url("../font/Montserrat-bold.otf");
}
@font-face {
  font-family: "MiSans";
  src: url("../font/MiSans.ttf");
}
@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Regular.otf");
}

/*多行溢出*/
.line1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.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;
}

/* hover-图片放大1.1 */

.BMap_Marker img {
  width: auto;
}
.scale-box {
  overflow: hidden;
}

.scale-box .scale-img {
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
  cursor: pointer;
  object-fit: cover;
}

.scale-box:hover .scale-img {
  transform: scale(1.1);
}

/* 常用盒子阴影 */
.shadow_box {
  box-shadow: 0 0.02rem 0.12rem 0 rgba(0, 0, 0, 0.1);
}

/* 水波纹效果 */
.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);
  }
}   

/* 头部代码 */
.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
} 
.headerWrap {
      position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 1.2rem;
  background-color: #ebebed;
  box-shadow: 0rem 0.03rem 0.06rem 0.01rem rgba(0, 0, 0, 0.08);
} 
.headerCenter {
  width: 17rem;
  height: 100%;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
} 
.logo {
  width: 2.6rem;
  display: block;
} 
.topNav {
  display: flex;
  gap: 0.58rem;
  align-items: center;
}
.topNav > a {
  font-family: "syh-re";
  font-weight: 400;
  font-size: 0.2rem;
  color: #000000;
  position: relative;
}
.topNav > a::before {
  position: absolute;
  content: "";
  left: 50%;
  top: calc(100% + 0.12rem);
  transform: translateX(-50%);
  width: 0.35rem;
  height: 0.04rem;
  background: #1866b4;
  border-radius: 0.1rem 0.1rem 0.1rem 0.1rem;
  width: 0;
  transition: 0.6s;
}

.topNav > a:hover::before,
.topNav > a.active::before {
  width: 0.35rem;
}

.topNav > a:hover,
.topNav > a.active {
  font-family: "syh-bold";
  color: #1866b4;
}
.headerRight {
  display: flex;
  gap: 0.69rem;
}
.topBtn {
  width: 1.6rem;
  height: 0.6rem;
  /* background: linear-gradient(270deg, #be3636 0%, #160606 100%);
  border-radius: 0.31rem 0.31rem 0.31rem 0.31rem; */
  cursor: pointer;
  transition: all 0.6s;
}

.topBtn>img{
  width: 100%;
  display: block;
}

.topBtn:hover{
  transform: scale(1.05);
}

/* 底部信息 */
.footerWrap {
  width: 100%;
  min-height: 6.2rem;
  background: #f4f4f4;
  padding-top: 1.02rem;
}

.footerWrap.noPadding{
  min-height: 5.18rem;
  padding-top: 0;
}

.footerFlex {
  width: 100%;
  display: flex;
  margin: 0 auto;
}

.footerLeft {
  width: 4.83rem;
  height: 5.18rem;
  padding-right: 1.47rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  margin-left: 1.6rem;
}
.footerLog {
  width: 3.28rem;
  height: 0.88rem;
  object-fit: contain;
  display: block;
}
.footerPhone {
  display: flex;
  gap: 0.08rem;
  margin-top: 0.36rem;
  align-items: center;
}
.footerPhoneIcon {
  width: 0.42rem;
  height: 0.42rem;
  background: #c60000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footerPhoneIcon > img {
  display: block;
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
.footerPhone > p {
  font-family: "syh-re";
  font-weight: 400;
  font-size: 0.16rem;
  color: #c60000;
  line-height: 0.27rem;
}

.footerPhone > p > a {
  font-family: "MiSans  ";
  font-weight: bold;
  font-size: 0.2rem;
  color: #c60000;
}

.footerMsg {
  margin-top: 0.25rem;
  width: 100%;
}
.footerMsg > li {
  width: 100%;
  display: flex;
  margin-top: 0.13rem;
}
.footerMsg > li:first-child {
  margin-top: 0;
}

.footerMsg > li > p {
  font-family: "syh-re";
  font-weight: 400;
  font-size: 0.16rem;
  color: #000000;
}
.footerMsg > li > p:first-child {
  white-space: nowrap;
}
.footerMsg > li > p > a {
  color: #000;
  display: inline;
}

.footerRight {
  width: 12.77rem;
  padding-top: 0.9rem;
}
.footerNav {
  width: 10.43rem;
  height: 3.37rem;
  margin-left: 0.66rem;
  display: flex;
  justify-content: space-between;
}
.footerT1 {
  font-family: "syh-re";
  font-weight: 400;
  font-size: 0.18rem;
  color: #000000;
}
.footerLine1 {
  width: 0.2rem;
  height: 2px;
  background-color: #c60000;
  margin: 0.23rem 0;
}
.footerT2 {
  font-family: "syh-re";
  font-weight: 400;
  font-size: 0.16rem;
  color: #000000;
  opacity: 0.55;
  margin-bottom: 0.1rem;
}
.footerT2:hover {
  opacity: 1;
}
.footerLine2 {
  width: 12.77rem;
  height: 0rem;
  border: 0.01rem solid #000000;
  opacity: 0.1;
  margin-top: ;
}

.footerBottom {
  width: 100%;
  height: 0.92rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyRight {
  font-family: "syh-re";
  font-weight: 400;
  font-size: 0.16rem;
  color: #555555;
  opacity: 0.5;
  padding-left: 0.65rem;
}
.copyRight>a{
  display: inline-block;
  color: #555;
}
.media {
  display: flex;
  gap: 0.12rem;
  padding-right: 1.6rem;
}

.media > li {
  width: 0.26rem;
  height: 0.26rem;
  background-color: #d9d9d9;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
  transition: all 0.6s;
}

.media > li:hover {
  background-color: #c60000;
}

.media > li:hover > img {
  filter: brightness(0) invert(1);
}

.media > li:hover .footerErweima {
  display: block;
}
.media > li > img {
  display: block;
  width: 0.17rem;
  height: 0.17rem;
  object-fit: contain;
}

.footerErweima {
  width: 1.18rem;
  height: 1.2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  display: none;
}

.footerErweima > img:first-child {
  width: 100%;
  height: 100%;
  display: block;
}
.erweima {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.05rem;
  width: 1.03rem;
  height: 1.02rem;
  object-fit: contain;
}

/* 侧边栏 */
.slideBar {
  width: 0.56rem;
  position: fixed;
  right: 0;
  bottom: 30%;
}

.companyWx {
  width: 100%;
  height: 1.09rem;
  background: #ffffff;
  box-shadow: 0rem 0rem 0.06rem 0.01rem rgba(0, 0, 0, 0.1);
  border-radius: 0rem 0rem 0.05rem 0.05rem;
  padding: 0.21rem 0.14rem 0;
  cursor: pointer;
  position: relative;
}

.companyWx > img {
  width: 100%;
  display: block;
}

.companyWx > p {
  margin-top: 0.12rem;
  font-family: "syh-re";
  font-weight: 400;
  font-size: 0.14rem;
  color: #c60000;
  line-height: 0.2rem;

}

.backTop {
  width: 0.56rem;
  height: 0.35rem;
  background: #fff;
  box-shadow: 0rem 0rem 0.06rem 0.01rem rgba(0, 0, 0, 0.1);
  border-radius: 0.05rem 0.05rem 0.05rem 0.05rem;
  margin-top: 0.11rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  visibility: hidden;
}

.backTop:hover,
.companyWx:hover
{
  background-color: #c60000;
}

.backTop:hover>img,
.companyWx:hover>img{
  filter: brightness(0) invert(1);
}

.companyWx:hover >p {
  color: #fff;
}

.backTop>img{
  width: 0.2rem;
  display: block;
}
.companyWx:hover .codeBox{
  display: block;
}
.codeBox{
  position: absolute;
  width: 1.24rem;
  right: 100%;
  top: 0;
  padding-right: 0.05rem;
  display: none;
}

.codeBox>img{
  width: 1.19rem;
  height: 1.19rem;
  /* background-color: #fff; */
  display: block;
  object-fit: contain;
}

/* 内页banner */
.bannerWrap {
  width: 100%;
  height: 5rem;
  margin-top: 1.2rem;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.bannerTitle {
  font-family: "sys-bold";
  font-weight: bold;
  text-align: center;
  font-size: 0.55rem;
  color: #ffffff;
}
.bannerCrumbs {
  text-align: center;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #ffffff;
  margin-top: 0.11rem;
}

.bannerCrumbs > img {
  width: 0.13rem;
  display: inline-block;
  margin-right: 0.09rem;
  vertical-align: middle;
}

.bannerCrumbs > a {
  color: #ffffff;
  display: inline-block;
}

.bannerTab {
  width: 100%;
  height: 0.7rem;
  background: linear-gradient(119deg, #170606 0%, #710000 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  padding-left: 1.6rem;
  display: flex;
}
.bannerTab > a {
  width: 1.7rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: 400;
  font-size: 0.18rem;
  color: #ffffff;
  position: relative;
}

.bannerTab > a::after{
    content:'';
    background-image: url(../images/tbimg.png);
    background-size: 100% 100%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
}

.bannerTab > a.active,
.bannerTab > a:hover {
  background-image: url(../images/others/bannerbg.png);
  background-size: 100% 100%;
}   
.bannerTab > a.active::after,
.bannerTab > a:hover::after{
    display: none;
}
         
/* 内页外层容器 */
.othersWrap {
  width: 100%;
  padding: 0.92rem 0;
  /* overflow: hidden; */
}       

.otherCenter {
  width: 16rem;
  margin: 0 auto;
}
.otherCenter2{
    width: 12.8rem;
    margin:0 auto;
}
.flex2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* 分液器 */
.font16 {
  font-size: 0.16rem;
}
.pagesfr a {
  float: left;
  width: 0.3rem;
  height: 0.3rem;
  display: block;
  /*  border-radius: 50%; */
  color: #9a9a9a;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  border: solid #e6e6e6 1px;
  margin: 0px 0.07rem;
  font-size: 0.16rem;
  border-radius: 0.05rem 0.05rem 0.05rem 0.05rem;
}
.pagesfr span {
  float: left;
  margin: 0px 0.07rem;
  color: #9a9a9a;
  line-height: 0.3rem;
}

.pagesfr span i {
  padding: 0 0.1rem;
}

.pagesfr span i input {
  background: #fff;
  border: solid #e6e6e6 1px;
  width: 0.54rem;
  height: 0.3rem;
  text-align: center;
  line-height: 0.3rem;
}

.pagesfr a img {
  width: 0.07rem;
}

.pagesfr {
  display: flex;
  justify-content: center;
  padding: 1.02rem 0 0;
  z-index: 999;
  position: relative;
}

.pagesfr a.on {
  color: #fff;
  background: #c60000;
  border-color: #c60000;
}

.pagesfr a:hover {
  background: #c60000;
  color: #fff;
}

.pagesfr a:hover img {
  filter: brightness(100);
}


.common-phone-header,
.side-wrap {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .header-wrap {
    display: none;
  }
  
  .headerWrap{
      height: 50px;
  }

  .common-phone-header {
    display: block !important;
  }

  .side-wrap {
    display: block !important;
  }

  .common-phone-header {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
  }

  .common-phone-header-inner {
    display: flex;
    height: 50px;
    border-bottom: 1px solid #eee;
    padding: 0 15px;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }

  .header-menu-phone {
    height: 30px;
    width: auto;
    display: block;
  }

  .header-logo-phone {
    height: 30px;
    width: auto;
    display: block;
  }

  .header-search-phone {
    height: 30px;
    width: auto;
    display: block;
  }

  .header-search-box-phone {
    display: none;
  }

  .header-search-input-phone {
    border-radius: 20px;
    height: 35px;
    border-width: 1px;
    border: 1px solid #333;
    padding: 0 10px;
    font-size: 14px;
  }

  .side-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, .5);
  }

  .side-container {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    height: 100vh;
    width: 6.4rem;
    background-color: #fff;
    color: #000;
    /* border-left: 1px solid #eee; */
    animation: ani_side 1s;
  }

  .side-container.shown {
    display: block;
  }

  @keyframes ani_side {
    from {
      display: none;
      width: 3rem;
    }

    to {
      display: block;
      width: 6.4rem;
    }
  }

  .side-wrap {
    width: 100%;
  }

  .side-top {
    display: flex;
    height: 60px;
    padding: 0 20px 0 30px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
  }

  .side-logo {
    height: 30px;
    width: auto;
  }

  .side-close {
    width: .48rem;
  }

  .side-bottom {
    padding: 0 .48rem 0 .72rem;
  }

  .nav-item-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .27rem 0 .27rem 0;
    border-bottom: 1px solid #eee;
  }

  .nav-item-inner span {
    display: flex;
    align-items: center;
    font-size: 14px;
  }

  .nav-item-inner img {
    width: .4rem;
  }

  .side-nav-list .nav-item a {
    color: #000;
    font-size: .26rem;
    width: 100%;
    display: block !important;
  }

  .side-nav-list .side-local-img {
    width: .3rem;
    margin-right: .2rem;
    vertical-align: text-bottom;
  }

  .side-nav-list-sub {
    display: none;
  }

  .side-nav-list-sub .side-back-img {
    width: .3rem;
    margin-right: .2rem;
    vertical-align: text-bottom;
  }
  
  .footerWrap{
      height: auto;
  }
  .footerFlex{
      flex-direction: column;
  }
  .footerNav{
        display: none;
  }
  .footerLeft{
      width: 100%;
      height: auto;
      margin: 0;
      padding: 20px 15px;
  }
  .footerRight{
      width: 100%;
      padding: 0;
  }
  .footerLogo{
      width: 150px;
  }
  .footerPhone > p{
      font-size: 14px;
  }
  .footerPhone > p > a{
      font-size: 14px;
  }
  .footerMsg > li > p{
      font-size: 12px;
  }
  .copyRight{
      font-size: 12px;
      padding-left: 15px;
  }
  .media{
      padding-right: 15px;
  }
  .media > li{
      width: 20px;
      height: 20px;
  }
  .slideBar{
      width: 40px;
  }
  .companyWx{
      height: auto;
      padding-bottom: .21rem;
  }
  .companyWx > p{
      font-size: 12px;
      line-height: 1.2;
  }
  .codeBox{
      width: 80px;
  }
  .codeBox>img{
      width: 80px;
      height: 80px;
  }
  .otherCenter{
      width: 100%;
      flex-direction: column;
  }
  .bannerTab{
      padding: 0;
      justify-content: center;
  }
  .bannerTab > a::after{
      display: none;
  }
  .bannerWrap{
      height: 3rem;
  }
  .bannerTitle{
      font-size: 22px;
  }
  .bannerCrumbs{
      display: none;
  }
  .bannerTab > a{
      font-size: 16px;
  }
  .backTop{
      width: 100%;
  }
}