@charset "UTF-8";
body {
  font-size: 14px;
}

* {
  box-sizing: border-box;
}

@keyframes activeFlash {
  0% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0), 0 0 0 rgba(255, 196, 0, 0);
  }
  100% {
    box-shadow: 0 0 15px rgba(224, 36, 22, 0.85), 0 0 20px rgba(224, 36, 22, 0.9);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popupShow {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.75);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes giftFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* 定义放大缩小的关键帧 —— 从原始尺寸放大到1.1倍，再缩回 -> 节奏感清晰 */
@keyframes breathZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lightMove {
  0% {
    left: -70%;
  }
  100% {
    left: 140%;
  }
}
.layui-input {
  border: none;
}

body,
html {
  background-color: #2EA8F2;
}

#app {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  display: none;
}

header img {
  display: block;
  width: 100%;
}

.imax-content__top {
  margin-top: -1px;
  position: relative;
}
.imax-content__top .imax-content__text {
  width: 100%;
  text-align: center;
  color: #ffffff;
  box-sizing: border-box;
  background: url(../images/home-bj-top.png) no-repeat;
  background-size: 100% 100%;
  background-position: bottom;
  padding: 10% 15px 12%;
}
.imax-content__top .imax-logo {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
.imax-content__top .imax-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
}
.imax-content__top .imax-desc {
  margin-top: 9%;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  opacity: 0.95;
}

.imax-prize {
  position: relative;
}
.imax-prize .imax-prize__body {
  position: absolute;
  top: 12%;
  left: 0;
  width: 100%;
}
.imax-prize .imax-prize__inner {
  padding: 7% 8%;
  position: relative;
}
.imax-prize .imax-prize__participated {
  position: absolute;
  top: 6%;
  left: 8%;
  bottom: 6%;
  right: 8%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.85);
  box-sizing: border-box;
  border-radius: 15px;
  padding: 10% 10%;
  display: none;
}
.imax-prize .imax-prize__participated .imax-prize__participated-content {
  width: 100%;
  height: 100%;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  font-weight: 600;
  color: #052E70;
}
.imax-prize .imax-prize__participated img {
  display: block;
  width: 100px;
  background-color: #ffffff;
  border-radius: 100%;
}
.imax-prize .imax-prize-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.imax-prize .imax-prize-grid__item {
  border-radius: 13px;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 2px 10px #E02416;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background-color: #FEFEDF;
}
.imax-prize .imax-prize-grid__item::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #FEEC96;
  border-radius: 100%;
  position: absolute;
  top: 8px;
  left: 10px;
  z-index: 10;
}
.imax-prize .imax-prize-grid__item::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #FEEC96;
  border-radius: 100%;
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 10;
}
.imax-prize .imax-prize-grid__item.draw-btn {
  cursor: pointer;
  background: url(../images/prize-btn-bj.png) no-repeat;
  background-size: 100% 100%;
}
.imax-prize .imax-prize-grid__item.draw-btn img {
  animation: breathZoom 1.2s ease-in-out infinite;
}
.imax-prize .imax-prize-grid__item.draw-btn::after {
  content: "";
  display: none;
}
.imax-prize .imax-prize-grid__item.draw-btn::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 80%;
  height: 180%;
  transform: rotate(25deg);
  background: rgba(255, 255, 255, 0.18);
  filter: blur(10px);
  animation: lightMove 3s linear infinite;
}
.imax-prize .imax-prize-grid__item.active {
  animation: activeFlash 0.35s ease infinite;
  z-index: 2;
  background: linear-gradient(45deg, #fffef5 0%, rgba(224, 36, 22, 0.65) 100%);
}
.imax-prize .imax-prize-grid__item.active::after {
  background-color: rgba(254, 236, 148, 0.2);
}
.imax-prize .imax-prize-grid__item.active::before {
  background-color: rgba(254, 236, 148, 0.2);
}

.imax-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
  padding: 25px 15px;
}
.imax-btn .imax-btn__item {
  background: url(../images/handle_btn_01.png) no-repeat center;
  background-size: 100%;
  flex: 1;
  text-align: center;
  height: 40px;
  line-height: 38px;
  max-width: 115px;
  border-radius: 100px;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-shadow: 1px 1px 4px rgba(9, 9, 9, 0.3);
  text-decoration: none;
}
.imax-btn .imax-btn__item:hover {
  filter: brightness(1.1);
}

.imax-handle {
  background: url(../images/home-bj-footer.png) no-repeat top;
  background-size: 100% 100%;
}

