@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-family: \5FAE\8EDF\6B63\9ED1\9AD4,\65B0\7D30\660E\9AD4;
  width: 100%;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*reset end*/
/* 整個捲軸 */
::-webkit-scrollbar {
  width: 10px;
}

/* 捲軸的軌道 */
::-webkit-scrollbar-track {
  background: rgba(115, 0, 4, 0.3);
}

/*捲軸尚未滑到的軌道*/
::-webkit-scrollbar-track-piece {
  background: rgba(115, 0, 4, 0.3);
}

/* 滑動的區塊 */
::-webkit-scrollbar-thumb {
  background: #730004;
  border-radius: 1rem;
}

/* 滑鼠移到滑動的區塊上 */
::-webkit-scrollbar-thumb:hover {
  background: #640003;
}

@keyframes upDown {
  50% {
    transform: translateY(-0.5rem);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes LtoR {
  0% {
    transform: translateX(-1rem);
  }
  50% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-1rem);
    opacity: .3;
  }
}

@keyframes RtoL {
  0% {
    transform: translateX(1rem);
  }
  50% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(1rem);
    opacity: .3;
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(5);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

body {
  background-color: #be1f22;
  font-family: Arial, "Microsoft Jhen Hei";
}

header {
  background-image: url(../img/main-bg.jpg);
  background-size: auto 100%;
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.header_bottom {
  height: 200px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(../img/stage-bg.jpg);
  background-size: auto 100%;
}

.header_L, .header_R {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
}

.header_L img, .header_R img {
  width: 100%;
  height: auto;
}

.header_L .header_tree, .header_R .header_tree {
  position: absolute;
  bottom: 0;
  width: 70%;
}

.header_L {
  left: 0;
}

.header_L .header_tree {
  left: -20%;
}

.header_L img {
  transform: scaleX(-1);
}

.header_R {
  right: 0;
}

.header_R .header_tree {
  right: -20%;
}

.header_top {
  background-image: url(../img/red-lamp.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.header_top img {
  width: 100%;
  height: auto;
}

.title {
  background-image: url(../img/red-window.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 700px;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 65px;
}

.title .main_title {
  width: 100%;
  height: auto;
  opacity: 0;
  animation: zoomOut .3s .3s forwards;
  -o-animation: zoomOut .3s .3s forwards;
  -moz-animation: zoomOut .3s .3s forwards;
  -webkit-animation: zoomOut .3s .3s forwards;
}

.title .subtitle {
  width: 80%;
  height: auto;
}

.top_product {
  width: 1000px;
  z-index: 2;
}

.top_product .top_list_stage {
  display: none;
}

.top_product_list {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  margin: 3rem 0;
}

.top_product_list .items {
  text-align: center;
  cursor: pointer;
  transition: all .3s;
}

.top_product_list .items:hover img {
  transform: translateY(-1.5rem);
  animation: none;
  -o-animation: none;
  -moz-animation: none;
  -webkit-animation: none;
}

.top_product_list .items_product {
  height: 300px;
}

.top_product_list .items_product img {
  height: 100%;
  width: auto;
  animation: upDown 1s  infinite;
  -o-animation: upDown 1s  infinite;
  -moz-animation: upDown 1s  infinite;
  -webkit-animation: upDown 1s  infinite;
}

.top_product_list .items_info {
  margin-top: 1rem;
  text-shadow: 2px 2px 5px #000;
}

.top_product_list .items_info .name {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fef562;
}

.top_product_list .items_info .subtitle {
  font-size: 1.25rem;
  color: #FFF;
}

.main {
  background-image: url(../img/bg-img.png);
  background-size: 100% auto;
  background-repeat: repeat-y;
}

.main > * {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5rem auto;
}

.block .block_title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.block .block_title span {
  display: flex;
  line-height: 2;
  background-color: #0e3b52;
  width: 70%;
  align-items: center;
  justify-content: center;
  color: #FFF;
  border-radius: 2rem;
  border: 3px solid #FFF;
  z-index: 2;
}

.block .block_title_L, .block .block_title_R {
  position: absolute;
  display: flex;
  width: 18%;
  height: auto;
  opacity: .3;
}

.block .block_title_L img, .block .block_title_R img {
  position: relative;
  width: 100%;
}

.block .block_title_L {
  left: 0;
  top: 0;
  z-index: 1;
  animation: LtoR 3s .2s infinite;
  -o-animation: LtoR 3s .2s infinite;
  -moz-animation: LtoR 3s .2s infinite;
  -webkit-animation: LtoR 3s .2s infinite;
}

.block .block_title_L img {
  transform: scaleX(-1);
}

.block .block_title_R {
  right: 0;
  bottom: 0;
  z-index: 3;
  animation: RtoL 3s .2s infinite;
  -o-animation: RtoL 3s .2s infinite;
  -moz-animation: RtoL 3s .2s infinite;
  -webkit-animation: RtoL 3s .2s infinite;
}

.block .block_bottom {
  width: 100%;
  height: 2rem;
  margin-top: 1rem;
  background-image: url(../img/decoline.svg);
  background-size: 100% auto;
}

.block_list {
  width: 100%;
}

.block_list ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background-color: #730004;
  border-radius: 0.5rem;
  padding: 1rem;
}

.block_list .items {
  flex: 1;
  margin: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #fff;
  transition: all .3s;
}

.block_list .items:hover {
  transform: translate(-0.2rem, -0.2rem);
  transition: all .3s;
  box-shadow: rgba(0, 0, 0, 0.5) 2px 2px 3px 3px;
}

.block_list .items_info {
  padding: 10px;
  color: #666;
}

.block_list .name {
  background-color: #ffd6b1;
  color: #0e3b52;
  padding: 5px;
  border-radius: 5px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: bold;
}

.block_list img {
  width: 100%;
}

.block_list .subtitle {
  margin: 1rem 0;
  font-size: 14px;
  font-weight: bold;
}

.block_list .price {
  display: flex;
  justify-content: center;
  align-items: center;
}

.block_list .price b {
  margin-left: auto;
  font-size: 1.75rem;
  font-style: italic;
  font-weight: bold;
  color: #be1f22;
}

.event_list {
  width: 100%;
}

.event_list ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 2rem;
}

.event_list .items {
  border: 3px solid #FFF;
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 10px;
  background-color: #e60036;
  transition: all .3s;
}

.event_list .items img {
  width: 100%;
}

.event_list .items:hover {
  transform: translate(-0.2rem, -0.2rem);
  transition: all .3s;
  box-shadow: #730004 2px 2px 3px 3px;
}

.event_list .items_info {
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.25;
}

.event_list .name {
  font-size: 1.5rem;
  color: #FFF;
}

.event_list .subtitle {
  font-size: 2rem;
  color: #fef562;
}

.btn_block .block_bottom {
  margin-top: 3rem;
}

.button_group {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto;
}

.button_group ul {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.button_group .btn {
  cursor: pointer;
  width: 22%;
  margin: 0 1%;
  padding: 1rem 0;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-shrink: 0;
  font-size: 1.5rem;
  border-radius: 0.5rem;
  color: #730004;
  background-image: url(../img/golden-bg.png);
  background-repeat: repeat-y;
  background-size: 100% auto;
  margin-bottom: 1rem;
  font-weight: bold;
  box-shadow: #730004 2px 2px 3px 2px;
  transition: all .3s;
}

.button_group .btn:hover {
  transform: translate(-3px, -3px);
  transition: all .3s;
  box-shadow: #730004 5px 5px 5px 2px;
}

.banner_group {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner_group ul {
  width: 100%;
}

.banner_group li {
  margin-bottom: 1rem;
  transition: all .3s;
}

.banner_group li:hover {
  opacity: .8;
  transition: all .3s;
}

.banner_group img {
  width: 100%;
}

.event_descript {
  margin: 3rem auto;
  color: #FFF;
}

.event_descript ul {
  list-style: decimal;
  padding-left: 1.5rem;
  line-height: 2;
}

.event_descript span {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  margin-bottom: 1rem;
}

footer {
  background-color: #ffd6b1;
  color: #be1f22;
  text-align: center;
  line-height: 3;
}

@media (max-width: 1024px) {
  .header_bottom {
    height: 25vh;
  }
  .header_L, .header_R {
    height: 80%;
  }
  .header_L .header_tree, .header_R .header_tree {
    width: 80%;
  }
  .main > * {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .top_product {
    width: 100%;
  }
  .top_product .items_info .name {
    font-size: 1.25rem;
  }
  .top_product .items_info .subtitle {
    font-size: 1rem;
  }
  .top_product_list .items_product {
    width: 100%;
    height: auto;
  }
  .top_product_list .items_product img {
    width: 80%;
    height: auto;
  }
}

.top {
  position: fixed;
  right: 1rem;
  bottom: 10vh;
  font-size: 12px;
  color: #FFF;
  background-color: rgba(115, 0, 4, 0.6);
  width: 5em;
  height: 5em;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.25;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  transition: all .3s;
}

.top:hover {
  background-color: rgba(115, 0, 4, 0.9);
  transition: all .3s;
}

.top .arrow {
  display: block;
  width: 8px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #FFF transparent;
  margin-top: 8px;
  margin-bottom: -8px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 500px) {
  header {
    min-height: auto;
  }
  header .title {
    width: 80%;
    height: 0;
    padding-top: 80%;
    background-size: 100% auto;
    transform: translateY(5rem);
    margin-bottom: -5rem;
  }
  header .title img {
    position: absolute;
  }
  header .main_title {
    top: 25%;
  }
  header .subtitle {
    top: 55%;
  }
  .header_bottom {
    height: 15vh;
  }
  .header_L {
    display: none;
  }
  .header_R {
    width: 100%;
    height: 90%;
  }
  .header_R .header_redPack {
    height: 70%;
    width: 100%;
  }
  .header_R .header_redPack img {
    height: 100%;
    width: auto;
    transform: translateX(-10%);
  }
  .top_product {
    width: 100%;
  }
  .top_product .top_list_stage {
    display: block;
    width: 100%;
    position: absolute;
    top: 58%;
    text-align: center;
    z-index: 1;
  }
  .top_product .top_list_stage img {
    width: 100%;
    height: auto;
  }
  .top_product_list {
    flex-wrap: wrap;
  }
  .top_product_list .items_product {
    display: flex;
    position: relative;
    height: 100px;
    width: 50%;
  }
  .top_product_list .items_product img {
    position: relative;
    width: auto;
    height: 100%;
  }
  .top_product_list .items {
    display: flex;
    flex-direction: column;
    width: 40%;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
    z-index: 2;
  }
  .top_product_list .items_info .name {
    font-size: 1rem;
  }
  .top_product_list .items_info .subtitle {
    font-size: 14px;
  }
  .block {
    margin: 2rem auto;
  }
  .block .block_bottom {
    background-size: auto 100%;
    background-position: center;
  }
  .block_title span {
    font-size: 1.5rem;
  }
  .block_title .block_title_L, .block_title .block_title_R {
    width: 20%;
  }
  .block_list ul {
    flex-wrap: wrap;
    padding: 5px;
    justify-content: space-around;
  }
  .block_list .items {
    width: 48%;
    flex: auto;
    margin: 5px 1%;
  }
  .block_list .items .name {
    font-size: 1rem;
  }
  .block_list .items .subtitle {
    font-size: 12px;
  }
  .event_list ul {
    flex-direction: column;
  }
  .event_list .items {
    flex-direction: row;
    margin-bottom: 2rem;
  }
  .button_group {
    margin: 1rem auto 0;
  }
  .button_group .btn {
    width: 48%;
  }
  .event_descript {
    font-size: 12px;
  }
  footer {
    font-size: 14px;
  }
}
/*# sourceMappingURL=style.css.map */