@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.ctbc-antiFraud {
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
}
.ctbc-antiFraud .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.ctbc-antiFraud .animated.infinite {
  animation-iteration-count: infinite;
}
.ctbc-antiFraud .animated.hinge {
  animation-duration: 2s;
}
.ctbc-antiFraud .animated.flipOutX,
.ctbc-antiFraud .animated.flipOutY,
.ctbc-antiFraud .animated.bounceIn,
.ctbc-antiFraud .animated.bounceOut {
  animation-duration: .75s;
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.ctbc-antiFraud .bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.ctbc-antiFraud .flash {
  animation-name: flash;
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.ctbc-antiFraud .pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.ctbc-antiFraud .rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.ctbc-antiFraud .shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.ctbc-antiFraud .headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.ctbc-antiFraud .swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.ctbc-antiFraud .tada {
  animation-name: tada;
}
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.ctbc-antiFraud .wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.ctbc-antiFraud .jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.ctbc-antiFraud .bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.ctbc-antiFraud .bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.ctbc-antiFraud .bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.ctbc-antiFraud .bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.ctbc-antiFraud .bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.ctbc-antiFraud .bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.ctbc-antiFraud .bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.ctbc-antiFraud .bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.ctbc-antiFraud .bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.ctbc-antiFraud .bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.ctbc-antiFraud .fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-antiFraud .fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-antiFraud .fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-antiFraud .fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-antiFraud .fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-antiFraud .fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-antiFraud .fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-antiFraud .fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-antiFraud .fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.ctbc-antiFraud .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.ctbc-antiFraud .fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.ctbc-antiFraud .fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.ctbc-antiFraud .fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.ctbc-antiFraud .fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.ctbc-antiFraud .fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.ctbc-antiFraud .fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.ctbc-antiFraud .fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.ctbc-antiFraud .fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.ctbc-antiFraud .animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.ctbc-antiFraud .flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.ctbc-antiFraud .flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.ctbc-antiFraud .flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.ctbc-antiFraud .flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.ctbc-antiFraud .lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.ctbc-antiFraud .lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.ctbc-antiFraud .rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.ctbc-antiFraud .rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.ctbc-antiFraud .rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.ctbc-antiFraud .rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.ctbc-antiFraud .rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.ctbc-antiFraud .rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.ctbc-antiFraud .rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.ctbc-antiFraud .rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.ctbc-antiFraud .rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.ctbc-antiFraud .rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.ctbc-antiFraud .hinge {
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.ctbc-antiFraud .jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-antiFraud .rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.ctbc-antiFraud .rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.ctbc-antiFraud .zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.ctbc-antiFraud .zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.ctbc-antiFraud .zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.ctbc-antiFraud .zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.ctbc-antiFraud .zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.ctbc-antiFraud .zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.ctbc-antiFraud .zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.ctbc-antiFraud .zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.ctbc-antiFraud .zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.ctbc-antiFraud .zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.ctbc-antiFraud .slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.ctbc-antiFraud .slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.ctbc-antiFraud .slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.ctbc-antiFraud .slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.ctbc-antiFraud .slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.ctbc-antiFraud .slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.ctbc-antiFraud .slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.ctbc-antiFraud .slideOutUp {
  animation-name: slideOutUp;
}

/**
 * Swiper 9.2.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 17, 2023
 */
/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #666;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  /*ADD_HOST*/
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification,
swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.swiper-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  display: block;
  border: 0;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: none;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #ffc600;
  opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  width: 72px;
  height: 72px;
  margin-top: -36px;
  border-radius: 0;
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 100;
}
.swiper-button-prev:before, .swiper-button-prev:after,
.swiper-button-next:before,
.swiper-button-next:after {
  display: none;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 1;
  filter: grayscale(1);
}
.swiper-button-prev:active,
.swiper-button-next:active {
  opacity: .8;
}
@media (hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: .8;
  }
}

.swiper-button-prev {
  background-image: url(../images/swiper-prev.png);
  left: 0;
}

.swiper-button-next {
  background-image: url(../images/swiper-next.png);
  right: 0;
}

html {
  min-width: 100%;
}

.ctbc-antiFraud {
  font: 1em/1.6 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  min-width: 320px;
  color: #333;
  -webkit-text-size-adjust: 100%;
  image-rendering: -webkit-optimize-contrast;
  background-color: #e8f8f5;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.ctbc-antiFraud * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ctbc-antiFraud a {
  outline: none;
  behavior: expression(this.onFocus=this.blur());
  -moz-transition: color, opacity, background-color 0.5s ease;
  -o-transition: color, opacity, background-color 0.5s ease;
  -webkit-transition: color, opacity, background-color 0.5s ease;
  transition: color, opacity, background-color 0.5s ease;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
.ctbc-antiFraud :focus {
  outline: none;
}
.ctbc-antiFraud a:focus,
.ctbc-antiFraud a:active,
.ctbc-antiFraud a:hover {
  outline: 0;
  -moz-outline-style: none;
}
.ctbc-antiFraud img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  -moz-user-select: none;
  -webkit-user-select: none;
}
.ctbc-antiFraud table {
  border-spacing: 0;
  border-collapse: collapse;
}
.ctbc-antiFraud p {
  margin: 0;
}
.ctbc-antiFraud strong {
  font-weight: 700;
}
.ctbc-antiFraud h1,
.ctbc-antiFraud h2,
.ctbc-antiFraud h3,
.ctbc-antiFraud h4,
.ctbc-antiFraud h5,
.ctbc-antiFraud h6 {
  margin: 0;
  padding: 0;
}
.ctbc-antiFraud textarea,
.ctbc-antiFraud select,
.ctbc-antiFraud input[type="text"],
.ctbc-antiFraud input[type='number'],
.ctbc-antiFraud input[type="button"],
.ctbc-antiFraud input[type="search"],
.ctbc-antiFraud input[type="submit"],
.ctbc-antiFraud button,
.ctbc-antiFraud input[type="radio"] {
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 16px;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.ctbc-antiFraud textarea:focus,
.ctbc-antiFraud select:focus,
.ctbc-antiFraud input[type="text"]:focus,
.ctbc-antiFraud input[type='number']:focus,
.ctbc-antiFraud input[type="button"]:focus,
.ctbc-antiFraud input[type="search"]:focus,
.ctbc-antiFraud input[type="submit"]:focus,
.ctbc-antiFraud button:focus,
.ctbc-antiFraud input[type="radio"]:focus {
  outline: 0;
}
.ctbc-antiFraud input::-webkit-outer-spin-button,
.ctbc-antiFraud input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ctbc-antiFraud input[type=number] {
  -moz-appearance: textfield !important;
}
.ctbc-antiFraud .container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 10px;
  position: relative;
}
.ctbc-antiFraud .lg-view {
  display: block;
}
.ctbc-antiFraud .sm-view {
  display: none;
}
.ctbc-antiFraud .in-view {
  opacity: 0;
}
.ctbc-antiFraud .in-view.animated {
  opacity: 1;
}
.ctbc-antiFraud .site-content {
  position: relative;
}
.ctbc-antiFraud .post-iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}
.ctbc-antiFraud .post-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
  .ctbc-antiFraud .post-iframe {
    padding-top: 0;
  }
}
.ctbc-antiFraud .floating {
  animation-name: floating;
  animation-duration: .8s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.36, 0.45, 0.65, 0.55);
}
@keyframes floating {
  from {
    transform: translate(0, 0);
  }
  60% {
    transform: translate(0, 10px);
  }
  to {
    transform: translate(0, 0);
  }
}
.ctbc-antiFraud .icon {
  width: 24px;
  height: 24px;
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (max-width: 1023px) {
  .ctbc-antiFraud .lg-view {
    display: none;
  }
  .ctbc-antiFraud .sm-view {
    display: block;
  }
}
.ctbc-antiFraud .site-header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #007c7d;
  height: 90px;
  width: 100%;
  z-index: 3;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.ctbc-antiFraud .site-header .container {
  max-width: 1280px;
}
.ctbc-antiFraud .site-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ctbc-antiFraud .site-header li {
  position: relative;
}
.ctbc-antiFraud .site-header a {
  text-decoration: none;
}
.ctbc-antiFraud .site-header .logo {
  position: absolute;
  top: 22px;
  left: 35px;
  width: 175px;
  height: 45px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/logo.png);
  font-size: 0;
  z-index: 10;
}
.ctbc-antiFraud .header-sticky {
  padding-top: 90px;
}