.imax-terms {
  text-align: center;
  font-size: 12px;
  padding-top: 25px;
  line-height: 24px;
}
.imax-terms a {
  color: #00226A;
  text-decoration: underline;
}
.imax-terms .layui-form-checkbox > div {
  color: #00226A !important;
}
.imax-terms .layui-form-checkbox[lay-skin=primary] > i {
  border: none;
  background: linear-gradient(to bottom, #FFFC86, #FFCA30);
  color: transparent;
}

/* 中奖框 */
.imax-lottery-container {
  width: 100%;
  max-width: 520px;
  padding: 10px;
  background: url(../images/model-01.png) no-repeat;
  background-size: 100% 100%;
  background-position: top left;
  position: relative;
  margin: 0 auto;
}
.imax-lottery-container .imax-lottery__content {
  background: url(../images/model-02.png) no-repeat;
  background-size: 100% 100%;
  background-position: top left;
  padding: 40px 15px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.imax-lottery-container .imax-lottery__content.imax-lottery_bj {
  position: relative;
}
.imax-lottery-container .imax-lottery__content.imax-lottery_bj::before {
  content: "";
  position: absolute;
  top: 0;
  left: -6px;
  width: 104%;
  height: 100%;
  background: url(../images/model-03.png) no-repeat;
  background-size: 100%;
  background-position: top left;
  z-index: 0;
}
.imax-lottery-container .imax-lottery__title {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  background: url(../images/model-title.png) no-repeat;
  background-size: 100% 100%;
  background-position: top left;
  font-size: 18px;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 24px;
  display: inline-block;
  width: 55%;
  z-index: 10;
  text-align: center;
}
.imax-lottery-container .imax-lottery__body {
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.imax-lottery-container .imax-lottery__body p + p {
  margin-top: 10px;
}
.imax-lottery-container .imax-lottery__item {
  display: none;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.imax-lottery-container .imax-lottery__item.active {
  display: block;
}
.imax-lottery-container .imax-lot__memberinfo {
  color: #052E70;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
}
.imax-lottery-container .imax-lot__prize {
  background: url(../images/lottery_voucher_bj.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
}
.imax-lottery-container .imax-lot__prize .imax-lot__prize-img {
  width: 28%;
  flex: none;
  padding: 10px;
}
.imax-lottery-container .imax-lot__prize .imax-lot__prize-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
  color: #ffffff;
  padding: 10px;
}
.imax-lottery-container .imax-lot__prize .imax-lot__couponcode {
  font-size: 15px;
}
.imax-lottery-container .imax-lot__prize button {
  color: #ffffff;
  background-color: #052E70;
  padding: 3px 15px;
  border-radius: 4px;
}
.imax-lottery-container .imax-lot__prize button:hover {
  filter: brightness(1.1);
}
.imax-lottery-container .imax-lot__desc {
  color: #052E70;
  font-weight: 700;
  font-size: 14px;
}
.imax-lottery-container .imax-lot__wecode {
  margin-top: 5px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.imax-lottery-container .imax-lot__wecode img {
  width: 70%;
  max-width: 120px;
}
.imax-lottery-container .imax-lot__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
  margin: 10px 0;
}
.imax-lottery-container .imax-lot__btn .imax-btn__item {
  background: url(../images/handle_btn_01.png) no-repeat center;
  background-size: 100%;
  flex: 1;
  text-align: center;
  height: 40px;
  line-height: 38px;
  max-width: 115px;
  border-radius: 100px;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-shadow: 4px 4px 4px rgba(234, 88, 34, 0.5);
  text-decoration: none;
}
.imax-lottery-container .imax-lot__btn .imax-btn__item.imax-btn__submit {
  background-image: url(../images/handle_btn_03.png);
  background-repeat: no-repeat;
  text-shadow: 4px 4px 4px rgba(5, 34, 103, 0.5);
}
.imax-lottery-container .imax-lot__btn .imax-btn__item.imax-btn__submitlater {
  background-image: url(../images/handle_btn_02.png);
  background-repeat: no-repeat;
}
.imax-lottery-container .imax-lot__link {
  display: block;
  color: #0E73CB;
  text-decoration: underline;
}
.imax-lottery-container .imax-lot__title {
  color: #052E70;
  font-weight: 700;
  font-size: 19px;
}
.imax-lottery-container .imax-lot__icon {
  line-height: 1.6;
  animation: giftFloat 2s ease-in-out infinite;
}
.imax-lottery-container .imax-lot__icon img {
  width: 70%;
  max-width: 95px;
}
.imax-lottery-container .imax-lot__text {
  line-height: 1.6;
  font-size: 12px;
}
.imax-lottery-container .imax-lot__form {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.imax-lottery-container .imax-lot__form .layui-input-wrap {
  text-align: left;
}
.imax-lottery-container .imax-lot__form .layui-input {
  border-radius: 100px;
  overflow: hidden;
  padding: 0 25px 0 15px;
}
.imax-lottery-container .imax-dialog__close {
  width: 50px;
  cursor: pointer;
  margin-top: 30px;
}
.imax-lottery-container a {
  text-decoration: underline;
  color: #0E73CB;
  cursor: pointer;
}
.imax-lottery-container .imax-voucher .imax-dialog__body {
  display: none;
}
.imax-lottery-container .imax-voucher .imax-voucher__have {
  display: flex;
}
.imax-lottery-container .imax-voucher .imax-voucher__not {
  display: none;
}
.imax-lottery-container .imax-lottery__content-verify {
  background: url(../images/model-02_tm.png) no-repeat;
  background-size: 100% 100%;
  background-position: top left;
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9;
  display: none;
}
.imax-lottery-container .imax-lottery__content-verify::before {
  content: "";
  position: absolute;
  top: 0;
  left: -6px;
  width: 104%;
  height: 100%;
  background: url(../images/model-03.png) no-repeat;
  background-size: 100%;
  background-position: top left;
  z-index: 0;
}
.imax-lottery-container .imax-lottery__content-verify .imax-lottery__item {
  display: block !important;
  height: 100%;
}
.imax-lottery-container .imax-lottery__content-verify .imax-lottery__body {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.imax-lottery-container .imax-lottery__content-verify .imax-lot__verify {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  color: #052E70;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
.imax-lottery-container .imax-lottery__content-verify .imax-lot__verify img {
  width: 80px;
}
.imax-lottery-container .imax-toystory5 .imax-lot__form {
  gap: 10px !important;
}
.imax-lottery-container .imax-toystory5 .imax-lot__btn {
  margin: 0 !important;
}

.imax-notlottery-mask .imax-lottery_nobj::before {
  display: none;
}

.layui-form-checkbox > div {
  white-space: normal !important;
  font-size: 12px;
  color: #333333 !important;
}

.layui-form-checkbox[lay-skin=primary] > i {
  width: 15px;
  height: 15px;
  line-height: 14px;
  border-color: #ffffff !important;
  padding-top: 1px;
}

.layui-form-checked[lay-skin=primary] > i {
  background-color: #ffffff;
  border-color: #ffffff !important;
  color: #00226A !important;
  font-weight: bold;
  display: block;
}
.layui-form-checked[lay-skin=primary] > i::before {
  content: "";
  background: url(../images/icon_d.png) no-repeat center;
  width: 100%;
  height: 100%;
  background-size: 100%;
  display: block;
}

.layui-layer-dialog .layui-layer-content .layui-icon-success {
  color: #052E70;
}

.layui-layer-msg {
  border: none;
  background: linear-gradient(145deg, rgba(211, 247, 250, 0.9), rgba(113, 214, 239, 0.9));
  max-width: 280px !important;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.layui-layer-msg .layui-layer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  text-align: center;
  word-break: normal;
  color: #000000;
}
.layui-layer-msg .layui-layer-face {
  position: relative !important;
  left: auto !important;
  top: auto !important;
}

.imax-dialog-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: none;
  overflow: auto;
  box-sizing: border-box;
}
.imax-dialog-mask.show {
  display: block !important;
  animation: fadeIn 0.35s ease;
}
.imax-dialog-mask .imax-dialog__wrapper {
  width: 100%;
  max-width: 520px;
  padding: 12px;
  background: url(../images/model-01.png) no-repeat;
  background-size: 100% 100%;
  background-position: top left;
  position: relative;
}
.imax-dialog-mask .imax-dialog__content {
  background: url(../images/model-02.png) no-repeat;
  background-size: 100% 100%;
  background-position: top left;
  padding: 40px 15px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  position: relative;
}
.imax-dialog-mask .imax-dialog__content.imax-dialog__content-lottery {
  position: relative;
}
.imax-dialog-mask .imax-dialog__content.imax-dialog__content-lottery::before {
  content: "";
  position: absolute;
  top: 0;
  left: -6px;
  width: 104%;
  height: 100%;
  background: url(../images/model-03.png) no-repeat;
  background-size: 100%;
  background-position: top left;
  z-index: 0;
}
.imax-dialog-mask .imax-dialog-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 15px;
}
.imax-dialog-mask .imax-dialog {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10% auto;
  position: relative;
  transform: translateY(80px) scale(0.75);
  opacity: 0;
  width: 100%;
}
.imax-dialog-mask .imax-dialog.show {
  animation: popupShow 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.imax-dialog-mask .imax-dialog__title {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  background: url(../images/model-title.png) no-repeat;
  background-size: 100% 100%;
  background-position: top left;
  font-size: 18px;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 24px;
  display: inline-block;
  width: 55%;
  z-index: 10;
  text-align: center;
}
.imax-dialog-mask .imax-lottery__content {
  padding: 40px 15px 15px;
}
.imax-dialog-mask .imax-dialog__close {
  width: 50px;
  cursor: pointer;
  margin-top: 30px;
}

.imax-dialog-rules .imax-dialog {
  width: 100%;
  transform: none;
  opacity: 1;
}
.imax-dialog-rules .imax-dialog__content {
  min-height: auto;
}
.imax-dialog-rules .imax-dialog__body {
  max-height: 60vh;
  overflow: hidden;
  overflow-y: auto;
  line-height: 1.5;
  padding-right: 8px;
}
.imax-dialog-rules .imax-dialog__body > * {
  margin-bottom: 8px;
}
.imax-dialog-rules .imax-dialog__body h3 {
  font-size: 18px;
}
.imax-dialog-rules .imax-dialog__body b {
  display: inline-block;
  margin-bottom: 8px;
}
.imax-dialog-rules .imax-dialog__body h5 {
  font-size: 16px;
  color: #202c5d;
}
.imax-dialog-rules .imax-dialog__body a {
  color: #0071ce;
  text-decoration: underline;
  overflow-wrap: break-word;
  word-break: break-all;
}
.imax-dialog-rules .imax-dialog__body ul {
  counter-reset: ul-counter;
  padding-left: 0;
}
.imax-dialog-rules .imax-dialog__body ul li {
  list-style: none;
  counter-increment: ul-counter;
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  text-align: justify;
}
.imax-dialog-rules .imax-dialog__body ul li ol {
  counter-reset: ol-counter;
  padding-left: 0;
  margin-top: 8px;
}
.imax-dialog-rules .imax-dialog__body ul li ol li {
  list-style: none;
  counter-increment: ol-counter;
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
  text-align: justify;
}
.imax-dialog-rules .imax-dialog__body ul li ol li::before {
  content: counter(ol-counter) "）";
  position: absolute;
  left: 0;
  top: 0;
}
.imax-dialog-rules .imax-dialog__body ul li::before {
  content: counter(ul-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
}
.imax-dialog-rules .imax-dialog__body p {
  text-align: justify;
}

.imax-env-anomaly {
  display: none;
}
.imax-env-anomaly .imax-env-anomaly__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: #333333;
  padding-top: 10%;
  text-align: center;
  background: url(../images/record_bj.png) no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  width: 100%;
  height: 100vh;
  padding: 0 15px 100px;
  color: #ffffff;
}
.imax-env-anomaly img {
  width: 50px;
}
.imax-env-anomaly i {
  font-size: 40px;
  color: #ff5722;
}

/* 中奖公示 */
.imax-notice-page .imax-notice__title {
  position: relative;
}
.imax-notice-page .imax-notice__title h2 {
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 25px 15px;
  text-align: center;
  color: #ffffff;
  box-sizing: border-box;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1.3;
}
.imax-notice-page .imax-notice__title h2 span {
  font-size: 14px;
  font-weight: normal;
}
.imax-notice-page .imax-notice__body {
  position: relative;
}
.imax-notice-page .imax-notice__body .imax-notice__list {
  position: absolute;
  top: 4%;
  bottom: 3%;
  left: -1px;
  width: 100%;
  padding: 6.5%;
}
.imax-notice-page .imax-notice__body .imax-notice__table {
  width: 100%;
  height: 100%;
  border-radius: 12px 12px 25px 25px;
  overflow: hidden;
  overflow-y: auto;
}
.imax-notice-page .imax-notice__body table {
  width: 100%;
}
.imax-notice-page .imax-notice__body table th {
  background-color: #58CBE6;
  color: #052E70;
  font-size: 15px;
  text-align: center !important;
}
.imax-notice-page .imax-notice__body table th,
.imax-notice-page .imax-notice__body table td {
  padding: 8px;
  text-align: left;
}
.imax-notice-page .imax-notice__body table tr:nth-child(even) {
  background-color: #ffffff;
}
.imax-notice-page .imax-notice__body table tr:nth-child(odd) {
  background-color: #CDEFF7;
}
.imax-notice-page .imax-notice__body table tr th:nth-child(1),
.imax-notice-page .imax-notice__body table tr td:nth-child(1) {
  text-align: center;
}
.imax-notice-page .imax-notice__footer {
  position: relative;
}
.imax-notice-page .imax-notice__footer .imax-btn {
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 25px 15px;
  text-align: center;
  color: #ffffff;
  box-sizing: border-box;
  transform: translateY(-50%);
  background: none !important;
}

/* IMAX通兑券使用规则 */
.imax-rules-page .imax-rules-banner {
  background-color: #052E6F;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  padding: 12px 15px;
  text-align: center;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
}
.imax-rules-page .imax-rules-banner img {
  width: 90px;
  margin-bottom: 10px;
}
.imax-rules-page .imax-rules-container {
  position: relative;
  padding: 0 15px 20px;
}
.imax-rules-page .imax-rules-card {
  line-height: 2;
  background-color: #E9F8FD;
  border-radius: 10px;
  padding: 35px 15px 15px;
  margin-top: 50px;
  position: relative;
}
.imax-rules-page .imax-rules-card__title {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background-color: #052E6F;
  color: #ffffff;
  border-radius: 100px;
  padding: 4px 20px;
  min-width: 150px;
  text-align: center;
  position: absolute;
  top: -20px;
}
.imax-rules-page li {
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
}
.imax-rules-page li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #1073CC;
}
.imax-rules-page li img {
  display: block;
  margin: 10px 0 20px;
}
.imax-rules-page .imax-backbtn {
  text-align: center;
  padding: 25px 30px;
  z-index: 99;
  width: 100%;
}
.imax-rules-page .imax-backbtn button {
  width: 100%;
  text-align: center;
  background-color: #052E6F;
  color: #ffffff;
  font-weight: bold;
  border-radius: 100px;
  padding: 10px;
}

/* 中奖记录 */
.imax-record-page {
  width: 100%;
}
.imax-record-page .imax-record-container {
  background: url(../images/record_bj.png) no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  width: 100%;
  padding: 0 15px 100px;
  position: relative;
}
.imax-record-page .imax-record-container::before {
  content: "";
  position: absolute;
  bottom: 2%;
  right: 0;
  width: 80px;
  height: 80px;
  background: url(../images/xingxing.png) no-repeat center;
  background-size: 80px;
}
.imax-record-page .imax-record-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  width: 100%;
  padding: 25px 0;
  text-align: center;
  line-height: 1.3;
}
.imax-record-page .imax-record-title span {
  font-size: 14px;
  font-weight: normal;
}
.imax-record-page .imax-lottery-container .imax-lottery__content {
  min-height: 400px;
  padding: 25px 15px;
}

/* 抽奖活动规则二次确认弹窗 */
.imax-rule-dialog {
  background-color: transparent;
  background: url(../images/tnc_bj.png) no-repeat center;
  background-size: 100% 100%;
  box-shadow: none;
  max-width: 520px;
}
.imax-rule-dialog .imax-rule-dialog__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 35px 22px;
}
.imax-rule-dialog .imax-terms {
  padding: 0;
  font-size: 14px;
}
.imax-rule-dialog .imax-terms .layui-form-checkbox > div {
  color: #000000 !important;
  font-size: 14px;
}
.imax-rule-dialog .imax-terms a {
  color: #000000 !important;
}
.imax-rule-dialog .imax-terms .layui-form-checkbox[lay-skin=primary] > i {
  background: #ffffff !important;
  border: 1px solid #A5D4DA !important;
}
.imax-rule-dialog .imax-rule-dialog__icon {
  width: 70px;
}
.imax-rule-dialog .imax-btn {
  width: 100%;
  padding: 0;
}

footer {
  padding-bottom: 50px;
  background-color: #ffffff;
}

@media (max-width: 400px) {
  .imax-content__top .imax-title {
    font-size: 18px;
  }
  .imax-btn .imax-btn__item,
  .imax-lottery-container .imax-lot__btn .imax-btn__item {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .imax-prize .imax-prize-grid__item {
    border-radius: 30px;
  }
  .imax-record-page .imax-lottery-container .imax-lottery__content {
    min-height: 600px;
  }
  .imax-content__top .imax-logo {
    max-width: 500px;
  }
}/*# sourceMappingURL=index.css.map */