@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;400;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@400;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

html,
body {
  font-size: 10px;
  font-family: "Plus Jakarta Sans", "Heebo", "Open Sans", "Noto Sans TC";
}

/****************\
* IMG
\****************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: white;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
@media only screen and (max-width: 1400px) {
  .header {
    background-color: white;
  }
}
.header .desktop-header-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto 0 auto;
  max-width: 1400px;
}
@media only screen and (max-width: 1400px) {
  .header .desktop-header-container {
    height: 50px;
    margin: 0 40px;
  }
}
@media only screen and (max-width: 768px) {
  .header .desktop-header-container {
    height: 50px;
    margin: 0 20px;
  }
}
@media only screen and (max-width: 1400px) {
  .header .desktop-header-container .header-btn {
    display: none;
  }
}
.header .desktop-header-container .header-btn {
  display: inline-block;
  font-size: 18px;
  padding: 11px 18px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
}
.header .desktop-header-container .header-btn.btn-white {
  margin-top: 20px;
  color: #d6ae3c;
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.header .desktop-header-container .header-btn.btn-first {
  margin-left: 50px;
}
.header .desktop-header-container .header-btn.btn-second {
  margin-left: 20px;
}
.header .desktop-header-container .header-btn.btn-transparent {
  border: #cb9b0c 2px solid;
  color: #cb9b0c;
  -webkit-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
  float: right;
  margin-right: 240px;
  margin-top: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 9px 18px;
}
.header .desktop-header-container .header-btn.btn-transparent:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.header .desktop-header-container .header-btn.btn-transparent:hover {
  color: white;
  background-color: #cb9b0c;
}
.header .logo {
  background-image: url(../images/default/kv_sinopac.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 153px;
  height: 47px;
  display: block;
  float: left;
  margin-top: 10px;
  padding: 0;
  font-size: 22px;
  line-height: 1;
}
@media only screen and (max-width: 1400px) {
  .header .logo {
    float: none;
    margin: 7px auto 0 auto;
    width: 120px;
    height: 37px;
  }
}
.header .logo:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.hamburger {
  display: none;
  left: auto;
  right: 0;
  top: 10px;
}
@media only screen and (max-width: 1400px) {
  .hamburger {
    display: block;
  }
}
.hamburger .hamburger__icon,
.hamburger .hamburger__icon:after,
.hamburger .hamburger__icon:before {
  background-color: black;
}

.header-menu {
  z-index: 100;
}

.header-container {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 auto;
  height: 100%;
  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;
  min-height: 60px;
  max-width: 1200px;
}
@media only screen and (max-width: 1400px) {
  .header-container {
    display: none;
  }
}
.header-container .href-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  color: #3c3c3c;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  padding: 0 18px;
  text-decoration: none;
}
.header-container .href-item::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 1px;
  height: 25px;
  background-color: #002a53;
}
.header-container .href-item.last-second-item::after {
  display: none;
}
.header-container .href-item.last-item {
  width: 120px;
  padding: 0;
}
.header-container .href-item.last-item::after {
  display: none;
}

.scroll-fix {
  max-width: 800px;
  left: auto !important;
  right: 0;
}

/**************\
* Footer
\**************/
footer {
  font-family: "Heboo", sans-serif;
  width: 100%;
  background-color: #717071;
}
footer p {
  letter-spacing: 0.1em;
  padding: 18px 20px 20px;
  color: white;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  margin: 0 auto;
}
@media only screen and (max-width: 1100px) {
  footer p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 414px) {
  footer p span {
    display: block;
  }
}
footer a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  margin-left: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 1100px) {
  footer a {
    font-size: 14px;
  }
}

.card-notice {
  font-family: "Heboo", sans-serif;
  background-color: #717071;
  color: white;
}
.card-notice .wrap-content {
  max-width: 1170px;
  padding: 20px 20px 0;
  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;
  margin: 0 auto;
}
@media only screen and (max-width: 1100px) {
  .card-notice .wrap-content {
    display: block;
  }
}
.card-notice .wrap-content .big-title {
  width: 23%;
  min-width: 267px;
  font-size: 32px;
  margin-right: 1.5%;
}
@media only screen and (max-width: 1100px) {
  .card-notice .wrap-content .big-title {
    display: block;
    margin: 0px auto 10px auto;
    width: 100%;
    font-size: 22px;
    text-align: center;
  }
}
@media only screen and (max-width: 400px) {
  .card-notice .wrap-content .big-title {
    font-size: 25px;
  }
}
.card-notice .wrap-content .descript {
  text-align: left;
  width: 75.5%;
  font-size: 14px;
  line-height: 1.57;
}
.card-notice .wrap-content .descript a {
  color: white;
}
@media only screen and (max-width: 1100px) {
  .card-notice .wrap-content .descript {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    font-size: 12px;
  }
}
.card-notice .wrap-content .clear {
  clear: both;
}

.wrapper {
  overflow: hidden;
}