@media (max-width: 1023px) {
  .ctbc-antiFraud .header-sticky {
    padding-top: 56px;
  }
  .ctbc-antiFraud .site-header {
    top: 0;
    left: 0;
    height: 56px;
    width: 100%;
    border-radius: 0;
  }
  .ctbc-antiFraud .site-header .logo {
    top: 8px;
    left: 15px;
    width: 156px;
    height: 40px;
  }
}
.ctbc-antiFraud .site-footer {
  position: relative;
  background-color: #007c7d;
  color: #fff;
  text-align: center;
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.ctbc-antiFraud .site-footer .container {
  padding-top: 15px;
  padding-bottom: 15px;
}
.ctbc-antiFraud .site-footer p {
  font-size: 20px;
  line-height: 38px;
}
.ctbc-antiFraud .side-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 3;
}
.ctbc-antiFraud .side-sticky.is-view .btn-top {
  display: block;
}
.ctbc-antiFraud .side-sticky.change-bottom {
  position: absolute;
}
.ctbc-antiFraud .side-sticky a {
  display: block;
  cursor: pointer;
}
.ctbc-antiFraud .side-sticky .btn-cta {
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  width: 164px;
  height: 164px;
  margin: 0 auto;
  padding: 0;
}
.ctbc-antiFraud .side-sticky .btn-top {
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  width: 90px;
  height: 90px;
  display: none;
  margin: 0 auto;
  margin-top: 10px;
  padding: 0;
}

