@charset "UTF-8";
.swiper-slide {
    float: left;
}
.prev-btn,
.next-btn {
  width: 48px;
  height: 48px;
  line-height: 52px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 24px;
  z-index: 9;
  cursor: pointer;
}
.prev-btn {
  left: 30px;
}
.next-btn {
  right: 30px;
}
.prev-btn:hover,
.next-btn:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
.swiper-pagination {
    position: absolute;
    left: 0;
    text-align: center;
    bottom: 10px;
    width: 100%;
    z-index: 99
}

.swiper-pagination-switch {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid #e6e6e6;
    margin: 0 7px;
    box-sizing: border-box;
    background-clip: content-box;
    transition: all .36s ease;
}

.swiper-active-switch {
    background-color: #fff;
    border: 4px solid rgba(0, 0, 0, .3);
}
.swiper-pagination-bullet {
  opacity: 1!important;
  display: inline-block;
  width: 8px!important;
  height: 8px!important;
  background-color: transparent!important;
  border-radius: 100%!important;
  border: 2px solid #ccc;
  margin: 0 7px;
  box-sizing: border-box;
  background-clip: content-box;
  transition: all .36s ease;
}
.swiper-pagination-bullet-active {
    background-color: #fff !important;
    border: 2px solid #fff;
}

input.error-tips,select.error-tips,textarea.error-tips {
  border: 1px solid #c92828 !important;
  margin-top:0;
}

/* dialog */
.page-mask {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, .8);
  z-index: 9999;
}
.dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 90%;
  max-width: 480px;
  padding: 32px;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
}
.dialog i {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}
.dialog i.green {
  color: #008811;
}
.dialog i.red {
  color: #D50000;
}
.dialog .title {
  font-size: 18px;
  font-weight: bold;
}
.dialog .title.green {
  color: #008811;
}
.dialog .title.red {
  color: #D50000;
}
.dialog .description {
  font-size: 16px;
  margin: 16px auto 32px;
}
.dialog .description a {
  text-decoration: underline;
}
.dialog .button {
  width: 100px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  margin: 0 auto;
  border-radius: 24px;
  background: transparent;
  border: 1px solid #ccc;
  color: #333;
}
.frame-adaption {
  padding-left: 40px !important;
  padding-right: 40px !important;
}
@media (max-width: 1024px) {
  .frame-adaption {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media (max-width: 767px) {
  .frame-adaption {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .dialog {
    padding: 24px
  }
  .dialog .title {
    font-size: 16px;
  }
  .dialog .description {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .prev-btn,
  .next-btn {
    display: none;
  }
}