@charset "UTF-8";
@import url("/css/font-awesome-4.5.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300&display=swap");
.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: 'Noto Sans TC', "新細明體", "細明體";
}

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: #004dad;
}

.gotoheader a:hover {
  color: #00fa8a;
}

body {
  background-color: #570426;
  line-height: 1.5em;
  font-size: 19px;
  letter-spacing: 1px;
  font-family: 'Noto Sans TC','PingFangTC-Regular', sans-serif;
}

/*========= 區塊垂直居中 ==========*/
.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: #570426;
  background-position: top center;
  background-repeat: no-repeat;
  color: #0B1361;
}

/* ================= 版頭 ================= */
.header {
  width: 100%;
  /*	%logoSize{
				width:228px;
				height:114px;
				display:block;
		}
		.logo{
				@extend %logoSize;
				position:absolute;
				top:80px;
		    right:50px;
		    z-index: 9;
				background: url(../../images/logo.png) no-repeat center center;
		}
		.logo a {
				@extend %logoSize;
		}*/
}

.header .container {
  width: 1280px;
  height: 740px;
  position: relative;
}

.header .role {
  width: 115px;
  height: 125px;
  position: absolute;
  top: 121px;
  left: 445px;
  background: url(../../images/snow.png);
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-animation: backInDown 2s, rotateAnimation 1.2s linear infinite;
          animation: backInDown 2s, rotateAnimation 1.2s linear infinite;
}