@media (max-width: 1023px) {
  .ctbc-antiFraud .site-footer .container {
    max-width: 540px;
  }
  .ctbc-antiFraud .site-footer span {
    display: inline-block;
  }
  .ctbc-antiFraud .site-footer .mobile-hide {
    display: none;
  }
  .ctbc-antiFraud .site-footer p {
    font-size: 15px;
    line-height: 24px;
  }
  .ctbc-antiFraud .side-sticky {
    bottom: 20px;
    right: 10px;
  }
  .ctbc-antiFraud .side-sticky.change-bottom {
    bottom: -23px;
  }
  .ctbc-antiFraud .side-sticky .btn-cta {
    width: 82px;
    height: 82px;
  }
  .ctbc-antiFraud .side-sticky .btn-top {
    width: 45px;
    height: 45px;
    padding: 0;
  }
}
.ctbc-antiFraud .index-section {
  position: relative;
  z-index: 0;
  font-size: 24px;
  line-height: 32px;
  color: #333;
}
.ctbc-antiFraud .index-section .section-anchor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ctbc-antiFraud .index-section .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ctbc-antiFraud .index-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  pointer-events: none;
}
.ctbc-antiFraud .index-section .container {
  max-width: 1280px;
  padding: 0 10px;
}
.ctbc-antiFraud .index-section p {
  font-size: 24px;
  line-height: 32px;
}
.ctbc-antiFraud .index-section p + p {
  margin-top: 32px;
}
.ctbc-antiFraud .index-section .highlight {
  color: #097b7c;
}
.ctbc-antiFraud .index-kv {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.ctbc-antiFraud .index-kv .bg {
  z-index: 0;
  background-image: url(../images/kv-bg.jpg);
  background-size: auto 100%;
  background-repeat: repeat-x;
  background-position: center top;
}
.ctbc-antiFraud .index-kv .container {
  max-width: 1366px;
  padding: 0;
}
.ctbc-antiFraud .index-kv .slogan {
  -moz-animation: zoomIn 0.5s both;
  -webkit-animation: zoomIn 0.5s both;
  animation: zoomIn 0.5s both;
  transform-origin: 35%  30%;
}
.ctbc-antiFraud .index-kv .layer1 {
  -moz-animation: bounceIn 0.5s both;
  -webkit-animation: bounceIn 0.5s both;
  animation: bounceIn 0.5s both;
  transform-origin: center 25%;
  animation-delay: .25s;
}
.ctbc-antiFraud .index-kv .layer2 {
  -moz-animation: bounceIn 0.5s both;
  -webkit-animation: bounceIn 0.5s both;
  animation: bounceIn 0.5s both;
  transform-origin: center 25%;
  animation-delay: .4s;
}
.ctbc-antiFraud .index-kv .layer3 {
  -moz-animation: flash 0.5s both;
  -webkit-animation: flash 0.5s both;
  animation: flash 0.5s both;
  animation-delay: .8s;
}
.ctbc-antiFraud .index-kv .sub {
  -moz-animation: slideInLeft 0.5s both;
  -webkit-animation: slideInLeft 0.5s both;
  animation: slideInLeft 0.5s both;
  animation-delay: .3s;
}
.ctbc-antiFraud .index-kv .main {
  -moz-animation: slideInRight 0.5s both;
  -webkit-animation: slideInRight 0.5s both;
  animation: slideInRight 0.5s both;
  animation-delay: .5s;
}
.ctbc-antiFraud .index-kv .phone {
  -moz-animation: fadeInUp 0.5s both;
  -webkit-animation: fadeInUp 0.5s both;
  animation: fadeInUp 0.5s both;
  animation-delay: .5s;
}
.ctbc-antiFraud .index-a {
  padding-top: 60px;
  padding-bottom: 445px;
  overflow: hidden;
}
.ctbc-antiFraud .index-a .bg {
  background-image: url(../images/index-a-bg.jpg);
  background-size: cover;
}
.ctbc-antiFraud .index-a .section-header {
  margin: 0 auto;
  margin-bottom: 36px;
}
.ctbc-antiFraud .index-a .section-header .title {
  font-size: 72px;
  line-height: 110px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  width: 524px;
  height: 110px;
  border-radius: 110px;
  background-color: #097b7c;
  box-shadow: 6px 12px 0 0 #8fcac6;
  margin: 0 auto;
  letter-spacing: .05em;
}
.ctbc-antiFraud .index-a .section-header .highlight {
  color: #b5e8d5;
}
.ctbc-antiFraud .index-a .section-content {
  font-size: 24px;
  line-height: 36px;
  background-color: #fff;
  background-image: url(../images/index-a-content.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 50px 30px 15px;
  border-radius: 20px;
  box-shadow: 6px 8px 0 0 rgba(9, 123, 124, 0.35);
  margin: 0 auto;
  position: relative;
  min-height: 600px;
}
.ctbc-antiFraud .index-a .section-content.animated .image {
  -moz-animation: zoomIn 0.5s both;
  -webkit-animation: zoomIn 0.5s both;
  animation: zoomIn 0.5s both;
  transform-origin: 50% 30%;
}
.ctbc-antiFraud .index-a .section-content.animated .item-1 {
  -moz-animation: zoomIn 0.5s both;
  -webkit-animation: zoomIn 0.5s both;
  animation: zoomIn 0.5s both;
  animation-delay: .2s;
}
.ctbc-antiFraud .index-a .section-content.animated .item-2 {
  -moz-animation: zoomIn 0.5s both;
  -webkit-animation: zoomIn 0.5s both;
  animation: zoomIn 0.5s both;
  animation-delay: .4s;
}
.ctbc-antiFraud .index-a .section-content.animated .item-3 {
  -moz-animation: zoomIn 0.5s both;
  -webkit-animation: zoomIn 0.5s both;
  animation: zoomIn 0.5s both;
  animation-delay: .6s;
}
.ctbc-antiFraud .index-a .section-content.animated .item-4 {
  -moz-animation: zoomIn 0.5s both;
  -webkit-animation: zoomIn 0.5s both;
  animation: zoomIn 0.5s both;
  animation-delay: .8s;
}
.ctbc-antiFraud .index-a .image {
  position: absolute;
  top: 100px;
  left: calc(50% - 355px / 2);
  width: 355px;
}
.ctbc-antiFraud .index-a .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.ctbc-antiFraud .index-a .item {
  width: calc(100% / 2 - 6px * 2);
  max-width: 420px;
  font-size: 24px;
  line-height: 36px;
  position: relative;
  letter-spacing: .05em;
  text-align: justify;
}
.ctbc-antiFraud .index-a .main-text {
  color: #097b7c;
  font-size: 42px;
  line-height: 48px;
  font-weight: 900;
  margin-bottom: 5px;
  letter-spacing: 0;
}
.ctbc-antiFraud .index-a .item-1 {
  min-height: 290px;
}
.ctbc-antiFraud .index-a .item-1 .main-text {
  text-align: right;
}
.ctbc-antiFraud .index-a .item-3 .main-text {
  text-align: right;
}
.ctbc-antiFraud .index-a .item-4 {
  margin-top: -20px;
}
.ctbc-antiFraud .index-b {
  padding-top: 0;
  padding-bottom: 60px;
  border-top: 1px solid #097b7c;
}
.ctbc-antiFraud .index-b .bg {
  background-image: url(../images/index-b-bg.jpg);
  background-size: cover;
}
.ctbc-antiFraud .index-b .top-block {
  margin-top: -380px;
  position: relative;
}
.ctbc-antiFraud .index-b .top-block.animated .layer {
  -moz-animation: bounceInLeft 1s both;
  -webkit-animation: bounceInLeft 1s both;
  animation: bounceInLeft 1s both;
  animation-delay: .25s;
}
.ctbc-antiFraud .index-b .section-header {
  margin: 0 auto;
  margin-bottom: 20px;
}
.ctbc-antiFraud .index-b .title {
  font-size: 46px;
  line-height: 74px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  background-color: #097b7c;
  padding: 0 40px;
  border-radius: 20px;
  box-shadow: 6px 8px 0 0 rgba(119, 193, 178, 0.35);
  margin: 0 auto;
}
.ctbc-antiFraud .index-b .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -8px -6px;
}
.ctbc-antiFraud .index-b .item {
  width: calc(100% / 3 - 6px * 2);
  margin: 8px 6px;
  background-color: #fff;
  font-size: 25px;
  line-height: 36px;
  padding: 10px 15px;
  position: relative;
  border-radius: 20px;
  border: 3px solid #097b7c;
  overflow: hidden;
  letter-spacing: .05em;
  text-align: justify;
  min-height: 245px;
}
.ctbc-antiFraud .index-b .main-text {
  color: #097b7c;
  font-size: 42px;
  line-height: 48px;
  font-weight: 900;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 5px;
  letter-spacing: 0;
}
.ctbc-antiFraud .index-b .main-text img {
  max-width: 66px;
  margin-right: 10px;
}
.ctbc-antiFraud .index-b .main-text span {
  max-width: calc(100% - 66px - 10px);
}
.ctbc-antiFraud .index-b .section-a {
  margin-bottom: 65px;
}
.ctbc-antiFraud .index-b .section-a .title {
  max-width: 280px;
}
.ctbc-antiFraud .index-b .section-b .title {
  max-width: 314px;
  background-color: #fe4237;
  box-shadow: 6px 8px 0 0 rgba(254, 66, 55, 0.35);
}
.ctbc-antiFraud .index-b .section-b .main-text {
  color: #fe4237;
  font-size: 39px;
}
.ctbc-antiFraud .index-b .section-b .item {
  border-color: #fe4237;
  letter-spacing: 0;
}
.ctbc-antiFraud .index-c {
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid #097b7c;
}
.ctbc-antiFraud .index-c .bg {
  background-image: url(../images/index-c-bg.jpg);
  background-size: cover;
}
.ctbc-antiFraud .index-c .section-a {
  position: relative;
  padding: 0 120px;
  margin-bottom: 65px;
}
.ctbc-antiFraud .index-c .section-a .section-header {
  margin: 0 auto;
  margin-bottom: 60px;
}
.ctbc-antiFraud .index-c .section-a .section-header .title {
  font-size: 72px;
  line-height: 110px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  width: 524px;
  height: 110px;
  border-radius: 110px;
  background-color: #097b7c;
  box-shadow: 6px 12px 0 0 #8fcac6;
  margin: 0 auto;
  letter-spacing: .05em;
}
.ctbc-antiFraud .index-c .swiper {
  overflow: visible;
}
.ctbc-antiFraud .index-c .swiper-slide {
  border: 3px solid #097b7c;
  background-color: #fffcf0;
  padding: 4px;
  position: relative;
  box-shadow: 14px 14px 0 0 rgba(9, 123, 124, 0.35);
}
.ctbc-antiFraud .index-c .post-iframe {
  pointer-events: none;
  opacity: 0;
}
.ctbc-antiFraud .index-c .swiper-slide-active .post-iframe {
  pointer-events: auto;
  opacity: 1;
}
.ctbc-antiFraud .index-c .swiper-button-prev {
  left: -96px;
}
.ctbc-antiFraud .index-c .swiper-button-next {
  right: -96px;
}
.ctbc-antiFraud .index-c .section-b .section-header {
  margin: 0 auto;
  margin-bottom: 50px;
}
.ctbc-antiFraud .index-c .section-b .section-header .title {
  font-size: 72px;
  line-height: 96px;
  font-weight: 900;
  color: #333;
  text-align: center;
}
.ctbc-antiFraud .index-c .section-b .section-content {
  padding: 35px 30px 60px;
  border-radius: 20px;
  background-color: #fff;
  text-align: justify;
  word-break: break-all;
}
.ctbc-antiFraud .index-c .section-b a {
  color: #06e;
  text-decoration: underline;
}
.ctbc-antiFraud .index-c .section-b a:active {
  filter: brightness(1.2);
  text-decoration: none;
}
@media (hover: hover) {
  .ctbc-antiFraud .index-c .section-b a:hover {
    filter: brightness(1.2);
    text-decoration: none;
  }
}
.ctbc-antiFraud .index-c .notice {
  font-size: 45px;
  line-height: 60px;
  font-weight: 700;
  background-color: #fe4237;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  border-radius: 80px;
  margin: 40px auto;
  max-width: 1170px;
}
.ctbc-antiFraud .index-c .image {
  margin: 0 auto;
  max-width: 1170px;
}
.ctbc-antiFraud .index-d {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #323f48;
}
.ctbc-antiFraud .index-d .section-header {
  margin: 0 auto;
  margin-bottom: 45px;
}
.ctbc-antiFraud .index-d .section-header .title {
  font-size: 64px;
  line-height: 96px;
  font-weight: 900;
  color: #fff;
  text-align: center;
}
.ctbc-antiFraud .index-d .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -18px -10px;
}
.ctbc-antiFraud .index-d .item {
  width: calc(100% / 2 - 10px * 2);
  margin: 18px 10px;
  background-color: #fff;
  color: #097b7c;
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
  padding: 15px 20px;
  padding-right: 90px;
  position: relative;
  border-radius: 10px;
  border: 2px solid #fff;
  overflow: hidden;
}
.ctbc-antiFraud .index-d .item .icon-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 74px;
  height: 100%;
  background-image: url(../images/index-d-arrow.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #097b7c;
  background-size: 100% auto;
  display: block;
}
.ctbc-antiFraud .index-d .item:active {
  filter: brightness(1.2);
}
@media (hover: hover) {
  .ctbc-antiFraud .index-d .item:hover {
    filter: brightness(1.2);
  }
}

