@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100..900&display=swap");
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

:after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }

body {
  padding: 0;
  margin: 0;
  font-family: "Noto Sans TC", Helvetica, sans-serif; }
  body.lang-sc {
    font-family: "Noto Sans SC", Helvetica, sans-serif; }

a {
  color: #000000;
  outline: 0;
  transition: all 0.3s linear; }
  a:focus {
    outline: 0; }

.desktop-only {
  display: block; }

.mobile-only {
  display: none; }

.header {
  position: fixed;
  top: 0;
  background: #fff;
  padding: 20px 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; }
  .header .header-logo {
    /*max-width: 372px;
    width: 30%;
    height: 68px;*/
    max-width: 200px;
    width: 30%;
    height: 40px;
    background: url("../images/logo.png") no-repeat left center;
    background-size: contain; }
  .header .menu {
    flex: 1; }
    .header .menu ul {
      display: flex;
      margin: 0;
      padding: 0;
      list-style: none;
      align-items: center;
      justify-content: end; }
      .header .menu ul li {
        margin-left: 30px; }
        .header .menu ul li a {
          text-decoration: none; }
          .header .menu ul li a.action-btn {
            padding: 10px 25px;
            border-radius: 20px;
            color: #fff;
            font-weight: bold;
            background: #ef6a2b;
            background: linear-gradient(90deg, #ef6a2b 0%, #e83f22 100%); }
        .header .menu ul li.active a {
          color: #ED1C24; }
  .header .lang-menu {
    margin-left: 20px; }
    .header .lang-menu ul {
      display: flex;
      margin: 0;
      padding: 0;
      list-style: none; }
      .header .lang-menu ul li {
        margin-left: 30px; }
        .header .lang-menu ul li a {
          text-decoration: none; }
  .header .mobile-menu {
    display: none; }

.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px; }

.highlight-text {
  color: #ED1C24; }

.section {
  padding: 5vw 0; }
  .section .section-title {
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px; }

.download-bar {
  position: sticky;
  bottom: 0;
  z-index: 99;
  color: #fff;
  font-size: 16px;
  background: #ED1C24;
  padding: 15px 20px;
  -webkit-box-shadow: 0px -5px 8px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px -5px 8px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px -5px 8px 0px rgba(0, 0, 0, 0.3); }
  .download-bar .download-bar-content {
    display: flex;
    align-items: center;
    justify-content: center; }
    .download-bar .download-bar-content .comma {
      display: inline-block; }
    .download-bar .download-bar-content .qr-code {
      width: 80px;
      margin-right: 20px; }
      .download-bar .download-bar-content .qr-code img {
        display: block;
        width: 100%; }
    .download-bar .download-bar-content .title {
      font-weight: bold;
      font-size: 20px;
      margin-bottom: 10px; }
    .download-bar .download-bar-content .button-wrap {
      display: none; }

.lang-en .section .section-title {
  font-size: 55px; }

@media only screen and (max-width: 991px) {
  .header .lang-menu {
    font-size: 15px;
    margin-left: 15px; }
    .header .lang-menu ul li {
      margin-left: 15px; }
  .header .menu ul li {
    font-size: 15px;
    margin-left: 15px; }

  .section .section-title {
    font-size: 45px; } }
/* mobile */
@media only screen and (max-width: 767px) {
  .desktop-only {
    display: none; }

  .mobile-only {
    display: block; }

  .header {
    padding: 10px 15px; }
    .header .header-logo {
      width: 45%;
      height: 40px; }
    .header .menu .menu-item {
      /*display: none;*/ }
    .header .menu .action-btn {
      font-size: 13px;
      white-space: nowrap; }
    .header .lang-menu {
      display: none; }
    .header .mobile-menu {
      position: absolute;
      right: 0;
      top: 80%;
      width: 100%;
      background: #ED1C24;
      color: #fff;
      display: block;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s linear; }
      .header .mobile-menu.active {
        top: 100%;
        opacity: 1;
        visibility: visible; }
      .header .mobile-menu ul {
        list-style: none;
        margin: 0;
        padding: 0 10px; }
        .header .mobile-menu ul li {
          text-align: center; }
          .header .mobile-menu ul li a {
            display: block;
            color: #fff;
            text-align: center;
            padding: 15px 5px;
            text-decoration: none;
            border-bottom: 1px solid #aa1a1a; }
            .header .mobile-menu ul li a.lang-btn {
              display: inline-block;
              border: none; }
    .header .hamburger-btn {
      padding: 5px;
      margin-left: 20px; }
      .header .hamburger-btn a {
        display: block;
        width: 30px;
        height: 30px;
        background: url("../images/hamburger-icon.svg") no-repeat;
        background-position: center; }

  .container {
    padding: 0 10px; }

  .section {
    padding: 30px 10px; }
    .section .section-title {
      font-size: 30px;
      line-height: 150%;
      text-align: center;
      margin-bottom: 20px; }
      .section .section-title .highlight-text {
        display: block; }

  .download-bar {
    padding: 10px 10px; }
    .download-bar .download-bar-content {
      display: block;
      text-align: center; }
      .download-bar .download-bar-content .comma {
        display: none; }
      .download-bar .download-bar-content .title {
        font-size: 16px;
        line-height: 150%;
        margin-bottom: 0; }
      .download-bar .download-bar-content .qr-code {
        display: none; }
      .download-bar .download-bar-content .desc {
        display: none; }
      .download-bar .download-bar-content .button-wrap {
        display: flex;
        align-items: center; }
        .download-bar .download-bar-content .button-wrap a {
          display: block;
          font-size: 16px;
          color: #ffffff;
          border: 2px solid #ffffff;
          margin: 10px 2%;
          border-radius: 30px;
          text-align: center;
          line-height: 180%;
          text-decoration: none;
          width: 45%; }
          .download-bar .download-bar-content .button-wrap a:last-child {
            transition-delay: 0.1s; }

  .lang-en .section .section-title {
    font-size: 30px; }
  .lang-en .download-bar .download-bar-content .button-wrap a {
    font-size: 13px;
    border: 1px solid #ffffff;
    margin: 10px 1%;
    width: 48%; } }
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden {
  display: none !important; }

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

@keyframes pulse {
  0% {
    background-color: #001F3F; }

  100% {
    background-color: #FF4136; } }

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(10%); }

  100% {
    opacity: 1;
    transform: translateY(0%); } }

.page-home {
  padding-top: 80px; }
  .page-home .download-wrap {
    display: flex;
    margin-top: 20px; }
    .page-home .download-wrap .qr-code {
      width: 40%;
      max-width: 200px; }
      .page-home .download-wrap .qr-code img {
        display: block;
        width: 100%; }
    .page-home .download-wrap .download-btn-wrap {
      display: flex;
      flex-direction: column;
      margin-left: 20px; }
      .page-home .download-wrap .download-btn-wrap .download-btn-center-wrap {
        flex: 1;
        display: flex;
        align-items: center; }
      .page-home .download-wrap .download-btn-wrap .download-btn {
        display: block;
        position: relative;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 30px;
        font-size: 23px;
        padding: 0 30px 0 60px;
        text-decoration: none;
        line-height: 200%;
        width: 100%;
        font-weight: bold; }
        .page-home .download-wrap .download-btn-wrap .download-btn:hover {
          color: #ED1C24;
          background: #fff; }
          .page-home .download-wrap .download-btn-wrap .download-btn:hover:after {
            opacity: 1;
            visibility: visible; }
        .page-home .download-wrap .download-btn-wrap .download-btn:before {
          content: '';
          width: 30px;
          height: 100%;
          position: absolute;
          top: 0;
          left: 20px;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: left center; }
        .page-home .download-wrap .download-btn-wrap .download-btn:after {
          content: '';
          width: 30px;
          height: 100%;
          position: absolute;
          top: 0;
          left: 20px;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: left center;
          opacity: 0;
          visibility: hidden;
          transition: all 0.3s linear; }
        .page-home .download-wrap .download-btn-wrap .download-btn.app-store:before {
          background-size: 80%;
          background-image: url("../images/app-store.svg"); }
        .page-home .download-wrap .download-btn-wrap .download-btn.app-store:after {
          background-size: 80%;
          background-image: url("../images/app-store-active.svg"); }
        .page-home .download-wrap .download-btn-wrap .download-btn.google-play:before {
          background-size: 80%;
          background-image: url("../images/google-play.svg"); }
        .page-home .download-wrap .download-btn-wrap .download-btn.google-play:after {
          background-size: 80%;
          background-image: url("../images/google-play-active.svg"); }
        .page-home .download-wrap .download-btn-wrap .download-btn.android:before {
          background-image: url("../images/android.svg"); }
        .page-home .download-wrap .download-btn-wrap .download-btn.android:after {
          background-image: url("../images/android-active.svg"); }
  .page-home .banner {
    position: relative; }
    .page-home .banner .banner-content {
      display: flex;
      align-items: center;
      font-size: 40px;
      justify-content: center; }
      .page-home .banner .banner-content .banner-desc {
        padding: 20px 0; }
      .page-home .banner .banner-content .title {
        font-size: 60px;
        font-weight: 700;
        margin-bottom: 20px; }
      .page-home .banner .banner-content .download-text {
        font-weight: bold;
        margin-top: 50px; }
      .page-home .banner .banner-content .slogan {
        margin-top: 30px;
        position: relative;
        font-size: 80px;
        font-weight: 900;
        background-image: -webkit-linear-gradient(#ffe540, #ffb92c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5)); }
      .page-home .banner .banner-content .images-wrap {
        margin-left: 5vw; }
        .page-home .banner .banner-content .images-wrap .mobile-image {
          position: relative;
          width: 35vw;
          max-width: 511px; }
          .page-home .banner .banner-content .images-wrap .mobile-image img {
            width: 100%;
            animation: slideUp 1s normal forwards ease-in-out; }
          .page-home .banner .banner-content .images-wrap .mobile-image .emo {
            position: absolute;
            right: 2%;
            top: 36.5%;
            width: 40%;
            animation: slideUp 1s normal forwards ease-in-out; }
  .page-home .section-1 .detail-box {
    border: 1px solid #ED1C24;
    border-radius: 15px;
    margin-top: 60px;
    padding: 0 30px; }
    .page-home .section-1 .detail-box .heading-title {
      position: relative;
      display: inline-block;
      z-index: 2;
      color: #ED1C24;
      font-size: 45px;
      font-weight: 700;
      line-height: 100%;
      background: #fff;
      padding: 0 15px; }
      .page-home .section-1 .detail-box .heading-title.small-title {
        font-size: 30px; }
    .page-home .section-1 .detail-box .box-title {
      display: block;
      margin-top: -25px;
      margin-bottom: 20px; }
    .page-home .section-1 .detail-box .details {
      font-size: 30px;
      font-weight: 300;
      margin-bottom: 20px; }
    .page-home .section-1 .detail-box .title-with-line {
      position: relative;
      margin: 50px 0 20px; }
      .page-home .section-1 .detail-box .title-with-line:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: #ED1C24; }
    .page-home .section-1 .detail-box .chance-wrap {
      display: flex;
      margin: 30px -1% 0; }
      .page-home .section-1 .detail-box .chance-wrap .chance-item {
        display: flex;
        flex-direction: column;
        border-radius: 15px;
        overflow: hidden;
        width: 23%;
        margin: 0 1%; }
        .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail {
          width: 100%;
          padding: 20px;
          background: rgba(232, 63, 34, 0.1);
          text-align: center;
          flex: 1;
          font-size: 20px; }
          .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail .icon {
            height: 80px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            width: 100%;
            margin-bottom: 10px; }
            .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail .icon.icon-1 {
              background-image: url("../images/chance-1.svg"); }
            .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail .icon.icon-2 {
              background-image: url("../images/chance-2.svg"); }
            .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail .icon.icon-3 {
              background-image: url("../images/chance-3.svg"); }
            .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail .icon.icon-4 {
              background-image: url("../images/chance-4.svg"); }
          .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail .name {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 10px;
            height: 80px; }
        .page-home .section-1 .detail-box .chance-wrap .chance-item .chance-number {
          color: #fff;
          background: #ED1C24;
          padding: 15px;
          font-size: 20px; }
          .page-home .section-1 .detail-box .chance-wrap .chance-item .chance-number .chances {
            font-size: 45px;
            font-weight: 700;
            line-height: 130%;
            margin-top: 5px; }
            .page-home .section-1 .detail-box .chance-wrap .chance-item .chance-number .chances strong {
              font-size: 60px; }
        .page-home .section-1 .detail-box .chance-wrap .chance-item .detail {
          line-height: 160%; }
    .page-home .section-1 .detail-box .box-note {
      margin: 40px 0; }
  .page-home .section-1 .remark {
    margin: 20px 0; }
  .page-home .section-2 {
    background: url("../images/section-2-bg.png") no-repeat center;
    background-size: cover; }
    .page-home .section-2 .section-title {
      color: #fff; }
    .page-home .section-2 .prize .prize-heading-wrap {
      font-size: 20px;
      font-weight: 700;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px 0;
      background: #FFE540;
      background: linear-gradient(210deg, #ffe540 0%, #ffb92c 100%); }
      .page-home .section-2 .prize .prize-heading-wrap .prize-heading {
        font-size: 45px;
        font-weight: 700;
        text-align: center;
        color: #ED1C24; }
    .page-home .section-2 .prize .prize-detail {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #fff;
      padding: 10px 30px 10px 60px;
      font-size: 20px; }
      .page-home .section-2 .prize .prize-detail .prize-name {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 10px; }
    .page-home .section-2 .prize .prize-1-row {
      display: flex;
      border-radius: 15px;
      overflow: hidden; }
      .page-home .section-2 .prize .prize-1-row .prize-heading-wrap {
        width: 30%; }
      .page-home .section-2 .prize .prize-1-row .prize-heading {
        font-size: 60px; }
      .page-home .section-2 .prize .prize-1-row img {
        max-height: 300px; }
    .page-home .section-2 .prize .other-prize .other-prize-wrap {
      display: flex;
      margin: 30px -1% 0; }
      .page-home .section-2 .prize .other-prize .other-prize-wrap .other-prize-item {
        display: flex;
        flex-direction: column;
        border-radius: 15px;
        overflow: hidden;
        width: 31%;
        margin: 0 1%; }
        .page-home .section-2 .prize .other-prize .other-prize-wrap .other-prize-item .prize-detail {
          display: block;
          padding: 10px 20px 20px; }
    .page-home .section-2 .remark {
      color: #fff;
      margin: 20px 0; }
  .page-home .section-3 .download-box {
    display: flex;
    background: url("../images/download-box-bg.png") no-repeat center bottom;
    background-size: contain;
    padding: 0 20px 0 80px;
    align-items: center; }
    .page-home .section-3 .download-box .download-box-content {
      flex: 1;
      display: flex;
      color: #fff;
      flex-direction: column;
      font-size: 30px; }
      .page-home .section-3 .download-box .download-box-content .download-text {
        font-weight: bold;
        font-size: 60px;
        padding-left: 130px;
        line-height: 200%;
        margin-bottom: 30px;
        background: url("../images/app-icon.png") no-repeat left center;
        background-size: contain; }
      .page-home .section-3 .download-box .download-box-content .title {
        font-size: 50px;
        font-weight: 700;
        margin-bottom: 15px; }
      .page-home .section-3 .download-box .download-box-content .download-wrap {
        margin-top: 50px; }
    .page-home .section-3 .download-box .images-wrap {
      width: 50%; }
      .page-home .section-3 .download-box .images-wrap img {
        display: block;
        width: 100%; }
  .page-home .section-3 .tnc {
    margin: 60px 0 0; }
    .page-home .section-3 .tnc .tnc-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 20px; }
    .page-home .section-3 .tnc ol {
      margin: 0 0 0 30px;
      padding: 0 0 0px;
      line-height: 160%; }
      .page-home .section-3 .tnc ol li ul {
        list-style: disc; }
    .page-home .section-3 .tnc .star-row {
      display: flex;
      margin-left: 25px; }
      .page-home .section-3 .tnc .star-row .star {
        width: 15px; }
      .page-home .section-3 .tnc .star-row .text {
        flex: 1; }

.lang-en .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail {
  font-size: 16px; }
  .lang-en .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail .name {
    font-size: 28px;
    line-height: 120%;
    height: 100px; }
  .lang-en .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail .chance-item .detail {
    line-height: 150%; }
.lang-en .page-home .section-1 .detail-box .chance-wrap .chance-item .chance-number {
  font-size: 16px; }
.lang-en .page-home .section-1 .detail-box .heading-title {
  font-size: 40px; }
  .lang-en .page-home .section-1 .detail-box .heading-title.small-title {
    font-size: 25px; }
.lang-en .page-home .section-2 .prize .prize-heading-wrap .prize-heading {
  font-size: 40px; }
.lang-en .page-home .section-2 .prize .prize-detail {
  font-size: 18px; }
  .lang-en .page-home .section-2 .prize .prize-detail .prize-name {
    font-size: 25px;
    line-height: 130%; }
.lang-en .page-home .section-2 .prize .prize-1-row .prize-heading {
  font-size: 50px; }
.lang-en .page-home .section-3 .download-box .download-box-content .title {
  font-size: 40px; }
.lang-en .page-home .section-3 .download-box .download-box-content .download-text {
  font-size: 50px; }

@media only screen and (max-width: 1199px) {
  .page-home .section-3 .download-box .download-box-content .title {
    font-size: 45px; }
  .page-home .section-3 .download-box .download-box-content .download-text {
    font-size: 55px; }

  .lang-en .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail {
    font-size: 14px; }
    .lang-en .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail .name {
      font-size: 21px;
      line-height: 120%;
      height: 90px; }
    .lang-en .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail .chance-item .detail {
      line-height: 150%; }
  .lang-en .page-home .section-1 .detail-box .chance-wrap .chance-item .chance-number {
    font-size: 14px; }
    .lang-en .page-home .section-1 .detail-box .chance-wrap .chance-item .chance-number strong {
      font-size: 50px; }
  .lang-en .page-home .section-1 .detail-box .heading-title {
    font-size: 35px; }
    .lang-en .page-home .section-1 .detail-box .heading-title.small-title {
      font-size: 25px; }
  .lang-en .page-home .section-2 .prize .prize-heading-wrap .prize-heading {
    font-size: 35px; }
  .lang-en .page-home .section-2 .prize .prize-detail {
    font-size: 14px; }
    .lang-en .page-home .section-2 .prize .prize-detail .prize-name {
      font-size: 20px;
      line-height: 130%; }
  .lang-en .page-home .section-2 .prize .prize-1-row .prize-heading {
    font-size: 45px; }
  .lang-en .page-home .section-3 .download-box .download-box-content .title {
    font-size: 30px; }
  .lang-en .page-home .section-3 .download-box .download-box-content .download-text {
    font-size: 40px; } }
@media only screen and (max-width: 991px) {
  .page-home .download-wrap .download-btn-wrap .download-btn {
    font-size: 18px; }
  .page-home .section-1 .detail-box .box-title {
    margin-top: -20px; }
  .page-home .section-1 .detail-box .heading-title {
    font-size: 35px; }
    .page-home .section-1 .detail-box .heading-title.small-title {
      font-size: 30px; }
  .page-home .section-1 .detail-box .details {
    font-size: 20px; }
  .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail {
    font-size: 16px; }
    .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail .name {
      height: 70px;
      font-size: 25px; }
  .page-home .section-1 .detail-box .chance-wrap .chance-item .chance-number {
    font-size: 16px; }
    .page-home .section-1 .detail-box .chance-wrap .chance-item .chance-number .chances {
      font-size: 35px; }
      .page-home .section-1 .detail-box .chance-wrap .chance-item .chance-number .chances strong {
        font-size: 45px; }
  .page-home .section-2 .prize .prize-1-row .prize-heading {
    font-size: 45px; }
  .page-home .section-2 .prize .prize-heading-wrap {
    font-size: 16px; }
  .page-home .section-2 .prize .prize-detail {
    font-size: 16px; }
    .page-home .section-2 .prize .prize-detail .prize-name {
      font-size: 25px; }
  .page-home .section-3 .download-box {
    padding: 0 20px 0 60px;
    margin-top: 10px; }
    .page-home .section-3 .download-box .download-box .images-wrap {
      width: 48%; }
    .page-home .section-3 .download-box .download-box-content {
      font-size: 20px; }
      .page-home .section-3 .download-box .download-box-content .title {
        font-size: 30px; }
      .page-home .section-3 .download-box .download-box-content .download-text {
        font-size: 40px;
        padding-left: 100px;
        margin-bottom: 20px; }
      .page-home .section-3 .download-box .download-box-content .download-wrap {
        margin-top: 30px; }
        .page-home .section-3 .download-box .download-box-content .download-wrap .download-btn-wrap .download-btn {
          font-size: 16px;
          padding: 0 20px 0 50px; }

  .lang-en .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail {
    font-size: 13px; }
    .lang-en .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail .name {
      font-size: 17px;
      line-height: 120%;
      height: 110px; }
  .lang-en .page-home .section-1 .detail-box .chance-wrap .chance-item .chance-number {
    font-size: 14px; }
    .lang-en .page-home .section-1 .detail-box .chance-wrap .chance-item .chance-number strong {
      font-size: 40px; }
  .lang-en .page-home .section-1 .detail-box .heading-title {
    font-size: 28px; }
    .lang-en .page-home .section-1 .detail-box .heading-title.small-title {
      font-size: 18px; }
  .lang-en .page-home .section-2 .prize .prize-heading-wrap .prize-heading {
    font-size: 30px; }
  .lang-en .page-home .section-2 .prize .prize-detail {
    font-size: 13px; }
    .lang-en .page-home .section-2 .prize .prize-detail .prize-name {
      font-size: 18px; }
  .lang-en .page-home .section-2 .prize .prize-1-row .prize-heading {
    font-size: 40px; }
  .lang-en .page-home .section-3 .download-box .download-box-content .title {
    font-size: 25px; }
  .lang-en .page-home .section-3 .download-box .download-box-content .download-text {
    font-size: 30px; } }
/* mobile */
@media only screen and (max-width: 767px) {
  .page-home {
    padding-top: 60px; }
    .page-home .download-wrap {
      flex-direction: column; }
      .page-home .download-wrap .qr-code {
        display: none; }
      .page-home .download-wrap .download-btn-wrap {
        width: 80%;
        margin: 0 auto; }
        .page-home .download-wrap .download-btn-wrap .download-btn {
          font-size: 20px;
          margin-bottom: 20px; }
    .page-home .section-1 .detail-box .box-title {
      margin-top: -15px; }
    .page-home .section-1 .detail-box .heading-title {
      font-size: 25px;
      line-height: 150%;
      padding: 0 10px; }
      .page-home .section-1 .detail-box .heading-title.small-title {
        font-size: 20px; }
    .page-home .section-1 .detail-box .details {
      font-size: 16px; }
    .page-home .section-1 .detail-box .title-with-line {
      margin: 30px 0 15px; }
    .page-home .section-1 .detail-box .chance-wrap {
      flex-direction: column; }
      .page-home .section-1 .detail-box .chance-wrap .chance-item {
        width: 100%;
        margin-bottom: 25px; }
        .page-home .section-1 .detail-box .chance-wrap .chance-item:last-child {
          margin-bottom: 0; }
        .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail .name {
          height: auto; }
          .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail .name br {
            display: none; }
    .page-home .section-1 .detail-box .box-note {
      margin: 20px 0; }
    .page-home .section-1 .remark {
      font-size: 12px; }
    .page-home .section-2 {
      background-image: url("../images/section-2-bg-mobile.png"); }
      .page-home .section-2 .prize .prize-heading-wrap {
        font-size: 14px; }
        .page-home .section-2 .prize .prize-heading-wrap .prize-heading {
          font-size: 30px; }
      .page-home .section-2 .prize .prize-detail {
        font-size: 14px;
        padding: 10px 15px 20px;
        flex-direction: column;
        text-align: center; }
        .page-home .section-2 .prize .prize-detail img {
          max-height: 200px;
          margin: 10px auto;
          width: auto; }
        .page-home .section-2 .prize .prize-detail .prize-name {
          font-size: 18px;
          margin-bottom: 5px; }
      .page-home .section-2 .prize .prize-1-row {
        flex-direction: column; }
        .page-home .section-2 .prize .prize-1-row .prize-heading {
          font-size: 30px; }
        .page-home .section-2 .prize .prize-1-row .prize-heading-wrap {
          width: 100%; }
      .page-home .section-2 .prize .other-prize .other-prize-wrap {
        flex-direction: column; }
        .page-home .section-2 .prize .other-prize .other-prize-wrap .other-prize-item {
          width: 100%;
          margin-bottom: 30px; }
          .page-home .section-2 .prize .other-prize .other-prize-wrap .other-prize-item:last-child {
            margin-bottom: 0; }
      .page-home .section-2 .remark {
        font-size: 13px;
        text-align: center; }
    .page-home .section-3 .download-box {
      background-image: url("../images/download-box-bg-mobile.png");
      padding: 40px 10px 0;
      flex-direction: column; }
      .page-home .section-3 .download-box .download-box-content {
        font-size: 20px;
        text-align: center; }
        .page-home .section-3 .download-box .download-box-content .title {
          font-size: 28px; }
        .page-home .section-3 .download-box .download-box-content .download-text {
          background-position: center top;
          background-size: 120px;
          padding: 110px 0 0 0;
          font-size: 45px;
          line-height: 180%;
          margin-bottom: 20px; }
        .page-home .section-3 .download-box .download-box-content .download-wrap {
          margin-top: 30px; }
          .page-home .section-3 .download-box .download-box-content .download-wrap .download-btn-wrap {
            width: 90%; }
            .page-home .section-3 .download-box .download-box-content .download-wrap .download-btn-wrap .download-btn {
              line-height: 250%; }
      .page-home .section-3 .download-box .images-wrap {
        width: 60%; }
    .page-home .section-3 .tnc {
      font-size: 12px; }
      .page-home .section-3 .tnc .tnc-title {
        font-size: 14px;
        margin-bottom: 10px; }

  .lang-en .page-home .banner .banner-content .slogan {
    font-size: 28px; }
  .lang-en .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail {
    font-size: 13px; }
    .lang-en .page-home .section-1 .detail-box .chance-wrap .chance-item .section-detail .name {
      font-size: 18px;
      line-height: 120%;
      height: auto; }
  .lang-en .page-home .section-1 .detail-box .chance-wrap .chance-item .chance-number {
    font-size: 14px; }
    .lang-en .page-home .section-1 .detail-box .chance-wrap .chance-item .chance-number strong {
      font-size: 40px; }
  .lang-en .page-home .section-1 .detail-box .heading-title {
    font-size: 23px; }
    .lang-en .page-home .section-1 .detail-box .heading-title.small-title {
      font-size: 16px; }
  .lang-en .page-home .section-1 .detail-box .details {
    font-size: 14px; }
  .lang-en .page-home .section-2 .prize .prize-heading-wrap .prize-heading {
    font-size: 30px; }
  .lang-en .page-home .section-2 .prize .prize-detail {
    font-size: 13px; }
    .lang-en .page-home .section-2 .prize .prize-detail .prize-name {
      font-size: 18px; }
  .lang-en .page-home .section-2 .prize .prize-1-row .prize-heading {
    font-size: 40px; }
  .lang-en .page-home .section-3 .section-title br {
    display: none; }
  .lang-en .page-home .section-3 .download-box .download-box-content .download-text {
    font-size: 35px; } }
