@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;
}

/*-----------------------------------
          Ribbon 名次
------------------------------------*/
.ribbon {
  padding: 0 0 10px 0;
  position: absolute;
  left: 0.25em;
  top: -0.25em;
  width: 40px;
}

.ribbon div {
  font-size: 12px;
  background: #bb3a34;
  background: -webkit-gradient(linear, left top, left bottom, from(#e74841), to(#bb3a34));
  background: linear-gradient(#e74841 0%, #bb3a34 100%);
  color: #fff;
  padding: 0.5em 0;
  text-align: center;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);
}

.ribbon div:after {
  border-left: 20px solid #bb3a34;
  border-right: 20px solid #bb3a34;
  border-bottom: 10px solid transparent;
  bottom: 0;
  content: '';
  height: 0;
  left: 0;
  position: absolute;
  width: 0;
}

.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: #aa5c0d;
}

.gotoheader a:hover {
  color: #ee1681;
}

body {
  background-color: #3B1D5E;
  line-height: 1.5em;
  font-size: 18px;
  letter-spacing: 1px;
}

/*========= 區塊垂直居中 ==========*/
.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-color: #3B1D5E;
  background-position: top center;
  background-repeat: no-repeat;
  color: #fff;
}

/* ================= 版頭 ================= */
.header {
  width: 100%;
  /*.role2 {
        width:315px;
            height:354px;
            position:absolute;
        top:33px;
        left:36px;
        background:url(../../images/role.png);
        }*/
}

.header .container {
  width: 1280px;
  height: 740px;
  position: relative;
}

.header .role {
  width: 268px;
  height: 436px;
  position: absolute;
  top: 268px;
  right: 80px;
  background: url(../../images/roleQ.png);
  -webkit-animation: fadeInLeft 1s;
          animation: fadeInLeft 1s;
}

.header .role3 {
  width: 208px;
  height: 208px;
  position: absolute;
  top: 430px;
  left: 40px;
  background: url(../../images/btn_monopoly.png);
  -webkit-animation: fadeInLeft 1.2s, pulse 1.2s 2.2s infinite;
          animation: fadeInLeft 1.2s, pulse 1.2s 2.2s infinite;
}

.header .role3 a {
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.header .slogan {
  width: 837px;
  height: 387px;
  position: absolute;
  top: 356px;
  left: 235px;
  background: url(../../images/slogan.png);
  -webkit-animation: backInDown 1s, pulse 1s 1s;
          animation: backInDown 1s, pulse 1s 1s;
}

.header .logo, .header .logo a {
  width: 228px;
  height: 114px;
  display: block;
}

.header .logo {
  position: absolute;
  top: 80px;
  right: 50px;
  z-index: 9;
  background: url(../../images/logo.png) no-repeat center center;
}

@-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);
  }
}

/* ================= 頁面選單 ================= */
.nav {
  width: 100%;
  position: relative;
  z-index: 1;
}

.nav .container {
  width: 1280px;
  position: relative;
}

.nav .navBtn {
  width: 960px;
  position: relative;
  margin: 0 auto;
}

.nav .navBtn ul {
  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;
}

.nav .navBtn ul li {
  display: block;
  list-style: none;
  text-indent: -9999px;
  float: left;
  width: 320px;
  height: 101px;
}

.nav .navBtn ul li.navBtn1 a {
  background-position-x: 0px !important;
}

.nav .navBtn ul li.navBtn2 a {
  background-position-x: -310px !important;
}

.nav .navBtn ul li.navBtn3 a {
  background-position-x: -620px !important;
}

.nav .navBtn ul li.navBtn4 a {
  background-position-x: -930px !important;
}

.nav .navBtn ul li.navBtn5 a {
  background-position-x: -1240px !important;
}

.nav .navBtn ul li a:hover, .nav .navBtn ul li.action a {
  background-image: url(../../images/navBtn_action.png);
}

.nav .navBtn ul li a {
  width: 310px;
  height: 91px;
  display: block;
  background-image: url(../../images/navBtn.png);
}