@media (max-width: 1280px) and (min-width: 1024px) {
  .ctbc-antiFraud .index-a .image {
    left: calc(50% - 27.734375% / 2);
    width: 27.734375%;
  }
  .ctbc-antiFraud .index-a .item {
    max-width: 50%;
  }
  .ctbc-antiFraud .index-a .item-1 {
    padding-right: calc(50% - 32.8125%);
  }
  .ctbc-antiFraud .index-a .item-2 {
    padding-left: calc(50% - 32.8125%);
  }
  .ctbc-antiFraud .index-a .item-3 {
    padding-right: calc(50% - 32.8125%);
  }
  .ctbc-antiFraud .index-a .item-4 {
    padding-left: calc(50% - 32.8125%);
  }
  .ctbc-antiFraud .index-b .container {
    padding: 0;
  }
  .ctbc-antiFraud .index-b .top-block {
    margin-top: -29.6875vw;
  }
  .ctbc-antiFraud .index-b .section-content {
    padding: 0 20px;
  }
}
@media (max-width: 1023px) {
  .ctbc-antiFraud .index-section .container {
    max-width: 540px;
    padding: 0 10px;
  }
  .ctbc-antiFraud .index-section p {
    font-size: 18px;
    line-height: 24px;
  }
  .ctbc-antiFraud .index-section p + p {
    margin-top: 24px;
  }
  .ctbc-antiFraud .index-kv .container {
    max-width: 100%;
    padding: 0;
  }
  .ctbc-antiFraud .index-kv .lg-view {
    display: block;
  }
  .ctbc-antiFraud .index-kv .sm-view {
    display: none;
  }
  .ctbc-antiFraud .index-a {
    padding-top: 40px;
    padding-bottom: 220px;
  }
  .ctbc-antiFraud .index-a .container {
    padding: 0 15px;
  }
  .ctbc-antiFraud .index-a .bg {
    background-image: url(../images/index-a-bg_s.jpg);
  }
  .ctbc-antiFraud .index-a .section-header .title {
    font-size: 36px;
    line-height: 55px;
    width: 262px;
    height: 55px;
    border-radius: 55px;
    box-shadow: 3px 6px 0 0 #8fcac6;
  }
  .ctbc-antiFraud .index-a .section-content {
    font-size: 18px;
    line-height: 24px;
    background-image: url(../images/index-a-content_s.png);
    background-size: 100% auto;
    padding: 230px 15px 30px;
    border-radius: 20px;
    box-shadow: 6px 8px 0 0 rgba(9, 123, 124, 0.35);
    min-height: inherit;
    max-width: 510px;
    margin: 0 auto;
  }
  .ctbc-antiFraud .index-a .section-content.animated .image {
    -moz-animation: zoomIn 0.5s both;
    -webkit-animation: zoomIn 0.5s both;
    animation: zoomIn 0.5s both;
    transform-origin: 50% 30%;
  }
  .ctbc-antiFraud .index-a .image {
    position: absolute;
    top: -15px;
    left: calc(50% - 234px / 2);
    width: 234px;
  }
  .ctbc-antiFraud .index-a .list {
    display: block;
  }
  .ctbc-antiFraud .index-a .item {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 25px;
  }
  .ctbc-antiFraud .index-a .main-text {
    font-size: 30px;
    line-height: 48px;
    text-align: center;
  }
  .ctbc-antiFraud .index-a .item-1 {
    min-height: inherit;
  }
  .ctbc-antiFraud .index-a .item-1 .main-text {
    text-align: center;
  }
  .ctbc-antiFraud .index-a .item-3 .main-text {
    text-align: center;
  }
  .ctbc-antiFraud .index-a .item-4 {
    margin: 0;
  }
  .ctbc-antiFraud .index-b {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .ctbc-antiFraud .index-b .bg {
    background-image: url(../images/index-b-bg_s.jpg);
  }
  .ctbc-antiFraud .index-b .top-block {
    width: calc(100% + 10px * 2);
    margin-top: -190px;
    margin-left: -10px;
    margin-bottom: 38px;
  }
  .ctbc-antiFraud .index-b .section-header {
    margin-bottom: 24px;
  }
  .ctbc-antiFraud .index-b .title {
    font-size: 29px;
    line-height: 48px;
    padding: 0 26px;
    border-radius: 10px;
    box-shadow: 5px 7px 0 0 rgba(119, 193, 178, 0.35);
  }
  .ctbc-antiFraud .index-b .list {
    display: block;
    margin: 0;
  }
  .ctbc-antiFraud .index-b .item {
    width: 100%;
    margin: 0;
    font-size: 18px;
    line-height: 24px;
    min-height: inherit;
    border-width: 2px;
  }
  .ctbc-antiFraud .index-b .item + .item {
    margin-top: 10px;
  }
  .ctbc-antiFraud .index-b .main-text {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 5px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .ctbc-antiFraud .index-b .main-text img {
    max-width: 48px;
    margin-right: 10px;
  }
  .ctbc-antiFraud .index-b .main-text span {
    max-width: calc(100% - 48px - 10px);
  }
  .ctbc-antiFraud .index-b .section-a {
    margin-bottom: 40px;
  }
  .ctbc-antiFraud .index-b .section-a .title {
    max-width: 176px;
  }
  .ctbc-antiFraud .index-b .section-b .title {
    max-width: 200px;
    box-shadow: 5px 7px 0 0 rgba(254, 66, 55, 0.35);
  }
  .ctbc-antiFraud .index-b .section-b .main-text {
    font-size: 28px;
  }
  .ctbc-antiFraud .index-c {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .ctbc-antiFraud .index-c .bg {
    background-image: url(../images/index-c-bg_s.jpg);
  }
  .ctbc-antiFraud .index-c .section-a {
    padding: 0 50px;
    margin-bottom: 40px;
  }
  .ctbc-antiFraud .index-c .section-a .section-header {
    margin-bottom: 30px;
  }
  .ctbc-antiFraud .index-c .section-a .section-header .title {
    font-size: 36px;
    line-height: 55px;
    width: 262px;
    height: 55px;
    border-radius: 55px;
  }
  .ctbc-antiFraud .index-c .swiper-slide {
    border: 2px solid #097b7c;
    padding: 2px;
    box-shadow: 7px 7px 0 0 rgba(9, 123, 124, 0.35);
  }
  .ctbc-antiFraud .index-c .swiper-button-prev,
  .ctbc-antiFraud .index-c .swiper-button-next {
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }
  .ctbc-antiFraud .index-c .swiper-button-prev {
    left: -52px;
  }
  .ctbc-antiFraud .index-c .swiper-button-next {
    right: -52px;
  }
  .ctbc-antiFraud .index-c .section-b .section-header {
    margin-bottom: 15px;
  }
  .ctbc-antiFraud .index-c .section-b .section-header .title {
    font-size: 36px;
    line-height: 48px;
  }
  .ctbc-antiFraud .index-c .section-b .section-content {
    padding: 18px 25px 30px;
    border-radius: 10px;
  }
  .ctbc-antiFraud .index-c .notice {
    font-size: 24px;
    line-height: 33px;
    padding: 10px;
    border-radius: 80px;
    margin: 20px auto 10px;
    max-width: 480px;
  }
  .ctbc-antiFraud .index-c .image {
    max-width: 480px;
  }
  .ctbc-antiFraud .index-d {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .ctbc-antiFraud .index-d .section-header {
    margin-bottom: 15px;
  }
  .ctbc-antiFraud .index-d .section-header .title {
    font-size: 38px;
    line-height: 48px;
  }
  .ctbc-antiFraud .index-d .list {
    display: block;
    margin: 0 auto;
    max-width: 480px;
  }
  .ctbc-antiFraud .index-d .item {
    width: 100%;
    margin: 0;
    font-size: 28px;
    line-height: 36px;
    padding: 10px 10px;
    padding-right: 64px;
    display: block;
  }
  .ctbc-antiFraud .index-d .item + .item {
    margin-top: 20px;
  }
  .ctbc-antiFraud .index-d .item .icon-arrow {
    width: 58px;
  }
}
@media (max-width: 540px) {
  .ctbc-antiFraud .index-kv .lg-view {
    display: none;
  }
  .ctbc-antiFraud .index-kv .sm-view {
    display: block;
  }
  .ctbc-antiFraud .index-kv .bg {
    background-image: url(../images/kv-bg_s.jpg);
  }
  .ctbc-antiFraud .index-kv .container {
    max-width: 540px;
    padding: 0;
  }
  .ctbc-antiFraud .index-kv .slogan {
    transform-origin: 50%  30%;
  }
  .ctbc-antiFraud .index-a {
    padding-bottom: 40.7407vw;
  }
  .ctbc-antiFraud .index-a .section-content {
    padding: 42.5925vw 15px 30px;
  }
  .ctbc-antiFraud .index-a .image {
    left: calc(50% - 43.3333% / 2);
    width: 43.3333%;
  }
  .ctbc-antiFraud .index-b .top-block {
    margin-top: -35.1851vw;
  }
}
@media (max-width: 480px) {
  .ctbc-antiFraud .index-c .section-b .section-header .title {
    font-size: 7.5vw;
    line-height: 1.5;
  }
  .ctbc-antiFraud .index-c .notice {
    font-size: 5vw;
    line-height: 1.5;
  }
  .ctbc-antiFraud .index-d .item {
    font-size: 5.83vw;
    line-height: 1.5;
  }
}
@media (hover: none) {
  a:hover {
    color: inherit;
  }
}
