* {
  margin: 0;
  padding: 0;
}

/* @font-face {
  font-family: MiSans-Normal;
  src: url(../font/MiSans-Normal.ttf);
} */

html {
  scroll-behavior: smooth;
}

/* body {
  margin-top: .8rem;
} */

a {
  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: 100%; */
  display: block;
  object-fit: contain;
}

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

/*多行溢出*/
.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 */
.scale-box {
  overflow: hidden;
}

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

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


/* 常用盒子阴影 */
.shadow_box {
  box-shadow: 0 .02rem .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;
}

.banner {
  width: 100%;
  height: 5.8rem;
  display: flex;
  position: relative;
}

.banner img {
  object-fit: cover;
}

.bannerTit {
  position: absolute;
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  font-size: 0.7rem;
  color: #FFFFFF;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.comNav {
  width: 100%;
  height: .9rem;
  border-bottom: 0.01rem solid #DBDBDB;
}

.comNavBox {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.comNavL {
  display: flex;
  height: 100%;
}

.comNavL a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-right: .7rem;
  position: relative;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.18rem;
  color: #333333;
}

.comNavL a:hover,
.comNavL a.active {
  font-weight: bold;
  color: #0A2F60;
}

.comNavL a::after {
  content: '';
  width: 0;
  height: 0.03rem;
  background: #0A2F60;
  transition: all .3s;
  position: absolute;
  left: 0;
  bottom: 0;
}

.comNavL a:hover::after,
.comNavL a.active::after {
  width: 100%;
}

.comNavR {
  display: flex;
}

.comNavR a {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #8D8D8D;
  display: flex;
  align-items: center;
}

.comNavR a::after {
  content: '>';
  margin: 0 .05rem;
}

.comNavR a:last-child:after {
  display: none;
}

@font-face {
  font-family: 'Poppins-Regular';
  src: url('../font/Poppins-Regular.otf');
}

@font-face {
  font-family: 'Poppins-Bold';
  src: url('../font/Poppins-Bold.otf');
}

@font-face {
  font-family: 'Poppins-Medium';
  src: url('../font/Poppins-Medium.otf');
}

@font-face {
  font-family: 'Poppins-SemiBold';
  src: url('../font/Poppins-SemiBold.otf');
}

.pagetion {
  display: flex;
  justify-content: center;
  /* margin-bottom: 1.1rem; */
}

.pagetion .pagetionItem {
  display: block;
  width: 0.36rem;
  height: 0.36rem;
  border: 0.01rem solid #DDDDDD;
  transition: all 0.3s;
  margin: 0 0.1rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  font-size: 0.16rem;
  color: rgba(153, 153, 153, 0.6);
  line-height: 0.36rem;
  text-align: center;
}

.pagetion .pagetionItem.active {
  background: #2185F8;
  border: 0.01rem solid #2185F8;
  color: #FFFFFF;
}

.pagetion .pagetionItem:hover {
  background: #2185F8;
  border: 0.01rem solid #2185F8;
  color: #FFFFFF;
}

/* 面包蟹 */
.detailNav {
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
}

.detailNav .icon {
  width: 0.11rem;
  margin-right: 0.11rem;
}

.detailNav .detailNavItem {
  position: relative;
  margin-right: 0.25rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  font-size: 0.14rem;
  color: #999999;
  line-height: 0.16rem;
}

.detailNav .detailNavItem::after {
  position: absolute;
  right: -0.11rem;
  top: 50%;
  transform: translateY(-50%);
  content: ">";
  font-size: 0.1rem;
  color: #999999;
}

.detailNav .detailNavItem:last-child::after {
  display: none;
}

.detailNav .detailNavItem:last-child {
  margin-right: 0;
}

.detailNav .detailNavItem.active {
  color: #1F64FF;
}

.pub_banner {
  position: relative;
  width: 100%;
  height: 7rem;
}

.pub_banner .banner_img {
  display: block;
  width: 100%;
  height: 100%;
}

