@charset "UTF-8";
/* sass编译为css  sass --watch index.scss index.css */
/* 针对屏幕宽度在 768px 及以上的设备 */
@media only screen and (min-width: 768px) {
  body, .minWidth768 {
    width: 600px;
    margin: 0 auto !important;
  }
}
.details img {
  width: 100%;
  margin-top: 15px;
  vertical-align: top;
}

.desc {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 12px;
  color: #6A7282;
  margin-top: 10px;
}

.topbg {
  display: grid;
}
.topbg img {
  width: 100%;
}

* {
  box-sizing: border-box;
}

.customer {
  background: linear-gradient(180deg, #338CF0 0%, #5771F0 100%);
  border-radius: 10px 0px 0px 10px;
  position: fixed;
  right: 0;
  z-index: 3;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 14px;
  width: 26px;
  height: 87px;
  color: #F9FEF2;
  display: flex;
  writing-mode: vertical-rl;
  justify-content: center;
  align-items: center;
  letter-spacing: 4px;
}

.container {
  padding: 9px 9px 12px 9px;
  background: #EAF1FF;
  border-radius: 15px 15px 0px 0px;
  margin-top: -26px;
  z-index: 2;
  position: relative;
  width: 100%;
}
.container .tip-con {
  position: absolute;
  left: 9px;
  z-index: 3;
  top: 237px;
}
.container .tip-con .title {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 17px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 12px;
  color: #FFFFFF;
  padding: 8px 7px 9px 10px;
}
.container .swiper {
  overflow: hidden;
  position: relative;
}
.container .swiper img {
  width: 100%;
  height: 100%;
}
.container .swiper .swiper-slide {
  display: grid;
}
.container .swiper .swiper-pagination {
  bottom: 5px;
}
.container .swiper .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background: #E6E6E6;
  border-radius: 5px;
  margin-right: 3px;
  opacity: 1;
}
.container .swiper .swiper-pagination-bullet-active {
  width: 12px;
  height: 5px;
  background: linear-gradient(90deg, #9678FE 0%, #408DFF 100%);
  border-radius: 5px;
}
.container .form {
  background: white;
  padding: 15px;
  margin-top: 15px;
  border-radius: 12px;
}
.container .form .formitem {
  margin-bottom: 15px;
}
.container .form .formitem .label {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 15px;
  color: #333333;
  line-height: 21px;
  height: inherit;
  margin-bottom: 10px;
}
.container .form .formitem .label span {
  color: red;
}
.container .form .formitem input {
  border: 0;
  background-color: #F6F6F6 !important;
  border-radius: 8px;
  height: 50px;
  width: 100%;
  padding: 0 15px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  caret-color: black;
}
.container .form .formitem input::-webkit-input-placeholder {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
}
.container .form .agreement {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 13px;
  color: #444444;
  text-align: center;
  margin-top: 10px;
}
.container .form .agreement span {
  color: #3263F6;
}
.container .form .btn {
  width: 100%;
  background: #3263F6;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  height: 60px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 17px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 17px;
  animation: breathe 1.5s ease-in-out infinite;
}
.container .form .desc {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 13px;
  color: #CB6262;
}

/* 定义呼吸动画 */
@keyframes breathe {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.animate__animated {
  opacity: 0;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutDownBtToTp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

.animate__fadeOutDownBtToTp {
  -webkit-animation-name: fadeOutDownBtToTp;
  animation-name: fadeOutDownBtToTp;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDownBtToTp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.animate__fadeInDownBtToTp {
  -webkit-animation-name: fadeInDownBtToTp;
  animation-name: fadeInDownBtToTp;
}

.toast-error-classname .weui-toast {
  padding: 10px 20px !important;
  top: 50% !important;
}
.toast-error-classname .weui-mask_transparent {
  display: none !important;
}
.toast-error-classname .weui-icon_toast {
  display: none !important;
}

.popup {
  position: fixed;
  z-index: 99;
}
.popup .mask {
  opacity: 0;
  position: fixed;
  inset: 0px;
  background-color: rgba(0, 0, 0, 0.4);
  transition: opacity 300ms, -webkit-transform 300ms, transform 300ms;
  transform-origin: 50% 50%;
}
.popup .content {
  transform: scale(0.8);
  opacity: 0;
  position: fixed;
  display: flex;
  flex-direction: column;
  inset: 0px;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  transition: opacity 300ms, -webkit-transform 300ms, transform 300ms;
  transform-origin: 50% 50%;
}
.popup .poupwxCode {
  margin: 10% auto 0;
  width: 80%;
  max-width: 500px;
  padding: 20px 0 28px 0;
  box-sizing: border-box;
  background-color: white;
  background-image: url(../image/popBg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 27px;
}
.popup .poupwxCode .textVal {
  padding: 0 18px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 28rpx;
  color: #666666;
  max-height: 70vh;
  overflow-y: auto;
}
.popup .poupwxCode .topTxt {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 20px;
  color: #222222;
}
.popup .poupwxCode .wxselfImg {
  margin: 15px 0;
}
.popup .poupwxCode .wxselfImg img {
  width: 160px;
  height: 160px;
}
.popup .poupwxCode .saveImg {
  border-radius: 12px;
  border: 1px solid #CFCFCF;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 13px;
  color: #666666;
  padding: 3px 8px;
}
.popup .poupwxCode .saveAImg {
  font-size: 13px;
  color: #999;
}
.popup .poupwxCode .phoneClk {
  margin: 25px 0 15px 0;
  width: 181px;
  height: 51px;
  background: linear-gradient(90deg, #08C2FD 0%, #7B6AFC 51%, #DF87D1 100%);
  border-radius: 30px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 13px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup .poupwxCode .phone {
  font-family: DIN, DIN;
  font-weight: 400;
  font-size: 16px;
  color: #999999;
}
.popup .pcContent .poupwxCode {
  border-radius: 45px;
}
.popup .closeimg {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.popup .closeimg img {
  width: 32px;
  height: 32px;
}

.open .mask {
  opacity: 1;
}
.open .content {
  transform: scale(1);
  opacity: 1;
}

/*# sourceMappingURL=index.css.map */
