@charset "UTF-8";
@import url("/css/font-awesome-4.5.0/css/font-awesome.min.css");
.translateToX {
  opacity: var(--opacity);
  -webkit-transform: translateX(var(--translateX));
          transform: translateX(var(--translateX));
  will-change: transform;
  -webkit-transition: -webkit-transform .5s linear;
  transition: -webkit-transform .5s linear;
  transition: transform .5s linear;
  transition: transform .5s linear, -webkit-transform .5s linear;
}

.translateToY {
  opacity: var(--opacity);
  -webkit-transform: translateY(var(--translateY));
          transform: translateY(var(--translateY));
  will-change: transform;
  -webkit-transition: -webkit-transform .5s linear;
  transition: -webkit-transform .5s linear;
  transition: transform .5s linear;
  transition: transform .5s linear, -webkit-transform .5s linear;
}

table {
  font-family: "新細明體", "細明體";
}

table tbody, table tfoot, table thead, table th, table td {
  vertical-align: middle;
  margin: 0 !important;
}

.gotoheader {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.5em;
  margin-top: 20px;
  text-align: center;
}

.gotoheader a {
  display: inline-block;
  color: #fff;
}

.gotoheader a:hover {
  color: #05f0b9;
}

body {
  line-height: 1.5em;
  font-size: 19px;
  font-weight: bold;
  background: white;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, white), color-stop(80%, #c5e3f7), to(#44baff));
  background: linear-gradient(to bottom, white 5%, #c5e3f7 80%, #44baff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#44baff',GradientType=0 );
  /* IE6-9 */
}

/*========= 區塊垂直居中 ==========*/
.centercenter {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wrapper {
  background-image: url(../../images/indexBg.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  color: #0d033b;
}

/* ================= 版頭 ================= */
.header {
  width: 100%;
}

.header .container {
  width: 1280px;
  height: 728px;
  position: relative;
}

.header .slogan {
  width: 634px;
  height: 245px;
  position: absolute;
  top: 317px;
  left: 312px;
  background: url(../../images/slogan.png);
  background-repeat: no-repeat;
  -webkit-animation: zoomIn 0.5s, bounceIn 0.5s 0.6s;
          animation: zoomIn 0.5s, bounceIn 0.5s 0.6s;
}

.header .card1 {
  width: 406px;
  height: 755px;
  position: absolute;
  top: 10px;
  left: 0px;
  background: url(../../images/prize_L.png);
  background-repeat: no-repeat;
  -webkit-animation: zoomIn 0.5s, bounceInLeft 0.5s 0.6s, pulse 1.2s 1.5s infinite;
          animation: zoomIn 0.5s, bounceInLeft 0.5s 0.6s, pulse 1.2s 1.5s infinite;
}

.header .card2 {
  width: 424px;
  height: 803px;
  position: absolute;
  top: 10px;
  left: 880px;
  background: url(../../images/prize_R.png);
  background-repeat: no-repeat;
  -webkit-animation: zoomIn 0.5s, bounceInRight 0.5s 0.6s, pulse 1.2s 1.5s infinite;
          animation: zoomIn 0.5s, bounceInRight 0.5s 0.6s, pulse 1.2s 1.5s infinite;
}

.header .logo, .header .logo a {
  width: 166px;
  height: 107px;
  display: block;
}

.header .logo {
  position: absolute;
  top: 10px;
  left: 0px;
  z-index: 9;
  background: url(../../images/logo.png);
}

.header .tipdown {
  display: none;
  position: absolute;
  background: url(../../images/tip_down.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 10%;
  padding-bottom: 10%;
  top: 70%;
  left: 45%;
  -webkit-transform: translateX(-45%);
  transform: translateX(-45%);
  -webkit-animation: slide-bottom 3s 0s infinite;
          animation: slide-bottom 3s 0s infinite;
}

@media screen and (max-height: 420px) {
  .header .tipdown {
    display: block;
  }
}

/**
 * ----------------------------------------
 * animation slide-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }
}

@keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 1;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 1;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

/* ================= 內容 ================= */
.content {
  width: 100%;
}

.content .container {
  position: relative;
  width: 1000px;
  margin-bottom: 0.8em;
}

@media only screen and (max-width: 560px) {
  .content .container {
    font-size: 0.8em;
  }
}

.content .container_box {
  position: inherit;
  width: 100%;
  padding: 5%;
  margin: 0 auto;
  z-index: 2;
}

.content .container .btn_Notice {
  width: 13.26531%;
  height: 0;
  padding-bottom: 4.4898%;
  position: absolute;
  margin-top: 2.5%;
  right: 15%;
}

.content .container .btn_Notice a {
  width: 100%;
  height: 0;
  padding-bottom: 33.84615%;
  display: block;
  -webkit-transition: all .5s;
  transition: all .5s;
  background: url("../../images/noticeBtn.png");
  text-indent: -9999px;
  background-size: 100% !important;
}

.content .container .btn_Notice a:hover, .content .container .btn_Notice.action a {
  width: 100%;
  background: url("../../images/noticeBtn.png");
  -webkit-transition: all .5s;
  transition: all .5s;
}

.content h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding: 0 0 16px 0;
  width: 100%;
}

.content h3 img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.content h4 {
  position: relative;
  display: block;
  color: #e00043;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.3em;
  margin: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 798px) {
  .content h4 {
    font-size: 1.125rem;
  }
}

.content h4:before {
  content: '';
  background-image: url("../../images/dice.svg");
  background-size: 99%;
  background-repeat: no-repeat;
  width: 1.6em;
  height: 1.6em;
  display: inline-block;
  margin: 0 5px 0 0;
}

.content h5 {
  font-size: 1.2em;
  padding: .8em;
  text-align: center;
  background-image: #FFB806;
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 184, 6, 0)), color-stop(20%, #FFB806), color-stop(40%, #FFB806), color-stop(60%, #FFB806), color-stop(80%, #FFB806), to(rgba(255, 184, 6, 0)));
  background-image: linear-gradient(to left, rgba(255, 184, 6, 0) 0%, #FFB806 20%, #FFB806 40%, #FFB806 60%, #FFB806 80%, rgba(255, 184, 6, 0) 100%);
  line-height: 28px;
  color: #2e1b0a;
}

.content h6 {
  font-size: 1.125em;
  line-height: 28px;
  padding: 20px 0;
  text-align: center;
  font-size: 1.2em;
  padding: .8em;
  text-align: center;
  background-image: #FFB806;
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 184, 6, 0)), color-stop(20%, #FFB806), color-stop(40%, #FFB806), color-stop(60%, #FFB806), color-stop(80%, #FFB806), to(rgba(255, 184, 6, 0)));
  background-image: linear-gradient(to left, rgba(255, 184, 6, 0) 0%, #FFB806 20%, #FFB806 40%, #FFB806 60%, #FFB806 80%, rgba(255, 184, 6, 0) 100%);
  color: #2e1b0a;
}

.content h6 span {
  padding: 5px 15px;
  background: #be0000;
  border-radius: 10px;
  color: #fff;
  margin-right: 8px;
}

.content p a, .content ol a, .content ul a {
  color: #ff00bf;
  text-decoration: underline;
}

.content p a:hover, .content ol a:hover, .content ul a:hover {
  color: #a200ff;
}

.content p {
  margin-left: 1rem;
}

/*標籤*/
span.burst {
  display: block;
  background: #d10019;
  width: 80px;
  height: 80px;
  position: absolute;
  text-align: center;
  left: 17%;
  top: 0%;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

span.burst:before, span.burst:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: #d10019;
  font-size: 15px;
}

span.burst:before {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

span.burst:after {
  content: "加碼";
  color: #fff716;
  font-size: 110%;
  line-height: 1em;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*table標籤*/
.DESClabel {
  position: relative;
}

.DESClabel .label {
  width: 110px;
  position: absolute;
  top: -3em;
  left: 50%;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  padding: 5px;
  background-color: #af2ec6;
  color: #fff;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.125em;
  text-indent: 0;
}

.DESClabel .label::before {
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  border-top: 15px solid #af2ec6;
  border-right: 15px solid transparent;
  right: 60%;
  bottom: -15px;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
}

.certificate:before {
  font-family: "FontAwesome";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.certificate:after {
  content: attr(data-comment);
  white-space: pre;
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.certificate {
  width: 100px;
  height: 100px;
  position: absolute;
  top: -3px;
  left: -28px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 798px) {
  .certificate {
    top: -20px;
    left: -35px;
  }
}

.certificate:before {
  content: '\f0a3';
  width: 100px;
  height: 100px;
  font-size: 100px;
  color: #ca0000;
  text-align: center;
}

.certificate:after {
  width: 100px;
  height: 100px;
  color: #fff;
  font-weight: bold;
  font-size: 1em;
  line-height: 1.1em;
  letter-spacing: 0px;
  text-align: center;
  top: -0.3em;
}

.certificate-char4 {
  width: 120px;
  height: 120px;
}

@media only screen and (max-width: 798px) {
  .certificate-char4 {
    top: -20px;
    left: -35px;
  }
}

.certificate-char4:before {
  content: '\f0a3';
  width: 120px;
  height: 120px;
  font-size: 120px;
}

.certificate-char4:after {
  width: 120px;
  height: 120px;
}

.content__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 560px) {
  .content__btn {
    font-size: 0.8em;
  }
}

.content__btn div {
  color: #fff;
  text-align: center;
  margin: 1%;
}

.content__btn div a:hover, .content__btn div.action a {
  width: 100%;
  border-radius: 18px;
  padding: 0.5em;
  border: 1px solid #f5b350;
  background-image: #ec930d;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#9f6309), color-stop(20%, #9f6309), color-stop(40%, #ec930d), color-stop(60%, #ec930d), color-stop(80%, #9f6309), to(#9f6309));
  background-image: linear-gradient(to bottom, #9f6309 0%, #9f6309 20%, #ec930d 40%, #ec930d 60%, #9f6309 80%, #9f6309 100%);
  color: #301e03;
}

.content__btn div a {
  background: #B9A987;
  /* Old browsers */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #B9A987), to(#644D37));
  background: linear-gradient(to bottom, #B9A987 20%, #644D37 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  color: #3f3022;
  width: 100%;
  border-radius: 18px;
  padding: 0.5em;
  border: 1px solid #86674b;
  font-weight: bold;
}

.content__btn div.action a {
  color: #fff;
}

.content__btn div .label:before {
  color: #ffe049;
  text-shadow: 1px 1px 2px #4f2a00;
  font-size: 3.5em;
}

.content__btn div .label:after {
  color: #4a0000;
  font-size: 0.7em;
}

.btnBox a {
  padding: 0.7em;
  width: 10em;
  border: 1px solid #cf33ff;
  cursor: pointer;
  background-image: #c300ff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#9400c2), color-stop(20%, #9400c2), color-stop(40%, #c300ff), color-stop(60%, #c300ff), color-stop(80%, #9400c2), to(#9400c2));
  background-image: linear-gradient(to bottom, #9400c2 0%, #9400c2 20%, #c300ff 40%, #c300ff 60%, #9400c2 80%, #9400c2 100%);
  -webkit-box-shadow: 0px 3px 3px #4e0066;
          box-shadow: 0px 3px 3px #4e0066;
  color: #fff;
}

.btnBox a:hover {
  border: 1px solid #fffad1;
  background-image: #fff59e;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffef61), color-stop(20%, #ffef61), color-stop(40%, #fff59e), color-stop(60%, #fff59e), color-stop(80%, #ffef61), to(#ffef61));
  background-image: linear-gradient(to bottom, #ffef61 0%, #ffef61 20%, #fff59e 40%, #fff59e 60%, #ffef61 80%, #ffef61 100%);
  -webkit-box-shadow: 0px 2px 2px #ffe505, inset 0 1px 1px 1px #fff9c7, inset 0 -8px 8px 0px #fffdf0;
          box-shadow: 0px 2px 2px #ffe505, inset 0 1px 1px 1px #fff9c7, inset 0 -8px 8px 0px #fffdf0;
  top: 2px;
  color: #665b00;
}

ul.tabBtn {
  text-align: center;
  margin-left: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

ul.tabBtn li {
  display: block;
  position: relative;
  padding: 10px 20px;
  margin: 8px 8px;
  border-radius: 20px;
  border: 1px #FFB806 solid;
  color: #e1870c;
  font-weight: bold;
  font-size: 1.2em;
}

@media only screen and (max-width: 560px) {
  ul.tabBtn li {
    font-size: 1em;
  }
}

ul.tabBtn li a {
  color: #e1870c;
  text-decoration: none;
}

ul.tabBtn li:hover, ul.tabBtn li.active {
  cursor: pointer;
  color: #2C190A;
  background-color: #FFB806;
}

ul.tabBtn li:hover a, ul.tabBtn li.active a {
  color: #2C190A;
}

.tabMain {
  display: none;
  text-align: center;
  padding: 20px 0;
}

/* ================= item__box ================= */
.item__box {
  position: relative;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#142662), color-stop(20%, #1D378C), color-stop(80%, #1D378C), to(#142662));
  background: linear-gradient(to right, #142662 0%, #1D378C 20%, #1D378C 80%, #142662 100%);
  color: #fff;
  border-radius: 10px 10px 0 0;
  border: 3px solid #1D378C;
  margin: 0 auto;
}

.item__box .item__box--shadow {
  -webkit-box-shadow: 0px 2px 2px 2px rgba(25, 23, 39, 0.2);
          box-shadow: 0px 2px 2px 2px rgba(25, 23, 39, 0.2);
}

.item__box .item__box-title {
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  padding: 12px 0;
  background: -webkit-gradient(linear, left top, right top, from(#142662), color-stop(20%, #1D378C), color-stop(80%, #1D378C), to(#142662));
  background: linear-gradient(to right, #142662 0%, #1D378C 20%, #1D378C 80%, #142662 100%);
  color: #fff;
}

.item__box .item__box-title-2 {
  height: 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.item__box .item__box-title img {
  display: block;
  margin: 0 auto;
}

.item__box .item__box-get {
  padding: 8px;
  text-align: center;
  color: #ff9100;
  font-weight: bold;
}

.item__box .item__box-get .plus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.item__box .item__box-text {
  padding: 15px;
  text-align: left;
}

.item__box--02 {
  background-color: #23000a;
  border: 3px #FFB806 solid;
  height: 100%;
  border-radius: 3em;
}

.item__box-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px 8px 0 0;
}

.item__box-img-500 {
  width: 100%;
  height: 500px;
}

.item__box-img-500 img {
  max-height: 500px;
}

.item__box-img-450 {
  width: 100%;
  height: 450px;
}

.item__box-img-450 img {
  max-height: 450px;
}

.item__box-img-400 {
  width: 100%;
  height: 400px;
}

.item__box-img-400 img {
  max-height: 400px;
}

.item__box-img-350 {
  width: 100%;
  height: 350px;
}

.item__box-img-350 img {
  max-height: 350px;
}

.item__box-img-300 {
  width: 100%;
  height: 300px;
}

.item__box-img-300 img {
  max-height: 300px;
}

.item__box-img-250 {
  width: 100%;
  height: 250px;
}

.item__box-img-250 img {
  max-height: 250px;
}

.item__box-img-200 {
  width: 100%;
  height: 200px;
}

.item__box-img-200 img {
  max-height: 200px;
}

.item__box-img-150 {
  width: 100%;
  height: 150px;
}

.item__box-img-150 img {
  max-height: 150px;
}

.item__box-img-100 {
  width: 100%;
  height: 100px;
}

.item__box-img-100 img {
  max-height: 100px;
}

.item__box-img img {
  max-width: 100%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

@media only screen and (max-width: 798px) {
  .item__box-img-m-500 {
    width: 100%;
    height: 500px;
  }
  .item__box-img-m-500 img {
    max-height: 500px;
  }
  .item__box-img-m-450 {
    width: 100%;
    height: 450px;
  }
  .item__box-img-m-450 img {
    max-height: 450px;
  }
  .item__box-img-m-400 {
    width: 100%;
    height: 400px;
  }
  .item__box-img-m-400 img {
    max-height: 400px;
  }
  .item__box-img-m-350 {
    width: 100%;
    height: 350px;
  }
  .item__box-img-m-350 img {
    max-height: 350px;
  }
  .item__box-img-m-300 {
    width: 100%;
    height: 300px;
  }
  .item__box-img-m-300 img {
    max-height: 300px;
  }
  .item__box-img-m-250 {
    width: 100%;
    height: 250px;
  }
  .item__box-img-m-250 img {
    max-height: 250px;
  }
  .item__box-img-m-200 {
    width: 100%;
    height: 200px;
  }
  .item__box-img-m-200 img {
    max-height: 200px;
  }
  .item__box-img-m-150 {
    width: 100%;
    height: 150px;
  }
  .item__box-img-m-150 img {
    max-height: 150px;
  }
  .item__box-img-m-100 {
    width: 100%;
    height: 100px;
  }
  .item__box-img-m-100 img {
    max-height: 100px;
  }
  .item__box-img-m img {
    max-width: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
  }
}

@media only screen and (max-width: 560px) {
  .item__box-img-ms-500 {
    width: 100%;
    height: 500px;
  }
  .item__box-img-ms-500 img {
    max-height: 500px;
  }
  .item__box-img-ms-450 {
    width: 100%;
    height: 450px;
  }
  .item__box-img-ms-450 img {
    max-height: 450px;
  }
  .item__box-img-ms-400 {
    width: 100%;
    height: 400px;
  }
  .item__box-img-ms-400 img {
    max-height: 400px;
  }
  .item__box-img-ms-350 {
    width: 100%;
    height: 350px;
  }
  .item__box-img-ms-350 img {
    max-height: 350px;
  }
  .item__box-img-ms-300 {
    width: 100%;
    height: 300px;
  }
  .item__box-img-ms-300 img {
    max-height: 300px;
  }
  .item__box-img-ms-250 {
    width: 100%;
    height: 250px;
  }
  .item__box-img-ms-250 img {
    max-height: 250px;
  }
  .item__box-img-ms-200 {
    width: 100%;
    height: 200px;
  }
  .item__box-img-ms-200 img {
    max-height: 200px;
  }
  .item__box-img-ms-150 {
    width: 100%;
    height: 150px;
  }
  .item__box-img-ms-150 img {
    max-height: 150px;
  }
  .item__box-img-ms-100 {
    width: 100%;
    height: 100px;
  }
  .item__box-img-ms-100 img {
    max-height: 100px;
  }
  .item__box-img-ms img {
    max-width: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
  }
}

@media only screen and (max-width: 400px) {
  .item__box-img-xms-500 {
    width: 100%;
    height: 500px;
  }
  .item__box-img-xms-500 img {
    max-height: 500px;
  }
  .item__box-img-xms-450 {
    width: 100%;
    height: 450px;
  }
  .item__box-img-xms-450 img {
    max-height: 450px;
  }
  .item__box-img-xms-400 {
    width: 100%;
    height: 400px;
  }
  .item__box-img-xms-400 img {
    max-height: 400px;
  }
  .item__box-img-xms-350 {
    width: 100%;
    height: 350px;
  }
  .item__box-img-xms-350 img {
    max-height: 350px;
  }
  .item__box-img-xms-300 {
    width: 100%;
    height: 300px;
  }
  .item__box-img-xms-300 img {
    max-height: 300px;
  }
  .item__box-img-xms-250 {
    width: 100%;
    height: 250px;
  }
  .item__box-img-xms-250 img {
    max-height: 250px;
  }
  .item__box-img-xms-200 {
    width: 100%;
    height: 200px;
  }
  .item__box-img-xms-200 img {
    max-height: 200px;
  }
  .item__box-img-xms-150 {
    width: 100%;
    height: 150px;
  }
  .item__box-img-xms-150 img {
    max-height: 150px;
  }
  .item__box-img-xms-100 {
    width: 100%;
    height: 100px;
  }
  .item__box-img-xms-100 img {
    max-height: 100px;
  }
  .item__box-img-xms img {
    max-width: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
  }
}

.item__box-img img {
  border-radius: 0px;
}

.item-title {
  width: 96%;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  background-color: #1D378C;
  border-radius: 12px;
  border: 3px solid #000;
  padding: 5px 0;
}

.item-title img {
  vertical-align: middle;
}

/*------本活動客製區域--------------*/
.tabBtn.margin0 li {
  margin: 0;
}

.ImgStyleC {
  width: 30%;
  max-width: 104px !important;
}

.tabMain .item__box {
  border-radius: 2em;
  padding: 3%;
}

@media screen and (max-width: 768px) {
  .tabMain .item__box {
    border-radius: 0.5em;
  }
}

.tabMain .item__box .col {
  margin-bottom: 0.8em;
}

.tabMain .item__box .item__box-title02 {
  padding-top: 0.5em;
  background-color: transparent !important;
}

.tabMain .item__box--02 {
  padding-top: 0.5em;
  border-radius: 2em;
  border: #3e5bbd 3px solid;
}

@media screen and (max-width: 768px) {
  .tabMain .item__box--02 {
    border-radius: 0.5em;
  }
}

.tabMain .item__box--02 .item__box-title02 {
  color: #fff;
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  padding: 12px 0;
  background-color: transparent !important;
}

/*抽獎文字*/
span.burst, span.burst2 {
  display: block;
  background: #d10019;
  width: 40px;
  height: 40px;
  position: absolute;
  text-align: center;
  left: 95%;
  top: 10%;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
}

@media only screen and (max-width: 560px) {
  span.burst, span.burst2 {
    left: 80%;
  }
}

span.burst:before, span.burst:after, span.burst2:before, span.burst2:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  background: #d10019;
  font-size: 18px;
}

span.burst:before, span.burst2:before {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

span.burst::after, span.burst2::after {
  line-height: 34px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

span.burst:after {
  content: "加碼";
  color: #fff716;
}

span.burst2:after {
  content: "加碼獎";
  color: #fff716;
}

/*================= table================= */
.table tr th, .table tr td {
  border: 1px solid #2f4fb9;
}

.table {
  font-family: "Helvetica Neue","微軟正黑體","Helvetica","Arial","PingFangTC-Light","STHeitiTC-Light","Microsoft JhengHei",sans-serif;
  margin: 20px 0;
  font-size: 1em;
  font-weight: bold;
  word-break: break-all;
  border-spacing: 0;
  border-collapse: initial;
  border-radius: 5px;
  color: #202c0d;
  border: 3px solid #2f4fb9;
}

.table tr {
  background: #fff;
}

.table tr th {
  text-align: center;
  font-size: 1.025em;
  font-weight: bold;
  padding: 5px;
  line-height: 1.5em;
  white-space: nowrap;
  word-wrap: normal;
  position: relative;
  background: -webkit-gradient(linear, left bottom, left top, from(#162a6a), to(#1D378C));
  background: linear-gradient(to top, #162a6a 0%, #1D378C 100%);
  color: #fff;
}

.table tr th.thStyle02 {
  color: #752b00;
  background: #ffec80;
}

.table tr td {
  text-align: center;
  line-height: 24px;
  padding: 5px;
  /*單格變色*/
}

.table tr td p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0;
}

.table tr td img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.table tr td img.img-inline {
  display: inline;
  margin: 0;
}

.table tr td[data-tdstyle="style01"] {
  background-color: #f6f6f6;
}

/*================= box-單雙欄分色(box-compose) ================= */
.box-compose {
  width: 100%;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
}

.box-compose .col {
  margin-bottom: 0;
}

.box-compose .title p {
  background: #a2002a;
  padding: 5px;
  text-align: center;
  margin-left: 0;
}

.box-compose .box-composeMain {
  border-radius: 10px;
  margin: 10px auto;
  padding: 10px;
}

.box-compose .box-composeMain-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  padding: 5px;
  color: #440000;
}

@media only screen and (max-width: 400px) {
  .box-compose .box-composeMain-block {
    margin: 8px;
  }
}

.box-compose .box-composeMain-block p {
  margin-left: 0;
  width: 100%;
  text-align: center;
}

.box-compose .box-composeMain-block .itemlist {
  margin: 5px;
}

.box-compose .box-composeMain img {
  display: block;
  max-width: 100%;
}

.box-compose .box-composeMain:nth-child(even) {
  background: #ffc185;
}

.box-compose .box-composeMain:nth-child(even) .box-composeMain-block {
  background: #fff3c9;
}

.box-compose .box-composeMain:nth-child(even) div:first-child .box-composeMain-block {
  background: #ffc185;
}

.box-compose .box-composeMain:nth-child(odd) {
  background: #ddabff;
}

.box-compose .box-composeMain:nth-child(odd) .box-composeMain-block {
  background: #eed5ff;
}

.box-compose .box-composeMain:nth-child(odd) div:first-child .box-composeMain-block {
  background: #ddabff;
}

.box-compose .symbol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(0, 0, 0, 0.35);
  background: transparent !important;
}

.box-compose .symbol i {
  font-size: 1.5rem;
}

@media only screen and (max-width: 560px) {
  .box-compose .symbol i {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 900px) {
  body {
    line-height: 1.5em;
    font-size: 19px;
    /*中文字適合19PX字級*/
  }
  h4 {
    font-size: 24px;
  }
  p, ol, ul, li {
    font-size: 19px;
  }
  table, td, th {
    font-size: 17px;
  }
}

@media screen and (max-width: 900px) {
  body {
    line-height: 1.5em;
    font-size: 17px;
  }
  h4 {
    font-size: 20px;
  }
  p, ol, ul, li {
    font-size: 17px;
  }
  table, td, th {
    font-size: 15px;
  }
}

@media screen and (max-width: 700px) {
  body {
    line-height: 1.5em;
    font-size: 16px;
  }
  h4 {
    font-size: 18px;
  }
  p, ol, ul, li {
    font-size: 16px;
  }
  table, td, th {
    font-size: 14px;
  }
}
