<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&amp;display=swap);
@charset "UTF-8";


/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.hinge {
  animation-duration: 2s;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.bounce {
  animation-name: bounce;
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}

.shake {
  animation-name: shake;
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  0% {
    transform: scale(1);
  }

  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  0% {
    transform: translateX(0%);
  }

  15% {
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    transform: translateX(0%);
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(.9);
  }

  100% {
    transform: scale(1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    transform: translateY(30px);
  }

  80% {
    transform: translateY(-10px);
  }

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

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    transform: translateX(30px);
  }

  80% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    transform: translateX(-30px);
  }

  80% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    transform: translateY(-30px);
  }

  80% {
    transform: translateY(10px);
  }

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

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    transform: scale(.3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    transform: translateY(-20px);
  }

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

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

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

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

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

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

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

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

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

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

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

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

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

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

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

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }

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

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

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

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

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

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    animation-timing-function: ease-in;
  }

  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

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

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  100% {
    transform: translateX(0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  100% {
    transform: translateX(0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

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

.hinge {
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
	 ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
}

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
  margin: 0;
}

/* Grouping content
	 ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
	 ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  text-decoration: none;
  background-color: transparent;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
	 ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

p {
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.form__title {
  text-align: center;
}
.form__title h2 {
  color: #343262;
  font-weight: bold;
}
.form__title p {
  color: #4d4d4d;
  line-height: 1.8;
}
.form__content {
  text-align: center;
}
.form__row {
  display: flex;
}
.form__action .actions {
  margin: 0;
  padding: 0;
  list-style: none;
}
.form--order .form__row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.form--order .form__row .formCol {
  flex: 0 0 50%;
  overflow: hidden;
}

.error {
  display: none;
  color: red;
  margin: 4px auto 0;
  font-size: 14px;
}
.error.active {
  display: block;
}

.formLabel {
  display: block;
}

.fancyWrap {
  position: relative;
}
.fancyWrap--language {
  background-color: #e4e4ea;
  background-image: url(/images/deco-select.svg?d54eba381685d5002f43a9322b2a7cd2);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  overflow: hidden;
}
.fancyWrap--country, .fancyWrap--bill {
  background-color: #f2f2f2;
  background-image: url(/images/deco-select.svg?d54eba381685d5002f43a9322b2a7cd2);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  overflow: hidden;
}
.fancyWrap--inputTxt {
  background-color: #ffffff;
}
.fancyWrap--inputFile {
  background-color: #f2f2f2;
  text-align: center;
}
.fancyWrap--inputFile.active {
  background-color: #def4eb;
  text-align: left;
}
.fancyWrap label {
  display: block;
  width: 100%;
}

.fancySelect {
  width: 100%;
  line-height: 1.3;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.fancyInput {
  display: block;
  width: 100%;
  line-height: 1.5;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.fancyInput--hidden {
  display: none;
}
.fancyInput:focus, .fancyInput:focus-visible {
  outline: none;
}
.fancyInput--inputFile {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.fancyInput--radio + label {
  display: block;
  position: relative;
  line-height: 1;
}
.fancyInput--radio + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  background-color: #ffffff;
  border: 1px solid #4d4d4d;
  border-radius: 50%;
  transform: translateY(-50%);
}
.fancyInput--radio + label:after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  border-radius: 50%;
  background-color: #343262;
  transform: translateY(-50%);
}
.fancyInput--radio:checked + label:after {
  display: block;
}

.btnWrap {
  position: relative;
}
.btnWrap--submit, .btnWrap--originSite {
  background: rgb(102, 102, 125);
  background: linear-gradient(90deg, rgb(102, 102, 125) 0%, rgb(65, 62, 151) 20%, rgb(65, 62, 151) 80%, rgb(102, 102, 125) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#66667d",endColorstr="#66667d",GradientType=1);
}
.btnWrap--line {
  background: rgb(139, 218, 163);
  background: linear-gradient(90deg, rgb(139, 218, 163) 0%, rgb(125, 209, 151) 20%, rgb(125, 209, 151) 80%, rgb(139, 218, 163) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8bdaa3",endColorstr="#8bdaa3",GradientType=1);
}
.btnWrap--weixin {
  background: rgb(77, 187, 80);
  background: linear-gradient(90deg, rgb(77, 187, 80) 0%, rgb(98, 215, 134) 20%, rgb(98, 215, 134) 80%, rgb(77, 187, 80) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8bdaa3",endColorstr="#8bdaa3",GradientType=1);
}

.btn {
  display: block;
  text-align: center;
  border: none;
  line-height: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.btn .btn__text {
  line-height: 1;
  display: inline-block;
}
.btn--submit, .btn--originSite {
  width: 100%;
  background: rgb(39, 38, 74);
  background: linear-gradient(90deg, rgb(39, 38, 74) 0%, rgb(52, 50, 98) 20%, rgb(52, 50, 98) 80%, rgb(39, 38, 74) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#27264a",endColorstr="#27264a",GradientType=1);
}
.btn--submit .btn__text, .btn--originSite .btn__text {
  color: #FFFFFF;
  line-height: 1.3;
}
.btn--line {
  width: 100%;
  background: rgb(59, 177, 62);
  background: linear-gradient(90deg, rgb(59, 177, 62) 0%, rgb(64, 184, 101) 20%, rgb(64, 184, 101) 80%, rgb(59, 177, 62) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3bb13e",endColorstr="#3bb13e",GradientType=1);
}
.btn--line .btn__text {
  color: #FFFFFF;
  line-height: 1.3;
}
.btn--weixin {
  width: 100%;
  background: rgb(49, 149, 52);
  background: linear-gradient(90deg, rgb(49, 149, 52) 0%, rgb(47, 161, 82) 20%, rgb(47, 161, 82) 80%, rgb(49, 149, 52) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8bdaa3",endColorstr="#8bdaa3",GradientType=1);
}
.btn--weixin .btn__text {
  color: #FFFFFF;
}
.btn--originSite .btn__text, .btn--line .btn__text, .btn--weixin .btn__text {
  line-height: 1.3;
}

.overlay {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.overlay.active {
  display: block;
}

@media only screen and (min-width: 320px) {
  .form__title {
    margin-bottom: 1.4rem;
  }
  .form__title h2 {
    font-size: 1.6rem;
  }
  .form__title p {
    margin-top: 0.8rem;
    font-size: 1rem;
  }
  .form--order .form__row {
    margin-bottom: 1.2rem;
  }
  .form--order .form__row .formCol:nth-child(odd) {
    padding-right: 0.8rem;
  }
  .form--order .form__row .formCol:nth-child(even) {
    padding-left: 0.8rem;
  }
  .form--delivery .form__row {
    flex-direction: column;
    margin-bottom: 1.2rem;
  }
  .form--delivery .form__row .formLabel {
    margin-bottom: 0.6rem;
  }
  .form--delivery .form__row .formCol {
    margin-bottom: 1.2rem;
  }
  .form--delivery .form__row .formCol:last-child {
    margin-bottom: 0;
  }
  .fancyWrap--language {
    width: 6.6rem;
    border-radius: 0.8rem;
  }
  .fancyWrap--country, .fancyWrap--bill, .fancyWrap--inputTxt, .fancyWrap--inputFile {
    border: 0.1rem solid #4d4d4d;
  }
  .formLabel {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
  .fancySelect--language {
    padding: 0.2rem 0 0.2rem 0.5rem;
    font-size: 1rem;
  }
  .fancySelect--country {
    padding: 0.1rem 1.1rem 0.1rem 0.45rem;
    font-size: 1rem;
  }
  .fancySelect--bill {
    padding: 0.1rem 0 0.1rem 0.5rem;
    font-size: 1rem;
  }
  .fancyInput--inputFile, .fancyInput--inputTxt {
    padding: 0.1rem 0.5rem;
    font-size: 1rem;
  }
  .fancyInput--radio + label {
    font-size: 1rem;
    padding-left: 1.5rem;
  }
  .fancyInput--radio + label:before {
    width: 1rem;
    height: 1rem;
  }
  .fancyInput--radio + label:after {
    width: 0.6rem;
    height: 0.6rem;
    left: 0.2rem;
  }
  .btnWrap--submit {
    padding: 0.1rem;
  }
  .btnWrap--originSite {
    padding: 0.1rem;
  }
  .btnWrap--line {
    padding: 0.1rem;
  }
  .btnWrap--weixin {
    padding: 0.1rem;
  }
  .btn--submit {
    padding: 0.2rem 0;
  }
  .btn--submit .btn__text {
    font-size: 1rem;
  }
  .btn--originSite, .btn--line, .btn--weixin {
    padding: 0.8rem 0;
  }
  .btn--originSite .btn__text, .btn--line .btn__text, .btn--weixin .btn__text {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 1280px) {
  .form__title {
    margin-bottom: 16px;
  }
  .form__title h2 {
    font-size: 28px;
  }
  .form__title p {
    margin-top: 15px;
    font-size: 20px;
  }
  .form--order .form__row .formCol:nth-child(odd) {
    padding-right: 12px;
  }
  .form--order .form__row .formCol:nth-child(even) {
    padding-left: 12px;
  }
  .form--delivery .form__title {
    margin-bottom: 50px;
  }
  .form--delivery .form__row {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .form--delivery .form__row .formLabel {
    margin-bottom: 10px;
  }
  .form--delivery .form__row .formCol {
    margin-bottom: 0;
  }
  .form--delivery .form__row--default .formCol {
    flex: 0 0 50%;
  }
  .form--delivery .form__row--default .formCol:nth-child(odd) {
    padding-right: 12px;
  }
  .form--delivery .form__row--default .formCol:nth-child(even) {
    padding-left: 12px;
  }
  .form--delivery .form__row--area .formCol {
    flex: 0 0 33.3333333333%;
  }
  .form--delivery .form__row--area .formCol:nth-child(3n+1) {
    padding-right: 12px;
  }
  .form--delivery .form__row--area .formCol:nth-child(3n+2) {
    padding-left: 12px;
    padding-right: 12px;
  }
  .form--delivery .form__row--area .formCol:nth-child(3n) {
    padding-left: 12px;
  }
  .form--delivery .form__row--address .formCol {
    flex: 0 0 100%;
    padding: 0;
  }
  .form--delivery .form__action {
    width: 650px;
    margin: 35px auto 0;
  }
  .fancyWrap--language {
    width: 140px;
    border-radius: 25px;
  }
  .fancyWrap--country, .fancyWrap--bill, .fancyWrap--inputTxt, .fancyWrap--inputFile {
    border: 1px solid #4d4d4d;
  }
  .formLabel {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .fancySelect {
    cursor: pointer;
  }
  .fancySelect--language {
    padding: 11px 0 11px 16px;
    font-size: 20px;
  }
  .fancySelect--country {
    padding: 12px 42px 12px 16px;
    font-size: 20px;
  }
  .fancySelect--bill {
    padding: 12px 0 12px 16px;
    font-size: 20px;
  }
  .fancySelect:active, .fancySelect:focus-visible {
    outline: none;
  }
  .fancyInput--inputFile {
    cursor: pointer;
  }
  .fancyInput--inputFile, .fancyInput--inputTxt {
    padding: 9px 16px;
    font-size: 20px;
  }
  .fancyInput--radio + label {
    font-size: 20px;
    padding-left: 16;
    cursor: pointer;
  }
  .fancyInput--radio + label:before {
    width: 16px;
    height: 16px;
  }
  .fancyInput--radio + label:after {
    width: 10px;
    height: 10px;
    left: 3px;
  }
  .btnWrap--submit, .btnWrap--originSite, .btnWrap--line, .btnWrap--weixin {
    padding: 3px;
  }
  .btn {
    cursor: pointer;
    transition: opacity 0.3s ease-in;
  }
  .btn:hover {
    opacity: 0.7;
  }
  .btn--submit {
    padding: 12px 16px;
  }
  .btn--submit .btn__text {
    font-size: 20px;
  }
  .btn--originSite, .btn--line, .btn--weixin {
    padding: 20px 0;
  }
  .lang--en .btn--originSite .btn__text, .lang--en .btn--line .btn__text, .lang--en .btn--weixin .btn__text, .lang--es .btn--originSite .btn__text, .lang--es .btn--line .btn__text, .lang--es .btn--weixin .btn__text {
    font-size: 18px;
  }
  .lang--zh-TW .btn--originSite .btn__text, .lang--zh-TW .btn--line .btn__text, .lang--zh-TW .btn--weixin .btn__text, .lang--zh-CN .btn--originSite .btn__text, .lang--zh-CN .btn--line .btn__text, .lang--zh-CN .btn--weixin .btn__text {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1600px) {
  .form__title {
    margin-bottom: 35px;
  }
  .form__title h2 {
    font-size: 50px;
  }
  .form__title p {
    font-size: 35px;
    line-height: 1.8;
  }
  .form--order .form__row {
    margin-bottom: 40px;
  }
  .form--order .form__row .formCol:nth-child(odd) {
    padding-right: 24px;
  }
  .form--order .form__row .formCol:nth-child(even) {
    padding-left: 24px;
  }
  .form--delivery .form__title {
    margin-bottom: 80px;
  }
  .form--delivery .form__row {
    margin-bottom: 40px;
  }
  .form--delivery .form__row--default .formCol:nth-child(odd) {
    padding-right: 24px;
  }
  .form--delivery .form__row--default .formCol:nth-child(even) {
    padding-left: 24px;
  }
  .form--delivery .form__row--area .formCol:nth-child(3n+1) {
    padding-right: 24px;
  }
  .form--delivery .form__row--area .formCol:nth-child(3n+2) {
    padding-left: 24px;
    padding-right: 24px;
  }
  .form--delivery .form__row--area .formCol:nth-child(3n) {
    padding-left: 24px;
  }
  .form--delivery .form__row--address .formCol {
    padding: 0;
  }
  .fancyWrap:after {
    right: 10px;
    width: 50px;
    height: 50px;
  }
  .fancyWrap--language {
    width: 200px;
  }
  .formLabel {
    font-size: 28px;
  }
  .fancySelect {
    line-height: normal;
    color: #4d4d4d;
  }
  .fancySelect--language {
    padding: 7px 16px;
    font-size: 28px;
  }
  .fancySelect--country {
    padding: 4px 46px 4px 16px;
    font-size: 28px;
  }
  .fancySelect--bill {
    padding: 4px 16px;
    font-size: 28px;
  }
  .fancyInput--inputFile, .fancyInput--inputTxt {
    padding: 4px 16px;
    font-size: 28px;
  }
  .fancyInput--radio + label {
    font-size: 28px;
  }
  .fancyInput--radio + label:before {
    width: 20px;
    height: 20px;
  }
  .fancyInput--radio + label:after {
    width: 14px;
    height: 14px;
  }
  .btn--submit {
    padding: 8px 16px;
  }
  .btn--submit .btn__text {
    font-size: 28px;
  }
  .btn--originSite, .btn--line, .btn--weixin {
    padding: 26px 0;
  }
  .lang--en .btn--originSite .btn__text, .lang--en .btn--line .btn__text, .lang--en .btn--weixin .btn__text, .lang--es .btn--originSite .btn__text, .lang--es .btn--line .btn__text, .lang--es .btn--weixin .btn__text {
    font-size: 18px;
  }
  .lang--zh-TW .btn--originSite .btn__text, .lang--zh-TW .btn--line .btn__text, .lang--zh-TW .btn--weixin .btn__text, .lang--zh-CN .btn--originSite .btn__text, .lang--zh-CN .btn--line .btn__text, .lang--zh-CN .btn--weixin .btn__text {
    font-size: 28px;
  }
}
html {
  font-family: "Noto Sans TC", sans-serif;
}

.image {
  width: 100%;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  z-index: 9999;
  top: 0;
  left: 0;
  border-bottom: 2px solid #000000;
  background-color: #FFFFFF;
}
.header:after {
  content: "";
  display: table;
  clear: both;
}
.header .logo {
  display: inline-block;
  font-size: 0;
  background-image: url(/images/logo.png?1f605dae2fc325d0da1239b52a64225c);
  background-repeat: no-repeat;
  background-size: contain;
}

.footer__pay {
  text-align: center;
}
.footer__copyright {
  text-align: center;
  background-color: #333333;
  color: #ffffff;
}

.navigation {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.navigation .mmMenu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.navigation .mmMenu__link {
  display: block;
  color: #4d4d4d;
}

.burger {
  background-size: contain;
  background-repeat: no-repeat;
}
.burger.is-default {
  background-image: url(/images/burger-default.svg?e47641ca237b0a101ff4ea2f40c36357);
}
.burger.is-close {
  background-image: url(/images/burger-close.svg?25030aa8fb18117e737023b75309858c);
}

@media only screen and (min-width: 320px) {
  html {
    font-size: 3.125vw;
  }
  .header {
    width: 100vw;
    overflow: hidden;
    padding-left: 2.5rem;
  }
  .header .logo {
    width: 9rem;
    height: 1.7rem;
  }
  .footer__pay img {
    width: 22rem;
  }
  .footer__copyright {
    padding: 0.6rem 0;
    font-size: 1rem;
  }
  .navigation__menu {
    position: fixed;
    width: 18rem;
    height: 100vh;
    padding: 0 2rem;
    top: 0;
    right: -100%;
    z-index: 100;
    transition: right 0.3s ease-in;
    background-color: #e4e4ea;
    box-shadow: -0.5rem 0 0.5rem rgba(52, 50, 98, 0.5);
  }
  .navigation__menu.active {
    right: 0;
  }
  .navigation__language {
    margin-right: 0.8rem;
  }
  .navigation .mmMenu {
    flex-direction: column;
  }
  .navigation .mmMenu &gt; li {
    text-align: center;
    border-bottom: 0.1rem solid #a3a3a3;
  }
  .navigation .mmMenu__link {
    padding: 0.9rem 0;
    font-size: 1rem;
  }
  .burger {
    display: block;
    width: 5rem;
    height: 5rem;
  }
  .burger.is-close {
    margin: 0 auto 1.1rem;
  }
  .lang--en .quite--image, .lang--es .quite--image {
    display: block;
  }
  .lang--en .quite--text, .lang--es .quite--text {
    display: none;
  }
}
@media only screen and (min-width: 1280px) {
  html {
    font-size: 12px;
  }
  .header {
    padding: 30px 40px;
  }
  .header .logo {
    width: 310px;
    height: 60px;
  }
  .header .navigation {
    float: right;
  }
  .footer__pay img {
    width: 30vw;
  }
  .footer__copyright {
    padding: 12px 0;
    font-size: 20px;
  }
  .navigation {
    flex-direction: row;
    align-items: center;
  }
  .navigation__menu {
    position: static;
    padding: 0;
    transition: none;
    background-color: transparent;
    box-shadow: none;
    width: auto;
    height: auto;
  }
  .navigation__language {
    margin-left: 35px;
    margin-right: 0;
  }
  .navigation .mmMenu {
    flex-direction: row;
    align-items: center;
  }
  .navigation .mmMenu &gt; li {
    position: relative;
    vertical-align: middle;
    border-bottom: none;
    overflow: hidden;
    margin-right: 16px;
    transform: perspective(1px) translateZ(0);
  }
  .navigation .mmMenu &gt; li:last-child {
    margin-right: 0;
  }
  .navigation .mmMenu &gt; li:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: #343262;
    height: 4px;
    transition-property: left, right;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
  }
  .navigation .mmMenu &gt; li:hover:before {
    left: 0;
    right: 0;
  }
  .navigation .mmMenu__link {
    padding: 15px 16px;
    cursor: pointer;
  }
  .burger {
    display: none;
  }
  .lang--en .navigation .mmMenu__link, .lang--es .navigation .mmMenu__link {
    font-size: 14px;
  }
  .lang--en .quite--image, .lang--es .quite--image {
    display: none;
  }
  .lang--en .quite--text, .lang--es .quite--text {
    display: block;
  }
  .lang--zh-TW .navigation .mmMenu__link, .lang--zh-CN .navigation .mmMenu__link {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1600px) {
  html {
    font-size: 20px;
    line-height: 1;
  }
  .header {
    padding: 50px 60px;
  }
  .footer__copyright {
    padding: 20px 0;
    font-size: 28px;
  }
  .lang--en .navigation .mmMenu__link, .lang--es .navigation .mmMenu__link {
    font-size: 24px;
  }
  .lang--zh-TW .navigation .mmMenu__link, .lang--zh-CN .navigation .mmMenu__link {
    font-size: 28px;
  }
}
</pre></body></html>