.pop .popBox .head .title, .pop .popBox .head, .pop {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pop .popBox .info .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.pop .popBox .info .btn {
  margin: 50px 5px 0;
  padding-bottom: 2px;
  width: 45%;
  max-width: 250px;
  height: 40px;
  font-size: 18px;
  color: #ffffff;
  border-radius: 100px;
  background-color: #ed6928;
  background-position: 0 0;
  background-size: 200% 100%;
}
.pop .popBox .info .btn:hover {
  background-color: #f7aa32;
}

.pop .popBox .info .btn.btnColor {
  background-color: #999999;
}
.pop .popBox .info .btn.btnColor:hover {
  background-color: #bbbbbb;
}

.pop .popBox .head {
  background-color: #ed6928;
  background-image: linear-gradient(to right, #ed6928 0%, #f7aa32 100%);
}

.pop .popBox .info span {
  font-family: "Rubik", Arial, sans-serif;
}

body.popFix {
  overflow: hidden;
}

.pop {
  display: none;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  padding: 20px;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.pop .popBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.pop .popBox {
  display: none;
  position: relative;
  max-height: calc(100% - 40px);
  background-color: #ffffff;
  border-radius: 8px;
  overflow: auto;
  opacity: 0;
  transform: scale(0.1);
  transition: 0.3s;
}
.pop .popBox.scale {
  opacity: 1;
  transform: scale(1);
}
.pop .popBox .head {
  position: relative;
  height: 50px;
  overflow: hidden;
}
.pop .popBox .head .title {
  font-size: 24px;
  color: #ffffff;
  font-weight: 400;
}
.pop .popBox .head .btn_close {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
}
.pop .popBox .head .btn_close img {
  width: 30%;
  transition: 0.5s;
}
.pop .popBox .head .btn_close:hover img {
  transform: rotate(180deg);
}
.pop .popBox .info {
  padding: 30px;
  width: 450px;
  text-align: center;
}
.pop .popBox .info h3 {
  margin-bottom: 7px;
  font-size: 18px;
  color: #885dcd;
  line-height: 1.3;
  font-weight: 500;
  text-align: left;
}
.pop .popBox .info .prize {
  margin: 0 auto 10px;
  width: 40%;
  max-width: 130px;
  transform: rotate(30deg);
}
.pop .popBox .info p {
  font-size: 18px;
  color: #333333;
  line-height: 1.5;
  text-align: center;
}
.pop .popBox .info p.impt {
  color: #e20b4d;
}
.pop .popBox .info span {
  display: inline;
  margin: 0 5px;
  font-size: 27px;
  color: #e20b4d;
}
.pop .popBox .info ol {
  margin: 0 0 25px;
  padding-left: 20px;
}
.pop .popBox .info ol li {
  margin-bottom: 5px;
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  text-align: justify;
  list-style-type: decimal;
}
.pop .popBox .info ol.disc {
  padding-left: 24px;
}
.pop .popBox .info ol.disc li {
  list-style-type: disc;
}
@media screen and (max-width: 480px) {
  .pop {
    padding: 15px;
  }
  .pop .popBox {
    width: 100%;
  }
  .pop .popBox .head {
    height: 45px;
  }
  .pop .popBox .head .title {
    font-size: 21px;
  }
  .pop .popBox .head .btn_close {
    width: 45px;
    height: 45px;
  }
  .pop .popBox .info {
    padding: 25px 20px;
    width: 100%;
  }
  .pop .popBox .info h3 {
    font-size: 16px;
  }
  .pop .popBox .info p, .pop .popBox .info ol li {
    font-size: 16px;
  }
  .pop .popBox .info span {
    font-size: 24px;
  }
  .pop .popBox .info .ex {
    font-size: 13px;
  }
  .pop .popBox .info .btn {
    margin: 50px 3px 0;
    width: 47%;
    max-width: 250px;
    min-width: 160px;
    height: 36px;
    font-size: 16px;
  }
}/*# sourceMappingURL=pop.css.map */