.nav .navBtn ul li a:hover {
  -webkit-animation: shakeX 1s;
          animation: shakeX 1s;
}

/* ================= 內容 ================= */
.content {
  position: relative;
  width: 100%;
  margin-top: 2.5em;
}

.content .container {
  position: relative;
  width: 1000px;
  padding: 7.5em 2em 2em 2em;
  margin-bottom: 2em;
  border: #000 solid 0.2em;
  border-radius: 2em;
  background-color: #26133D;
  /*  .btn_M{
          width:percentage($btnM-w / 980);
          height: 0;
          padding-bottom: percentage($btnM-h / 980);
          position: absolute;
          margin-top: 2.5%;
          right: 15%;
          a{
              width: 100%;
              height: 0;
              padding-bottom: percentage($btnM-h / $btnM-w);
              display: block;
              transition:all .5s;
              background: url('../../images/noticeBtn.png');
              text-indent:-9999px;
              background-size: 100%!important;
          }
          a:hover, &.action a{
              width: 100%;
              background: url('../../images/noticeBtn.png');
              transition:all .5s;
          }
      }*/
}

@media only screen and (max-width: 560px) {
  .content .container {
    font-size: 0.8em;
  }
}

.content h3 {
  font-size: 1.5em;
  font-weight: bold;
  width: 100%;
  pointer-events: none;
  /*padding-bottom: 11.25%;*/
  margin-bottom: 0.5em;
  position: absolute;
  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;
  left: 50%;
  top: -1.45em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.content h3 img {
  display: block;
  max-width: 100%;
}

.content h4 {
  position: relative;
  display: block;
  color: #FFB806;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.5em;
  margin: 0.5em 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/ingots.svg");
  background-size: 100%;
  width: 1.6em;
  height: 1.6em;
  display: inline-block;
  margin: 0 5px;
}

.content h5 {
  font-size: 1.2em;
  padding: .8em;
  text-align: center;
  background-image: #8F5C28;
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(143, 92, 40, 0)), color-stop(20%, #8F5C28), color-stop(40%, #8F5C28), color-stop(60%, #8F5C28), color-stop(80%, #8F5C28), to(rgba(143, 92, 40, 0)));
  background-image: linear-gradient(to left, rgba(143, 92, 40, 0) 0%, #8F5C28 20%, #8F5C28 40%, #8F5C28 60%, #8F5C28 80%, rgba(143, 92, 40, 0) 100%);
  line-height: 28px;
  color: #fff;
}

.content h6 {
  font-size: 1.125em;
  line-height: 1.5em;
  padding: 20px 0;
  text-align: center;
}

.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: #00ffff;
  text-decoration: underline;
}

.content p a:hover, .content ol a:hover, .content ul a:hover {
  color: #ffc400;
}

.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;
  font-size: 1em;
}

