* {
  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;
}

.page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page .pageLeft {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #333333;
  margin-right: 0.195rem;
}

.page .pagePrev,
.page .pageNext {
  display: block;
  position: relative;
  width: 0.32rem;
  height: 0.32rem;
  background: #FFFFFF;
  border: 0.01rem solid #E5E5E5;
  cursor: pointer;
  margin: 0 0.045rem;
  transition: all 0.3s;
}

.page .pageNext::after {
  content: '';
  position: absolute;
  top: 50%;
  /* 垂直居中 */
  left: 50%;
  transform: translate(-50%, -50%);
  /* 向上移动一半高度 */
  border-width: 0.08rem 0 0.08rem 0.1rem;
  /* 设置边框的大小 */
  border-style: solid;
  border-color: transparent transparent transparent #E5E5E5;
  /* 设置颜色，形成三角形 */
  transition: all 0.3s;
}

.page .pagePrev::after {
  content: '';
  position: absolute;
  top: 25%;
  /* 垂直居中 */
  left: 25%;
  transform: translate(-50%, -50%);
  /* 向上移动一半高度 */
  border-width: 0.08rem 0 0.08rem 0.1rem;
  /* 设置边框的大小 */
  border-style: solid;
  border-color: transparent transparent transparent #E5E5E5;
  /* 设置颜色，形成三角形 */
  transform: rotate(180deg);
  transition: all 0.3s;
}

.page .pageNext:hover,
.page .pagePrev:hover {
  background: #06823C;
}

.page .pageNext:hover::after,
.page .pagePrev:hover::after {
  border-color: transparent transparent transparent #fff;

}

.pageBtn {
  display: block;
  width: 0.32rem;
  height: 0.32rem;
  background: #FFFFFF;
  border-radius: 0.16rem;
  border: 0.01rem solid #E5E5E5;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #4D4D4D;
  line-height: 0.32rem;
  text-align: center;
  margin: 0 0.045rem;
  transition: all 0.3s;
}

.pageBtn:hover {
  background: #06823C;
  color: #FFFFFF;
}

.pageBtn.active {
  background: #06823C;
  color: #FFFFFF;
}

.page .input {
  display: flex;
  align-items: center;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #333333;
  margin-left: 0.125rem;
}

.page .input input {
  display: block;
  width: 0.79rem;
  height: 0.32rem;
  background: #FFFFFF;
  border-radius: 0.06rem;
  border: 0.01rem solid #B3B3B3;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #4D4D4D;
  margin-left: 0.1rem;
  margin-right: 0.09rem;
  padding: 0 0.12rem;
  box-sizing: border-box;
}

.page .item{
    display: block;
    width: 0.32rem;
    height: 0.32rem;
    background: #FFFFFF;
    border-radius: 0.16rem;
    border: 0.01rem solid #E5E5E5;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.14rem;
    color: #4D4D4D;
    line-height: 0.32rem;
    text-align: center;
    margin: 0 0.045rem;
    transition: all 0.3s;
    cursor: pointer;
}
.page .list{
    display: flex;
    justify-content: center;
}

.page .item.active {
    background: #06823C;
     color: #FFFFFF; 
}

/* .alert-wrap {
  position: absolute;
  z-index: 9999;
  top: 4.29rem;
  right: 0;
} */


@font-face {
  font-family: 'w1';
  src: url('../font/DreamHanSansCN-W1.ttf');
}

@font-face {
  font-family: 'w2';
  src: url('../font/DreamHanSansCN-W2.ttf');
}

@font-face {
  font-family: 'w3';
  src: url('../font/._DreamHanSansCN-W3.ttf');
}

@font-face {
  font-family: 'w4';
  src: url('../font/._DreamHanSansCN-W4.ttf');
}

@font-face {
  font-family: 'w5';
  src: url('../font/._DreamHanSansCN-W5.ttf');
}

@font-face {
  font-family: 'w6';
  src: url('../font/DreamHanSansCN-W6.ttf');
}

@font-face {
  font-family: 'w7';
  src: url('../font/DreamHanSansCN-W7.ttf');
}

@font-face {
  font-family: 'w8';
  src: url('../font/DreamHanSansCN-W8.ttf');
}

@font-face {
  font-family: 'w9';
  src: url('../font/DreamHanSansCN-W9.ttf');
}

@font-face {
  font-family: 'w10';
  src: url('../font/DreamHanSansCN-W10.ttf');
}

@font-face {
  font-family: 'w11';
  src: url('../font/DreamHanSansCN-W11.ttf');
}

@font-face {
  font-family: 'w12';
  src: url('../font/DreamHanSansCN-W12.ttf');
}

@font-face {
  font-family: 'w13';
  src: url('../font/DreamHanSansCN-W13.ttf');
}

@font-face {
  font-family: 'w14';
  src: url('../font/DreamHanSansCN-W14.ttf');
}

@font-face {
  font-family: 'w15';
  src: url('../font/DreamHanSansCN-W15.ttf');
}

@font-face {
  font-family: 'w16';
  src: url('../font/DreamHanSansCN-W16.ttf');
}

@font-face {
  font-family: 'w17';
  src: url('../font/DreamHanSansCN-W17.ttf');
}

@font-face {
  font-family: 'w18';
  src: url('../font/DreamHanSansCN-W18.ttf');
}

@font-face {
  font-family: 'w19';
  src: url('../font/DreamHanSansCN-W19.ttf');
}

@font-face {
  font-family: 'w20';
  src: url('../font/DreamHanSansCN-W20.ttf');
}

@font-face {
  font-family: 'w21';
  src: url('../font/DreamHanSansCN-W21.ttf');
}

@font-face {
  font-family: 'w22';
  src: url('../font/DreamHanSansCN-W22.ttf');
}

@font-face {
  font-family: 'w23';
  src: url('../font/DreamHanSansCN-W23.ttf');
}

@font-face {
  font-family: 'w24';
  src: url('../font/DreamHanSansCN-W24.ttf');
}

@font-face {
  font-family: 'w25';
  src: url('../font/DreamHanSansCN-W25.ttf');
}

@font-face {
  font-family: 'w26';
  src: url('../font/DreamHanSansCN-W26.ttf');
}

@font-face {
  font-family: 'w27';
  src: url('../font/DreamHanSansCN-W27.ttf');
}

.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;
}
@media only screen and (max-width:768px){
    .page{
            flex-wrap: wrap;
    }
    .fp-table{
        height: auto!important;
    }
    .fp-table.gray{
        height: 100% !important;
    }
    .fp-table.gray .code{
        margin-top: 0.3rem;
    }
    .fp-table.gray .listcenter{
        margin-top: 0.4rem;
    }
    .fp-table.gray .listcenter .centerItem .centerItmeTex{
        margin-bottom: 0.1rem;
    }
    .fp-table.gray .leftItme{
        margin-bottom: 0.3rem;
    }
}