* {
  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;
}
/* @font-face {
  font-family: ;
  src: url();
} */

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: "Source Han Sans CN";
  src: url("../font/SourceHanSansSC-Regular.otf");
}
@font-face {
  font-family: "PingFang SC";
  src: url("../font/PingFangSC-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "PingFang SC";
  src: url("../font/PingFangSC-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "PingFang SC";
  src: url("../font/PingFangSC-Semibold.ttf");
  font-weight: bold;
}

/*多行溢出*/
.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;
}

body .swiper-wrapper {
  height: auto;
}

/* hover-图片放大1.1 */
.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);
  }
}
.main {
  width: 16rem;
  margin: 0 auto;
}
/* 分液器 */
.font16 {
  font-size: 0.16rem;
}
.pagesfr a {
  float: left;
  width: 0.53rem;
  height: 0.53rem;
  display: block;
  /*  border-radius: 50%; */
  color: #999;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  margin: 0px 0.13rem;
  font-size: 0.2rem;
  border-radius: 50%;
}

.pagesfr a img {
  width: 0.13rem;
}

.pagesfr span {
  float: left;
  margin: 0px 0.07rem;
  color: #9a9a9a;
  line-height: 0.45rem;
}

.pagesfr {
  display: flex;
  justify-content: center;
  padding-bottom: 1.13rem;
  z-index: 999;
  position: relative;
}

.pagesfr a.on {
  color: #fff;
  background: #d7001d;
}

.pagesfr a:not([class="a1"]):not([class="a2"]):hover {
  background: #d7001d;
  color: #fff;
}

/* 头部代码 */
.headerWrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 400;
}

.headerTop {
  height: 1.02rem;
  position: relative;
  background-color: #fff;
}
.headerImg {
  position: absolute;
  right: 0;
  top: 0;
  width: 6.83rem;
  height: 1.02rem;
}

.headerImg > img {
  width: 100%;
  height: 100%;
  display: block;
}