@media only screen and (max-width: 830px) {
  .content__btn {
    font-size: 0.8em;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.content__btn div {
  color: #fff;
  text-align: center;
  margin: 2.5% 1%;
}

.content__btn div a:hover, .content__btn div.action a {
  width: 100%;
  border-radius: 18px;
  padding: 0.8em;
  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.8em;
  border: 1px solid #86674b;
  font-weight: bold;
  white-space: nowrap;
}

.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 {
  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;
}

.btnBox a {
  padding: 1em 3em;
  border-radius: 1.8em;
  margin: 0.3em;
  border: 1px solid #cf33ff;
  cursor: pointer;
  font-weight: bold;
  white-space: nowrap;
  width: auto;
  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: 10px 10px;
  border-radius: 20px;
  border: 1px solid #ff0035;
  color: #ff0035;
  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: #ff0035;
  text-decoration: none;
}

ul.tabBtn li:hover, ul.tabBtn li.active {
  cursor: pointer;
  color: #2C190A;
  background-color: #ff0035;
}

ul.tabBtn li:hover a, ul.tabBtn li.active a {
  color: #2C190A;
}

.tabMain {
  display: none;
  padding: 20px;
}

/* ================= item__box ================= */
.item__box {
  position: relative;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#573716), color-stop(20%, #805020), color-stop(80%, #805020), to(#573716));
  background: linear-gradient(to right, #573716 0%, #805020 20%, #805020 80%, #573716 100%);
  color: #fff;
  border-radius: 1em;
  border: 3px solid #805020;
  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 a {
  color: #00ffff;
  text-decoration: underline;
}

.item__box a:hover {
  color: #ffc400;
}

.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(#573716), color-stop(20%, #805020), color-stop(80%, #805020), to(#573716));
  background: linear-gradient(to right, #573716 0%, #805020 20%, #805020 80%, #573716 100%);
  color: #fff;
  background: transparent;
}

.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 {
  position: relative;
  background-color: #2C190A;
  border: 3px #a06933 solid;
  height: 100%;
  border-radius: 1em;
}

.item__box-img {
  /*@include flexboxSetting(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: #8F5C28;
  border-radius: 12px;
  border: 3px solid #000;
  padding: 5px 0;
}

.item-title img {
  vertical-align: middle;
}

/*------本活動客製區域--------------*/
.f-danger {
  color: yellow;
}

.item__box {
  border-radius: 1em;
}

@media screen and (max-width: 768px) {
  .item__box {
    border-radius: 1em;
  }
}

.item__box .col {
  margin-bottom: 0.8em;
}

.item__box .item__box-title02 {
  padding-top: 0.5em;
  background-color: transparent !important;
  white-space: nowrap;
}

.item__box--02 {
  padding-top: 0.5em;
}

@media screen and (max-width: 768px) {
  .item__box--02 {
    border-radius: 0.5em;
  }
}

.item__box--02 .item__box-title02 {
  color: #fff;
  text-align: center;
  white-space: inherit;
  font-size: 1em;
  font-weight: bold;
  padding: 12px 0;
  background-color: transparent !important;
}

/*================= table================= */
.table tr th, .table tr td {
  border: 1px solid #a06933;
}

.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 #a06933;
}

.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(#6f471f), to(#8F5C28));
  background: linear-gradient(to top, #6f471f 0%, #8F5C28 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 {
  width: 4em;
  display: inline;
  margin: 0;
}

.table tr td[data-tdstyle="style01"] {
  background-color: #f6f6f6;
}

/*================= tableNote =================*/
.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;
  z-index: 1;
}

.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);
}

.comment {
  z-index: 1;
  left: inherit;
  right: -10px;
}

@media only screen and (max-width: 798px) {
  .comment {
    right: -40px;
  }
}

.comment:before {
  font-size: 3.5em;
  color: #ff9900;
  -webkit-filter: drop-shadow(3px 3px 3px #4d2b1e);
          filter: drop-shadow(3px 3px 3px #4d2b1e);
}

.comment:after {
  font-size: 1.125em;
  letter-spacing: 0;
}

.comment-purple:before {
  color: #d858ff;
}

.comment01 {
  top: -0.5em;
  left: inherit;
  right: 8em;
}

.comment01::before {
  font-size: 7.5em;
}

.ribbon {
  width: 30px;
  background: linear-gradient(-20deg, #ffde4b 0%, #fff0b1 80%, #ffde4b 100%);
  top: -10px;
  right: 5px;
  font-size: 1rem;
  line-height: 1.125em;
  padding: 6px;
  letter-spacing: 2px;
  white-space: nowrap;
  font-weight: bold;
  color: #970000;
}

@media only screen and (max-width: 798px) {
  .ribbon {
    width: 30px;
    height: 3.2em;
    right: -38px;
    font-size: .88rem;
  }
}

@media only screen and (max-width: 560px) {
  .ribbon {
    right: -5px;
  }
}

.ribbon p {
  color: #665300;
  text-orientation: upright;
  -webkit-text-orientation: upright;
  font-weight: normal;
  font-weight: bold;
}

.ribbon:before {
  border-bottom: 6px solid #e4ba00;
  border-left: 6px solibad transparent;
  left: -6px;
  top: 0;
}

@media only screen and (max-width: 560px) {
  .ribbon:before {
    border-bottom: 6px solid #e4ba00;
    border-right: 0 solid transparent;
    border-left: 6px solid transparent;
    right: initial;
    left: -6px;
    top: 0;
  }
}

.ribbon:after {
  border-left: 15px solid #ffe058;
  border-right: 15px solid #ffe058;
  border-bottom: 12px solid transparent;
  bottom: -12px;
  left: 0;
}

@media only screen and (max-width: 798px) {
  .ribbon:after {
    border-left: 15px solid #ffe058;
    border-right: 15px solid #ffe058;
  }
}

.ribbon_01 {
  width: 80%;
  height: 24px;
  margin-left: -9px;
}

.ribbon_01 p {
  font-size: 12px;
  line-height: 1em;
}

.ribbon_01:before {
  margin-top: -8.5px;
  left: 0;
  border-bottom: 9px solid black;
  border-left: 9px solid transparent;
}

.ribbon_01:after {
  width: 0;
  top: 0;
  left: 100%;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.ribbon_01--A {
  background: linear-gradient(-65deg, #840000 0%, #ea0000 80%, #840000 100%);
  margin-left: -15px;
}

@media only screen and (max-width: 798px) {
  .ribbon_01--A {
    width: 95%;
    height: 35px;
  }
}

.ribbon_01--A:before {
  border-bottom: 9px solid #1e0000;
}

.ribbon_01--A:after {
  border-left: 15px solid #840000;
}

@media only screen and (max-width: 798px) {
  .ribbon_01--A:after {
    border-top: 17.5px solid transparent;
    border-bottom: 17.5px solid transparent;
  }
}

/*================= box-單雙欄分色(box-compose) ================= */
.box-compose .box-composeTitle {
  width: 100%;
  padding: 0;
  margin-right: 0;
  margin-left: 0;
}

.box-compose .box-composeTitle p {
  background-color: #ff5757;
  color: #000;
  border-radius: 5px;
  padding: 10px;
  font-weight: bold;
  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;
}

.box-compose .box-composeMain {
  width: 100%;
  border-radius: 10px;
  margin: 5px auto;
  padding: 10px 0;
}

.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: #e3dcff;
  height: 100%;
  margin-right: 0;
  margin-left: 0;
}

.box-compose .box-composeMain-block .itemlist {
  margin: 5px;
}

.box-compose .box-composeMain img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.box-compose .box-composeMain:nth-child(even) {
  background-color: #55b5e3;
}

.box-compose .box-composeMain:nth-child(even) .box-composeMain-block {
  background: #84d7ff;
  color: #100632;
}

.box-compose .box-composeMain:nth-child(even) .box-composeMain-block.symbol {
  background: transparent;
  color: #100632;
  font-size: 1.5em;
}

.box-compose .box-composeMain:nth-child(odd) {
  background-color: #b489f8;
  white-space: 10px;
}

.box-compose .box-composeMain:nth-child(odd) .box-composeMain-block {
  background: #d4bdf8;
  color: #100632;
}

.box-compose .box-composeMain:nth-child(odd) .box-composeMain-block.symbol {
  background: transparent;
  color: #100632;
  font-size: 1.5em;
}

.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);
}

.box-compose .symbol i {
  font-size: 1.5rem;
}

@media only screen and (max-width: 560px) {
  .box-compose .symbol i {
    font-size: 1.2rem;
  }
}

.box-compose .icon-equal {
  -webkit-filter: opacity(0.5);
          filter: opacity(0.5);
  width: 24px;
  height: 24px;
  background: url(../../images/prize/equals-sign.svg);
}

@media only screen and (max-width: 560px) {
  .box-compose .icon-equal {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.box-compose .number {
  font-size: 1.8rem;
  font-weight: bold;
}

@media only screen and (max-width: 560px) {
  .box-compose .number {
    font-size: 1.5rem;
  }
}

/*-----------------------------------

  搖擺動態

-----------------------------------------*/
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