@-webkit-keyframes rotateAnimation {
  from {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes rotateAnimation {
  from {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

.header .slogan {
  width: 968px;
  height: 285px;
  position: absolute;
  top: 464px;
  left: 151px;
  background: url(../../images/slogan.png);
  -webkit-animation: backInDown 1s, pulse 1s 1s;
          animation: backInDown 1s, pulse 1s 1s;
}

.header .slogan a {
  display: block;
  width: 33%;
  padding-bottom: 12%;
  margin: 0 auto;
}

@-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: 924px;
  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: 308px;
  height: 112px;
}

.nav .navBtn ul li.navBtn1 a {
  background-position-x: 0px !important;
}

.nav .navBtn ul li.navBtn2 a {
  background-position-x: -298px !important;
}

.nav .navBtn ul li.navBtn3 a {
  background-position-x: -596px !important;
}

.nav .navBtn ul li.navBtn4 a {
  background-position-x: -894px !important;
}

.nav .navBtn ul li.navBtn5 a {
  background-position-x: -1192px !important;
}

.nav .navBtn ul li a:hover, .nav .navBtn ul li.action a {
  background-image: url(../../images/nabBtn_action.png);
}

.nav .navBtn ul li a {
  width: 298px;
  height: 102px;
  display: block;
  background-image: url(../../images/nabBtn.png);
}

.nav .navBtn ul li a:hover {
  -webkit-animation: shakeX 1s;
          animation: shakeX 1s;
}

/* ================= 內容 ================= */
.content {
  position: relative;
  width: 100%;
  margin-top: 0;
}

.content .container {
  position: relative;
  width: 1000px;
  padding: 2em;
  margin-bottom: 2em;
  font-weight: bold;
  /*  .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: #3115C0;
  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/pageSnow.png");
  background-repeat: no-repeat;
  background-size: 98%;
  background-position: center center;
  width: 1.2em;
  height: 1.4em;
  display: inline-block;
  margin: 0 5px;
}

.content h5 {
  font-size: 1.2em;
  padding: .8em;
  text-align: center;
  background-image: #004DAD;
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 77, 173, 0)), color-stop(20%, #004DAD), color-stop(40%, #004DAD), color-stop(60%, #004DAD), color-stop(80%, #004DAD), to(rgba(0, 77, 173, 0)));
  background-image: linear-gradient(to left, rgba(0, 77, 173, 0) 0%, #004DAD 20%, #004DAD 40%, #004DAD 60%, #004DAD 80%, rgba(0, 77, 173, 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 .box {
  background-color: #CEDAE6;
  border-radius: 2em;
  padding: 1.8em;
  font-size: 15px;
}

.content .box h5 {
  background: transparent;
  text-align: center;
  color: #0B1563;
  font-size: 21px;
  font-weight: bold;
  padding: 0.4em;
}

.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: 25em;
  padding: 0.8em;
  border: 1px solid #3454cf;
  background-image: #233a94;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#132052), color-stop(20%, #132052), color-stop(40%, #233a94), color-stop(60%, #233a94), color-stop(80%, #132052), to(#132052));
  background-image: linear-gradient(to bottom, #132052 0%, #132052 20%, #233a94 40%, #233a94 60%, #132052 80%, #132052 100%);
  color: #fff;
}

.content__btn div a {
  /*@include gradientLinear(#B9A987, #644D37);
            color:#3f3022;*/
  border: 1px solid #CCDDED;
  width: 100%;
  border-radius: 25em;
  padding: 0.8em;
  letter-spacing: 1px;
  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: 0.5em 2em;
  border-radius: 1.8em;
  margin: 0.3em;
  border: 1px solid #f1869c;
  cursor: pointer;
  font-weight: bold;
  white-space: nowrap;
  width: auto;
  background-image: #EC5877;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e6214a), color-stop(20%, #e6214a), color-stop(40%, #EC5877), color-stop(60%, #EC5877), color-stop(80%, #e6214a), to(#e6214a));
  background-image: linear-gradient(to bottom, #e6214a 0%, #e6214a 20%, #EC5877 40%, #EC5877 60%, #e6214a 80%, #e6214a 100%);
  -webkit-box-shadow: 0px 3px 3px #ab0024;
          box-shadow: 0px 3px 3px #ab0024;
  color: #fff;
}

.btnBox a:hover {
  border: 1px solid #e7d161;
  background-image: #e0c435;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#bba11d), color-stop(20%, #bba11d), color-stop(40%, #e0c435), color-stop(60%, #e0c435), color-stop(80%, #bba11d), to(#bba11d));
  background-image: linear-gradient(to bottom, #bba11d 0%, #bba11d 20%, #e0c435 40%, #e0c435 60%, #bba11d 80%, #bba11d 100%);
  -webkit-box-shadow: 0px 2px 2px #6c5d10, inset 0 1px 1px 1px #e5ce58, inset 0 -8px 8px 0px #ebd97c;
          box-shadow: 0px 2px 2px #6c5d10, inset 0 1px 1px 1px #e5ce58, inset 0 -8px 8px 0px #ebd97c;
  top: 2px;
  color: #584c0e;
}

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%;
  border-radius: 1em;
  border: 3px solid #0E2E78;
  margin: 0 auto;
}

@media (min-aspect-ratio: 3 / 9) and (orientation: portrait) {
  .item__box {
    font-size: 12px;
  }
}

.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(#091c4a), color-stop(20%, #0E2E78), color-stop(80%, #0E2E78), to(#091c4a));
  background: linear-gradient(to right, #091c4a 0%, #0E2E78 20%, #0E2E78 80%, #091c4a 100%);
  color: #ce4242;
  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 {
  background-color: #0E2E78;
  padding: 8px;
  text-align: center;
  color: #fff;
  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 #0E2E78 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: #004DAD;
  border-radius: 12px;
  border: 3px solid #000;
  padding: 5px 0;
}

.item-title img {
  vertical-align: middle;
}

/*=================本活動客製區域================= */
.f-danger, .f-fun {
  color: #FF006C;
}

.f-info {
  color: #6600FF;
}

.item__box {
  background-color: #fff;
  border-radius: 0.5rem;
}

@media screen and (max-width: 768px) {
  .item__box {
    border-radius: 0.5rem;
  }
}

.item__box .col {
  margin-bottom: 0.8em;
}

.item__box .item__box-title02 {
  padding-top: 0.5rem;
  background-color: transparent !important;
  white-space: nowrap;
}

.item__box--02 {
  color: #0B1361;
  background-color: #fff;
  padding-top: 0.5em;
}

@media screen and (max-width: 768px) {
  .item__box--02 {
    border-radius: 0.5em;
  }
}

.item__box--02 .item__box-title {
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  padding: 12px 0;
  background: -webkit-gradient(linear, left top, right top, from(#091c4a), color-stop(20%, #0E2E78), color-stop(80%, #0E2E78), to(#091c4a));
  background: linear-gradient(to right, #091c4a 0%, #0E2E78 20%, #0E2E78 80%, #091c4a 100%);
  color: #fff;
}

.item__box--02 .item__box-get {
  color: #0B1361;
}

/*折數*/
.burst2 {
  position: relative;
}

.burst2::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(/Action/11_Star31/20211116K/images/get2.png);
  background-size: 100% !important;
  width: 2em;
  padding-bottom: 3em;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
}

.burst35 {
  position: relative;
}

.burst35::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(/Action/11_Star31/20211116K/images/get35.png);
  background-size: 100% !important;
  width: 2em;
  padding-bottom: 3em;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
}

.burst5 {
  position: relative;
}

.burst5::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(/Action/11_Star31/20211116K/images/get5.png);
  background-size: 100% !important;
  width: 2em;
  padding-bottom: 3em;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
}

/*=================  ================= */
/*================= table================= */
.table tr th, .table tr td {
  border: 1px solid #0B1361;
}

.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 #0B1361;
}

.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(#0a2053), to(#0E2E78));
  background: linear-gradient(to top, #0a2053 0%, #0E2E78 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);
  }
}
