* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*font-size: .16rem;*/
  font-family: Microsoft YaHei;
}

span {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

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

html {
  scroll-behavior: smooth;
}

body {
  /* background: #000000; */
  background: #F0F1F2;
  font-size: .16rem;
}

a {
  display: block;
  outline: 0;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

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

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  object-fit: contain;
}

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

.ellipsis2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.ellipsis3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.ellipsis4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

/* 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);
  }
}

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

.main {
  width: 94%;
  max-width: 16rem;
  margin: 0 auto;
}

.w-1282 {
  width: 94%;
  max-width: 12.82rem;
  margin: 0 auto;
}

.back {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner {
  width: 100%;
  height: 7.31rem;
}

.banner .swiper-pagination.bannerPage {
  display: flex;
  justify-content: center;
  bottom: .43rem;
}

.banner .swiper-pagination.bannerPage .swiper-pagination-bullet {
  background: transparent;
  border: .01rem solid #fff;
  margin: 0 .13rem;
  width: 0.1rem;
  height: 0.1rem;
  opacity: 1;
}

.banner .swiper-pagination.bannerPage .swiper-pagination-bullet-active {
  background: #fff;
}

.bread {
  display: flex;
}

.bread a {
  font-weight: 400;
  font-size: 0.16rem;
  color: #A4A4A4;
  margin-right: .2rem;
  position: relative;
}

.bread a::after {
  content: '>';
  position: absolute;
  left: calc(100% + .05rem);
  pointer-events: none;
}

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

.commonPage {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .15rem;
}

.commonPage .prev,
.commonPage .next {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0.19rem;
  border: .01rem solid #A5A5A5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.commonPage .prev img,
.commonPage .next img {
  width: .12rem;
  height: .2rem;
}

.commonPage .list {
  display: flex;
  align-items: center;
  gap: .12rem;
}

.commonPage .list a {
  width: 0.12rem;
  height: 0.12rem;
  border: .01rem solid #FFFFFF;
  margin: 0 .06rem;
  border-radius: 50%;
}

.commonPage .list a.act {
  background: #fff;
}

.commonh2 {
  font-weight: 400;
  font-size: 0.38rem;
  color: #FFFFFF;
  margin-top: .58rem;
  padding-bottom: .4rem;
  position: relative;
}

.commonh2::after {
  content: '';
  width: .45rem;
  height: .03rem;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}

.commonh3 {
  font-weight: bold;
  font-size: 0.26rem;
  color: #FFFFFF;
  padding-bottom: .4rem;
  position: relative;
  margin-top: .72rem;
}

.commonh3::after {
  content: '';
  width: .3rem;
  height: .03rem;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}

.commonMessage .title {
  font-weight: bold;
  font-size: 0.26rem;
  color: #FFFFFF;
  margin-bottom: .73rem;
  text-align: center;
}

.commonMessage .tit {
  font-weight: bold;
  font-size: 0.26rem;
  color: #FFFFFF;
  margin-bottom: .28rem;
}

.commonMessage .txt {
  font-weight: 400;
  font-size: 0.18rem;
  color: #FFFFFF;
  margin-bottom: .55rem;
}

.commonMessage form {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
}

.commonMessage form>input {
  width: 7.05rem;
  height: 0.7rem;
  background: #FBFBFB;
  border-radius: 0.08rem;
  border: .01rem solid #D6D6D6;
  font-weight: 400;
  font-size: 0.22rem;
  color: #000;
  padding: 0 .28rem;
}

.commonMessage textarea {
  width: 100%;
  height: 2.98rem;
  background: #FBFBFB;
  border-radius: 0.08rem;
  border: .01rem solid #D6D6D6;
  color: #000;
  padding: .2rem .28rem;
}

.commonMessage form>input::-webkit-input-placeholder,
.commonMessage textarea::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 0.22rem;
  color: #B9B9B9;
}

.commonMessage .checkbox {
  width: 100%;
  font-weight: 400;
  font-size: 0.14rem;
  color: #B9B9B9;
  display: flex;
  align-items: center;
  gap: .06rem;
}

.commonMessage button {
  width: fit-content;
  height: 0.61rem;
  background: #5C5C5C;
  border-radius: 0.12rem;
  padding: 0 .4rem;
  display: block;
  margin: .54rem auto;
}

input[type='checkbox'] {
  cursor: pointer;
  position: relative;
  width: .18rem;
  height: .18rem;
  font-size: .12rem;
}

input[type='checkbox']::after {
  position: absolute;
  top: 0;
  color: #000;
  width: .18rem;
  height: .18rem;
  display: inline-block;
  visibility: visible;
  padding-left: 0rem;
  text-align: center;
  content: ' ';
  border-radius: .03rem
}

input[type='checkbox']:checked::after {
  content: "✓";
  color: #fff;
  font-size: .12rem;
  font-weight: bold;
  background-color: #000;
  border: .01rem solid #fff;
}

.slideRightBox{
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 99999;
    background-color: rgba(0,0,0,0.5);
    display: none;
}

.slideRightCenter{
    position: absolute;
    right: -5.6rem;
    top: 0;
    width:5.6rem;
    height: 100%;
    padding:0.4rem 0.3rem 0;
    background-color: #fff;
    transition: all 0.6s;
}


.slideRightCenter.active{
    right: 0;
}

.slideRightWrap{
    width: 5rem;
    height: 6.9rem;
}

.slideRightWrap .top{
    height: 0.67rem;
    width: 100%;
    background-image: url(../img/slidetop.png);
    background-size: cover;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 0.26rem;
    color: #FFFFFF;
    padding-left: 0.29rem;
    line-height: 0.67rem;
}

.slideRightWrap .bottom{
    background: #DDD8D8;
    position: relative;
    padding:0.28rem;
}

.slideRightWrap .item{
    margin-bottom: 0.15rem;
}

.slideRightWrap .name{
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 0.14rem;
    color: #103888;
    padding-left: 0.17rem;
}
.slideRightWrap select,
.slideRightWrap input{
    height: 0.3rem;
    background: rgba(255,255,255,0.55);
    border-radius: 0.12rem;
    width: 100%;
    margin-top: 0.1rem;
    padding-left: 0.17rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 0.14rem;
    appearance: none;
}

.slideRightWrap .flex{
    display: flex;
    gap: 0.31rem;
}
.slideRightWrap .flex .item{
    flex: 1;
}
.selectBox{
    position: relative;
}

.selectBox>img{
    width:0.12rem;
    height: 0.07rem;
    position: absolute;
    right: 0.25rem;
    top: 0.21rem;
   
}

.slideRightWrap .tip{
    font-family: Microsoft YaHei;
    font-weight: 300;
    font-size: 0.12rem;
    color: #000000;
    line-height: 0.16rem;
    margin: 24px 0 21px;
}
.slideRightWrap textarea{
    width: 4.44rem;
    height: 1.47rem;
    border: 1px solid #103888;
    padding:0.1rem;
}

.slideRightWrap button{
    width: 1.46rem;
    height: 0.4rem;
    background: linear-gradient(168deg, #123889, #64BC85);
    box-shadow: 0px 1px 3px 0px rgba(35,24,21,0.35);
    border-radius: 0.13rem;
    margin-top: 0.26rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 0.18rem;
    color: #DDD8D8;
}

.slideRightWrap .img{
    position: absolute;
    width: 0.92rem;
    height: 1.05rem;
    bottom: 0.56rem;
    right: 0.37rem;
}
.slideRightClose{
    position: absolute;
    right: 0.15rem;
    top: 0.15rem;
    width: 0.2rem;
    height: 0.2rem;
    cursor: pointer;
}

.slideRightClose svg{
    width: 100%;
    height: 100%;
}