.headerWrap .main {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo {
  width: 3.35rem;
  height: 0.69rem;
}

.searchBox {
  margin-left: 3.98rem;
  height: 0.4rem;
  width: 4.48rem;
  position: relative;
}

.searchBox input {
  width: 100%;
  height: 0.4rem;
  padding-left: 0.28rem;
  border-radius: 0.06rem 0rem 0rem 0.06rem;
  border: 0.01rem solid #dddddd;
  display: block;
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 400;
  font-size: 0.14rem;
  color: #333;
}

.searchBox input::placeholder {
  color: #999;
}

.searchBox button {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.84rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.07rem;
  background: #0e437d;
  border-radius: 0.06rem 0.06rem 0.06rem 0.06rem;
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 0.16rem;
  color: #ffffff;
}

.searchBox button > img {
  width: 0.16rem;
}

.phone {
  width: 1.76rem;
  height: 0.35rem;
  border-radius: 0.06rem 0.06rem 0.06rem 0.06rem;
  border: 0.01rem solid #0e437d;
  margin-left: 0.59rem;
  position: relative;
  padding-left: 0.55rem;
}

.phoneIcon {
  position: absolute;
  left: 0;
  top: -0.015rem;
  width: 0.35rem;
  height: 0.35rem;
  background: #0e437d;
  border-radius: 0.06rem 0.06rem 0.06rem 0.06rem;
  border: 0.01rem solid #0e437d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phoneIcon > img {
  width: 0.19rem;
  height: 0.19rem;
}
.phone > span {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 0.16rem;
  color: #0e437d;
  display: block;
  line-height: 0.35rem;
}

.headerBottom {
  height: 0.6rem;
  background-color: #0e437d;
}

.headerBottom .main {
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.headerItem {
  height: 100%;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  position: relative;
}

.headerItem>a{
font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 0.16rem;
  color: #ffffff;
}

.headerItem:hover .level2{
  display: block;
}

.level2{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.6rem;
  background-color: #fff;
  padding: 0.16rem 0.29rem;
  display: none;
}

.level2 a{
  font-family: PingFang SC, PingFang SC;
font-weight: 400;
font-size: 0.16rem;
color: #333333;
white-space: nowrap;
margin-bottom: 0.22rem;
justify-content: center;
}

.level2 a:last-child{
  margin-bottom: 0;
}

.level2 a:hover{
  color: #0e437d;
}

.headerItem.active,
.headerItem:hover {
  font-weight: bold;
  border-bottom: 1px solid #fff;
}

.mt {
  margin-top: 1.61rem;
}

/* 底部代码 */
.footerTop {
  padding-top: 0.64rem;
  background-color: rgba(24, 90, 174, 1);
}

.footerTop .list {
  display: flex;
  gap: 0.9rem;
}

.footerTop .text1 {
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: bold;
  font-size: 0.18rem;
  color: #ffffff;
  margin-bottom: 0.32rem;
}

.footerTop .text2 {
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 400;
  font-size: 0.14rem;
  color: #ffffff;
  line-height: 0.36rem;
}

.shipLink {
  margin-top: 0.2rem;
  padding-top: 0.2rem;
  border-top: 1px solid RGBA(40, 102, 180, 1);
  display: flex;
  justify-content: center;
  padding-bottom: 0.23rem;
}

.shipLink p {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 0.14rem;
  color: #ffffff;
  margin-right: 0.12rem;
}

.shipLink a {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 0.14rem;
  color: #ffffff;
  margin-right: 0.9rem;
}

.shipLink a:last-child {
  margin-right: 0;
}

.footerBottom {
  background-color: rgba(13, 77, 159, 1);
  padding: 0.22rem 0;
}

.footerBottom .main {
  display: flex;
  align-items: center;
}

.footerLogo {
  width: 3.8rem;
}
.footerLogo > img {
  width: 100%;
}

.footerMsg {
  width: 7rem;
  margin-left: 2.45rem;
}

.footerPosition {
  display: flex;
  justify-content: space-between;
}

.footerPosition > a {
  gap: 0.12rem;
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 0.14rem;
  color: #ffffff;
  align-items: center;
}

.footerPosition > a > img {
  width: 0.17rem;
}

.copyright {
  margin-top: 0.26rem;
}
.copyright p {
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 400;
  font-size: 0.14rem;
  color: #ffffff;
  text-align: center;
}
.copyright p > a {
  color: #fff;
  display: inline-block;
}
.copyright > a {
  display: flex;
  align-items: center;
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 400;
  font-size: 0.14rem;
  color: #ffffff;
  margin-top: 0.11rem;
  width: 100%;
  justify-content: center;
}
.copyright > a > img {
  width: 0.18rem;
}

.footerCode {
  margin-left: auto;
  width: 0.95rem;
}
.footerCode > img {
  width: 100%;
  height: 0.95rem;
  display: block;
  background-color: #fff;
}

.footerCode > p {
  margin-top: 0.17rem;
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 0.12rem;
  color: #ffffff;
  text-align: center;
}

/* 内页banner */
.bannerWrap {
  height: 4.8rem;
  background-size: cover;
}

/* 内页面包屑 */

.breadWrap {
  height: 0.7rem;
  border-bottom: 1px solid #f3f3f3;
}

.breadWrap .main {
  display: flex;
  justify-content: space-between;
}

.breadNav {
  display: flex;
}
.breadNav .item {
  width: 1.52rem;
  height: 0.7rem;
  align-items: center;
  justify-content: center;
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 0.16rem;
  color: #333333;
  transition: all 0.6s;
  text-align: center;
}
.breadNav .item:hover,
.breadNav .item.active {
  background-color: rgba(14, 67, 125, 1);
  color: #fff;
}

.breadLink {
  display: flex;
  align-items: center;
}

.breadLink > img {
  width: 0.2rem;
}

.breadLink a {
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 400;
  font-size: 0.16rem;
  color: #999999;
  display: inline-block;
  margin-left: 5px;
}
.breadLink a > span {
  margin-left: 8px;
  display: inline-block;
}

.breadLink > span {
  color: #333333;
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 400;
  font-size: 0.16rem;
  display: inline-block;
  margin-left: 8px;
}


/* 分页器 */
.pageWrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.15rem;
}
.pageWrap .next,
.pageWrap .prev {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0.03rem 0.03rem 0.03rem 0.03rem;
  border: 0.01rem solid #999999;
  align-items: center;
  justify-content: center;
}
.pageWrap .next svg,
.pageWrap .prev svg {
  width: 0.15rem;
  height: 0.2rem;
}

.pageWrap .next svg{
  transform: rotate(180deg);
}

.pageWrap .pageItem {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0.05rem 0.05rem 0.05rem 0.05rem;
  border: 0.01rem solid #999999;
  align-items: center;
  justify-content: center;
  font-family:
    Microsoft YaHei,
    Microsoft YaHei;
  font-weight: 400;
  font-size: 0.18rem;
  color: #999999;
}
.pageWrap a.active,
.pageWrap a:hover{
  background: #134D9E;
  color: #fff;
  border: 1px solid #134D9E;
}

.pageWrap a.active svg path,
.pageWrap a:hover svg path{
  fill: #fff;
}
