/*============================================================*/
/*popup-彈窗*/

html {
  /* 當 100vw = 1920px 時，除以 19.2 可以讓 font-size 變成 100px
  在其他屬性時，原先使用 px 單位改成 rem，就可以隨螢幕尺寸等比例縮放
  例如：24px 的字，寫成 0.24rem */
  font-size: calc(100vw / 19.2);
}

th {
  color: #FFFEEA;
  background-color: #845dab;
  border-right: 2px solid #FFFEEA;
}

tr {
  border-bottom: 1px solid #845dab;
}

td {
  color: #845dab;
  font-weight: bold;
}


/* -- 1.開始製作 -- */
.lightBox_1 {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -2;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.lightBox_1 .startMakeMain {
  position: absolute;
  background: url(../images/makeRecord.png) no-repeat center top;
  background-size: 4.66rem 4.31rem;
  width: 4.66rem;
  height: 4.31rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
}

.startMakeMain-success {
  position: absolute;
  background: url(../images/makeRecord.png) no-repeat center top;
  background-size: 4.66rem 4.31rem;
  width: 4.66rem;
  height: 4.31rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
}







/* 警示pop */
.startMakeTextGroup {
  text-align: center;
  padding: 1.5rem 0 0 0;
}
.checkinTextGroup {
  text-align: center;
  padding: 1.5rem 0 0 0;
}

.startMakeText_1 {
  font-weight: bold;
  font-size: 2.5em;
  padding-left: 0.4em;
  color: #646464;
  line-height: 0;
/*  margin-top: 0.3rem;*/
}

.startMakeText_1-1 {
  font-weight: bold;
  font-size: 0.4em;
  color: #646464;
  line-height: 1.4;
  margin-top: 0rem;
  margin-left: 0.1rem;
}

.startMakeText_2 {
  font-weight: bold;
  font-size: 2em;
  color: #bb2f6d; 
  padding-left: 0.7em;
/*  margin-bottom: 0.2rem;*/
}

.startMakeText_2-2 {
  font-weight: bold;
  font-size: 0.4em;
  color: #bb2f6d;
/*  margin-bottom: 0.2rem;*/
}

.startMakeText_4 {
  font-weight: bold;
  font-size: 0.38em;
  color: #bb2f6d;
/*  margin-bottom: 0.2rem;*/
}

.startMakeText_5 {
  font-weight: bold;
  font-size: 0.35em;
  color: #bb2f6d; 
  line-height: 1;
}

.startMakeText_6 {
  font-size: 0.2em;
  color: #000000;
  border: 3px solid #f696c1;
  margin: 2.5% 30%;
  padding: 1% 0%;
  border-radius: 10px;
}

.confirm {
  padding: 0.05rem 0.1rem;
  display: inline-block;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgb(0 0 0 / 0%);
  border-radius:0.1rem;
  position: relative;
  overflow: hidden;
  background: #e73576;
  color: #ffffff;
  font-size: 0.22em;
}

.startMakeText_7 {
  font-weight: bold;
  font-size: 0.3em;
  color: #bb2f6d; 
  line-height: 1;
}

.startMakeText_8 {
  font-weight: bold;
  font-size: 0.7em;
  color: #bb2f6d; 
  line-height: 1;
}

.startMakeText_9 {
  font-weight: bold;
  font-size: 0.2em;
  color: #000000; 
  line-height: 1.5;
  padding-top: 0.3em;
}



/* 恭喜獲得 */

.noEnoughGroup {
  text-align: center;
/*  margin-top: 1.5rem;*/
}

.successForChange375 {
/*  position: absolute;
  left: calc(50% - 3rem/2);
  top:-0.5rem;*/
  text-align: center;
  padding: 1.4rem 0 0 0;
}

.startMakeText_3 {
  font-weight: bold;
  font-size: 0.24rem;
  line-height: 2;
  color: #bb2f6d;
}


/* 1.開始製作---確定兌換 */

.enter {
  background: #fdd480;
  color: #834063;
  font-weight: 600;
  font-size: 0.3rem;
  padding: 0.1rem 0.2rem;
  margin-bottom: 0.1rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
  transform: scale(1);
  border-radius: 0.1rem;
}

.enter:hover {
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.cancel {
  background: #fdd480;
  color: #834063;
  font-weight: 600;
  font-size: 0.3rem;
  padding: 0.1rem 0.2rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
  transform: scale(1);
  border-radius: 0.1rem;
}

.cancel:hover {
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* close按鈕 */
.lightBox_1 .startMakeMain  .closeButton {
  position: absolute;
  top: 0.9rem;
  right: 0.1rem;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-transform: translate(50%, -50%) rotate(0deg);
  transform: translate(50%, -50%) rotate(0deg);
  width: 50px;
}

.lightBox_1 .startMakeMain   .closeButton:hover {
  -webkit-transform: translate(50%, -50%) rotate(180deg);
  transform: translate(50%, -50%) rotate(180deg);
}

.startMakeMain-success .closeButton {
  position: absolute;
  top: 0.9rem;
  right: 0.1rem;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-transform: translate(50%, -50%) rotate(0deg);
  transform: translate(50%, -50%) rotate(0deg);
  width: 50px;
}

.startMakeMain-success .closeButton:hover {
  -webkit-transform: translate(50%, -50%) rotate(180deg);
  transform: translate(50%, -50%) rotate(180deg);
}

@media (max-width: 440px) {

  .startMakeMain-success .closeButton {
    position: absolute;
    top: 2.3rem;
    right: 0.4rem;
    width: 34.4px;
}

  .startMakeMain-success {
    width: 10.75rem;
    height: 10.24rem;
    background-size: 10.75rem 10.24rem;
  }

  .startMakeText_1 {
    font-size: 1.1rem;
    margin-top: 0.7rem;
    font-weight: bold;
  }

  .startMakeText_3 {
    font-weight: 500;
    font-size: 0.66rem;
    /* margin-top: 0.1rem; */
    font-weight: bold;
  }

  .lightBox_1 .startMakeMain .closeButton {
    top: 2.3rem;
    right: 0.6rem;
    
    width: 33px;
  }

  .successForChange375 {
    padding: 3.5rem 0 0 0;
    /* left: calc(50% - 4.3rem / 2); */
  }
}

@media (max-width: 414px) {

  .startMakeMain-success {
    width: 10.75rem;
    height: 10.24rem;
    background-size: 10.75rem 10.24rem;
  }

  .startMakeText_1 {
    font-size: 1.1rem;
    margin-top: 0.7rem;
    font-weight: bold;
  }

  .startMakeText_3 {
    font-weight: 500;
    font-size: 0.66rem;
    /* margin-top: 0.1rem; */
    font-weight: bold;
  }

  .successForChange375 {
    padding: 3.5rem 0 0 0;
    /* left: calc(50% - 4.3rem / 2); */
  }

  .lightBox_1 .startMakeMain .closeButton {
    width: 0.78rem;
    height: 1.5rem;
    right: 1rem;
    width: 25px;
  }

  .lightBox_1 .startMakeMain  .closeButton img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.lightBox_1.active {
  z-index: 250;
  opacity: 1;
}



/* -- 2.menu 共用-- */
.lightBox_2 {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -2;
  opacity: 1;
  -webkit-transition: .5s;
  transition: .5s;
  display: none;
}

.lightBox_2.active {
  display: block;
}

.lightBox_2 .lightBoxGroup {
  background: url(../images/pop-bg.png) no-repeat center top;
  height: 8.22rem;
  width: 8.45rem;
  background-size: 7.72rem 8.25rem;
  position: absolute;
  top: 3%;
  left: calc(50% - 8rem/2);
}

.lightBox_2 .lightBoxGroup.newbg {
  background: url(../images/pop-bg1.png) no-repeat center top;
}


.exchangeGroup {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightBox_2 .lightBoxGroup .lightBoxInMain {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.MainDetail {
  width: 100%;
  height: 85%;
  margin-top: 0.1rem;
  z-index: 50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.MainDetailrew {
  width: 100%;
  height: 85%;
  margin-top: 0.1rem;
  z-index: 50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.lightBoxTitle {
  margin-top: 0.7rem;
}

/* close按鈕 */
.lightBox_2 .lightBoxGroup .closeButton {
  position: absolute;
  width: 0.67rem;
  height: 0.68rem;
  top: 0.1rem;
  right: 0.3rem;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-transform: translate(50%, -50%) rotate(0deg);
  transform: translate(50%, -50%) rotate(0deg);
}

.lightBox_2 .lightBoxGroup .closeButton:hover {
  -webkit-transform: translate(50%, -50%) rotate(180deg);
  transform: translate(50%, -50%) rotate(180deg);
}


/* =========2.menu---獎勵兌換區start========= */
/* 袋月餅 */
.exchangeImgGroup {
  display: flex;
  justify-content: space-evenly;
  width: 62%;
}

.exchangeImgOnly {
  width: 31.3%;
  display: -webkit-box;
  display: -ms-flexbox;
}

.exchangeImgOnly img {
  margin-top: 5px;
  -o-object-fit: contain;
  object-fit: contain;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.exchangeImgOnly img:hover {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
}

.form-control {
  color: #ba6c96;
  border-radius: 12px;
  border-color: #ba6c96;
  font-size: 0.2rem;
  padding: 0.08rem 0.4rem;
  font-weight: bold;
  margin-bottom: 0.1rem;
}

/* 兌換紀錄 */
.exchangeButton {
  display: inline-block;
  font-size: 0.3rem;
  color: white;
  font-weight: bold;
  letter-spacing: 0.02rem;
  padding: 0.15rem;
  background-image: linear-gradient(to bottom, #6aabff, #6074b9);
  -o-object-fit: contain;
  object-fit: contain;
  margin-top: 0.1rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.exchangeButton:hover {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
}

/* 注意事項 */
.exchangeTextGroup {
  width: 100%;
  margin-top: 0.2rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.exchangeTextGroup p {
  width: 96%;
  padding: 0.1rem 0;
  font-size: 0.2rem;
  margin-bottom: 0.2rem;
  background-image: linear-gradient(to left, #58d1ff, #8b77e6);
  text-align: center;
  color: #FFFEEA;
}

.exchangeTextGroup ol {
  width: 92%;
  font-size: 0.22rem;
  color: #845dab;
  font-weight: 400;
  padding: 0rem 0.2rem;
  overflow-y: scroll;
  height: 1.8rem;
}

.exchangeTextGroup li {
  margin-bottom: 0.1rem;
  line-height: 1.3;
}

/* =========2.menu---獎勵兌換區end========= */



/* =========2.menu---福袋兌換紀錄start========= */
.rewardExchangeGroup {
  padding: 0.3rem 0.5rem;
  width: 100%;
  overflow-y: scroll;
  height: 6.2rem;
}

.rewardExchangeMain {
  text-align: center;
  font-size: 0.2rem;
  width: 100%;
}

.rewardExchangeMain th {
  background: #be6a96;
  color: #ffffff;
  padding: 0.1rem;
  border-right: 0.03rem solid #ffe8df;
}

.rewardExchangeMain tr {
  border-bottom: 0.01rem solid #be6a96;
}

.rewardExchangeMain td {
  color: #be6a96;
  line-height: 2;
  padding: 0.04rem;
}

/* =========2.menu---福袋兌換紀錄end========= */



/* =========2.menu---遊戲活動查詢start========= */

/* .lightBox_2 .lightBoxGroup .lightBoxInMain .lightBoxGroup.newbg {
margin-top: 1rem;
}
.lightBox_2 .lightBoxGroup .lightBoxInMain .closeButton {
margin-top: 1.5rem;
} */

.lightBox_2 .lightBoxGroup .lightBoxInMain .MainDetail .activityDetailGroup {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.5rem;
}
.activityDetailGroup div {
  float: left;
}
.activityDetailGroup div img {
  max-width: 100%;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.activityDetailGroup div img:hover {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* but */
.bear-t {
  color: #fff;
  font-size: 0.3rem;
  padding: 0.3rem 0.6rem;
  font-weight: 600;
  top: 2rem;
  left: 4rem;
  text-align: center;
  line-height: 1.2;
  background: #fa696c;
  z-index: 50;
}

/* Bubble Float Left */
.hvr-bubble-float-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}

.hvr-bubble-float-left:before {
  position: absolute;
  z-index: -1;
  content: '';
  top: calc(50% - 10px);
  left: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #fa696c transparent transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}

.hvr-bubble-float-left:hover,
.hvr-bubble-float-left:focus,
.hvr-bubble-float-left:active {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

.hvr-bubble-float-left:hover:before,
.hvr-bubble-float-left:focus:before,
.hvr-bubble-float-left:active:before {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

/* =========2.menu---遊戲活動查詢end========= */



/* =========2.menu---抽獎紀錄查詢start========= */
.MainDetaillot {
  height: 11rem;
  width: 100%;
  margin-top: 0.1rem;
  z-index: 50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.lotteryRecordGroup {
  padding: 0rem 0.25rem;
  width: 100%;
  overflow-y: scroll;
  height: 5.2rem;
}

.lotteryRecordMain {
  text-align: center;
  font-size: 0.25rem;
  width: 100%;
}

.lotteryRecordMain th {
  background: #58031a;
  color: #ffffff;
  padding: 0.1rem;
  border-right: 0.03rem solid #58031a;
}

.lotteryRecordMain tr {
  border-bottom: 0.01rem solid #ea7b9a;
}

.lotteryRecordMain td {
  color: #ea7b9a;
  line-height: 2;
}

/* =========2.menu---抽獎紀錄查詢end========= */



/* =========3.遊戲========= */
/* =========3.遊戲---天諭star========= */
.gameDetailGroup {
  overflow-y: auto;
  height: 6rem;
  width: 9rem;
  padding: 0.3rem;
}

.gameDetailGroup h2 {
  padding: 0.08rem;
  background: #845dab;
  color: #fff;
  display: inline-block;
  margin: 0.2rem 0 0.05rem 0;
}

.keyWordsColour {
  color: #f369b7;
}

/*amiee add*/
.more .lightBox_2 {
  opacity: 0;
}

.lightBox_2.active {
  z-index: 200;
  opacity: 1;
}

@media (max-width: 1290px) {
  .text-xs {
    font-size: 0.24rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.03rem;
  }

  /* 1.開始製作 */

  .startMakeTextGroup {
/*    left: calc(50% - 4.9rem/2);*/
    padding: 1.3rem 0 0 0;
  }
  .checkinTextGroup {
    left: calc(50% - 4.9rem/2);
    padding: 3.2rem 0 0 0;
  }

  .lightBox_1 .startMakeMain .startMakeMain-success {
    width: 10rem;
    height: 7.88rem;
    background-size: 10rem 7.88rem;
  }

  .startMakeText_1 {
    font-weight: 500;
    font-size: 0.5rem;
    font-weight: bold;

  }

  .startMakeText_2 {
    font-weight: 500;
    font-size: 0.5rem;
    font-weight: bold;
  }

  .startMakeText_4 {
    font-weight: 500;
    font-size: 0.4rem;
    font-weight: bold;
  }

  .startMakeText_3 {
    font-weight: 500;
      font-size: 0.2rem;
      font-weight: bold;

  }


  /* .successForChange375 {
    left: calc(50% - 3rem/2);
  } */
  .noEnoughGroup {
    text-align: center;

  }
  .changeButtonGroup {
    display: inline-block;
  }

  .enter {
    font-size: 0.5rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    border-radius: 0.25rem;
  }

  .cancel {
    font-size: 0.5rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    border-radius: 0.25rem;
  }



  /* 2.menu */
  .lightBoxTitle img {
    width: 80%;
    display: block;
    margin: 0 auto;
    /* padding-top: 1rem; */
  }

  .giftbag-h3 img {
    width: 100%;
    height: auto;
  }

  .MainDetail {
    overflow-y: hidden;
    height: 11rem;
  }
  .MainDetaillot {
/*    overflow-y: scroll;*/
    height: 5rem;
    width: 100%;
    margin-top: 0.1rem;
    z-index: 50;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  /* 福袋兌換區 */
.lightBox_2 .lightBoxGroup {
  background: url(../images/pop-bg.png) no-repeat center top;
  height: 9.7rem;
  width: 10.62rem;
  background-size: 9.7rem 10.62rem;
  background-size: contain;
  position: absolute;
  top: 6%;
  left: calc(50% - 10rem/2);
}

  .form-control {
    font-size: 0.4rem;
  }

  .exchangeImgOnly img {
    width: 90%;
  }

  .exchangeTextGroup p {
    font-size: 0.35rem;
  }

  .exchangeTextGroup ol {
    font-size: 0.3rem;
    padding: 0.1rem 0.2rem;
    height: 5rem;
  }

  .exchangeImgGroup {
    width: 80%;
  }

  .exchangeButton {
    font-size: 0.5rem;
    padding: 0.23rem;
  }





  /* 活動詳情 */
  .activityDetailGroup div {
    clear: both;
  }


  /* 福袋兌換紀錄 */
  .rewardExchangeMain {
    font-size: 0.35rem;
    overflow-y: scroll;
  }

  .rewardExchangeGroup {
    height: 9rem;
  }

  .rewardExchangePage li {
    font-size: 0.5rem;
  }

  /* 抽獎兌換紀錄 */
  .lotteryRecordGroup {
    height: 11.5rem;
  }

  .lotteryRecordMain {
    font-size: 0.3rem;
  }

  /* 遊戲查詢- 天諭 */
  .gameDetailGroup {
    height: 10.5rem;
    width: 13rem;
  }
}






@media (max-width: 950px) {

  .startMakeText_1-1 {
    margin-top: 0.3rem;
  }

  .startMakeText_7 {
    margin-top: 0.15rem;
  }
  /*開始製作*/
  .startMakeTextGroup {
    left: calc(50% - 4.9rem/2);
    padding: 1.6rem 0 0 0;
  }
  .checkinTextGroup {
    left: calc(50% - 4.9rem/2);
    padding: 1.5rem 0 0 0;
  }
  .lightBox_2 .lightBoxGroup {
    background: url(../images/pop-bg.png)no-repeat center top;
    width: 60%;
    background-size: contain;
    left: calc(50% - 60%/2);
  }
  .lightBox_1 .startMakeMain  {
    position: absolute;
    background: url(../images/makeRecord.png) no-repeat center top;
    background-size: 4.66rem 4.31rem;
    width: 4.66rem;
    height: 4.31rem;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  .text-xs {
    font-size: 0.35rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.03rem;
  }

  /*彈跳pop*/
  .startMakeText_1 {
    margin-top: 0.3rem;
    font-size: 0.5rem;
    font-weight: bold;

  }
  .startMakeText_2 {
    font-weight: 500;
    font-weight: bold;
    font-size: 0.5rem;
  }

  .startMakeText_3 {
    font-weight: 500;
      font-size: 0.2rem;
      font-weight: bold;
  }

  .startMakeText_4 {
    font-weight: 500;
    font-weight: bold;
    font-size: 0.4rem;
  }  

  .startMakeText_5 {
    padding-top: 0.5em;
    font-weight: bold;
    font-size: 0.35em;
    color: #bb2f6d; 
    line-height: 1;
  }

  .noEnoughGroup {
    text-align: center;
  }
    /*兌換成功*/
  .successForChange375 {
    padding: 1.7rem 0 0 0;
  }
}




  .exchangeTextGroup ol {
    width: 85%;
    font-size: 0.18rem;
    color: #845dab;
    font-weight: 400;
    padding: 0rem 0.1rem;
    overflow-y: scroll;
    height: 1.8rem;
  }
  .exchangeButton {
    display: inline-block;
    font-size: 0.25rem;
    color: white;
    font-weight: bold;
    letter-spacing: 0.02rem;
    padding: 0.15rem;
    background-image: linear-gradient(to bottom, #6aabff, #6074b9);
    -o-object-fit: contain;
    object-fit: contain;
    margin-top: 0.1rem;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  
  .exchangeButton:hover {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
  }
  .exchangeTextGroup p {
    width: 90%;
    padding: 0.1rem 0;
    font-size: 0.2rem;
    margin-bottom: 0.2rem;
    background-image: linear-gradient(to left, #58d1ff, #8b77e6);
    text-align: center;
    color: #FFFEEA;
  }
  .form-control {
    color: #ba6c96;
    border-radius: 12px;
    border-color: #ba6c96;
    font-size: 0.2rem;
    padding: 0.08rem 0.4rem;
    font-weight: bold;
    margin-bottom: 0.1rem;
  }
  .exchangeImgOnly img {
    width: 100%;
  }
  /* 抽獎紀錄查詢 */
  .MainDetaillot {
    height: 11rem;
    width: 75%;
    margin-top: 0.1rem;
    z-index: 50;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .lightBoxInMain {
    height: 7rem;
  }
  .lotteryRecordMain {
    font-size: 0.2rem;
  }
  .lotteryRecordGroup {
    height: 5.7rem;
  }


  .lotteryRecordMain td {
  color: #ea7b9a;
  line-height: 1.5;
}
  /* 活動詳情 */
  .activityDetailGroup div {
    clear: both;
  }
  .rewardExchangeMain {
    font-size: 0.18rem;
  }
  /*兌換紀錄*/
  .rewardExchangeGroup {
    height: 5.6rem;
    padding: 0.1rem 0.25rem;
    margin-left: 0.1rem;
  }

  .enter {
    font-size: 0.3rem;
    margin-bottom: 0.25rem;
    padding: 0.2rem 0.2rem;
  }

  .cancel {
    font-size: 0.3rem;
    margin-bottom: 0.25rem;
    padding: 0.2rem 0.2rem;
  }


  .startMakeText_2-2 {
    font-weight: bold;
    font-size: 0.4em;
    color: #bb2f6d;
    margin-left: 0.15rem;
  }


@media (max-width: 768px) {

  .lightBox_2 .lightBoxGroup .closeButton {
    width: 1.07rem;
    height: 1.68rem;
    top: 0.1rem;
    right: 1.2rem;
  }

  .text-xs {
    font-size: 0.32rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.03rem;
  }
  /* 1.開始製作 */
  .closeButton {
    top: 0.5rem;
    z-index: 999;
  }
  .lightBox_1 .startMakeMain  {
    width: 8.75rem;
    height: 8.24rem;
    background-size: 8.75rem 8.24rem;
  }

  .startMakeMain-success{
    width: 8.75rem;
    height: 8.24rem;
    background-size: 8.75rem 8.24rem;
  }
  .startMakeTextGroup {
    padding: 3rem 0 0 0.1rem;
  }
  .checkinTextGroup {
    padding: 2rem 0 0 0;
  }
  

  .startMakeText_1 {
    font-size: 0.8rem;
    margin-top: 0.7rem;
    font-weight: bold;

  }

  .startMakeText_2 {
    font-weight: 500;
    font-size: 0.7rem;
    margin-bottom: 0.2rem;
    font-weight: bold;
  }

  .successForChange375 {
    padding: 2.9rem 0 0 0;
  }

  .startMakeText_3 {
    font-size: 0.46rem;
  }
}

@media (max-width: 750px) {

  .lightBox_2 .lightBoxGroup .closeButton {
    width: 1.07rem;
    height: 1.68rem;
    top: 0.3rem;
    right: -0.1rem;
}
  .text-xs {
    font-size: 0.32rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.03rem;
  }
  /* 1.開始製作 */
  .closeButton {
    top: 0.5rem;
    z-index: 999;
  }
  .lightBox_1 .startMakeMain  {
    width: 8.75rem;
    height: 8.24rem;
    background-size: 8.75rem 8.24rem;
  }

  .startMakeMain-success{
    width: 8.75rem;
    height: 8.24rem;
    background-size: 8.75rem 8.24rem;
  }
  .startMakeTextGroup {
    padding: 3rem 0 0 0.1rem;
  }
  .checkinTextGroup {
    padding: 2rem 0 0 0;
  }
  

  .startMakeText_1 {
    font-size: 0.8rem;
    margin-top: 0.7rem;
    font-weight: bold;

  }

  .startMakeText_2 {
    font-weight: 500;
    font-size: 0.7rem;
    margin-bottom: 0.2rem;
    font-weight: bold;
  }

  .startMakeText_4 {
    font-weight: 500;
    font-size: 0.6rem;
    margin-bottom: 0.2rem;
    font-weight: bold;
  }  
  .startMakeText_3 {
    font-weight: 500;
    font-size: 0.36rem;
    font-weight: bold;
  }


  .noEnoughGroup {
    text-align: center;
  }

  .successForChange375 {
    padding: 3rem 0 0 0;
  }


  .enter {
    font-size: 0.35rem;
    margin-bottom: 0.25rem;
    padding: 0.2rem 0.7rem;
  }

  .cancel {
    font-size: 0.35rem;
    margin-bottom: 0.25rem;
    padding: 0.2rem 0.7rem;
  }

  /* 2.Menu */
  .MainDetail {
    margin-top: 0.2rem;
    overflow-y: scroll;
    height: 7.3rem;
  }

  .lightBox_2 .lightBoxGroup {
    background: url(../images/pop-bg-m.png) no-repeat center top;
    height: 18.7rem;
    width: 11.49rem;
    background-size: 11.49rem 18.7rem;
    left: calc(50% - 12rem / 2);
}

  .lightBoxTitle {
    margin-top: 0.3rem;
  }



  /*抽獎記錄查詢*/
  .lightBoxTitle img {
    display: block;
    margin: 0 auto;
    padding-top: 1rem;
  }

  .lightBoxTitle img {
    width: 70%;
    margin: 0 auto;
    text-align: center;
  }

  /* .lightBoxInMain {
    height: 100%;
  } */
  .lotteryRecordMain {
    font-size: 0.3rem;
  }
  .lotteryRecordGroup {
    padding: 0rem 0.25rem;
    width: 100%;
    height: 9.2rem;
  }
  .MainDetaillot {
    height: 9rem;
    width: 90%;
    margin-top: 0.4rem;
    z-index: 50;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .startMakeText_1-1 {
    font-size: 0.6em;
    margin-top: 0.5rem;
  }

  .startMakeText_2-2 {
    font-weight: bold;
    font-size: 0.6em;
    color: #bb2f6d;
    margin-left: 0.15rem;
  }

  .startMakeText_5 {
    font-size: 0.5em;
    margin-top: 0.2rem;
  }

  .startMakeText_7 {
    font-size: 0.5em;
    margin-top: 0.3rem;
  }

  .startMakeText_8 {
    font-size: 0.8em;
  }

  .startMakeText_9 {
    font-size: 0.3em;
  }

}