.pub_banner .pub_title {
  position: absolute;
  top: 3.11rem;
  left: 50%;
  transform: translateX(-50%);
}

.pub_banner .pub_title .pub_title1 {
  margin-bottom: 0.06rem;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: bold;
  font-size: 0.35rem;
  color: #FFFFFF;
  text-align: center;
  line-height: 0.47rem;
}

.pub_banner .pub_title .pub_title2 {
  font-family: Arial, Arial;
  font-weight: 400;
  font-size: 0.25rem;
  color: #FFFFFF;
  text-align: center;
  line-height: 0.28rem;
}

/* 页码 */
.page {
  width: fit-content;
  margin: 0 auto;
  /* margin-top: 0.5rem; */
  display: flex;
  align-items: center;
}

.page .list {
  display: flex;
  align-items: center;
  color: rgba(154, 154, 154, 1);
}

.page .list .item {
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  margin-left: 0.03rem;
  margin-right: 0.03rem;
  border: 0.01rem solid rgba(230, 230, 230, 1);
  text-align: center;
  line-height: 0.3rem;
  font-size: 0.13rem;
  color: rgba(154, 154, 154, 1);
  cursor: pointer;
  overflow: hidden;
  border-radius: 0.02rem;
}

.page .list .item:hover {
  background: #0071B2;
  color: #fff;
  border: 0.01rem solid #0071B2;
}

.page .list .active {
  background: #0071B2;
  color: #fff;
  border: 0.01rem solid #0071B2;
}

.page .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.3rem;
  height: 0.3rem;
  margin-left: 0.03rem;
  margin-right: 0.03rem;
  border: 0.01rem solid rgba(230, 230, 230, 1);
  cursor: pointer;
  overflow: hidden;
  border-radius: 0.02rem;
}

.page .btn img {
  height: 0.11rem;
  object-fit: contain;
}

.page .prev::after {
  content: '<';
}

.page .next::after {
  content: '>';
}

.page .prev::after,
.page .next::after {
  position: absolute;
  font-size: 0.16rem;
  font-family: '宋体';
  color: rgba(154, 154, 154, 1);
  font-weight: bold;
}

.page .btn:hover {
  background: var(--c);
}

.page .disable {
  opacity: 0.5;
}

.page .btn:hover img {
  filter: brightness(0) invert(1);
}

.page .total {
  margin-right: 0.22rem;
  font-size: 0.14rem;
  color: #7D7D7D;
}

.to_input {
  margin-left: 0.1rem;
  margin-right: 0.07rem;
}

.page .to_page {
  font-size: 0.14rem;
  color: rgba(154, 154, 154, 1);
  margin-left: 0.19rem;
  display: flex;
  align-items: center;
  font-family: Microsoft YaHei,
    Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #7D7D7D;
  /* line-height: 0.24rem; */
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.page .to_page input {
  display: block;
  width: 0.57rem;
  height: 0.3rem;
  padding: 0 0.1rem;
  padding-left: 0.12rem;
  border-radius: 0.02rem;
  border: 0.01rem solid rgba(230, 230, 230, 1);
  outline: none;
  font-size: 0.14rem;
  color: #FFFFFF;
  background: transparent;
  box-sizing: border-box;
}

.to_input {
  position: relative;
}

.page .to_page .icon {
  display: inline-block;
  width: 0.1rem;
  height: 0.05rem;
  background-image: url(../../img/wzt/fold.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.11rem;

}

.page .list .bor {
  border: 0;
}

.page_btn {
  display: flex;
  align-items: center;
  /* width: 0.72rem; */
  height: 0.3rem;
  padding: 0.07rem 0.22rem 0.06rem;
  background: #0071B2;
  border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
  box-sizing: border-box;
  margin-left: 0.2rem;
}

.page_btn {
  display: block;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.13rem;
  color: #FFFFFF;
  text-align: left;
  font-style: normal;
  text-transform: none;
  cursor: pointer;

}