.notice-area {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice-area .notice-container {
  text-align: justify;
  font-size: 14px;
  line-height: 1.71;
  color: #808080;
  max-width: 1040px;
  margin: 0 auto;
}
@media only screen and (max-width: 500px) {
  .notice-area .notice-container {
    font-size: 12px;
    line-height: 1.83;
  }
}
.notice-area .notice-container .title {
  font-weight: 600;
  line-height: 1.71;
}
.notice-area .notice-container .title-2 {
  margin-top: 30px;
}
.notice-area .notice-container p {
  margin-bottom: 10px;
}
.notice-area .notice-container ul {
  list-style: decimal;
}
.notice-area .notice-container ul.no-decimal {
  list-style: none;
  margin-bottom: 20px;
}
.notice-area .notice-container ul.no-decimal > li {
  margin-left: 0;
  padding-left: 0;
}
.notice-area .notice-container ul.no-decimal .notice-list-dot {
  margin-left: 0;
}
.notice-area .notice-container ul.noPadding {
  padding-bottom: 0;
}
.notice-area .notice-container ul li {
  margin-left: 25px;
  padding-left: 15px;
  margin-bottom: 3px;
}
@media only screen and (max-width: 500px) {
  .notice-area .notice-container ul li {
    margin-left: 22px;
    padding-left: 8px;
  }
}
.notice-area .notice-container ul li a {
  text-decoration: none;
}
.notice-area .notice-container ul li .dot-title {
  margin-bottom: 10px;
}
.notice-area .notice-container ul li .txt-default {
  color: #666666;
}
.notice-area .notice-container ul li .txt-red, .notice-area .notice-container ul li.txt-red {
  color: #E3002D;
}
.notice-area .notice-container ul li .txt-blue {
  color: #0032a0;
}
.notice-area .notice-container ul li .txt-gold {
  color: #ac8d33;
}
.notice-area .notice-container ul li .txt-gold-inline {
  position: relative;
  display: block;
  color: #ac8d33;
  margin-left: -20px;
  padding-left: 30px;
}
.notice-area .notice-container ul li .txt-gold-inline .abs-tag-title {
  position: absolute;
  left: 0;
  top: 0;
}
.notice-area .notice-container ul li .sp-txt {
  color: #f35f67;
}
.notice-area .notice-container ul li .red-example {
  display: block;
  color: #d50050;
}
.notice-area .notice-container ul li .under-line {
  text-decoration: underline;
}
.notice-area .notice-container ul li a {
  color: #808080;
  text-decoration: underline;
}
.notice-area .notice-container ul li .notice-list-dot {
  padding-left: 3px;
}
.notice-area .notice-container ul li .notice-list-dot .notice-list-dot {
  padding-left: 30px;
}
.notice-area .notice-container ul.notice-list-dot,
.notice-area .notice-container ul .notice-list-dot {
  list-style: disc;
  margin-top: 10px;
  margin-left: -40px;
  margin-bottom: 7px;
}
.notice-area .notice-container ul.notice-list-dot .notice-list-num,
.notice-area .notice-container ul .notice-list-dot .notice-list-num {
  padding-bottom: 10px;
}
.notice-area .notice-container ul.notice-list-dot.txt-red,
.notice-area .notice-container ul .notice-list-dot.txt-red {
  color: #e60012;
}
@media only screen and (max-width: 500px) {
  .notice-area .notice-container ul.notice-list-dot,
  .notice-area .notice-container ul .notice-list-dot {
    margin-left: -26px;
  }
}
.notice-area .notice-container ul .notice-list-custom {
  list-style: none;
  margin-left: -78px;
}
@media only screen and (max-width: 500px) {
  .notice-area .notice-container ul .notice-list-custom {
    margin-left: -52px;
  }
}
.notice-area .notice-container ul .notice-list-custom li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 500px) {
  .notice-area .notice-container ul .notice-list-custom li {
    gap: 11px;
  }
}
.notice-area .notice-container .list-small-title {
  padding-bottom: 5px;
}
.notice-area .notice-container .other-notice {
  padding-top: 10px;
  line-height: 26px;
  font-size: 14px;
  padding-bottom: 30px;
}
.notice-area .notice-container .notice-title {
  width: 87px;
  position: relative;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  color: #00a199;
  padding: 11px 33px 15px 0px;
}
.notice-area .notice-container .notice-blue-title {
  color: #036ea7;
  font-size: 16px;
  padding-bottom: 10px;
}
.notice-area .notice-container .sp-notice {
  line-height: 28px;
  margin-bottom: 20px;
}
.notice-area .notice-container .notice-tag-title {
  margin-bottom: 10px;
}
.notice-area .notice-container .notice-sub-title {
  padding-bottom: 10px;
}
.notice-area .notice-container .red-notice {
  font-size: 16px;
  color: #ed2626;
  line-height: 28px;
  padding-bottom: 10px;
}

.notice-link {
  display: block;
  color: #0032a0;
  text-decoration: underline !important;
}

/**************\
* 變數
\**************/
/**************\
* 通用
\**************/
a {
  cursor: pointer;
}

img {
  width: 100%;
}

.wrapper {
  background-color: #fff;
}

.section {
  position: relative;
}
.section > .container {
  position: relative;
  margin: 0 auto;
  padding: 60px 20px;
}
@media only screen and (max-width: 500px) {
  .section > .container {
    padding: 40px 20px;
  }
}

