/* === dialogs === */
.dialog,
.dialog__overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 13;
}
.dialog {
  position: fixed;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  pointer-events: none;
  display: none;
}
.dialog__overlay {
  position: absolute;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-backface-visibility: hidden;
}
.dialogOpen {
  display: -webkit-flex;
  display: flex;
}
.dialogOpen .dialog__overlay {
  opacity: 1;
  pointer-events: auto;
}
.dialog__content {
  z-index: 5;
  opacity: 0;
  width: 100%;
  margin-top: -15%;
}
.dialogOpen .dialog__content {
  pointer-events: auto;
}
.dialog__overlay {
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.dialog.dialogOpen .dialog__content,
.dialog.dialog--close .dialog__content {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.dialog.dialogOpen .dialog__content {
  -webkit-animation-name: anim-open;
  animation-name: anim-open;
  -webkit-animation-timing-function: cubic-bezier(0.6, 0, 0.4, 1);
  animation-timing-function: cubic-bezier(0.6, 0, 0.4, 1);
}
.dialog.dialog--close .dialog__content {
  -webkit-animation-name: anim-close;
  animation-name: anim-close;
}
@-webkit-keyframes anim-open {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
  }
}
@keyframes anim-open {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 1);
    transform: scale3d(0, 0, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes anim-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 1);
  }
}
@keyframes anim-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 1);
    transform: scale3d(0.5, 0.5, 1);
  }
}
.b_btn {
  position: relative;
  text-align: center;
  width: 100%;
  padding-top: 2rem;
}
.b_btn button {
  height: 2.5rem;
  padding: 0 1.25rem;
  background: linear-gradient(180deg, #ffe271, #ffb444);
  border-radius: 23px;
  outline: none;
  border: none;
  color: #DE5A5A;
  font-size: 1.125rem;
}
.box_treasure {
  position: relative;
  width: 80%;
  background: linear-gradient(152.5deg, #f86650, #e81778);
  border-radius: 4px;
  padding: 1.25rem;
  margin: 0 auto;
}
.box_treasure .dialog_close {
  background: url('../img/close.png') no-repeat center center;
  background-size: .75rem;
  height: 2.1875rem;
  width: 2.1875rem;
  position: absolute;
  right: 0;
  top: 0;
}
.box_treasure .box_head {
  font-size: 1.125rem;
  color: #fff;
  text-align: center;
}
.box_treasure .input {
  width: 100%;
  background-color: #fff;
  color: #333;
  font-size: 1rem;
  margin-top: .9375rem;
  border-radius: 4px;
  padding: .8125rem 10px;
  text-align: center;
}
.box_treasure .msg {
  font-size: .75rem;
  position: absolute;
  top: .3125rem;
  width: 100%;
  text-align: center;
}
.box_treasure .msg span {
  padding-left: 1.4375rem;
  background: url('../img/error.png') no-repeat left center;
  background-size: 1.25rem;
  height: 1.25rem;
  line-height: 1.3rem;
  display: inline-block;
  color: #fff;
}
.has_treasure {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
.has_treasure .hasBg {
  width: 100%;
}
.has_treasure .has_content {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-top: 12.5rem;
  top: 0;
  left: 0;
}
.has_treasure .has_content .has_head {
  font-size: 1.125rem;
  color: #fff;
  text-align: center;
}
.has_treasure .has_content .thank {
  text-align: center;
  font-size: 1.125rem;
  color: #fff;
}
.has_treasure .has_content .b_btn {
  padding-top: 1.25rem;
}
.has_treasure .has_content .b_btn button {
  padding: 0 3.125rem;
}
.hj_record {
  width: 80%;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(152.5deg, #f86650, #e81778);
  border-radius: 4px;
  padding: 0 1.25rem;
}
.hj_record > .title {
  font-size: 1.125rem;
  color: #fff;
  text-align: center;
  padding-top: 1.25rem;
}
.hj_record .record_content {
  width: 100%;
  height: 20.625rem;
  background-color: #fff;
  margin-top: .625rem;
  border-radius: 4px;
  padding: 0 .625rem;
  padding-top: .9375rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.hj_record .record_content .wrapScroll {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hj_record .record_content .wrapScroll .iScrollVerticalScrollbar {
  width: 4px !important;
}
.hj_record .record_content .wrapScroll .iScrollVerticalScrollbar .iScrollIndicator {
  background: rgba(0, 0, 0, 0.2);
}
.hj_record .record_content .record_ul {
  width: 100%;
  text-align: center;
}
.hj_record .record_content .record_ul .title {
  overflow: hidden;
}
.hj_record .record_content .record_ul .title span {
  display: inline-block;
  text-align: center;
  color: #F65957;
  font-size: .875rem;
  position: relative;
}
.hj_record .record_content .record_ul .title span:after {
  position: absolute;
  content: '';
  height: 1px;
  width: 120%;
  left: -140%;
  top: .625rem;
  border-bottom: 1px dashed #E6E6E6;
}
.hj_record .record_content .record_ul .title span:before {
  position: absolute;
  content: '';
  height: 1px;
  width: 120%;
  right: -140%;
  top: .625rem;
  border-bottom: 1px dashed #E6E6E6;
}
.hj_record .record_content .record_ul li {
  margin-bottom: .625rem;
}
.hj_record .record_content .record_ul .cont {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: .3125rem;
}
.hj_record .record_content .record_ul .cont span {
  display: block;
  border-radius: 4px;
  padding: .0625rem 0;
  border: 1px solid #efe8d8;
  width: 48%;
  margin-bottom: 4%;
  color: #333;
  font-size: .875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hj_record .b_btn {
  padding-top: 0;
  position: relative;
  bottom: -1.25rem;
}
.hj_record .b_btn button {
  padding: 0 1.875rem;
}
.hd_rules .rules_content {
  width: 100%;
  height: 20.625rem;
  background-color: #fff;
  margin-top: .625rem;
  border-radius: 4px;
  padding: 0 .625rem;
  padding-top: .9375rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.25rem;
}
.hd_rules .rules_content p {
  font-size: .75rem;
  padding-top: .3125rem;
}
.hd_rules .rules_content p span {
  color: #EF3967;
  font-size: .75rem;
}
.box_msg {
  width: 78%;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(152.5deg, #f86650, #e81778);
  border-radius: 4px;
  padding: 1.5625rem 1.5625rem;
}
.box_msg .msg_title {
  font-size: 1rem;
  color: #fff;
  text-align: center;
  padding-top: .3125rem;
}
.msg_btn {
  text-align: center;
  width: 100%;
  padding-top: 1.5625rem;
}
.msg_btn button {
  height: 2.5rem;
  line-height: 2.5rem;
  width: 100%;
  background: linear-gradient(180deg, #ffe271, #ffb444);
  border-radius: 23px;
  outline: none;
  border: none;
  color: #DE5A5A;
  font-size: 1rem;
}
.msg_btn button.cancel {
  background: none;
  margin-top: 1.25rem;
  color: #fff;
  border: 1px solid #fff;
}
.box_yiman {
  width: 78%;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(152.5deg, #f86650, #e81778);
  border-radius: 4px;
  padding: 1.25rem;
  padding-bottom: 1.5625rem;
}
.box_yiman .yiman {
  width: 100%;
  padding-top: 9.625rem;
  background: url('../img/yimanBg.png') no-repeat center top;
  background-size: 12.9375rem 9.625rem;
  text-align: center;
}
.box_yiman .yiman p {
  color: #fff;
}
.box_yiman .yiman p.t1 {
  font-size: 1rem;
}
.box_yiman .yiman p.t2 {
  font-size: .75rem;
  margin-top: .1875rem;
}
.box_yiman .msg_btn {
  padding-top: 1.25rem;
}