.section-title {
  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;
  width: 100%;
}
@media only screen and (min-width: 720px) {
  .section-title br {
    display: none;
  }
}
@media only screen and (max-width: 720px) {
  .section-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section-title .icon {
  width: 89px;
  margin-right: 2px;
}
@media only screen and (max-width: 720px) {
  .section-title .icon {
    width: 72px;
    margin-right: 0;
    margin-bottom: 4px;
  }
}
.section-title .text {
  font-size: 40px;
  font-weight: bold;
  line-height: 40px;
  color: #fff;
}
@media only screen and (max-width: 720px) {
  .section-title .text {
    font-size: 32px;
    line-height: 1.25;
    text-align: center;
  }
}

.section-sub-title {
  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;
  width: 100%;
  margin-top: 10px;
}
.section-sub-title .icon {
  width: 30px;
}
.section-sub-title .text {
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  color: #ffe100;
}
@media only screen and (max-width: 500px) {
  .section-sub-title .text {
    font-size: 18px;
    line-height: 1;
  }
}

.section-desc {
  width: 100%;
  max-width: 1009px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
}
.section-desc .highlight {
  color: #fde49c;
}
.section-desc .num {
  font-family: "Heboo", sans-serif;
}
@media only screen and (max-width: 500px) {
  .section-desc {
    max-width: 260px;
    font-size: 18px;
    line-height: 1.56;
  }
}

.section-sub-desc {
  width: 100%;
  max-width: 1009px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.71;
  color: #fde49c;
}
.section-sub-desc.white {
  color: #ffffff;
}
.section-sub-desc .yellow {
  color: #fde49c;
}
@media only screen and (max-width: 500px) {
  .section-sub-desc {
    font-size: 14px;
    line-height: 1.71;
  }
}

.text-blod {
  font-weight: 600;
}

body .blocker {
  z-index: 10100;
}

@-webkit-keyframes bounceRight {
  0%, to {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  50% {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
}

@keyframes bounceRight {
  0%, to {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  50% {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
}
/**************\
* Main
\**************/
@-webkit-keyframes searchLights {
  0% {
    left: -37.037037037%;
    top: 243.1610942249%;
  }
  45%, 100% {
    left: -46.2962962963%;
    top: -91.1854103343%;
  }
}
@keyframes searchLights {
  0% {
    left: -37.037037037%;
    top: 243.1610942249%;
  }
  45%, 100% {
    left: -46.2962962963%;
    top: -91.1854103343%;
  }
}
.section-kv .mobile {
  display: none;
}
@media only screen and (max-width: 500px) {
  .section-kv .mobile {
    display: block;
  }
}
.section-kv .desktop {
  display: block;
}
@media only screen and (max-width: 500px) {
  .section-kv .desktop {
    display: none;
  }
}
.section-kv {
  margin-top: 70px;
}
@media only screen and (max-width: 1400px) {
  .section-kv {
    margin-top: 50px;
  }
}
.section-kv .kv-title,
.section-kv .kv-subtitle,
.section-kv .kv-people {
  position: absolute;
}
.section-kv .kv-title {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
  width: 16.3194444444%;
  left: 65.0694444444%;
  top: 34.2105263158%;
}
@media only screen and (max-width: 500px) {
  .section-kv .kv-title {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
    width: 85.3125%;
    left: 8.4375%;
    top: 27.2727272727%;
  }
}
.section-kv .kv-subtitle {
  width: 40.625%;
  left: 29.5833333333%;
  top: 0%;
}
@media only screen and (max-width: 500px) {
  .section-kv .kv-subtitle {
    width: 78.125%;
    left: 11.5625%;
    top: 0%;
  }
}
.section-kv .kv-people {
  width: 42.3611111111%;
  left: 18.75%;
  top: 38.5964912281%;
}
@media only screen and (max-width: 500px) {
  .section-kv .kv-people {
    overflow: hidden;
    width: 114.0625%;
    left: 1.5625%;
    top: 56.3636363636%;
  }
}

/**************\
* mrt red/blue/green 共用設定
\**************/
.section-mrt-line {
  --color-mrt: #E3002D;
}
.section-mrt-line .title {
  font-size: 34px;
  font-weight: 500;
  color: #000000;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 500px) {
  .section-mrt-line .title {
    font-size: 27px;
    margin-bottom: 10px;
  }
}
.section-mrt-line .subtitle {
  font-size: 18px;
  color: #000;
  line-height: 32px;
  text-align: left;
}
@media only screen and (max-width: 500px) {
  .section-mrt-line .subtitle {
    font-size: 16px;
    line-height: 28px;
  }
}
.section-mrt-line .mrt-tag {
  position: relative;
  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;
  max-width: 135px;
  height: 35px;
  border-radius: 25px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: #ffffff;
  background-color: var(--color-mrt);
}
@media only screen and (max-width: 500px) {
  .section-mrt-line .mrt-tag {
    font-size: 16px;
  }
  .section-mrt-line .mrt-tag::after, .section-mrt-line .mrt-tag::before {
    display: none;
  }
}
.section-mrt-line .mrt-tag::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  border: #000 solid 4px;
  border-radius: 100%;
  left: -70px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-mrt-line .mrt-tag::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -9px;
  width: 34px;
  height: 10px;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background-image: radial-gradient(circle, var(--color-mrt) 2px, transparent 2.5px);
  background-size: 9px 9px;
  background-repeat: repeat-x;
  background-position: 0 center;
}
.section-mrt-line .section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 79px 0 79px 55px;
  border-left: solid 7px var(--color-mrt);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 1000px) {
  .section-mrt-line .section-content {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 860px) {
  .section-mrt-line .section-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
    max-width: 500px;
  }
}
@media only screen and (max-width: 500px) {
  .section-mrt-line .section-content {
    border: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.section-mrt-line .buttons {
  max-width: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}
@media only screen and (max-width: 500px) {
  .section-mrt-line .buttons {
    max-width: 180px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
    margin: 30px auto 0;
  }
}
.section-mrt-line .buttons .arrow {
  width: 18px;
  margin-left: 2px;
  -webkit-animation: bounceRight 0.8s infinite;
          animation: bounceRight 0.8s infinite;
}
@keyframes bounceRight {
  0%, to {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  50% {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
}
.section-mrt-line .buttons .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;
  min-width: 5vw;
  width: 45%;
  color: #999;
  border: 1px solid #999;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  line-height: 27px;
  padding: 3%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}
@media only screen and (max-width: 860px) {
  .section-mrt-line .buttons .btn {
    min-width: 200px;
    padding: 15px;
  }
}
@media only screen and (max-width: 500px) {
  .section-mrt-line .buttons .btn {
    min-width: 180px;
    font-size: 16px;
    padding: 10px;
  }
}
.section-mrt-line .buttons .icon-plus {
  width: 22px;
  height: 22px;
}
@media only screen and (max-width: 720px) {
  .section-mrt-line .buttons .icon-plus {
    width: 17px;
    height: 17px;
  }
}
.section-mrt-line .buttons .icon-plus .icon {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 22px;
  height: 22px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  position: relative;
}
.section-mrt-line .buttons .icon-plus .icon.close {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.section-mrt-line .buttons .icon-plus .icon::before {
  content: "";
  display: block;
  width: 22px;
  height: 0px;
  border-bottom: solid 1px #0362b7;
  position: absolute;
  bottom: 10.5px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.section-mrt-line .buttons .icon-plus .icon.close::before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-bottom: solid 1px #0362b7;
  position: absolute;
  bottom: 10.5px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.section-mrt-line .buttons .icon-plus .icon::after {
  content: "";
  display: block;
  width: 22px;
  height: 0px;
  border-bottom: solid 1px #0362b7;
  position: absolute;
  bottom: 10.5px;
}
@media only screen and (max-width: 720px) {
  .section-mrt-line .buttons .icon-plus .icon {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    width: 17px;
    height: 17px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    position: relative;
  }
  .section-mrt-line .buttons .icon-plus .icon.close {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .section-mrt-line .buttons .icon-plus .icon::before {
    content: "";
    display: block;
    width: 17px;
    height: 0px;
    border-bottom: solid 1px #0362b7;
    position: absolute;
    bottom: 8px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
  }
  .section-mrt-line .buttons .icon-plus .icon.close::before {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-bottom: solid 1px #0362b7;
    position: absolute;
    bottom: 8px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .section-mrt-line .buttons .icon-plus .icon::after {
    content: "";
    display: block;
    width: 17px;
    height: 0px;
    border-bottom: solid 1px #0362b7;
    position: absolute;
    bottom: 8px;
  }
}

/**************\
* red 蘋果在手，回饋到手。
\**************/
.section-red .section-content {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 860px) {
  .section-red .section-content .block-a {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .section-red .section-content .block-b {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 130px;
  }
  .section-red .section-content .notice-area {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media only screen and (max-width: 500px) {
  .section-red .section-content {
    padding: 50px 20px 0;
    width: 100%;
  }
  .section-red .section-content .block-b {
    margin-bottom: 30px;
  }
}
.section-red .notice-area {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 25px;
}
.section-red .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.section-red .block .people {
  width: 100%;
  min-width: 372px;
}
@media only screen and (max-width: 860px) {
  .section-red .block .people {
    min-width: auto;
    max-width: 372px;
  }
}
.section-red .block.block-a {
  width: 52%;
}
@media only screen and (max-width: 860px) {
  .section-red .block.block-a {
    width: 100%;
  }
}
.section-red .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #E3002D;
}
.section-red .info .info-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 18px;
  line-height: 26px;
}
@media only screen and (max-width: 500px) {
  .section-red .info .info-group {
    font-size: 16px;
  }
}
.section-red .info .info-number {
  margin-left: 10px;
}
.section-red .info .info-number .text-number {
  font-size: 66px;
}
@media only screen and (max-width: 500px) {
  .section-red .info .info-number .text-number {
    font-size: 59px;
  }
}
.section-red .info .info-number .text {
  font-size: 33px;
}
@media only screen and (max-width: 500px) {
  .section-red .info .info-number .text {
    font-size: 30px;
  }
}
.section-red .notice {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  padding-left: 20px;
}
.section-red .notice li {
  list-style: disc;
}
@media only screen and (max-width: 500px) {
  .section-red .notice {
    font-size: 12px;
  }
}
.section-red .buttons .btn.btn-red {
  color: #ffffff;
  background-color: #E3002D;
  border-color: #E3002D;
}
.section-red .buttons .btn.btn-blue {
  color: #ffffff;
  background-color: #0070BC;
  border-color: #0070BC;
  margin-left: 10px;
}
@media only screen and (max-width: 860px) {
  .section-red .buttons .btn.btn-blue {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1045px) {
  .section-red .notice-area .notice-container {
    padding-right: 45px;
  }
}
@media only screen and (max-width: 860px) {
  .section-red .notice-area .notice-container {
    padding-right: 0;
  }
}
.section-red .notice-area .notice-container .notice-title {
  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;
  min-width: 200px;
  color: #999;
  border: 1px solid #999;
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: bold;
  line-height: 27px;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}
@media only screen and (max-width: 500px) {
  .section-red .notice-area .notice-container .notice-title {
    margin: 0 auto 30px;
    min-width: 180px;
    font-size: 16px;
    padding: 10px;
  }
}
.section-red .notice-area .notice-container .notice-list-title {
  font-weight: bold;
}
.section-red .notice-area .notice-container ul li {
  margin-left: 17px;
}
.section-red .notice-area .notice-container .icon-plus {
  position: relative;
  top: -1px;
  margin-left: 10px;
  width: 12px;
  height: 12px;
  left: auto;
}
.section-red .notice-area .notice-container .icon-plus .icon {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  position: relative;
}
.section-red .notice-area .notice-container .icon-plus .icon.close {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.section-red .notice-area .notice-container .icon-plus .icon::before {
  content: "";
  display: block;
  width: 12px;
  height: 0px;
  border-bottom: solid 2px #87878f;
  position: absolute;
  bottom: 5px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.section-red .notice-area .notice-container .icon-plus .icon.close::before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-bottom: solid 2px #87878f;
  position: absolute;
  bottom: 5px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.section-red .notice-area .notice-container .icon-plus .icon::after {
  content: "";
  display: block;
  width: 12px;
  height: 0px;
  border-bottom: solid 2px #87878f;
  position: absolute;
  bottom: 5px;
}

/**************\
* blue 蘋果在手，回饋到手。
\**************/
.section-blue.section-mrt-line {
  --color-mrt: #0070BC;
}
.section-blue.section-mrt-line .title {
  margin-top: 25px;
}
.section-blue .section-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 0;
  border-left-color: var(--color-mrt);
}
@media only screen and (max-width: 1000px) {
  .section-blue .section-content {
    padding-right: 40px;
  }
}
@media only screen and (max-width: 500px) {
  .section-blue .section-content {
    border: none;
    padding: 30px 20px 50px;
  }
}
.section-blue .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -10px;
}
.section-blue .block-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 33px;
  margin-top: 10px;
}
@media only screen and (max-width: 860px) {
  .section-blue .block-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section-blue .block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 14px;
}
.section-blue .block .people {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-width: 372px;
}
.section-blue .block.block-a .people {
  max-width: 57px;
  margin-left: 37%;
}
@media only screen and (max-width: 500px) {
  .section-blue .block.block-a .people {
    max-width: 45px;
    margin-left: 44%;
  }
}
.section-blue .block.block-b .people {
  max-width: 212px;
  margin-left: 30%;
}
@media only screen and (max-width: 500px) {
  .section-blue .block.block-b .people {
    max-width: 168px;
    margin-left: 35%;
  }
}

/**************\
* green 蘋果在手，回饋到手。
\**************/
.section-green.section-mrt-line {
  --color-mrt: #008658;
}
.section-green.section-mrt-line .title {
  margin-top: 25px;
}
.section-green .section-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 0;
  padding-bottom: 150px;
  border-left-color: var(--color-mrt);
}
@media only screen and (max-width: 1000px) {
  .section-green .section-content {
    padding-right: 40px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 500px) {
  .section-green .section-content {
    border: none;
    padding: 50px 20px 120px;
  }
}
.section-green .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -10px;
}
.section-green .block-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 70px;
  margin-top: 10px;
}
@media only screen and (max-width: 860px) {
  .section-green .block-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section-green .block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 14px;
}
@media only screen and (max-width: 860px) {
  .section-green .block {
    gap: 8px;
  }
}
.section-green .block .icon {
  width: 230px;
  margin: 0 auto;
}
.section-green .block .block-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 30px;
  margin: 0 auto;
}
.section-green .block .block-title .tag {
  min-width: 70px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  background-color: #E3002D;
  border-radius: 30px;
  margin-right: 10px;
}
@media only screen and (max-width: 500px) {
  .section-green .block .block-title .tag {
    font-size: 14px;
    margin-right: 6px;
  }
}
.section-green .block .block-title .text {
  font-size: 26px;
}
@media only screen and (max-width: 500px) {
  .section-green .block .block-title .text {
    font-size: 21px;
  }
}
.section-green .block.block-b:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #EAE8EF;
  left: -35px;
}
@media only screen and (max-width: 860px) {
  .section-green .block.block-b:before {
    display: none;
  }
}
.section-green .block.block-b .notice {
  margin-top: 34px;
}
.section-green .block.block-b .buttons {
  margin-top: 126px;
}
.section-green .block.block-c {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-green .block.block-c .buttons {
  width: 100%;
  max-width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-green .block.block-c .buttons .btn.btn-green {
  min-width: 5vw;
  max-width: 202px;
  height: 55px;
}
@media only screen and (max-width: 1000px) {
  .section-green .block.block-c .buttons .btn.btn-green {
    min-width: 180px;
  }
}
@media only screen and (max-width: 1000px) {
  .section-green .block.block-b .buttons {
    margin-top: 126px;
  }
}
@media only screen and (max-width: 957px) {
  .section-green .block.block-a .block-title {
    margin-top: 15px;
  }
  .section-green .block.block-a .subtitle {
    margin-top: 15px;
  }
  .section-green .block.block-b .buttons {
    margin-top: 102px;
  }
}
@media only screen and (max-width: 930px) {
  .section-green .block.block-b .buttons {
    margin-top: 78px;
  }
}
@media only screen and (max-width: 892px) {
  .section-green .block.block-a .info {
    margin-top: 32px;
  }
}
@media only screen and (max-width: 860px) {
  .section-green .block.block-a .block-title, .section-green .block.block-b .block-title {
    margin-top: 15px;
  }
  .section-green .block.block-a .subtitle, .section-green .block.block-b .subtitle {
    margin-top: 10px;
  }
  .section-green .block.block-a .notice, .section-green .block.block-b .notice {
    margin-top: 8px;
  }
  .section-green .block.block-a .buttons, .section-green .block.block-b .buttons {
    margin-top: 26px;
  }
  .section-green .block.block-a .info {
    margin-top: 0;
  }
}
.section-green .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  color: var(--color-mrt);
}
.section-green .info .info-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 18px;
  line-height: 26px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media only screen and (max-width: 500px) {
  .section-green .info .info-group {
    font-size: 16px;
  }
}
.section-green .info .info-number {
  margin-left: 10px;
}
.section-green .info .info-number .text-number {
  font-size: 66px;
}
@media only screen and (max-width: 500px) {
  .section-green .info .info-number .text-number {
    font-size: 59px;
  }
}
.section-green .info .info-number .text {
  font-size: 33px;
}
@media only screen and (max-width: 500px) {
  .section-green .info .info-number .text {
    font-size: 29px;
  }
}
.section-green .note {
  margin: 0 auto;
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  text-align: center;
}
@media only screen and (max-width: 500px) {
  .section-green .note {
    font-size: 13px;
  }
}
.section-green .notice {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  padding-left: 20px;
  margin-top: 10px;
}
@media only screen and (max-width: 500px) {
  .section-green .notice {
    font-size: 13px;
  }
}
.section-green .notice li {
  list-style: disc;
}
@media only screen and (max-width: 860px) {
  .section-green .buttons {
    margin: 0 auto;
  }
}
.section-green .buttons .btn.btn-green {
  color: #ffffff;
  background-color: var(--color-mrt);
  border-color: var(--color-mrt);
}

/**************\
* 快速交通卡，設定教學。 
* Apple Pay綁定，設定教學。 
共用
\**************/
.section-transportation, .section-applepay-binding {
  position: relative;
  background-color: #F6F6F8;
}
.section-transportation .section-title, .section-applepay-binding .section-title {
  font-size: 34px;
  color: #000000;
  font-weight: 500;
}
@media only screen and (max-width: 500px) {
  .section-transportation .section-title, .section-applepay-binding .section-title {
    font-size: 25px;
  }
}
.section-transportation .section-sub-title, .section-applepay-binding .section-sub-title {
  font-size: 20px;
  margin-bottom: 18px;
}
@media only screen and (max-width: 500px) {
  .section-transportation .section-sub-title, .section-applepay-binding .section-sub-title {
    margin-top: 10px;
    font-size: 18px;
  }
}
.section-transportation .section-sub-title .icon, .section-applepay-binding .section-sub-title .icon {
  width: 23px;
}
.section-transportation .section-sub-title .text, .section-applepay-binding .section-sub-title .text {
  margin: 0 8px;
  color: #C1892C;
  font-weight: normal;
}
.section-transportation .app-block, .section-applepay-binding .app-block {
  position: relative;
  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;
  width: 100%;
  max-width: 950px;
  margin: 30px auto 0;
  padding: 30px 0;
}
@media only screen and (max-width: 1280px) {
  .section-transportation .app-block, .section-applepay-binding .app-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 24px auto 0;
    padding: 0 0;
    margin-top: 0;
  }
}
@media only screen and (max-width: 1050px) {
  .section-transportation .app-block, .section-applepay-binding .app-block {
    max-width: none;
    width: 87%;
  }
}
@media only screen and (max-width: 768px) {
  .section-transportation .app-block, .section-applepay-binding .app-block {
    width: 100%;
  }
}
.section-transportation .app-block .bg, .section-applepay-binding .app-block .bg {
  position: absolute;
  top: 0;
  width: 600px;
  z-index: 0;
}
@media only screen and (max-width: 1280px) {
  .section-transportation .app-block .bg, .section-applepay-binding .app-block .bg {
    display: none;
  }
}
.section-transportation .app-block .info, .section-applepay-binding .app-block .info {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 320px;
  margin: auto 2.6388888889vw auto 9.7222222222vw;
}
@media only screen and (min-width: 1440px) {
  .section-transportation .app-block .info, .section-applepay-binding .app-block .info {
    margin: auto 38px auto 140px;
  }
}
@media only screen and (max-width: 1280px) {
  .section-transportation .app-block .info, .section-applepay-binding .app-block .info {
    margin: 0 auto;
  }
}
.section-transportation .app-block .info .qr, .section-applepay-binding .app-block .info .qr {
  width: 100%;
  max-width: 189px;
  margin: 0 auto;
}
.section-transportation .app-block .info .title, .section-applepay-binding .app-block .info .title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
  color: #C1892C;
}
@media only screen and (max-width: 500px) {
  .section-transportation .app-block .info .title, .section-applepay-binding .app-block .info .title {
    font-size: 22px;
    line-height: 1.36;
  }
}
.section-transportation .app-block .flow, .section-applepay-binding .app-block .flow {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1280px) {
  .section-transportation .app-block .flow, .section-applepay-binding .app-block .flow {
    margin: 32px auto 0;
  }
}
@media only screen and (max-width: 768px) {
  .section-transportation .app-block .flow, .section-applepay-binding .app-block .flow {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 32px auto 0;
  }
}
@media only screen and (max-width: 500px) {
  .section-transportation .app-block .flow, .section-applepay-binding .app-block .flow {
    margin-top: 16px;
  }
}
.section-transportation .app-block .flow .flow-slider, .section-applepay-binding .app-block .flow .flow-slider {
  position: relative;
  margin-right: 30px;
  width: 300px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media only screen and (max-width: 768px) {
  .section-transportation .app-block .flow .flow-slider, .section-applepay-binding .app-block .flow .flow-slider {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    margin: 16px auto 0;
    width: 480px;
  }
}
@media only screen and (max-width: 500px) {
  .section-transportation .app-block .flow .flow-slider, .section-applepay-binding .app-block .flow .flow-slider {
    width: 260px;
  }
}
.section-transportation .app-block .flow .flow-nav-container, .section-applepay-binding .app-block .flow .flow-nav-container {
  position: absolute;
  top: 47%;
  left: 50%;
  width: calc(100% + 100px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .section-transportation .app-block .flow .flow-nav-container, .section-applepay-binding .app-block .flow .flow-nav-container {
    width: 100%;
    max-width: 400px;
  }
}
@media only screen and (max-width: 500px) {
  .section-transportation .app-block .flow .flow-nav-container, .section-applepay-binding .app-block .flow .flow-nav-container {
    width: calc(100% + 40px);
    max-width: 300px;
  }
}
.section-transportation .app-block .flow .flow-nav-container .owl-prev,
.section-transportation .app-block .flow .flow-nav-container .owl-next, .section-applepay-binding .app-block .flow .flow-nav-container .owl-prev,
.section-applepay-binding .app-block .flow .flow-nav-container .owl-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: auto;
}
.section-transportation .app-block .flow .flow-nav-container .owl-prev .owl-nav-icon,
.section-transportation .app-block .flow .flow-nav-container .owl-next .owl-nav-icon, .section-applepay-binding .app-block .flow .flow-nav-container .owl-prev .owl-nav-icon,
.section-applepay-binding .app-block .flow .flow-nav-container .owl-next .owl-nav-icon {
  width: 100%;
  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;
}
.section-transportation .app-block .flow .flow-nav-container .owl-prev .owl-nav-icon::before,
.section-transportation .app-block .flow .flow-nav-container .owl-next .owl-nav-icon::before, .section-applepay-binding .app-block .flow .flow-nav-container .owl-prev .owl-nav-icon::before,
.section-applepay-binding .app-block .flow .flow-nav-container .owl-next .owl-nav-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  width: 14px;
  height: 14px;
  border-bottom: 3px solid #000;
  border-left: 3px solid #000;
}
.section-transportation .app-block .flow .flow-nav-container .owl-prev .owl-nav-icon::before, .section-applepay-binding .app-block .flow .flow-nav-container .owl-prev .owl-nav-icon::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.section-transportation .app-block .flow .flow-nav-container .owl-next .owl-nav-icon::before, .section-applepay-binding .app-block .flow .flow-nav-container .owl-next .owl-nav-icon::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.section-transportation .app-block .flow .flow-images, .section-applepay-binding .app-block .flow .flow-images {
  margin-right: 30px;
  width: 300px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media only screen and (max-width: 768px) {
  .section-transportation .app-block .flow .flow-images, .section-applepay-binding .app-block .flow .flow-images {
    margin: 16px auto 0;
    width: 480px;
  }
}
@media only screen and (max-width: 500px) {
  .section-transportation .app-block .flow .flow-images, .section-applepay-binding .app-block .flow .flow-images {
    margin: 16px auto 0;
    width: 260px;
  }
}
@media only screen and (min-width: 769px) {
  .section-transportation .app-block .flow .flow-images .owl-dots, .section-applepay-binding .app-block .flow .flow-images .owl-dots {
    margin-top: 12px;
  }
}
@media only screen and (min-width: 769px) {
  .section-transportation .app-block .flow .flow-images.owl-carousel .owl-dots.disabled, .section-applepay-binding .app-block .flow .flow-images.owl-carousel .owl-dots.disabled {
    display: block;
  }
}
.section-transportation .app-block .flow .flow-images .item .step, .section-applepay-binding .app-block .flow .flow-images .item .step {
  margin-bottom: 0;
  padding-top: 1px;
  padding-left: 38px;
  margin-top: 16px;
  min-height: 28px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  color: #C1892C;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.section-transportation .app-block .flow .flow-images .item .step::before, .section-applepay-binding .app-block .flow .flow-images .item .step::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
  font-size: 16px;
  line-height: 30px;
}
@media only screen and (max-width: 768px) {
  .section-transportation .app-block .flow .flow-images .item .step::before, .section-applepay-binding .app-block .flow .flow-images .item .step::before {
    width: 26px;
    height: 26px;
    position: relative;
    margin-right: 8px;
    font-size: 14px;
    line-height: 25px;
  }
}
@media only screen and (min-width: 768px) {
  .section-transportation .app-block .flow .flow-images .item .step, .section-applepay-binding .app-block .flow .flow-images .item .step {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .section-transportation .app-block .flow .flow-images .item .step, .section-applepay-binding .app-block .flow .flow-images .item .step {
    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;
    padding-left: 0;
  }
}
@media only screen and (max-width: 500px) {
  .section-transportation .app-block .flow .flow-images .item .step, .section-applepay-binding .app-block .flow .flow-images .item .step {
    line-height: 1.4;
  }
}
@media only screen and (max-width: 768px) {
  .section-transportation .app-block .flow .flow-images .item img, .section-applepay-binding .app-block .flow .flow-images .item img {
    width: 330px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 500px) {
  .section-transportation .app-block .flow .flow-images .item img, .section-applepay-binding .app-block .flow .flow-images .item img {
    width: 243px;
    margin: 0 auto;
  }
}
.section-transportation .app-block .flow .flow-steps, .section-applepay-binding .app-block .flow .flow-steps {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .section-transportation .app-block .flow .flow-steps, .section-applepay-binding .app-block .flow .flow-steps {
    position: relative;
    top: 47%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding: 0 8px;
  }
}
@media only screen and (max-width: 768px) {
  .section-transportation .app-block .flow .flow-steps .step, .section-applepay-binding .app-block .flow .flow-steps .step {
    display: none;
  }
}
.section-transportation .app-block .flow .step-title, .section-applepay-binding .app-block .flow .step-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
  color: #C1892C;
}
@media only screen and (max-width: 768px) {
  .section-transportation .app-block .flow .step-title, .section-applepay-binding .app-block .flow .step-title {
    font-size: 22px;
    line-height: 1.36;
    text-align: center;
  }
}
.section-transportation .app-block .flow .step-title-desc, .section-applepay-binding .app-block .flow .step-title-desc {
  margin-top: 4px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.9;
  color: #000;
}
@media only screen and (max-width: 768px) {
  .section-transportation .app-block .flow .step-title-desc, .section-applepay-binding .app-block .flow .step-title-desc {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }
}
.section-transportation .app-block .flow .step, .section-applepay-binding .app-block .flow .step {
  position: relative;
  margin-bottom: 20px;
  padding-left: 40px;
  min-height: 30px;
  font-size: 18px;
  line-height: 1.67;
  color: #000;
  cursor: pointer;
}
.section-transportation .app-block .flow .step::before, .section-applepay-binding .app-block .flow .step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  color: #000000;
  background: transparent;
  border: solid 1px #000000;
  border-radius: 50%;
  -webkit-transition: background 0.3s linear;
  transition: background 0.3s linear;
}
.section-transportation .app-block .flow .step.active, .section-applepay-binding .app-block .flow .step.active {
  font-weight: 500;
  color: #C1892C;
}
.section-transportation .app-block .flow .step.active::before, .section-applepay-binding .app-block .flow .step.active::before {
  background-color: #C1892C;
  color: #fff;
  border-color: #C1892C;
}
.section-transportation .app-block .flow .step.step-1::before, .section-applepay-binding .app-block .flow .step.step-1::before {
  content: "1";
}
.section-transportation .app-block .flow .step.step-2::before, .section-applepay-binding .app-block .flow .step.step-2::before {
  content: "2";
}
.section-transportation .app-block .flow .step.step-3::before, .section-applepay-binding .app-block .flow .step.step-3::before {
  content: "3";
}
.section-transportation .app-block .flow .step.step-4::before, .section-applepay-binding .app-block .flow .step.step-4::before {
  content: "4";
}
.section-transportation .app-block .flow .step.step-5::before, .section-applepay-binding .app-block .flow .step.step-5::before {
  content: "5";
}
.section-transportation .app-block .flow .step.step-6::before, .section-applepay-binding .app-block .flow .step.step-6::before {
  content: "6";
}
.section-transportation .app-block .flow .step.step-7::before, .section-applepay-binding .app-block .flow .step.step-7::before {
  content: "7";
}
.section-transportation .app-block .flow.flow-register .flow-steps .step.step-1, .section-applepay-binding .app-block .flow.flow-register .flow-steps .step.step-1 {
  margin-top: 16px;
}
.section-transportation .app-block .flow.flow-use .flow-steps .step.step-1, .section-applepay-binding .app-block .flow.flow-use .flow-steps .step.step-1 {
  margin-top: 24px;
}

.section-transportation .bg-icons {
  position: absolute;
}
@media only screen and (max-width: 1024px) {
  .section-transportation .bg-icons {
    display: none;
  }
}
.section-transportation .bg-people {
  position: absolute;
}
@media only screen and (max-width: 1130px) {
  .section-transportation .bg-people {
    display: none;
  }
}

/**************\
* 快速交通卡，設定教學。  單獨設定
\**************/
.section-transportation .bg-icons {
  width: 100%;
  height: 100%;
  position: absolute;
}
@media only screen and (max-width: 1024px) {
  .section-transportation .bg-icons {
    display: none;
  }
}
.section-transportation .bg-icons .icon {
  position: absolute;
}
.section-transportation .bg-icons .icon-1 {
  width: 126px;
  left: 0;
  top: 71px;
}
.section-transportation .bg-icons .icon-2 {
  width: 92px;
  left: 66px;
  bottom: 137px;
}
.section-transportation .bg-icons .icon-3 {
  width: 141px;
  top: 146px;
  right: 0;
}
.section-transportation .bg-icons .icon-4 {
  width: 160px;
  right: 185px;
  bottom: 7px;
}
.section-transportation .bg-people {
  position: absolute;
  width: 246px;
  right: 64px;
  bottom: 0;
}
@media only screen and (max-width: 1280px) {
  .section-transportation .bg-people {
    width: 230px;
    right: 10px;
  }
}
@media only screen and (max-width: 1130px) {
  .section-transportation .bg-people {
    display: none;
  }
}

/**************\
* Apple Pay綁定，設定教學。 單獨設定
\**************/
.section-applepay-binding {
  position: relative;
  background-color: #ffffff;
}
.section-applepay-binding .bg-vector {
  position: absolute;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 500px) {
  .section-applepay-binding .bg-vector {
    display: none;
  }
}
.section-applepay-binding .bg-vector .img-vector {
  width: 80px;
  height: 40px;
}
.section-applepay-binding .bg-icons {
  width: 100%;
  height: 100%;
  position: absolute;
}
@media only screen and (max-width: 1024px) {
  .section-applepay-binding .bg-icons {
    display: none;
  }
}
.section-applepay-binding .bg-icons .icon {
  position: absolute;
}
.section-applepay-binding .bg-icons .icon-1 {
  width: 21px;
  left: 43px;
  top: 95px;
}
.section-applepay-binding .bg-icons .icon-2 {
  width: 158px;
  left: 0;
  bottom: 270px;
}
.section-applepay-binding .bg-icons .icon-3 {
  width: 70px;
  top: 80px;
  right: 154px;
}
.section-applepay-binding .bg-icons .icon-4 {
  width: 127px;
  right: 0;
  bottom: 70px;
}
.section-applepay-binding .app-tab-group {
  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;
  height: 42px;
  margin: 37px auto 0;
}
.section-applepay-binding .app-tab-group .mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .section-applepay-binding .app-tab-group {
    width: 100%;
  }
  .section-applepay-binding .app-tab-group .desktop {
    display: none;
  }
  .section-applepay-binding .app-tab-group .mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .section-applepay-binding .app-tab-group .app-tab {
    text-align: center;
    line-height: 1.2;
    font-size: 20px;
    padding: 0 3px;
  }
}
@media only screen and (max-width: 768px) {
  .section-applepay-binding .app-tab-group {
    margin-top: 28px;
  }
}
.section-applepay-binding .app-tab-group .app-tab {
  position: relative;
  cursor: pointer;
  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;
  width: 145px;
  height: 100%;
  color: #999999;
  font-size: 20px;
  font-weight: 500;
  padding-top: 5px;
  border-bottom: 4px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.section-applepay-binding .app-tab-group .app-tab:first-child::after, .section-applepay-binding .app-tab-group .app-tab.active-bg::after, .section-applepay-binding .app-tab-group .app-tab.active-bg + .section-tab::after, .section-applepay-binding .app-tab-group .app-tab:hover::after, .section-applepay-binding .app-tab-group .app-tab:hover + .section-tab::after {
  display: none;
}
.section-applepay-binding .app-tab-group .app-tab.active-bg, .section-applepay-binding .app-tab-group .app-tab:hover {
  color: #C1892C;
  background-color: #F3E7D5;
  border-bottom-color: #C1892C;
  border-left: none;
}
@media only screen and (max-width: 500px) {
  .section-applepay-binding .app-tab-group .app-tab {
    width: 130px;
    font-size: 18px;
    text-align: center;
    line-height: 20px;
    padding: 0 15px;
  }
}

.mrt {
  position: relative;
  width: 100%;
  padding-top: 95px;
  padding-bottom: 12px;
  overflow: hidden;
  margin-bottom: -12px;
  margin-top: -91px;
  z-index: 1;
}
@media only screen and (max-width: 500px) {
  .mrt {
    padding-top: 46px;
  }
}
.mrt-track {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  height: 7px;
  overflow: visible;
  background: -webkit-gradient(linear, left top, right top, from(#E3002D), color-stop(20%, #E3002D), color-stop(20%, #0070BC), color-stop(40%, #0070BC), color-stop(40%, #008658), color-stop(60%, #008658), color-stop(60%, #F8B61C), color-stop(80%, #F8B61C), color-stop(80%, #C1892C), to(#C1892C));
  background: linear-gradient(to right, #E3002D 0%, #E3002D 20%, #0070BC 20%, #0070BC 40%, #008658 40%, #008658 60%, #F8B61C 60%, #F8B61C 80%, #C1892C 80%, #C1892C 100%);
}
@media only screen and (max-width: 768px) {
  .mrt-track {
    height: 5px;
  }
}
.mrt-track .mrt-dot {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 22px;
  height: 22px;
  background-color: #ffffff;
  border: #000000 solid 4px;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .mrt-track .mrt-dot {
    width: 18px;
    height: 18px;
  }
}
.mrt-track .mrt-dot:nth-child(1) {
  left: 20%;
}
.mrt-track .mrt-dot:nth-child(2) {
  left: 40%;
}
.mrt-track .mrt-dot:nth-child(3) {
  left: 60%;
}
.mrt-track .mrt-dot:nth-child(4) {
  left: 80%;
}
.mrt-cart {
  position: absolute;
  bottom: -21px;
  left: 100%;
  z-index: 1;
  -webkit-animation: mrt-cart-run var(--mrt-duration, 15s) linear infinite;
          animation: mrt-cart-run var(--mrt-duration, 15s) linear infinite;
}
@media only screen and (max-width: 1000px) {
  .mrt-cart {
    bottom: -11px;
  }
}
@media only screen and (max-width: 768px) {
  .mrt-cart {
    bottom: -13px;
  }
}
@media only screen and (max-width: 500px) {
  .mrt-cart {
    bottom: -1px;
  }
}
.mrt-cart img {
  display: block;
  height: 80px;
  width: auto;
}
@media only screen and (max-width: 1000px) {
  .mrt-cart img {
    height: 60px;
  }
}
@media only screen and (max-width: 500px) {
  .mrt-cart img {
    height: 36px;
  }
}

@-webkit-keyframes mrt-cart-run {
  0% {
    left: 100%;
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
  }
  100% {
    left: 0;
    -webkit-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%);
  }
}

@keyframes mrt-cart-run {
  0% {
    left: 100%;
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
  }
  100% {
    left: 0;
    -webkit-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%);
  }
}
.owl-dots .owl-dot {
  outline: none;
}

.owl-theme .owl-dots .owl-dot span {
  background: none;
  border: #000000 1px solid;
  margin: 5px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #000000;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 15px;
}